diff --git a/.github/.gitignore b/.github/.gitignore new file mode 100644 index 00000000..ebaca0fb --- /dev/null +++ b/.github/.gitignore @@ -0,0 +1,2 @@ +*.html +!*.yaml diff --git a/.github/actions/pre-commit/action.yaml b/.github/actions/pre-commit/action.yaml new file mode 100644 index 00000000..e753db80 --- /dev/null +++ b/.github/actions/pre-commit/action.yaml @@ -0,0 +1,22 @@ +name: pre-commit +description: run pre-commit +inputs: + extra_args: + description: options to pass to pre-commit run + required: false + default: '--all-files' +runs: + using: composite + steps: + - run: python -m pip install pre-commit + shell: bash + - run: python -m pip freeze --local + shell: bash + - uses: actions/cache@v4 + with: + path: | + ~/.cache/pre-commit + ~/.cache/R/renv + key: pre-commit-3|${{ env.pythonLocation }}|${{ hashFiles('.pre-commit-config.yaml') }} + - run: pre-commit run --show-diff-on-failure --color=always ${{ inputs.extra_args }} + shell: bash diff --git a/.github/workflows/pre-commit.yaml b/.github/workflows/pre-commit.yaml new file mode 100644 index 00000000..8d960d31 --- /dev/null +++ b/.github/workflows/pre-commit.yaml @@ -0,0 +1,16 @@ +name: pre-commit + +on: + pull_request: + push: + branches: [main] + +jobs: + pre-commit: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - uses: actions/setup-python@v5 + with: + python-version: '3.12' + - uses: ./.github/actions/pre-commit diff --git a/.gitignore b/.gitignore new file mode 100644 index 00000000..cdf89de3 --- /dev/null +++ b/.gitignore @@ -0,0 +1,45 @@ +# https://books.ropensci.org/targets/projects.html#extra-reproducibility +_targets/ +targets.log +.Rproj.user +.Rhistory +.Rdata +.httr-oauth +.DS_Store +*.Rproj +*.swp +*.yaml + +# Don't track compiled model executable + +cfaforecastrenewalww/inst/stan/renewal_ww_hosp +cfaforecastrenewalww/inst/stan/renewal_ww_hosp_hierarchical_w_dispersion +cfaforecastrenewalww/inst/stan/renewal_ww_hosp_site_level_phi +cfaforecastrenewalww/inst/stan/renewal_ww_hosp_site_level_phi_varying_C +cfaforecastrenewalww/inst/stan/renewal_ww_hosp_hierarchical +cfaforecastrenewalww/inst/stan/renewal_ww_hosp_site_level_inf_dynamics + +# Don't track data! +diagnostic_report.html +repo_data +input +output + +scratch/EDA.html +# compiled test executables +test/test_expgamma_lpdf + +# Test results +*.Rcheck + +# Compiled package +*.tar.gz + +# emacs tempfile +*# +*~ +.#* +.~* + +# R tempfiles +Rplots.pdf diff --git a/.lintr b/.lintr new file mode 100644 index 00000000..6dc0b3a2 --- /dev/null +++ b/.lintr @@ -0,0 +1,9 @@ +linters: linters_with_defaults( + object_usage_linter = NULL, + line_length_linter(length = 100), + cyclocomp_linter = NULL + ) +exclusions: list( + ".Rprofile" + ) +encoding: "UTF-8" diff --git a/.secrets.baseline b/.secrets.baseline new file mode 100644 index 00000000..63f42f9b --- /dev/null +++ b/.secrets.baseline @@ -0,0 +1,112 @@ +{ + "version": "1.4.0", + "plugins_used": [ + { + "name": "ArtifactoryDetector" + }, + { + "name": "AWSKeyDetector" + }, + { + "name": "AzureStorageKeyDetector" + }, + { + "name": "Base64HighEntropyString", + "limit": 4.5 + }, + { + "name": "BasicAuthDetector" + }, + { + "name": "CloudantDetector" + }, + { + "name": "DiscordBotTokenDetector" + }, + { + "name": "GitHubTokenDetector" + }, + { + "name": "HexHighEntropyString", + "limit": 3.0 + }, + { + "name": "IbmCloudIamDetector" + }, + { + "name": "IbmCosHmacDetector" + }, + { + "name": "JwtTokenDetector" + }, + { + "name": "KeywordDetector", + "keyword_exclude": "" + }, + { + "name": "MailchimpDetector" + }, + { + "name": "NpmDetector" + }, + { + "name": "PrivateKeyDetector" + }, + { + "name": "SendGridDetector" + }, + { + "name": "SlackDetector" + }, + { + "name": "SoftlayerDetector" + }, + { + "name": "SquareOAuthDetector" + }, + { + "name": "StripeDetector" + }, + { + "name": "TwilioKeyDetector" + } + ], + "filters_used": [ + { + "path": "detect_secrets.filters.allowlist.is_line_allowlisted" + }, + { + "path": "detect_secrets.filters.common.is_ignored_due_to_verification_policies", + "min_level": 2 + }, + { + "path": "detect_secrets.filters.heuristic.is_indirect_reference" + }, + { + "path": "detect_secrets.filters.heuristic.is_likely_id_string" + }, + { + "path": "detect_secrets.filters.heuristic.is_lock_file" + }, + { + "path": "detect_secrets.filters.heuristic.is_not_alphanumeric_string" + }, + { + "path": "detect_secrets.filters.heuristic.is_potential_uuid" + }, + { + "path": "detect_secrets.filters.heuristic.is_prefixed_with_dollar_sign" + }, + { + "path": "detect_secrets.filters.heuristic.is_sequential_string" + }, + { + "path": "detect_secrets.filters.heuristic.is_swagger_file" + }, + { + "path": "detect_secrets.filters.heuristic.is_templated_secret" + } + ], + "results": {}, + "generated_at": "2023-09-24T19:52:08Z" +} diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 5ceaa704..1ad95167 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -4,11 +4,11 @@ questions or doubts, don't be afraid to send them our way. We appreciate all contributions, and we are looking forward to fostering an open, transparent, and collaborative environment. -Before contributing, we encourage you to also read or [LICENSE](https://github.com/CDCgov/template/blob/master/LICENSE), -[README](https://github.com/CDCgov/template/blob/master/README.md), and -[code-of-conduct](https://github.com/CDCgov/template/blob/master/code-of-conduct.md) +Before contributing, we encourage you to also read or [LICENSE](LICENSE), +[README](README.md), and +[code-of-conduct](code-of-conduct.md) files, also found in this repository. If you have any inquiries or questions not -answered by the content of this repository, feel free to [contact us](mailto:surveillanceplatform@cdc.gov). +answered by the content of this repository, feel free to [contact us](https://www.cdc.gov/forecast-outbreak-analytics/contact-us.html) ## Public Domain This project is in the public domain within the United States, and copyright and @@ -18,10 +18,6 @@ submitting a pull request you are agreeing to comply with this waiver of copyright interest. ## Requesting Changes -Our pull request/merging process is designed to give the CDC Surveillance Team -and other in our space an opportunity to consider and discuss any suggested -changes. This policy affects all CDC spaces, both on-line and off, and all users -are expected to abide by it. ### Open an issue in the repository If you don't have specific language to submit but would like to suggest a change @@ -29,10 +25,4 @@ or have something addressed, you can open an issue in this repository. Team members will respond to the issue as soon as possible. ### Submit a pull request -If you would like to contribute, please submit a pull request. In order for us -to merge a pull request, it must: - * Be at least seven days old. Pull requests may be held longer if necessary - to give people the opportunity to assess it. - * Receive a +1 from a majority of team members associated with the request. - If there is significant dissent between the team, a meeting will be held to - discuss a plan of action for the pull request. +If you would like to contribute, please submit a pull request. We will review it and accept, decline, or suggest changes as appropriate. diff --git a/LICENSE b/LICENSE index 8dada3ed..76811fd2 100644 --- a/LICENSE +++ b/LICENSE @@ -1,4 +1,4 @@ - Apache License + Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ diff --git a/README.md b/README.md index 2dc5058b..faf91799 100644 --- a/README.md +++ b/README.md @@ -1,26 +1,225 @@ -# CDCgov GitHub Organization Open Source Project Template +# Overview +This repo leverages a semi-mechanistic renewal approach to jointly fit COVID-19 hospital admissions data in the US and viral concentrations in wastewater to forecast hospital admissions. See our [Model Definition page](model_definition.md) for a mathematical description of the generative model, and the [example vignette](cfaforecastrenewalww/vignettes/toy_data_vignette.Rmd) to run the inference and forecasting on the simulated data provided. In brief, our model builds upon [EpiNow2](https://github.com/epiforecasts/EpiNow2/tree/main), a widely used [R](https://www.r-project.org/) and [Stan](https://mc-stan.org/) package for Bayesian epidemiological inference. We modify EpiNow2 to add model for the observed viral RNA concentration in wastewater. -**Template for clearance: This project serves as a template to aid projects in starting up and moving through clearance procedures. To start, create a new repository and implement the required [open practices](open_practices.md), train on and agree to adhere to the organization's [rules of behavior](rules_of_behavior.md), and [send a request through the create repo form](https://forms.office.com/Pages/ResponsePage.aspx?id=aQjnnNtg_USr6NJ2cHf8j44WSiOI6uNOvdWse4I-C2NUNk43NzMwODJTRzA4NFpCUk1RRU83RTFNVi4u) using language from this template as a Guide.** +This README is organized into the following sections: +- Our [workflow](#our-workflow-for-covid-19-forecast-hub-submissions) for producing weekly forecasts +- Details on [model input data](#model-input-data) +- A description of our [forecasting pipeline](#forecasting-pipeline) +- A guide to [installing and running our code](#installing-and-running-code) +- Details on [contributing to this project](#contributing-to-this-project) +- [Standard CDCGov open source repository information, notices, and disclaimers](#standard-cdcgov-open-source-repository-information-notices-and-disclaimers) -**General disclaimer** This repository was created for use by CDC programs to collaborate on public health related projects in support of the [CDC mission](https://www.cdc.gov/about/organization/mission.htm). GitHub is not hosted by the CDC, but is a third party website used by CDC and its partners to share information and collaborate on software. CDC use of GitHub does not imply an endorsement of any one particular service, product, or enterprise. +# Our workflow for Covid-19 Forecast Hub submissions +To produce our submissions to the Covid-19 Forecast Hub, we run a [forecasting pipeline](#forecasting-pipeline) every Saturday evening at 9:10 pm EST. In addition to pulling the latest data and using it to fit our inference models, the pipeline generates summary figures, produces a diagnostic report of Markov Chain Monte Carlo convergence diagnostics, and performs data quality checks on the wastewater data. We examine these outputs manually to check for data or model convergence issues. -## Access Request, Repo Creation Request +We produce forecasts of COVID-19 hospital admissions for the 50 states, Puerto Rico, District of Columbia (DC), and the United States. Most forecasts use both wastewater data and hospital admission data, but if a location does not have any wastewater data, the wastewater input data for the model are deemed unreliable, or the model fails to converge, we use the hospital admissions-only model instead. If that model is also unreliable, we do not submit a forecast for that location. In all cases, we record our choice and the reason for it in a run-specific `metadata.yaml` file, as follows: +- "States without wastewater data": No wastewater data from the past 90 days were available for these locations, so we necessarily used the hospital admissions-only model for them. +- "States we chose to use hospital admissions only model on": We detected anomalies in reported wastewater values for these locations, or the wastewater model fits for these locations did not pass checks for reliability, so we chose to use the hospital admissions-only model for them. +- "States with insufficient wastewater data": We used the wastewater-informed model for these locations, but the actual wastewater data available for them was likely too sparse to meaningfully inform the forecast. +- "States not forecasted": Both the wastewater-informed and the hospital admissions-only models had issues for these locations, so we did not submit forecasts for them. -* [CDC GitHub Open Project Request Form](https://forms.office.com/Pages/ResponsePage.aspx?id=aQjnnNtg_USr6NJ2cHf8j44WSiOI6uNOvdWse4I-C2NUNk43NzMwODJTRzA4NFpCUk1RRU83RTFNVi4u) _[Requires a CDC Office365 login, if you do not have a CDC Office365 please ask a friend who does to submit the request on your behalf. If you're looking for access to the CDCEnt private organization, please use the [GitHub Enterprise Cloud Access Request form](https://forms.office.com/Pages/ResponsePage.aspx?id=aQjnnNtg_USr6NJ2cHf8j44WSiOI6uNOvdWse4I-C2NUQjVJVDlKS1c0SlhQSUxLNVBaOEZCNUczVS4u).]_ +Individual archived forecasts and their corresponding `metadata.yaml` files can be found in datestamped subdirectories of the [`output/forecasts`](output/forecasts) directory, e.g. [`output/forecasts/2024-02-05`](output/forecasts/2024-02-05). -## Related documents +# Model input data +We store all data and configuration for the model in the [`input`](input) folder. -* [Open Practices](open_practices.md) -* [Rules of Behavior](rules_of_behavior.md) -* [Thanks and Acknowledgements](thanks.md) -* [Disclaimer](DISCLAIMER.md) -* [Contribution Notice](CONTRIBUTING.md) -* [Code of Conduct](code-of-conduct.md) +## Hospitalization data +For real-time production, we pull hospitalization data from the [NHSN HealthData.gov public dataset](https://healthdata.gov/Hospital/COVID-19-Reported-Patient-Impact-and-Hospital-Capa/g62h-syeh) and then is stored locally once it is ingested. For retrospective evaluation on time-stamped data sets, we use the [`covidcast`](https://cmu-delphi.github.io/delphi-epidata/api/covidcast.html) R package. -## Overview +## Wastewater data +We use the [NWSS API on the DCIPHER platform](https://www.cdc.gov/nwss/reporting.html) (non-public data, requires permission from NWSS to access) to obtain wastewater data at the facility level. + +## Data access and API keys +To interact with `covidcast`, HealthData.gov, or DCIPHER/NWSS, we use API keys. `covidcast` and HealthData.gov are public; anyone can request an API key. One must complete a data use agreement to access raw wastewater data from NWSS; see the [NWSS website](https://www.cdc.gov/nwss/about-data.html) for details. + +Our data pipeline expects users to store these API keys in a local `secrets.yaml` file. See instructions below for setting up your `secrets.yaml` file in a format the pipeline can parse. + +## Data file structure +The data (both inputs and outputs) are currently loaded in either from within the [`input`](input) folder as shown below or directly from the APIs (described above). This folder also contains a file with state-level population data ([`locations.csv`](input/locations.csv)) used by the pipeline. + +Model outputs are written to individual folders after each model is run, and the file path to access those model outputs are returned as an output to the targets pipeline, to be used for downstream analysis and plotting. Alongside each pipeline run is a model metadata `.txt` file formatted for the COVID-19 Forecast Hub submission, which can be found in the folder `forecasts`. + +``` ++--input + +-- ww_data + +-- nwss_data + +-- {date_of_data_pull}.csv + +-- hosp_data + +-- vintage_datasets + +-- {date_of_data_pull}.csv + +-- config + +--{test/prod} + +-- config-{model_type}-{run_id}.yaml + +--saved_pmfs + +-- generation_interval.csv + +-- inf_to_hosp.csv + +--train_data + +-- {forecast_date} + +-- {model_type} + +-- train_data.csv + +--locations.csv ++-- output + +-- forecasts + +-- {forecast_date} + +-- {forecast_date}.tsv + +-- metadata.yaml + +-- wastewater_metdata_table.tsv + +-- raw + +-- {individual_state} + +-- {model_type} + +-- draws + +-- {forecast_date} + +-- run-on-{date_of_run}-{run_id}-draws.parquet + +-- quantiles + +-- {forecast_date} + +-- run-on-{date_of_run}-{run_id}-quantiles.parquet + +-- parameters + +-- {forecast_date} + +-- run-on-{date_of_run}-{run_id}-parameters.parquet + +-- future_hosp_draws + +-- {forecast_date} + +-- run-on-{date_of_run}-{run_id}-future_hops_draws.parquet + +-- stan_objects + +--{forecast_date} + +-- run-on-{date_of_run}-{run_id}-{model_name}-{time_stamp}-{unique_id}.csv + +-- diagnostics + +-- {forecast_date} + +--run-on-{date_of_run}-{run_id}-diagnostics.csv + +-- figures + +-- {forecast_date}-run-on-{date-run} + +--{individual state} + +-- {individual plots of generated quantities + data for all models} + +-- cleaned + +-- {forecast_date}-run-on-{date_run} + +-- external + +-- {submitted/test}_forecasts + +-- {forecast_date}-CDC_CFA-renewal_ww.csv + +-- {submitted/test}_metadata + +--metadata-CDC_CFA-renewal_ww.yaml + +-- internal + +-- combined quantiles + data for GQ Kate and Eric want + +-- diagnostic_report.html + +-- pdfs of combined quantiles forecasts, hospital admissions forecasts for mult models, wastewater estimates, R(t), etc.v + +-- pipeline_run_metadata + +-- test + +--{forecast_date}-run-on-{date_run} + +--{run_id} + +-- prod + +--{forecast_date}-run-on-{date_run} + +--{run_id} + +``` + +# Forecasting pipeline +We use a pipeline to pull data, process it, fit models, and generate forecasts formatted for submission to the [COVID-19 Forecast Hub](https://covid19forecasthub.org/). The [`_targets.R`](_targets.R) script in the project root directory defines the pipeline via the [`targets` R package](https://books.ropensci.org/targets/). + +The pipeline does the following, in order: +1. Pulls the latest wastewater and hospital admissions data from NWSS and NHSN, respectively +2. Formats the data properly for ingestion by our Stan models. +3. Fits Bayesian renewal models to those data (links below point to the relevant `.stan` source files): + - A [model without wastewater](cfaforecastrenewalww/inst/stan/renewal_ww_hosp.stan) (based only on hospital admissions). + - A [national model using aggregated wastewater](cfaforecastrenewalww/inst/stan/renewal_ww_hosp.stan) concentration data. + - A [model incorporating site-level wastewater concentration data](cfaforecastrenewalww/inst/stan/renewal_ww_hosp_site_level_inf_dynamics.stan). +4. Post-processes model output to produce forecasts and summary figures, including a table formatted for submission to the Covid-19 Forecast Hub. + +See our [model definition page](model_definition.md) for further details on the modeling methods and data pre-processing. + +# Installing and running code + +## Install R +To run our code, you will need a working installation of [R](https://www.r-project.org/) (version `4.3.0` or later). You can find instructions for installing R on the official [R project website](https://www.r-project.org/). + +## Install `cmdstanr` and `CmdStan` +We do inference from our models using [`CmdStan`](https://mc-stan.org/users/interfaces/cmdstan) (version `2.34.1` or later) via its R interface [`cmdstanr`](https://mc-stan.org/cmdstanr/) (version `0.7.1` or later). + +Open an R session and run the following command to install `cmdstanr` per that package's [official installation guide](https://mc-stan.org/cmdstanr/#installation). + +```R +install.packages("cmdstanr", repos = c("https://mc-stan.org/r-packages/", getOption("repos"))) +``` + +`cmdstanr` provides tools for installing `CmdStan` itself. First check that everything is properly configured by running: + +```R +cmdstanr::check_cmdstan_toolchain() +``` + +You should see the following: +``` +The C++ toolchain required for CmdStan is setup properly! +``` + +If you do, you can then install `CmdStan` by running: +```R +cmdstanr::install_cmdstan() +``` +If installation succeeds, you should see a message like the following: +```R +* Finished installing CmdStan to +``` + +If you run into trouble, consult the official [`cmdstanr`](https://mc-stan.org/cmdstanr/index.html) website for further installation guides and help. + +## Download this repository and install the project package (`cfaforecastrenewalww`) +Once `cmdstanr` and `CmdStan` are installed, the next step is to download this repository and install our project package, `cfaforecastrenewalww`. The repository provides an overall structure for running the forecasting analysis; the project package provides tools for specifying and running our models, and installs other needed dependencies. + +Once you have downloaded this repository, navigate to it within an R session and run the following: + +```R +install.packages('remotes') +remotes::install_local("cfaforecastrenewalww") +``` +If that fails, confirm that your R working directory is indeed the project directory by running R's `getwd()` command. + +## R dependencies +Installing the project package should take care of almost all dependencies installations. Confirm that package installation has succeeded by running the following within an R session: + +```R +library(cfaforecastrenewalww) +``` + +## Set up API keys +To load in the data you will need to set up a `secrets.yaml` file in the root of the directory with the following format: +``` +covidcast_api_key: {key} +NHSN_API_KEY_ID: {key} +NHSN_API_KEY_SECRET: {key} +nwss_data_token: {token} +data_rid: {rid} +``` +Directions to obtain the covidcast api are found [here](https://cmu-delphi.github.io/delphi-epidata/api/covidcast_clients.html). + +Directions to obtain an NHSN key are described in the `forecasttools` repo [here](https://potential-engine-5mz851o.pages.github.io/articles/pullnhsn.html). + +Note that you will need to have access to the dataset on DCIPHER to obtain the credentials stored as `nwss_data_token` and `data_rid`. +Once you have DCIPHER access, you will need to go [here](https://dcipher.cdc.gov/workspace/settings/tokens) to create a new token. +Name it whatever you like, then be sure to copy the one-time token and place it in `secrets.yaml` as your `nwss_data_token`. +The dataset RID is obtained when the data use agreement is approved and the link to the dataset on DCIPHER is provided. + +## Run the pipeline +To run the pipeline, type the following at a command prompt from the top-level project directory: + +```bash +Rscript --vanilla -e "targets::tar_make()" +``` + +Alternatively, in an interactive R session with your R working directory set to the project root, run +```R +targets::tar_make() +``` + +# Contributing to this project + +## Git workflow +We store our production code in the `prod` branch; refer to the `HEAD` of that branch for the code used to produce our most recent published forecast. To develop new features or fix bugs, create a feature branch off of `prod`. When the feature is ready, make a pull request into `prod`. All tests should pass within a feature branch before pull request can be merged. + +Please see our [contributing guidelines](CONTRIBUTING.md) and [code-of-conduct](code-of-conduct.md) for more details. + +# Contact information +We want feedback and questions! Feel free to [submit an issue](../../issues) here on Github, or contact us via this [form](https://www.cdc.gov/forecast-outbreak-analytics/contact-us.html). + +# Standard CDCGov open source repository information, notices, and disclaimers -Describe the purpose of your project. Add additional sections as necessary to help collaborators and potential collaborators understand and use your project. - ## Public Domain Standard Notice This repository constitutes a work of the United States Government and is not subject to domestic copyright protection under 17 USC ยง 105. This repository is in @@ -45,13 +244,13 @@ PARTICULAR PURPOSE. See the Apache Software License for more details. You should have received a copy of the Apache Software License along with this program. If not, see http://www.apache.org/licenses/LICENSE-2.0.html -The source code forked from other open source projects will inherit its license. +Any included source code adapted or reused from another open source project inherits that project's license. ## Privacy Standard Notice This repository contains only non-sensitive, publicly available data and information. All material and community participation is covered by the -[Disclaimer](https://github.com/CDCgov/template/blob/master/DISCLAIMER.md) -and [Code of Conduct](https://github.com/CDCgov/template/blob/master/code-of-conduct.md). +[Disclaimer](DISCLAIMER.md) +and [Code of Conduct](code-of-conduct.md). For more information about CDC's privacy policy, please visit [http://www.cdc.gov/other/privacy.html](https://www.cdc.gov/other/privacy.html). ## Contributing Standard Notice @@ -72,7 +271,6 @@ collaboration and collaborative potential. All government records will be published through the [CDC web site](http://www.cdc.gov). ## Additional Standard Notices -Please refer to [CDC's Template Repository](https://github.com/CDCgov/template) -for more information about [contributing to this repository](https://github.com/CDCgov/template/blob/master/CONTRIBUTING.md), -[public domain notices and disclaimers](https://github.com/CDCgov/template/blob/master/DISCLAIMER.md), -and [code of conduct](https://github.com/CDCgov/template/blob/master/code-of-conduct.md). +Please refer to [CDC's Template Repository](https://github.com/CDCgov/template) for the standard/template [CDCGov](https://github.com/CDCGov) [README](https://github.com/CDCGov/template/blob/main/README.md), [contribution policy](https://github.com/CDCgov/template/blob/main/CONTRIBUTING.md), +[disclaimer](https://github.com/CDCgov/template/blob/main/DISCLAIMER.md), +and [code of conduct](https://github.com/CDCgov/template/blob/main/code-of-conduct.md) from which the corresponding documents found in this repository have been derived. diff --git a/_targets.R b/_targets.R new file mode 100644 index 00000000..58898684 --- /dev/null +++ b/_targets.R @@ -0,0 +1,852 @@ +# Created by use_targets(). +# Prod branch test +# Follow the comments below to fill in this target script. +# Then follow the manual to check and run the pipeline: +# https://books.ropensci.org/targets/walkthrough.html#inspect-the-pipeline # nolint + +# Load packages required to define the pipeline: +library(targets) +library(tarchetypes) # tar_render() calls +library(crew) # To run in parallel + + +# Run with a crew controller +# See: https://books.ropensci.org/targets/crew.html +# This defaults to 8 cores but you likely want to use +# floor(/number used for MCMC) +# Currently on model fitting is run in parallel due to an assumption +# that IO costs outweighs any benefit for other tasks. +# This may not be the case. To change allocation alter the deployment +# argument of a target. +controller <- crew_controller_local( + workers = 8, + seconds_idle = 600 +) + +# Set target options: +tar_option_set( + packages = c( + "tibble", "dplyr", "lubridate", + "cmdstanr", "posterior", "yaml", "zoo", + "tidybayes", "scales", "here", + "fs", "scales", "gridExtra", "httr", + "jsonlite", "cfaforecastrenewalww" + ), + workspace_on_error = TRUE, + # Run with a pre-specified crew controller + controller = controller, + # Setup storage on workers vs on the main node. + # This will only work on workers that have access to the data + # See https://books.ropensci.org/targets/performance.html#worker-storage + memory = "transient", + storage = "worker", + retrieval = "worker", + format = "rds", # default storage format + error = NULL # tells errored targets to return NULL rather than + # have whole pipeline fail + # Set other options as needed. +) +source("src/write_config.R") +cfaforecastrenewalww::setup_secrets(here::here("secrets.yaml")) +# For testing changes to the package without a re-install +# source("cfaforecastrenewalww/R/utils.R") #nolint +# source("cfaforecastrenewalww/R/get_data.R") #nolint +# source("cfaforecastrenewalww/R/pre_processing.R") #nolint +# source("cfaforecastrenewalww/R/fit_model.R") #nolint +# source("cfaforecastrenewalww/R/get_config_vals.R") #nolint +# source("cfaforecastrenewalww/R/plots.R") #nolint +# source("cfaforecastrenewalww/R/delay_distribs.R") #nolint +# source("cfaforecastrenewalww/R/process_model_outputs.R") #nolint +# source("cfaforecastrenewalww/R/render_diagnostic_report.R") #nolint +# source("cfaforecastrenewalww/R/forecasttools.R") #nolint + +# Targets list: +# Get the run parameters using the date-------------------------------------- +list( + tar_target( + name = ww_data_path, + command = save_timestamped_nwss_data( + ww_path_to_save = + file.path( + "input", "ww_data", + "nwss_data" + ) + ), + deployment = "main" + ), + tar_target( + name = forecast_date, + command = get_nearest_forecast_date(), + deployment = "main" + ), + tar_target( + name = hosp_reporting_delay, + command = get_hosp_reporting_delay(forecast_date), + deployment = "main" + ), + tar_target( + name = prod_model_type, + command = "site-level infection dynamics", + deployment = "main" + ), + tar_target( + name = hosp_only_states, + command = c(), + deployment = "main" + ), + # If want to enforce a global change, need to tar_destroy to + # regenerate run_id + tar_target( + name = run_id, + command = get_random_string(forecast_date, date_run, ww_data_path), + deployment = "main" + ), + tar_target( + name = date_run, + command = as.character(lubridate::today()), + deployment = "main" + ), + + # Write config files ------------------------------------------------------ + tar_target( + name = fp_config_yaml_ho, + command = write_config( + save_config = TRUE, + location = NULL, + prod_run = TRUE, + run_id = run_id, + ww_geo_type = "state", + date_run = date_run, + model_type = "state-level aggregated wastewater", + forecast_date = forecast_date, + hosp_data_source = "NHSN", + pull_from_local = FALSE, + include_ww = 0, + hosp_reporting_delay = hosp_reporting_delay, + ww_data_path = ww_data_path + ), + format = "file", + deployment = "main" + ), + tar_target( + name = fp_config_yaml_sa, + command = write_config( + save_config = TRUE, + location = "US", + prod_run = TRUE, + run_id = run_id, + ww_geo_type = "state", + date_run = date_run, + model_type = "state-level aggregated wastewater", + forecast_date = forecast_date, + hosp_data_source = "NHSN", + pull_from_local = FALSE, + include_ww = 1, + hosp_reporting_delay = hosp_reporting_delay, + ww_data_path = ww_data_path + ), + format = "file", + deployment = "main" + ), + tar_target( + name = fp_config_yaml_id, + command = write_config( + save_config = TRUE, + location = NULL, + prod_run = TRUE, + run_id = run_id, + date_run = date_run, + model_type = "site-level infection dynamics", + forecast_date = forecast_date, + hosp_data_source = "NHSN", + pull_from_local = FALSE, + include_ww = 1, + hosp_reporting_delay = hosp_reporting_delay, + ww_data_path = ww_data_path + ), + format = "file", + deployment = "main" + ), + + + # Hospital admissions only model for all states for a comparison----------- + tar_target( + name = config_vars_ho, + command = get_config_vals(fp_config_yaml_ho), + deployment = "main" + ), + tar_target( + name = output_file_path_ho, + command = config_vars_ho$output_file_path, + deployment = "main" + ), + tar_target( + name = figure_file_path, + command = get_figure_file_path( + output_file_path_ho, + forecast_date, + date_run + ), + deployment = "main" + ), + tar_target( + name = create_output_dir_ho, + command = create_dir(output_file_path_ho), + deployment = "main" + ), + tar_target( + name = ww_data_raw_ho, + command = do.call(get_ww_data, config_vars_ho), + deployment = "main" + ), + tar_target( + name = train_data_orig_ho, + command = do.call(get_all_training_data, c( + list( + ww_data_raw = ww_data_raw_ho + ), + config_vars_ho + )), + deployment = "main" + ), + tar_target( + name = train_data_ho, + command = do.call(manual_removal_of_hosp_data, c( + list(train_data = train_data_orig_ho), + config_vars_ho + )), + deployment = "main" + ), + tar_target( + name = model_file_path_ho, + command = config_vars_ho$model_file_path, + format = "file", + deployment = "main" + ), + tar_target( + name = model_file_ho, + command = ww_model(model_file_path_ho), + deployment = "main" + ), + tar_target( + name = grouped_data, + command = train_data_ho %>% + group_by(location, include_ww) %>% + targets::tar_group(), + iteration = "group", + deployment = "main" + ), + tar_target( + name = params_ho, + command = get_params(), + deployment = "main" + ), + + ## Fit the model ------------------------------------------------------------ + # get a stacked long dataframe containing the quantiles(estimated + # from all draws) and 100 samples of the draws from the posterior for the + # generated quantities and the parameters + tar_target( + name = df_of_filepaths_ho, + command = do.call(fit_model, c(list(train_data = grouped_data), + list(params = params_ho), + model_file = model_file_ho, + config_vars_ho + )), + pattern = map(grouped_data), + iteration = "group", + deployment = "worker" + ), + tar_target( + name = grouped_df, + command = df_of_filepaths_ho %>% + group_by(location, model_type) %>% + distinct() %>% + targets::tar_group(), + iteration = "group" + ), + tar_target( + name = plot_single_location_hosp_draws_ho, + command = get_plot_draws(grouped_df, + "pred_hosp", + figure_file_path, + show_calibration_data = FALSE + ), + pattern = map(grouped_df), + iteration = "list", + deployment = "main" + ), + tar_target( + name = plot_rt_ho, + command = get_rt_from_draws( + grouped_df, + figure_file_path + ), + pattern = map(grouped_df), + iteration = "list", + deployment = "main" + ), + tar_target( + name = plot_params_ho, + command = get_plot_param_distribs( + grouped_df, + figure_file_path + ), + pattern = map(grouped_df), + iteration = "list", + deployment = "main" + ), + + # National aggregated model for the US only-------------------------------- + tar_target( + name = config_vars_sa, + command = get_config_vals(fp_config_yaml_sa), + deployment = "main" + ), + tar_target( + name = output_file_path_sa, + command = config_vars_sa$output_file_path, + deployment = "main" + ), + tar_target( + name = create_output_dir_sa, + command = create_dir(output_file_path_sa), + deployment = "main" + ), + tar_target( + name = ww_data_raw_sa, + command = do.call(get_ww_data, config_vars_sa), + deployment = "main" + ), + tar_target( + name = train_data_orig_sa, + command = do.call(get_all_training_data, c( + list( + ww_data_raw = ww_data_raw_sa + ), + config_vars_sa + )), + deployment = "main" + ), + tar_target( + name = train_data_sa, + command = do.call(manual_removal_of_hosp_data, c( + list(train_data = train_data_orig_sa), + config_vars_sa + )), + deployment = "main" + ), + tar_target( + name = model_file_path_sa, + command = config_vars_sa$model_file_path, + format = "file", + deployment = "main" + ), + tar_target( + name = model_file_sa, + command = ww_model(model_file_path_sa), + deployment = "main" + ), + tar_target( + name = grouped_data_sa, + command = train_data_sa %>% + group_by(location, include_ww) %>% + targets::tar_group(), + iteration = "group", + deployment = "main" + ), + tar_target( + name = single_plot_data_sa, + command = plot_combined_data(grouped_data_sa, figure_file_path), + pattern = map(grouped_data_sa), + iteration = "list", + deployment = "main" + ), + tar_target( + name = params_sa, + command = get_params(), + deployment = "main" + ), + + ## Fit the model ------------------------------------------------------------ + # get a stacked long dataframe containing the quantiles(estimated + # from all draws) and 100 samples of the draws from the posterior for the + # generated quantities and the parameters + tar_target( + name = df_of_filepaths_sa, + command = do.call(fit_model, c(list(train_data = grouped_data_sa), + list(params = params_sa), + model_file = model_file_sa, + config_vars_sa + )), + pattern = map(grouped_data_sa), + iteration = "group", + deployment = "worker" + ), + tar_target( + name = grouped_df_sa, + command = df_of_filepaths_sa %>% + group_by(location, model_type) %>% + distinct() %>% + targets::tar_group(), + iteration = "group" + ), + tar_target( + name = df_of_filepaths_us, + command = df_of_filepaths_sa %>% + filter(model_type == "state-level aggregated wastewater"), + deployment = "main" + ), + tar_target( + name = plot_single_location_hosp_draws_sa, + command = get_plot_draws(grouped_df_sa, + "pred_hosp", + figure_file_path, + show_calibration_data = FALSE + ), + pattern = map(grouped_df_sa), + iteration = "list", + deployment = "main" + ), + tar_target( + name = plot_single_location_ww_draws_sa, + command = get_plot_draws(df_of_filepaths_us, + "pred_ww", + figure_file_path, + show_calibration_data = FALSE + ), + deployment = "main" + ), + tar_target( + name = plot_rt_sa, + command = get_rt_from_draws( + grouped_df_sa, + figure_file_path + ), + pattern = map(grouped_df_sa), + iteration = "list", + deployment = "main" + ), + tar_target( + name = plot_params_sa, + command = get_plot_param_distribs( + grouped_df_sa, + figure_file_path + ), + pattern = map(grouped_df_sa), + iteration = "list", + deployment = "main" + ), + tar_target( + name = plot_single_location_comb_quantiles_sa, + command = get_combo_quantile_plot( + df_of_filepaths_us, + figure_file_path + ), + deployment = "main" + ), + + # Site level infection dynamics ----------------------------------- + tar_target( + name = config_vars_id, + command = get_config_vals(fp_config_yaml_id), + deployment = "main" + ), + tar_target( + name = output_file_path_id, + command = config_vars_id$output_file_path, + deployment = "main" + ), + tar_target( + name = create_output_dir_id, + command = create_dir(output_file_path_id), + deployment = "main" + ), + tar_target( + name = ww_data_raw_id, + command = do.call(get_ww_data, config_vars_id), + deployment = "main" + ), + tar_target( + name = train_data_orig_id, + command = do.call(get_all_training_data, c( + list( + ww_data_raw = ww_data_raw_id + ), + config_vars_id + )), + deployment = "main" + ), + tar_target( + name = train_data_id, + command = do.call(manual_removal_of_hosp_data, c( + list(train_data = train_data_orig_id), + config_vars_id + )), + deployment = "main" + ), + tar_target( + name = model_file_path_id, + command = config_vars_id$model_file_path, + format = "file", + deployment = "main" + ), + tar_target( + name = model_file_id, + command = ww_model(model_file_path_id), + deployment = "main" + ), + tar_target( + name = grouped_data_id, + command = train_data_id %>% + group_by(location) %>% + targets::tar_group(), + iteration = "group", + deployment = "main" + ), + tar_target( + name = params_id, + command = get_params(), + deployment = "main" + ), + + + ## Fit the model ------------------------------------------------------------ + # # get a stacked long dataframe containing the quantiles(estimated + # # from all draws) and 100 samples of the draws from the posterior for the + # # generated quantities and the parameters + tar_target( + name = df_of_filepaths_id, + command = do.call( + fit_site_level_model, + c(list(train_data = grouped_data_id), + list(params = params_id), + model_file = model_file_id, + config_vars_id + ) + ), + pattern = map(grouped_data_id), + iteration = "group", + deployment = "worker" + ), + # For plotting generated quantities + tar_target( + name = grouped_df_id, + command = df_of_filepaths_id %>% + filter(model_type == "site-level infection dynamics") %>% + group_by(location) %>% + targets::tar_group(), + iteration = "group", + deployment = "main" + ), + tar_target( + name = plot_single_location_hosp_draws_id, + command = get_plot_draws(grouped_df_id, + "pred_hosp", + figure_file_path, + show_calibration_data = FALSE + ), + pattern = map(grouped_df_id), + iteration = "list", + deployment = "main" + ), + tar_target( + name = plot_single_location_comb_quantiles_id, + command = get_combo_quantile_plot( + grouped_df_id, + figure_file_path + ), + pattern = map(grouped_df_id), + iteration = "list", + deployment = "main" + ), + tar_target( + name = plot_ww_site_level_quantiles_id, + command = get_ww_site_plots( + grouped_df_id, + figure_file_path + ), + pattern = map(grouped_df_id), + iteration = "list", + deployment = "main" + ), + tar_target( + name = plot_single_location_ww_draws_id, + command = get_plot_labsite_ww_draws( + grouped_df_id, + figure_file_path + ), + pattern = map(grouped_df_id), + iteration = "list", + deployment = "main" + ), + tar_target( + name = plot_rt_id, + command = get_rt_from_draws( + grouped_df_id, + figure_file_path + ), + pattern = map(grouped_df_id), + iteration = "list", + deployment = "main" + ), + tar_target( + name = plot_rt_site_level, + command = get_rt_site_level( + grouped_df_id, + figure_file_path + ), + pattern = map(grouped_df_id), + iteration = "list", + deployment = "main" + ), + tar_target( + name = plot_params_id, + command = get_plot_param_distribs( + grouped_df_id, + figure_file_path + ), + pattern = map(grouped_df_id), + iteration = "list", + deployment = "main" + ), + + + # Combine the model outputs----------------------------------------- + tar_target( + name = comb_df_filepaths, + command = rbind( + df_of_filepaths_ho, + df_of_filepaths_sa, + df_of_filepaths_id + ), + deployment = "main" + ), + tar_target( + name = grouped_df_comb, + command = comb_df_filepaths %>% + ungroup() %>% + group_by(location) %>% + targets::tar_group(), + iteration = "group", + deployment = "main" + ), + tar_target( + name = plot_mult_models, + command = get_plot_draws( + grouped_df_comb, + "pred_hosp", + grouping_var = "model_type", + figure_file_path, + show_calibration_data = FALSE + ), + pattern = map(grouped_df_comb), + iteration = "list", + deployment = "main" + ), + tar_target( + name = rt_box_plot_id, + command = get_rt_boxplot_across_states( + comb_df_filepaths %>% + ungroup() %>% + filter(model_type == "site-level infection dynamics"), + figure_file_path = file.path(figure_file_path, "combined_outputs") + ), + deployment = "main" + ), + tar_target( + name = rt_box_plot_ho, + command = get_rt_boxplot_across_states( + comb_df_filepaths %>% + ungroup() %>% + filter(model_type == "hospital admissions only"), + figure_file_path = file.path(figure_file_path, "combined_outputs") + ), + deployment = "main" + ), + tar_target( + name = pdf_file_path, + command = get_pdf_file_path( + output_file_path_id, + forecast_date, date_run + ), + deployment = "main" + ), + tar_target( + name = pdf_of_site_level_conc_id, + command = do.call( + save_to_pdf, + c( + list( + list_of_plots = + plot_ww_site_level_quantiles_id + ), + type_of_output = "site_level_inf_dynamics", + pdf_file_path = file.path(pdf_file_path, "internal"), + n_row = 1, + n_col = 1, + config_vars_id + ) + ), + deployment = "main" + ), + tar_target( + name = pdf_of_forecasts_id, + command = do.call( + save_to_pdf, + c( + list( + list_of_plots = + plot_single_location_comb_quantiles_id + ), + type_of_output = "hosp_and_ww_forecasts_site_level_inf_dyn", + pdf_file_path = file.path(pdf_file_path, "internal"), + n_row = 3, + n_col = 1, + config_vars_id + ) + ), + deployment = "main" + ), + tar_target( + name = pdf_of_forecast_comparisons, + command = do.call( + save_to_pdf, + c(list(list_of_plots = plot_mult_models), + type_of_output = "forecasts_from_mult_model_types", + pdf_file_path = file.path(pdf_file_path, "internal"), + n_row = 3, + n_col = 1, + config_vars_id + ) + ), + deployment = "main" + ), + # Get model run diagnostics for submission ------------------------------------- + tar_target( + name = full_diagnostics_df, + command = read_diagnostics_df(df_of_filepaths_id), + deployment = "main" + ), + tar_render( + name = diagnostic_report, + path = file.path("model_diagnostics", "diagnostic_report.Rmd"), + deployment = "main" + ), + + # Format data for the hub ---------------------------------------------------- + tar_target( + name = df_of_filepaths, + command = get_submission_filepath_df( + prod_model_type = prod_model_type, + hosp_only_states = hosp_only_states, + df_of_filepaths_inf_dyn = df_of_filepaths_id, + df_of_filepaths_agg = df_of_filepaths_us, + df_of_filepaths_hosp_only = df_of_filepaths_ho, + ), + deployment = "main" + ), + tar_target( + name = submission_file_path, + command = get_submission_file_path( + output_file_path_id, + forecast_date, + date_run + ), + deployment = "main" + ), + tar_target( + name = repo_file_path, + command = get_repo_forecast_file_path(forecast_date), + deployment = "main" + ), + tar_target( + name = hub_submission_df, + command = do.call( + get_df_for_hub_submission, + c( + list(df_of_filepaths = df_of_filepaths), + submission_file_path = submission_file_path, + repo_file_path = repo_file_path, + config_vars_id + ) + ), + deployment = "main" + ), + tar_target( + name = table_of_state_model_designations, + command = get_summarized_table( + hub_submission_df, + full_diagnostics_df, + hosp_only_states, + repo_file_path + ), + deployment = "main" + ), + tar_target( + name = pipeline_ww_metadata, + command = get_metadata_yaml( + full_diagnostics_df, + repo_file_path, + hosp_only_states + ) + ), + tar_target( + name = rt_box_plot_hub, + command = get_rt_boxplot_across_states( + df_of_filepaths, + figure_file_path = file.path(pdf_file_path, "internal") + ), + deployment = "main" + ), + tar_target( + name = us_run_complete, + command = "US" %in% hub_submission_df$location, + deployment = "main" + ), + tar_target( + name = pipeline_metadata, + command = do.call( + get_pipeline_metadata, + c( + us_run = us_run_complete, + config_vars_id + ) + ), + deployment = "main" + ), + tar_target( + name = grouped_hub_submission_df, + command = hub_submission_df %>% + ungroup() %>% + group_by(location) %>% + targets::tar_group(), + iteration = "group", + deployment = "main" + ), + tar_target( + name = plot_covidhub_submission, + command = get_plot_covidhub_submission(grouped_hub_submission_df), + pattern = map(grouped_hub_submission_df), + iteration = "list", + deployment = "main" + ), + tar_target( + name = pdf_of_hub_submissions, + command = do.call( + save_to_pdf, + c( + list( + list_of_plots = + plot_covidhub_submission + ), + type_of_output = "COVID_hub_submissions", + pdf_file_path = file.path(pdf_file_path, "external"), + n_row = 3, + n_col = 1, + config_vars_id + ) + ), + deployment = "main" + ) +) # end targets list diff --git a/cfaforecastrenewalww/.Rbuildignore b/cfaforecastrenewalww/.Rbuildignore new file mode 100644 index 00000000..20d8cc51 --- /dev/null +++ b/cfaforecastrenewalww/.Rbuildignore @@ -0,0 +1,10 @@ +^renv$ +^renv\.lock$ +^.*\.Rproj$ +^\.Rproj\.user$ +^inst/output/$ +^inst/input/$ +^_targets/$ +^data-raw$ + +^Makefile$ diff --git a/cfaforecastrenewalww/DESCRIPTION b/cfaforecastrenewalww/DESCRIPTION new file mode 100644 index 00000000..5c594260 --- /dev/null +++ b/cfaforecastrenewalww/DESCRIPTION @@ -0,0 +1,75 @@ +Package: cfaforecastrenewalww +Title: Wastewater informed COVID-19 hospital admissions forecasting +Version: 0.2.3.2000 +Authors@R: + c(person(given = "Kaitlyn", + family = "Johnson", + role = c("aut", "cre"), + email = "uox1@cdc.gov"), + person(given = "Sam Abbott", + role = c("aut"), + email = "contact@samabbott.co.uk", + comment = c(ORCID = "0000-0001-8057-8037")), + person(given = "Zachary", + family = "Susswein", + role = c("aut"), + email = "utb2@cdc.gov"), + person(given = "Andrew", + family = "Magee", + role = c("aut"), + email = "rzg0@cdc.gov"), + person(given = "Dylan", + family = "Morris", + role = c("aut"), + email = "dylan@dylanhmorris.com"), + person(given = "Scott", + family = "Olesen", + role = c("aut"), + email = "ulp7@cdc.gov")) +Description: Put something here +License: Apache 2.0 LICENSE +URL: https://github.com/cdcgov/wastewater-informed-covid-forecasting/ +BugReports: https://github.com/cdcgov/wastewater-informed-covid-forecasting/issues/ +Depends: + R (>= 4.3.0) +Imports: + dplyr, + here, + yaml, + tidybayes, + cmdstanr (>= 0.7.1), + zoo, + lubridate, + ggplot2, + boot, + cli, + scales, + tibble, + soql, + parallel, + data.table, + readr, + fs, + glue, + arrow, + jsonlite, + posterior, + scoringutils, + tidyr, + targets, + tarchetypes, + gridExtra, + rlang +VignetteBuilder: + knitr +Suggests: + rmarkdown, + covidcast, + httr, + knitr +Additional_repositories: https://mc-stan.org/r-packages/ +SystemRequirements: CmdStan (>=2.34.1) +RoxygenNote: 7.3.1 +Encoding: UTF-8 +LazyData: true +Config/testthat/edition: 3 diff --git a/cfaforecastrenewalww/NAMESPACE b/cfaforecastrenewalww/NAMESPACE new file mode 100644 index 00000000..7c74c512 --- /dev/null +++ b/cfaforecastrenewalww/NAMESPACE @@ -0,0 +1,149 @@ +# Generated by roxygen2: do not edit by hand + +export(add_pmfs) +export(aggregate_ww) +export(boxplot_whiskers) +export(categorical_entropy) +export(cleanup_secrets) +export(convert_to_logmean) +export(convert_to_logsd) +export(create_dir) +export(drop_first_and_renormalize) +export(entropy) +export(fit_model) +export(fit_site_level_model) +export(flag_ww_outliers) +export(format_hosp_draws_hub_sub) +export(generate_simulated_data) +export(get_all_quantiles) +export(get_all_training_data) +export(get_combo_quantile_plot) +export(get_config_vals) +export(get_df_for_hub_submission) +export(get_df_of_filepaths) +export(get_diagnostics) +export(get_figure_file_path) +export(get_full_param_distrib) +export(get_gen_quants_draws) +export(get_generated_quantities_draws) +export(get_generation_interval_gamma) +export(get_generation_interval_lnorm) +export(get_hosp_data) +export(get_hosp_reporting_delay) +export(get_ind_m) +export(get_ind_m_cum_sum) +export(get_init_fun) +export(get_low_case_count_diagnostic) +export(get_metadata) +export(get_metadata_yaml) +export(get_model_file_name) +export(get_model_file_path) +export(get_model_param_df) +export(get_nearest_forecast_date) +export(get_param_samples_long_df) +export(get_parameter_draws) +export(get_params) +export(get_pars) +export(get_pdf_file_path) +export(get_pipeline_metadata) +export(get_plot_covidhub_submission) +export(get_plot_draws) +export(get_plot_labsite_ww_draws) +export(get_plot_metadata) +export(get_plot_param_distribs) +export(get_ppa_long) +export(get_quantiles) +export(get_quantiles_on_site_level_ww) +export(get_random_string) +export(get_raw_param_draws) +export(get_regions_for_mapping) +export(get_repo_forecast_file_path) +export(get_rt_boxplot_across_states) +export(get_rt_from_draws) +export(get_rt_site_level) +export(get_scores) +export(get_secret) +export(get_site_county_map) +export(get_stan_data) +export(get_stan_data_site_level_model) +export(get_state_level_hosp_data) +export(get_state_level_summary) +export(get_submission_file_path) +export(get_submission_filepath_df) +export(get_summarized_table) +export(get_summary_stats) +export(get_testing_data) +export(get_training_data) +export(get_wastewater_diagnostic) +export(get_weekly_summary) +export(get_ww_data) +export(get_ww_site_plots) +export(init_subset_nwss_data) +export(loc_abbr_to_flusight_code) +export(log_standardize) +export(make_hospital_onset_delay_pmf) +export(make_incubation_period_pmf) +export(make_pps_data) +export(make_reporting_delay_pmf) +export(manual_removal_of_hosp_data) +export(max_delta) +export(nhsn_soda_query) +export(pivot_data_for_plotting) +export(plot_combined_data) +export(plot_quantiles) +export(posterior_predictive_analysis) +export(pull_nhsn) +export(read_diagnostics_df) +export(render_diagnostic_report) +export(save_timestamped_nwss_data) +export(save_to_pdf) +export(setup_secrets) +export(simulate_double_censored_pmf) +export(soql_is_in) +export(standardize) +export(summarize_scores) +export(to_simplex) +export(trajectories_to_quantiles) +export(varies) +export(ww_model) +export(zoom_boxplot_y) +import(boot) +import(cmdstanr) +import(dplyr) +import(ggplot2) +import(here) +import(lubridate) +import(tidybayes) +import(yaml) +import(zoo) +importFrom(arrow,read_ipc_stream) +importFrom(arrow,read_parquet) +importFrom(arrow,write_parquet) +importFrom(glue,glue) +importFrom(grDevices,boxplot.stats) +importFrom(jsonlite,fromJSON) +importFrom(posterior,as_draws) +importFrom(posterior,subset_draws) +importFrom(posterior,summarize_draws) +importFrom(readr,read_csv) +importFrom(readr,write_csv) +importFrom(scoringutils,add_coverage) +importFrom(scoringutils,score) +importFrom(scoringutils,summarize_scores) +importFrom(stats,dgamma) +importFrom(stats,dlnorm) +importFrom(stats,dnbinom) +importFrom(stats,dweibull) +importFrom(stats,ecdf) +importFrom(stats,mad) +importFrom(stats,median) +importFrom(stats,qlogis) +importFrom(stats,quantile) +importFrom(stats,rlnorm) +importFrom(stats,rnbinom) +importFrom(stats,rnorm) +importFrom(stats,sd) +importFrom(stats,time) +importFrom(tidyr,unnest) +importFrom(utils,tail) +importFrom(utils,write.table) diff --git a/cfaforecastrenewalww/R/EDA_utils.R b/cfaforecastrenewalww/R/EDA_utils.R new file mode 100644 index 00000000..8453ed9a --- /dev/null +++ b/cfaforecastrenewalww/R/EDA_utils.R @@ -0,0 +1,68 @@ +# Functions used in EDA.Rmd----------------------------------------------------- + +#' Get y range required to zoom a boxplot in to ignore outliers +#' df is the data, x the grouping variable, y the variable to be boxplotted +#' @export +zoom_boxplot_y <- function(df, x, y) { + whisker_df <- df %>% reframe(boxplot_whiskers(!!sym(y)), .by = !!sym(x)) + return(range(whisker_df[[2]])) +} + +#' Get the upper and lower ends of the whiskers of a single boxplot of data in x +#' @export +boxplot_whiskers <- function(x) { + boxplot.stats(x)$stats[c(1, 5)] +} + +#' x -> (x - location(x))/dispersion(x) +#' location is mean, dispersion is SD or MAD +#' @export +standardize <- function(x, use_mad = FALSE) { + denom <- sd(x, na.rm = TRUE) + if (use_mad) { + denom <- mad(x, na.rm = TRUE) + } + (x - mean(x, na.rm = TRUE)) / denom +} + +#' As standardize, but on log scale, possibly removing zeros (or near-zeros) +#' @export +log_standardize <- function(x, use_mad = FALSE, zero_threshold = 1e-8) { + x[x < zero_threshold] <- NA + standardize(log(x), use_mad = use_mad) +} + +#' Entropy of probability mass function p +#' @export +entropy <- function(p) { + summand <- p * log(p) + -sum(summand[is.finite(summand)]) +} + +#' Entropy of sample from categorical distribution +#' @export +categorical_entropy <- function(x, cats = NA) { + n <- length(x) + if (any(is.na(cats))) { + cats <- unique(x) + } + p <- sapply(cats, function(k) { + sum(x == k) / n + }) + return(entropy(p)) +} + +#' Is there any variation in x? +#' @export +varies <- function(x, exclude_na = TRUE) { + if (exclude_na) { + x <- x[!is.na(x)] + } + length(unique(x)) > 1 +} + +#' Maximum finite difference of x +#' @export +max_delta <- function(x) { + max(abs(x[-1] - x[-length(x)])) +} diff --git a/cfaforecastrenewalww/R/cfaforecastrenewalww-package.R b/cfaforecastrenewalww/R/cfaforecastrenewalww-package.R new file mode 100644 index 00000000..56413e96 --- /dev/null +++ b/cfaforecastrenewalww/R/cfaforecastrenewalww-package.R @@ -0,0 +1,32 @@ +#' @keywords internal +"_PACKAGE" + +## usethis namespace: start +#' @import dplyr +#' @import ggplot2 +#' @import lubridate +#' @import here +#' @import cmdstanr +#' @import yaml +#' @import tidybayes +#' @import zoo +#' @import boot +## usethis namespace: end +NULL + +#' @importFrom arrow read_parquet read_ipc_stream write_parquet +#' @importFrom jsonlite fromJSON +#' @importFrom posterior subset_draws summarize_draws as_draws +#' @importFrom grDevices boxplot.stats +#' @importFrom stats dgamma dlnorm dnbinom dweibull ecdf mad median qlogis quantile +#' rnbinom rnorm sd time rlnorm +#' @importFrom utils tail write.table +#' @importFrom scoringutils score summarize_scores add_coverage +#' @importFrom tidyr unnest +#' @importFrom readr read_csv write_csv +#' @importFrom glue glue +NULL + +# This is currently causing conflicts with dplyr. +# For now it is enough to add it in DESCRIPTION. +# @import data.table diff --git a/cfaforecastrenewalww/R/data.R b/cfaforecastrenewalww/R/data.R new file mode 100644 index 00000000..4d74bb5d --- /dev/null +++ b/cfaforecastrenewalww/R/data.R @@ -0,0 +1,30 @@ +#' Example input data set +#' +#' SOME HIGH-LEVEL DESCRIPTION OF THE DATA. MAYBE JUST POINT READERS TO +#' THE FUNCTION THAT GENERATES IT? +#' +#' @format ## example_df +#' A data frame with 635 rows and 13 columns +#' \describe{ +#' \item{t}{Time} +#' \item{lab_wwtp_unique_id}{Unique identifier for each unique combination +#' of sampling site and testing lab} +#' \item{log_conc}{Genome copied per liter, log10} +#' ETC. +#' } +"example_df" + +#' Example input parameters +#' +#' SOME HIGH-LEVEL DESCRIPTION OF THE DATA, INCLUDING HOW DERIVED +#' +#' @format ## param_df +#' A data frame with 305 rows and 4 columns +#' \describe{ +#' \item{name}{Parameter name} +#' \item{true_value}{} +#' \item{index_rows}{} +#' \item{index_cols}{} +#' } +#' @source wwww.wherever.com +"param_df" diff --git a/cfaforecastrenewalww/R/delay_distribs.R b/cfaforecastrenewalww/R/delay_distribs.R new file mode 100644 index 00000000..52b4042d --- /dev/null +++ b/cfaforecastrenewalww/R/delay_distribs.R @@ -0,0 +1,230 @@ +#' Get the generation interval from a gamma distribution +#' +#' @param mean_gi +#' @param stdev_gi +#' @param gt_max +#' +#' @return a normalized generation interval assuming gamma distribution +#' @export +#' +#' @examples +get_generation_interval_gamma <- function(mean_gi, stdev_gi, gt_max) { + a <- (mean_gi^2) / (stdev_gi^2) + b <- mean_gi / (stdev_gi^2) + + generation_interval <- dgamma(seq(0, gt_max - 1, 1), shape = a, scale = b) + # make sure to normalize so it always sums to 1 + generation_interval <- generation_interval / sum(generation_interval) + return(generation_interval) +} + +#' Get the generation interval from a lognormal distribution +#' +#' @param mu +#' @param sigma +#' @param gt_max +#' +#' @return a normalized generation interval assuming a lognormal distribution +#' @export +#' +#' @examples +get_generation_interval_lnorm <- function(mu = 0.92877, + sigma = 0.526, + gt_max = 15) { + generation_interval <- dlnorm(seq(0, gt_max - 1, 1), + meanlog = mu, + sdlog = sigma + ) + # make sure to normalize so it always sums to 1 + generation_interval <- generation_interval / sum(generation_interval) + + return(generation_interval) +} + +#' Drop the first element of a simplex +#' +#' When this vector corresponds to the generation interval distribution, we +#' want to drop this first bin. The renewal equation assumes that same-day +#' infection and onward transmission does not occur, and we assume +#' everything is 1 indexed not 0 indeced. We need to +#' manually drop the first element from the PMF vector. +#' +#' @param x A numeric vector, sums to 1. Corresponds to a discretized PDF or PMF +#' (usually the GI distribution). +#' +#' @return A numeric vector, sums to 1. +#' @export +drop_first_and_renormalize <- function(x) { + # Check input sums to 1 + stopifnot(abs(sum(x) - 1) < 1e-8) + # Drop and renormalize + y <- x[2:length(x)] / sum(x[2:length(x)]) + vec_outside_tol <- abs(sum(y) - 1L) > 1e-10 + # Normalize until within tolerance + while (vec_outside_tol) { + y <- y / sum(y) + vec_outside_tol <- abs(sum(y) - 1L) > 1e-10 + } + return(y) +} + +#' Simulate daily double censored PMF. From {epinowcast}: +#' https://package.epinowcast.org/dev/reference/simulate_double_censored_pmf.html +#' +#' This function simulates the probability mass function of a daily +#' double-censored process. The process involves two distributions: a primary +#' distribution which represents the censoring process for the primary event +#' and another distribution (which is offset by the primary). +#' +#' Based off of: +#' https://www.medrxiv.org/content/10.1101/2024.01.12.24301247v1 +#' +#' @param max Maximum value for the computed CDF. If not specified, the maximum +#' value is the maximum simulated delay. +#' @param fun_primary Primary distribution function (default is \code{runif}). +#' @param fun_dist Distribution function to be added to the primary (default is +#' \code{rlnorm}). +#' @param n Number of simulations (default is 1e6). +#' @param primary_args List of additional arguments to be passed to the primary +#' distribution function. +#' @param dist_args List of additional arguments to be passed to the +#' distribution function. +#' @param ... Additional arguments to be passed to the distribution function. +#' This is an alternative to `dist_args`. +#' +#' @return A numeric vector representing the PMF. +#' @export +#' @family modelmodulehelpers +#' @examples +#' simulate_double_censored_pmf(10, meanlog = 0, sdlog = 1) +simulate_double_censored_pmf <- function( + max, fun_primary = stats::runif, primary_args = list(), + fun_dist = stats::rlnorm, + dist_args = list(...), n = 1e6, ...) { + primary <- do.call(fun_primary, c(list(n), primary_args)) + secondary <- primary + do.call(fun_dist, c(list(n), dist_args)) + delay <- floor(secondary) - floor(primary) + if (missing(max)) { + max <- base::max(delay) + } + cdf <- ecdf(delay)(0:max) + pmf <- c(cdf[1], diff(cdf)) + vec_outside_tol <- abs(sum(pmf) - 1L) > 1e-10 + while (vec_outside_tol) { + pmf <- pmf / sum(pmf) + vec_outside_tol <- abs(sum(pmf) - 1L) > 1e-10 + } + return(pmf) +} + + +#' @title Make reporting delay pmf +#' @description +#' Convolve the incubation period pmf with the symptom to hospital admission pmf +#' and normalize +#' +#' @param incubation_period_pmf +#' @param hospital_onset_delay_pmf +#' +#' @return convolution of incubation period and sympton onset to hospital +#' admission pmf +#' @export +#' +#' @examples +make_reporting_delay_pmf <- function(incubation_period_pmf, hospital_onset_delay_pmf) { + pmfs <- list( + "incubation_period" = incubation_period_pmf, + "hosp_onset_delay" = hospital_onset_delay_pmf + ) + + infection_to_hosp_delay_pmf <- add_pmfs(pmfs) %>% + (\(x) x / sum(x))() + return(infection_to_hosp_delay_pmf) +} + + +#' @title Make incubation period pmf +#' @description This uses NNH's logic and workflow to make a pmf corresponding to +#' the incubation period for COVID after Omicron used in Park et al 2023 +#' (which we also use for the +#' lognormal generation interval). These estimates are from early Omicron. +#' +#' @return pmf of incubation period +#' @export +#' +#' @examples +make_incubation_period_pmf <- function(backward_scale = 3.60, + backward_shape = 1.50, + r = 0.15) { + # From: Park, Sang Woo, et al. "Inferring the differences in incubation-period + # and generation-interval distributions of the Delta and Omicron variants of + # SARS-CoV-2." Proceedings of the National Academy of Sciences 120.22 (2023): + # e2221887120. + + # "However, when we account for growth-rate differences and reestimate the + # forward incubation periods, we find that both variants have similar + # incubation-period distributions with a mean of 4.1 d (95% CI: 3.8 to 4.4 d) + # for the Delta variant and 4.2 d (95% CI: 3.6 to 4.9 d) for the Omicron + # variant Fig. 3B)." + + # https://github.com/parksw3/omicron-generation/blob/master/scripts/calculate_incubation_mle.R + # https://github.com/parksw3/omicron-generation/blob/master/rdacache/calculate_incubation_mle.rda + # Fits a Weibull to the data + + # Relies on fundamental assumption about epidemic growth rate. + + # Lognormal mean and sd to check + mu <- 1.245956 + sigma <- 0.5872772 + + # exp(mu + 0.5 * sigma**2) = 4.131 \appox 4.2 + # Close but not but exactly the 4.2 reported. I checked by cloning the repo + # and rerunning the code, which produces the same slightly different results. + # Perhaps a misreading of 4.13 as 4.18? + # The estimate for non-sgtf (Delta) matches the reported result: + # exp(1.26321 + 0.5 * 0.5378194**2) = 4.087 \approx 4.1 + + # "Since incubation-period data are not provided, we are not able to fit Eq. 2 + # directly; instead, we take the backward incubation-period distributions + # bI(x) estimated by ref. 4, which was originally assumed to follow a Weibull + # distribution, and apply Eq. 2. In particular, ref. 4 estimated the scale and + # shape parameters of the Weibull distribution to be 4.93 (95% CI: 4.51 to + # 5.37) and 1.83 (95% CI: 1.59 to 2.08), respectively, for the Delta cases, + # and 3.60 (95% CI: 3.23 to 3.98) and 1.50 (95% CI: 1.32 to 1.70), + # respectively, for Omicron cases." + + # This is what's plotted in Fig. 2B + # https://github.com/parksw3/omicron-generation/blob/d36d4568bfd3b3d389b30282758b9c322cfe2b9f/figure/figure_incubation.R#L23C1-L23C1 # nolint + corrected_sgtf <- tibble( + time = seq(0, 23, by = 1), # 23 seems to get most of the distribution mass + density0 = dweibull(time, shape = backward_shape, scale = backward_scale) * exp(r * time) + ) + + # Check: + # sum(corrected_sgtf$time * corrected_sgtf$density0)/sum(corrected_sgtf$density0) = + # 4.134 \approx exp(mu + 0.5 * sigma**2) + + inc_period_pmf <- corrected_sgtf$density0 / sum(corrected_sgtf$density0) + return(inc_period_pmf) +} + + +#' @title Make hospital onset delay pmf +#' @description Uses the parameter estimates from cfa-parameter-estimates, +#' which is based on Danache et al linelist data from symptom onset to hospital +#' admission. See below: +#' https://journals.plos.org/plosone/article?id=10.1371/journal.pone.0261428 +#' +#' @param neg_binom_mu +#' @param neg_binom_size +#' +#' @return pmf of distribution from symptom onset to hospital admission +#' @export +#' +#' @examples +make_hospital_onset_delay_pmf <- function(neg_binom_mu = 6.98665, neg_binom_size = 2.490848) { + density <- dnbinom(x = seq(0, 30, 1), mu = neg_binom_mu, size = neg_binom_size) + hosp_onset_delay_pmf <- density / sum(density) + + return(hosp_onset_delay_pmf) +} diff --git a/cfaforecastrenewalww/R/fit_model.R b/cfaforecastrenewalww/R/fit_model.R new file mode 100644 index 00000000..c00f9049 --- /dev/null +++ b/cfaforecastrenewalww/R/fit_model.R @@ -0,0 +1,828 @@ +# These functions are the worker functions that take in the training data in +# a format specific for the model operation, format it for stan, run the model, +# and format the outputs into a single dataframe containing quantiles and draws +# of generated quantities and parameters + +#' This code was adapted from code written +#' (under an MIT license) as part of the `epinowcast` +#' package (https://github.com/epinowcast/epinowcast) + +# Compile a stan model and include stan function files +#' ww_model +#' @description +#' This function compiles the stan model, and is written to include the 'stan' +#' folder. Within each stan file, to include the functions, use #include +#' functions/{your_function_file}.stan +#' +#' +#' @param model +#' @param include +#' @param compile +#' @param threads +#' @param target_dir +#' @param stanc_options +#' @param cpp_options +#' @param verbose +#' @param ... +#' +#' @return +#' @export +#' +#' @examples +ww_model <- function(model, + include = system.file("stan", + package = "cfaforecastrenewalww" + ), + compile = TRUE, threads = FALSE, + target_dir = tempdir(), stanc_options = list(), + cpp_options = list(), verbose = TRUE, ...) { + if (verbose) { + message(glue::glue("Using model {model}.")) + message(sprintf("include is %s.", toString(include))) + } + + if (compile) { + monitor <- suppressMessages + if (verbose) { + monitor <- function(x) { + return(x) + } + } + cpp_options$stan_threads <- threads + model <- monitor(cmdstanr::cmdstan_model( + model, + include_paths = include, + stanc_options = stanc_options, + cpp_options = cpp_options, + ... + )) + } + return(model) +} + + + +#' Get dataframe of filepaths +#' +#' @param location +#' @param model_type +#' @param forecast_date +#' @param date_run +#' @param run_id +#' @param output_file_path +#' +#' @return +#' @export +#' +#' @examples +get_df_of_filepaths <- function(location, model_type, + forecast_date, + date_run, + run_id, + output_file_path) { + # Specify the filepaths for each output type + model_draws_file_path <- file.path( + output_file_path, "raw", location, model_type, "draws", forecast_date, + glue::glue("run-on-{date_run}-{run_id}-draws.parquet") + ) + quantiles_file_path <- file.path( + output_file_path, "raw", location, model_type, "quantiles", forecast_date, + glue::glue("run-on-{date_run}-{run_id}-quantiles.parquet") + ) + parameters_file_path <- file.path( + output_file_path, "raw", location, model_type, "parameters", forecast_date, + glue::glue("run-on-{date_run}-{run_id}-parameters.parquet") + ) + future_hosp_draws_file_path <- file.path( + output_file_path, "raw", location, model_type, "future_hosp_draws", + forecast_date, + glue::glue("run-on-{date_run}-{run_id}-future_hosp_draws.parquet") + ) + diagnostics_file_path <- file.path( + output_file_path, "raw", location, model_type, "diagnostics", forecast_date, + glue::glue("run-on-{date_run}-{run_id}-diagnostics.csv") + ) + + df <- data.frame( + forecast_date, location, model_type, + model_draws_file_path, quantiles_file_path, + future_hosp_draws_file_path, + parameters_file_path, + diagnostics_file_path + ) + return(df) +} + + + +# Fit the model using aggregated WW data --------------------------------------- + +#' @title Fit site level model +#' @description Takes in the training data, which is a long dataframe with all the +#' site level WW observations plus the observed hospitalizations. +#' Fit the stan model to a single slice of data +#' +#' @param train_data for a single location +#' @param params of the model, these should be the same across all runs +#' @param forecast_date +#' @param forecast_time +#' @param include_hosp +#' @param compute_likelihood +#' @param damp_type +#' @param n_draws +#' @param n_chains +#' @param iter_sampling +#' @param iter_warmup +#' @param n_parallel_chains +#' @param adapt_delta +#' @param max_treedepth +#' @param model_file compiled stan model (an upstream target) +#' @param model_file_path +#' @param write_files +#' +#' @return a dataframe with 100 model draws for all time points for WW +#' concentraiton, hospitalizaitons, hosp per 100k, and the matched data +#' @export +#' +#' @examples +fit_model <- function(train_data, params, + model_file, + forecast_date, + run_id, + date_run, + forecast_time, + model_type, + generation_interval, + inf_to_hosp, + infection_feedback_pmf, + include_hosp, + compute_likelihood, + n_draws, n_chains, + iter_sampling, + iter_warmup, + n_parallel_chains, + adapt_delta, + max_treedepth, + output_file_path, + write_files = TRUE, + ...) { + # This will act on training data for a single location + + # Need to get all the components we need for the stan model + stan_data <- get_stan_data( + train_data, params, + forecast_date, forecast_time, + include_hosp, + compute_likelihood, + generation_interval, + inf_to_hosp, + infection_feedback_pmf + ) + metadata_df <- get_metadata(train_data) + forecast_date <- metadata_df$forecast_date + location <- metadata_df$location + last_hosp_data_date <- metadata_df$last_hosp_data_date + pop <- metadata_df$pop + hosp_reporting_delay <- metadata_df$hosp_reporting_delay + include_ww <- metadata_df$include_ww + min_date <- min(train_data$date) + max_date <- ymd(forecast_date + days(forecast_time)) + dates <- seq( + from = min_date, + to = max_date, + by = "days" + ) + message("Forecast date: ", forecast_date) + + model_type <- ifelse(include_ww == 1, "state-level aggregated wastewater", + "hospital admissions only" + ) + df_of_filepaths <- get_df_of_filepaths( + location, model_type, forecast_date, + date_run, run_id, + output_file_path + ) + + if (all(is.na(train_data$ww)) && include_ww == 1) { + message( + unique(train_data$location), + " does not contain any WW data, run hospital admissions only model" + ) + + # Set model type to look for the hospital admissions only model + model_type <- "hospital admissions only" + + df <- get_df_of_filepaths( + location, model_type, forecast_date, + date_run, run_id, + output_file_path + ) + } else { # fit the model + + t <- seq(from = 1, to = length(dates), by = 1) + + date_df <- data.frame(date = dates, t = t) + + if (file.exists(df_of_filepaths$model_draws_file_path)) { + # Just pass the filepath with the metadata + df <- df_of_filepaths + } else { + init_fun <- function() { + state_agg_inits(train_data, params, stan_data) + } + + fit_dynamic_rt <- model_file$sample( + data = stan_data, + seed = 123, + init = init_fun, + iter_sampling = iter_sampling, + iter_warmup = iter_warmup, + chains = n_chains, + parallel_chains = n_parallel_chains, + adapt_delta = adapt_delta, + max_treedepth = max_treedepth, + ) + + # get model draws for all parameters + all_draws <- fit_dynamic_rt$draws() + + # Grabs just predicted hospitalizations, WW concentration, and hosp per 100k + gen_quants_draws <- get_generated_quantities_draws(all_draws) + + + + # First make the dataframe with the generated quantities + gen_quants_draws <- gen_quants_draws %>% + mutate( + include_ww = include_ww, + forecast_date = forecast_date, + hosp_reporting_delay = hosp_reporting_delay, + location = location, + data_type = "draw" + ) %>% + filter(name %in% c( + "pred_hosp", "pred_ww", "R(t)", + "p_hosp", "exp_state_ww_conc" + )) %>% + left_join(date_df, by = "t") %>% + left_join(train_data %>% select( + t, date, ww, daily_hosp_admits, + daily_hosp_admits_for_eval, pop + ), by = c("date", "t")) + + + hosp_per_100k <- gen_quants_draws %>% + filter(name == "pred_hosp") %>% # grab the generated quantities + mutate( + name = "pred_hosp_per_100k", + value = 1e5 * value / pop + ) + + gen_quants_draws <- rbind(gen_quants_draws, hosp_per_100k) + + + # Make a column for matched observed data + gen_quants_draws <- gen_quants_draws %>% + mutate( + obs_data = case_when( + name == "pred_hosp" ~ daily_hosp_admits_for_eval, + name == "pred_hosp_per_100k" ~ 1e5 * daily_hosp_admits_for_eval / pop, + name == "pred_ww" ~ ww, + TRUE ~ NA + ), + # Column for period + period = case_when( + date <= last_hosp_data_date ~ "calibration", + (date > last_hosp_data_date & date <= forecast_date) ~ "nowcast", + date > forecast_date ~ "forecast" + ) + ) %>% + ungroup() + + # Get the quantiles on hospitalizations and WW concentration + quantiles <- get_all_quantiles(gen_quants_draws %>% + filter(name %in% c( + "pred_hosp", "pred_ww", + "R(t)", "exp_state_ww_conc" + ))) %>% + mutate(model_type = ifelse( + include_ww == 1, + "state-level aggregated wastewater", + "hospital admissions only" + )) + + # Get a subset of the draws + gen_quants_draws <- gen_quants_draws %>% + select( + name, t, value, draw, include_ww, forecast_date, + hosp_reporting_delay, + location, date, ww, daily_hosp_admits, daily_hosp_admits_for_eval, + pop, obs_data, period + ) %>% + mutate( + model_type = ifelse(include_ww == 1, "state-level aggregated wastewater", + "hospital admissions only" + ) + ) %>% + filter(draw %in% c(sample(1:max(draw), n_draws))) + + # Make one for just future hospital admissions draws + future_hosp_draws <- gen_quants_draws %>% + filter(name == "pred_hosp", date >= forecast_date + days(1)) + + + + # Then make the one for the parameter draws + parameter_draws <- get_raw_param_draws(all_draws) + parameter_draws <- parameter_draws %>% + mutate( + data_type = "draw", + forecast_date = forecast_date, + include_ww = include_ww, + location = location, + hosp_reporting_delay = hosp_reporting_delay, + pop = pop, + model_type = ifelse(include_ww == 1, "state-level aggregated wastewater", + "hospital admissions only" + ) + ) + + diagnostics <- get_diagnostics( + fit_dynamic_rt, train_data, location, + model_type, forecast_date + ) + + # Make a 1 row dataframe that contains the metadata combined with the + # filepath where the dataframes of draws, quantiles, and parquets are saved + df <- df_of_filepaths + + if (isTRUE(write_files)) { + # Need to create each of these new folders + create_dir(file.path( + output_file_path, "raw", location, model_type, + "future_hosp_draws", forecast_date + )) + create_dir(file.path( + output_file_path, "raw", location, model_type, + "draws", forecast_date + )) + create_dir(file.path( + output_file_path, "raw", location, model_type, + "quantiles", forecast_date + )) + create_dir(file.path( + output_file_path, "raw", location, model_type, + "parameters", forecast_date + )) + create_dir(file.path( + output_file_path, "raw", location, model_type, + "diagnostics", forecast_date + )) + create_dir(file.path( + output_file_path, "raw", location, model_type, + "stan_objects", forecast_date, + glue::glue("run-on-{date_run}-{run_id}") + )) + + arrow::write_parquet( + x = gen_quants_draws, + sink = df$model_draws_file_path + ) + arrow::write_parquet( + x = quantiles, + sink = df$quantiles_file_path + ) + arrow::write_parquet( + x = parameter_draws, + sink = df$parameters_file_path + ) + arrow::write_parquet( + x = future_hosp_draws, + sink = df$future_hosp_draws_file_path + ) + readr::write_csv( + diagnostics, df$diagnostics_file_path + ) + + fit_dynamic_rt$save_output_files( + dir = file.path( + output_file_path, "raw", location, model_type, + "stan_objects", forecast_date, + glue::glue("run-on-{date_run}-{run_id}") + ) + ) + } + } # end else for if filepath exists + } # end else for if wastewater data + + return(df) +} + + +#' Fit the stan model to a single slice of data +#' +#' @param train_data for a single location +#' @param params of the model, these should be the same across all runs +#' @param config_vars tells the model whether or not to include WW, +#' include hosp, compute likelihood, and what damp type. +#' @param model_file compiled stan model (an upstream target) +#' +#' @return a dataframe with 100 model draws for all time points for WW +#' concentraiton, hospitalizaitons, hosp per 100k, and the matched data +#' @export +#' +#' @examples +fit_site_level_model <- function(train_data, params, + model_file, + forecast_date, + run_id, + date_run, + forecast_time, + generation_interval, + inf_to_hosp, + infection_feedback_pmf, + model_type, + output_file_path, + include_hosp = 1, + compute_likelihood = 1, + n_draws = 100, + n_chains = 4, + iter_sampling = 500, + iter_warmup = 250, + n_parallel_chains = 4, + write_files = TRUE, + output_full_df = FALSE, + ...) { + # Get the single model run variables and make them into global variables + metadata_df <- get_metadata(train_data) + forecast_date <- metadata_df$forecast_date + location <- metadata_df$location + last_hosp_data_date <- metadata_df$last_hosp_data_date + pop <- metadata_df$pop + hosp_reporting_delay <- metadata_df$hosp_reporting_delay + include_ww <- metadata_df$include_ww + min_date <- min(train_data$date) + max_date <- ymd(forecast_date + days(forecast_time)) + dates <- seq( + from = min_date, + to = max_date, + by = "days" + ) + t <- seq(from = 1, to = length(dates), by = 1) + + date_df <- data.frame(date = dates, t = t) + + # Check that there is any wastewater. + # If there's not, include_ww =0, model_type = hospital_admissions_only + if (all(is.na(train_data$ww))) { + message( + unique(train_data$location), + " does not contain any WW data, run hospital admissions only model" + ) + + # Set model type to look for the hospital admissions only model + model_type <- "hospital admissions only" + + df_of_filepaths <- get_df_of_filepaths( + location, model_type, forecast_date, + date_run, run_id, + output_file_path + ) + # Still make the dataframe to be returned, but point it to the hospital + # admissions only output + df <- df_of_filepaths + } else { # Otherwise, do everything else + + df_of_filepaths <- get_df_of_filepaths( + location, model_type, forecast_date, + date_run, run_id, + output_file_path + ) + + if (file.exists(df_of_filepaths$model_draws_file_path)) { + # Just pass the filepath with the metadata + df <- df_of_filepaths + message("Model results already exist, returning path to model results") + } else { + # Flag WW outliers + train_data <- flag_ww_outliers(train_data) + + + # Need to get all the components we need for the stan model + stan_data <- get_stan_data_site_level_model( + train_data, params, + forecast_date, forecast_time, + model_type, + generation_interval, + inf_to_hosp, + infection_feedback_pmf, + include_hosp, + compute_likelihood + ) + + if (model_type == "site-level time-varying concentration") { + init_fun <- function() { + time_varying_conc_inits(train_data, params, stan_data) + } + } else if (model_type == "site-level observation error") { + init_fun <- function() { + site_level_obs_inits(train_data, params, stan_data) + } + } else if (model_type == "site-level infection dynamics") { + init_fun <- function() { + site_level_inf_inits(train_data, params, stan_data) + } + } else { + message("Model type not specified properly") + } + + fit_dynamic_rt <- model_file$sample( + data = stan_data, + seed = 123, + init = init_fun, + iter_sampling = iter_sampling, + iter_warmup = iter_warmup, + chains = n_chains, + adapt_delta = 0.99, + parallel_chains = n_parallel_chains + ) + print("Model ran") + + # get model draws for all parameters + all_draws <- fit_dynamic_rt$draws() + + # Grabs just predicted hospitalizations, WW concentration, + # and hosp per 100k + gen_quants_draws <- get_gen_quants_draws( + all_draws, model_type + ) + + # First make the dataframe with the generated quantities + gen_quants_draws_non_ww <- gen_quants_draws %>% + filter(name != "pred_ww") %>% + mutate( + include_ww = include_ww, + forecast_date = forecast_date, + hosp_reporting_delay = hosp_reporting_delay, + location = location, + data_type = "draw" + ) %>% + filter(name %in% c( + "pred_hosp", "R(t)", "p_hosp", + "exp_state_ww_conc" + )) %>% + left_join(date_df, by = "t") %>% + left_join( + train_data %>% + select( + t, date, daily_hosp_admits, + daily_hosp_admits_for_eval, pop + ) %>% + distinct(), + by = c("date", "t") + ) %>% + mutate( + ww = NA, + site = NA, + site_index = NA, + lab = NA, + lab_wwtp_unique_id = NA, + below_LOD = NA, + flag_as_ww_outlier = NA, + lod_sewage = NA, + ww_pop = NA + ) + + # This should be at the lab site level + gen_quants_draws_w_ww <- gen_quants_draws %>% + filter(name == "pred_ww") %>% + select(-site_index) %>% + mutate( + include_ww = include_ww, + forecast_date = forecast_date, + hosp_reporting_delay = hosp_reporting_delay, + location = location, + data_type = "draw" + ) %>% + left_join(date_df, by = "t") %>% + ungroup() %>% + left_join( + train_data %>% + select( + lab_site_index, lab_wwtp_unique_id, site_index, + lab, site + ) %>% + distinct(), + by = c("lab_site_index") + ) %>% + left_join( + train_data %>% + select( + date, daily_hosp_admits, + daily_hosp_admits_for_eval, pop + ) %>% + distinct(), + by = c("date") + ) %>% + left_join( + train_data %>% + ungroup() %>% + select( + lab_site_index, date, ww, + below_LOD, flag_as_ww_outlier, lod_sewage, ww_pop + ) %>% + filter(!is.na(ww)) %>% + unique(), + by = c("date", "lab_site_index") + ) %>% + select(colnames(gen_quants_draws_non_ww)) + + if (model_type != "site-level infection dynamics") { + gen_quants_draws_w_data <- rbind( + gen_quants_draws_non_ww, + gen_quants_draws_w_ww + ) + } else { + gen_quants_draws_ww_site <- gen_quants_draws %>% + filter(name == "R_site_t") %>% + select(-lab_site_index) %>% + mutate( + include_ww = include_ww, + forecast_date = forecast_date, + hosp_reporting_delay = hosp_reporting_delay, + location = location, + data_type = "draw" + ) %>% + left_join(date_df, by = "t") %>% + ungroup() %>% + left_join( + train_data %>% + select(site_index, site, ww_pop) %>% + distinct(), + by = c("site_index") + ) %>% + mutate( + lab_site_index = NA, + lab_wwtp_unique_id = NA, + lab = NA, + ww = NA, + below_LOD = NA, + flag_as_ww_outlier = NA, + lod_sewage = NA + ) %>% + left_join( + train_data %>% + select(date, daily_hosp_admits, daily_hosp_admits_for_eval, pop) %>% + distinct(), + by = c("date") + ) %>% + select(colnames(gen_quants_draws_non_ww)) + + gen_quants_draws_w_data <- rbind( + gen_quants_draws_non_ww, + gen_quants_draws_w_ww, + gen_quants_draws_ww_site + ) + } + + hosp_per_100k <- gen_quants_draws_w_data %>% + filter(name == "pred_hosp") %>% # grab the generated quantities + mutate( + name = "pred_hosp_per_100k", + value = 1e5 * value / pop + ) + + gen_quants_draws_w_data <- rbind(gen_quants_draws_w_data, hosp_per_100k) + + + # Make a column for matched observed data + gen_quants_draws_w_data <- gen_quants_draws_w_data %>% + mutate( + obs_data = case_when( + name == "pred_hosp" ~ daily_hosp_admits_for_eval, + name == "pred_hosp_per_100k" ~ 1e5 * daily_hosp_admits_for_eval / pop, + name == "pred_ww" ~ ww, + TRUE ~ NA + ) + ) %>% + mutate( # Column for period + period = case_when( + date <= last_hosp_data_date ~ "calibration", + (date > last_hosp_data_date & date <= forecast_date) ~ "nowcast", + date > forecast_date ~ "forecast" + ) + ) %>% + ungroup() + + model_type_to_save <- ifelse(include_ww == 0, "hospital admissions only", + model_type + ) + + gen_quants_draws_w_data <- gen_quants_draws_w_data %>% + ungroup() %>% + mutate(model_type = model_type_to_save) + + quantiles <- get_all_quantiles(gen_quants_draws_w_data %>% + filter(name %in% c( + "pred_hosp", "exp_state_ww_conc", + "R(t)" + ))) + + gen_quants_draws_w_data <- gen_quants_draws_w_data %>% + filter(draw %in% c(sample(1:max(draw), n_draws))) + + + parameter_draws <- get_raw_param_draws(all_draws) + parameter_draws <- parameter_draws %>% + mutate( + data_type = "draw", + forecast_date = forecast_date, + include_ww = include_ww, + location = location, + hosp_reporting_delay = hosp_reporting_delay, + pop = pop, + model_type = model_type + ) + + # Make one for just future hospital admissions draws + future_hosp_draws <- gen_quants_draws_w_data %>% + filter(name == "pred_hosp", date >= forecast_date + days(1)) + + if (isTRUE(output_full_df)) { + df <- list( + gen_quants_draws_w_data, + quantiles, + parameter_draws + ) + } + + # Get model run and data diagnostics + diagnostics <- get_diagnostics( + fit_dynamic_rt, train_data, location, + model_type_to_save, forecast_date + ) + + # Make a 1 row dataframe that contains the metadata combined with the + # filepath where the dataframes of draws, quantiles, and parquets are saved + df <- df_of_filepaths + + if (isTRUE(write_files)) { + # Need to create each of these new folders + create_dir(file.path( + output_file_path, "raw", location, model_type, + "future_hosp_draws", forecast_date + )) + create_dir(file.path( + output_file_path, "raw", location, model_type, + "draws", forecast_date + )) + create_dir(file.path( + output_file_path, "raw", location, model_type, + "quantiles", forecast_date + )) + create_dir(file.path( + output_file_path, "raw", location, model_type, + "parameters", forecast_date + )) + create_dir(file.path( + output_file_path, "raw", location, model_type, + "diagnostics", forecast_date + )) + create_dir(file.path( + output_file_path, "raw", location, model_type, + "stan_objects", forecast_date, + glue::glue("run-on-{date_run}-{run_id}") + )) + + arrow::write_parquet( + x = gen_quants_draws_w_data, + sink = df$model_draws_file_path + ) + arrow::write_parquet( + x = quantiles, + sink = df$quantiles_file_path + ) + arrow::write_parquet( + x = parameter_draws, + sink = df$parameters_file_path + ) + arrow::write_parquet( + x = future_hosp_draws, + sink = df$future_hosp_draws_file_path + ) + readr::write_csv( + diagnostics, df$diagnostics_file_path + ) + + fit_dynamic_rt$save_output_files( + dir = file.path( + output_file_path, "raw", location, model_type, + "stan_objects", forecast_date, + glue::glue("run-on-{date_run}-{run_id}") + ) + ) + } + } + } # end else if filepath exists + return(df) +} diff --git a/cfaforecastrenewalww/R/forecasttools.R b/cfaforecastrenewalww/R/forecasttools.R new file mode 100644 index 00000000..b132dd96 --- /dev/null +++ b/cfaforecastrenewalww/R/forecasttools.R @@ -0,0 +1,366 @@ +# Functions from forecasttools +#' Aggregate individual trajectory +#' timeseries or forecasts to quantile +#' timeseries or forecasts +#' +#' Given a tidy data frame of +#' trajectories, aggregate it to +#' a quantile timeseries for the +#' given quantile values +#' +#' @param trajectories tidy data frame or tibble +#' of trajectories +#' @param quantiles quantiles to output for each +#' timepoint (default the FluSight 2023 quantiles: +#' `c(0.01, 0.025, seq(0.05, 0.95, 0.05), 0.975, 0.99)` +#' @param timepoint_cols name of the column(s) in`trajectories` +#' that identifies unique timepoints. Default `timepoint`. +#' @param value_col name of the column in `trajectories` +#' with the trajectory values (for which we wish to +#' compute quantiles), e.g. `hosp`, `weekly_hosp`, `cases`, +#' etc. Default `value`. +#' @param quantile_value_name What to name +#' the column containing quantile values in +#' the output table. Default `"quantile_value"` +#' @param quantile_level_name What to name +#' the column containing quantile levels in +#' the output table. Default `"quantile_level"` +#' @param id_cols additional id columns in +#' `trajectories` to group by before aggregating, +#' e.g. a `location` column if `trajectories` contains +#' trajectories over the same time period for multiple +#' locations, such as different US States and Territories. +#' If NULL, ignored. Default NULL. +#' @export +trajectories_to_quantiles <- function(trajectories, + quantiles = c( + 0.01, 0.025, + seq(0.05, 0.95, 0.05), + 0.975, 0.99 + ), + timepoint_cols = "timepoint", + value_col = "value", + quantile_value_name = + "quantile_value", + quantile_level_name = + "quantile_level", + id_cols = NULL) { + grouped_df <- trajectories |> + dplyr::rename( + value_col = {{ value_col }} + ) |> + dplyr::group_by( + dplyr::across(c( + {{ timepoint_cols }}, {{ id_cols }} + )) + ) + + quant_df <- grouped_df |> + dplyr::reframe( + {{ quantile_value_name }} := quantile(value_col, + probs = !!quantiles + ), + {{ quantile_level_name }} := !!quantiles + ) + return(quant_df) +} + +#' Pull NHSN data from HealthData.gov +#' +#' Pull relevant epidemiological +#' data from NHSN, defaulting to the +#' HealthData.gov public API endpoint. +#' +#' @param api_endpoint API endpoint to +#' use. Defaults to the HTTPS:// Socrata +#' endpoint for HHS Protect / NHSN +#' on HealthData.gov as of 2023-10-23, namely +#' `[https://healthdata.gov/resource/g62h-syeh]` +#' @param api_key_id Key ID of an API key to use +#' when querying the dataset. Not required, +#' but polite and reduces throttling. +#' You can create one at +#' [https://healthdata.gov/profile/edit/developer_settings]. +#' Default `NULL` (no API key). +#' @param api_key_secret Associated key secret +#' for the API key given in `api_key_id`. +#' Default `NULL` (no API key). +#' @param start_date Pull only rows with dates +#' greater than or equal to this date. If `NULL`, +#' no minimum date. Default `NULL`. +#' @param end_date Pull only rows with dates +#' less than or equal to this date. If `NULL`, +#' no maximum date. Default `NULL`. +#' @param columns Vector of columns to retrieve, in +#' addition to `date` and `state`, which are always +#' retrieved. If `NULL`, retrieve all columns. +#' Default `NULL`. +#' @param states value or values to filter on for the `state` column +#' of the NHSN dataset. If `NULL`, do not filter on that column. +#' Default `NULL`. +#' @param order_by column or columns to order (sort) by. +#' Default `c("state", "date")` (sort first by state, +#' then by date). +#' @param desc Boolean. Whether to order descending instead of +#' ascending. Default `FALSE` (order ascending). +#' @param limit maximum number of rows to return. Default `1e5` +#' (100000) +#' @param error_on_limit Boolean. Raise an error if the number +#' of rows returned is equal to the maximum? Default `TRUE`. +#' This ensures that one does not silently end up with a +#' subset of the total set of rows matching the query. If a subset +#' is desired, one can set `error_on_limit = FALSE`. +#' @param ... other arguments passed to [nhsn_soda_query()] +#' @return the pulled data, as a [tibble::tibble()]. +#' @export +pull_nhsn <- function(api_endpoint = + "https://healthdata.gov/resource/g62h-syeh.json", + api_key_id = NULL, + api_key_secret = NULL, + start_date = NULL, + end_date = NULL, + columns = NULL, + states = NULL, + order_by = c("state", "date"), + desc = FALSE, + limit = 1e5, + error_on_limit = TRUE, + ...) { + check_package_is_installed("httr") + + query <- nhsn_soda_query( + api_endpoint, + start_date = start_date, + end_date = end_date, + columns = columns, + states = states, + order_by = order_by, + desc = desc, + limit = limit, + ... + ) + + socrata_url <- as.character(query) + + credentials <- !is.null(api_key_id) & !is.null(api_key_secret) + + if (credentials) { + response <- httr::GET( + socrata_url, + httr::authenticate(api_key_id, api_key_secret) + ) + } else { + cli::cli_warn(c( + "No API key ID and secret provided. ", + "This is considered impolite and ", + "may result in your requests to the ", + "server getting throttled. Create an ", + "API key id/secret pair by visiting ", + "https://healthdata.gov/profile/edit/developer_settings" + )) + response <- httr::GET( + socrata_url + ) + } + + if (response$status != 200) { + cli::cli_abort("Bad response {response}") + } + + df <- jsonlite::fromJSON(httr::content(response, "text")) |> + tibble::as_tibble() + + if (error_on_limit && !dim(df)[1] < limit) { + cli::cli_abort(c( + "Query retrieved a number of", + "records equal to the query limit. ", + "Some matching records may therefore", + "be excluded. Try a narrower query, a ", + "higher limit, or, if this was intended, ", + "set `error_on_limit = FALSE`" + )) + } + return(df) +} + +#' Return a [soql::soql_where()] construct +#' for a given column being in a list of values +#' +#' @param soql_list A `soql` query object, which +#' can be piped in. If one hasn't been +#' created yet, use or pipe in [soql::soql()]. +#' @param column The column to filter on +#' @param match_values A vector of values that column +#' must match +#' @return A new soql object with the filter added, +#' for use in other functions. +#' @export +soql_is_in <- function(soql_list, column, match_values) { + query <- glue::glue("{column}='{match_values}'") |> + paste(collapse = " OR ") + return(soql::soql_where(soql_list, query)) +} + + +#' Construct a Socrata open data +#' API (SODA) query for the NSHN +#' dataset +#' @param api_endpoint Base API endpoint URL to use +#' when constructing the query. +#' @param start_date Pull only rows with dates +#' greater than or equal to this date. If `NULL`, +#' no minimum date. Default `NULL`. +#' @param end_date Pull only rows with dates +#' less than or equal to this date. If `NULL`, +#' no maximum date. Default `NULL`. +#' @param columns Vector of columns to retrieve, in +#' addition to `date` and `state`, which are always +#' retrieved. If `NULL`, retrieve all columns. +#' Default `NULL`. +#' @param states Vector of states or territories to +#' retrieve, by two letter US postal service code. +#' If `NULL`, retrieve all. Default `NULL`. +#' @param limit limit to the number of rows to retrieve. +#' Default 1e5. +#' @param order_by Vector of columns by which to order the +#' results. Default `c("state", "date")` +#' @param desc whether to order descending instead of +#' ascending. Default `FALSE` (order ascending). +#' @param ... additional arguments (ignored for now) +#' @return the query as [soql::soql()] output +#' @export +nhsn_soda_query <- function(api_endpoint, + start_date = NULL, + end_date = NULL, + columns = NULL, + states = NULL, + limit = 1e5, + order_by = c("state", "date"), + desc = FALSE, + ...) { + query <- soql::soql() |> + soql::soql_add_endpoint(api_endpoint) + + if (!is.null(columns)) { + query <- query |> + soql::soql_select(paste( + unique( + c("state", "date", columns) + ), + collapse = "," + )) + } + + if (!is.null(start_date)) { + query <- query |> + soql::soql_where( + glue::glue("date >= '{start_date}'") + ) + } + + if (!is.null(end_date)) { + query <- query |> + soql::soql_where( + glue::glue("date <= '{end_date}'") + ) + } + + if (!is.null(states)) { + query <- query |> + soql_is_in( + "state", states + ) + } + + query <- query |> + soql::soql_order( + paste(unique(order_by), + collapse = "," + ), + desc = desc + ) + + ## do limit string formatting + ## manually since soql::soql_limit() + ## coerces input to numeric and then + ## string formats with XeY notation + ## (e.g. 100000 as '1e5'), which endpoints + ## will fail to parse + query$clauses$limit <- sprintf("%d", as.numeric(limit)) + + return(query) +} + +#' Plot a timeseries of quantiles +#' +#' @param data timeseries of quantiles as tidy data, +#' with one row per timepoint per quantile level +#' @param time_column name of the column in `data` +#' containing timepoints +#' @param observation_column name of the column +#' in data containing observed values at the +#' given quantile levels +#' @param quantile_level_column name of the column +#' in `data` giving the quantile level (e.g. +#' `0.01` for the 0.01 quantile / 1st percentile) +#' @param linesize `size` parameter passed to [ggplot2::geom_line()]. +#' Default 2. +#' @param pointsize `size` parameter passed to [ggplot2::geom_point()] +#' Default 4. +#' @param linecolor `color` parameter passed to [ggplot2::geom_line()]. +#' Default "darkblue. +#' @param pointcolor `color` parameter passed to [ggplot2::geom_point()] +#' Default "darkblue". +#' @return the resultant plot, as a ggplot objec +#' @export +plot_quantiles <- function(data, + time_column, + observation_column, + quantile_level_column, + linesize = 2, + pointsize = 4, + pointcolor = "darkblue", + linecolor = "darkblue") { + return(ggplot2::ggplot( + mapping = ggplot2::aes( + x = {{ time_column }}, + y = {{ observation_column }}, + group = {{ quantile_level_column }}, + alpha = 1 - abs({{ quantile_level_column }} - 0.5) + ), + data = data + ) + + ggplot2::geom_line( + size = linesize, + color = linecolor + ) + + ggplot2::geom_point( + size = pointsize, + color = pointcolor + ) + + ggplot2::scale_alpha_continuous(guide = NULL)) +} + +#' Convert a two-letter location abbreviation to a +#' two-character FluSight location code +#' +#' Given a vector of state/territory two-letter +#' USPS short names (e.g. MA, TX, PR), return +#' the corresponding FluSight challenge location +#' code (legacy FIPS code for states and territories, +#' `US` for the US). +#' +#' @param abbrs vector of USPS two letter name abbreviations +#' @return vector of the same length recoded as flusight +#' location codes +#' @export +#' @seealso [loc_flusight_code_to_abbr()] +loc_abbr_to_flusight_code <- function(abbrs) { + mask <- match( + x = abbrs, + table = cfaforecastrenewalww::flusight_location_table$short_name + ) + return( + cfaforecastrenewalww::flusight_location_table$location_code[mask] + ) +} diff --git a/cfaforecastrenewalww/R/generate_simulated_data.R b/cfaforecastrenewalww/R/generate_simulated_data.R new file mode 100644 index 00000000..02fe8dae --- /dev/null +++ b/cfaforecastrenewalww/R/generate_simulated_data.R @@ -0,0 +1,425 @@ +#' Generate simulated data from the underlying model's generative process +#' @description +#' Function that allows the user to generate hospital admissions and site-level +#' wastewater data directly from the generative model, specifying the conditions +#' and parameters to generate from. +#' +#' @param site_level_inf_dynamics if TRUE then the toy data has variation in the +#' site-level R(t), if FALSE, assumes same underlying R(t) for the state as in +#' each site +#' @param site_level_conc_dynamics if TRUE then the toy data has variation in the +#' site-level concentration each day, if FALSE, then the relationship from infection +#' to concentration in each site is the same across sites +#' @param r_in_weeks The weekly R(t) that drives infection dynamics at the state- +#' level +#' @param n_sites Number of sites +#' @param ww_pop_sites Catchment area in each of those sites (order must match) +#' @param pop_size Population size in the state +#' @param n_lab_sites NUmber of unique combinations of labs and sites. Must be +#' greater than or equal to `n_sites` +#' @param map_site_to_lab Vector mapping the sites to the lab-sites in order +#' of the sites +#' @param ot observed time: length of hospital admissions calibration time in days +#' @param nt nowcast time: length of time between last hospital admissions date +#' and forecast date in days +#' @param forecast_time duration of the forecast in days e.g. 28 days +#' @param sim_start_date the start date of the simulation, used to get a weekday +#' vector +#' @param hosp_wday_effect a simplex of length 7 describing how the hospital +#' admissions are spread out over a week, starting at Monday = 1 +#' @param i0_over_n the initial per capita infections in the state +#' @param initial_growth exponential growth rate during the unobserved time +#' @param sd_in_lab_level_multiplier standard deviation in the log of the site- +#' lab level multiplier determining how much variation there is systematically +#' in site-labs from the state mean +#' @param mean_obs_error_in_ww_lab_site mean day to day variation in observed +#' wastewater concentraitons across all lab-sites +#' @param mean_reporting_freq mean frequency of wastewater measurements across +#' sites in per day (e.g. 1/7 is once per week) +#' @param sd_reporting_freq standard deviation in the frequency of wastewater +#' measurements across sites +#' @param mean_reporting_latency mean time from forecast date to last +#' wastewater sample collection date, across sites +#' @param sd_reporting_latency standard deviation in the time from the forecast +#' date to the last wastewater sample collection date, across sites +#' @param mean_log_lod mean log of the LOD in each lab-site +#' @param sd_log_lod standard deviation in the log of the LOD across sites +#' @param set_seed whether or not we want to set the seed +#' +#' @return +#' @export +#' +#' @examples +generate_simulated_data <- function(site_level_inf_dynamics = TRUE, + site_level_conc_dynamics = FALSE, + r_in_weeks = c( + rep(1.1, 5), rep(0.9, 5), + 1 + 0.007 * 1:16 + ), + n_sites = 4, + ww_pop_sites = c(4e5, 2e5, 1e5, 5e4), + pop_size = 1e6, + n_lab_sites = 5, + map_site_to_lab = c(1, 1, 2, 3, 4), + ot = 90, + nt = 9, + forecast_time = 28, + sim_start_date = ymd("2023-10-30"), + hosp_wday_effect = c( + 0.95, 1.01, 1.02, + 1.02, 1.01, 1, + 0.99 + ) / 7, + i0_over_n = 5e-4, + initial_growth = 1e-4, + sd_in_lab_level_multiplier = 0.25, + mean_obs_error_in_ww_lab_site = 0.3, + mean_reporting_freq = 1 / 7, + sd_reporting_freq = 1 / 14, + mean_reporting_latency = 7, + sd_reporting_latency = 5, + mean_log_lod = 3.8, + sd_log_lod = 0.2, + set_seed = TRUE) { + # Set seed so we get the same results each time for the same input + if (isTRUE(set_seed)) { + set.seed(1) + } + + stopifnot( + "weekly R(t) passed in isn't long enough" = + length(r_in_weeks) >= (ot + nt + forecast_time) / 7 + ) + stopifnot( + "Sum of wastewater site populations is greater than state pop" = + pop_size > sum(ww_pop_sites) + ) + + if (length(ww_pop_sites) < n_sites) { + ww_pop_sites <- rnorm(n_sites, + mean = (0.7 * pop_size / n_sites), + sd = 0.1 * (0.7 * pop_size / n_sites) + ) + } + if (n_lab_sites < n_sites) { + n_lab_sites <- n_sites + map_site_to_lab <- 1:n_sites + } + + + + # Expose the stan functions (can use any of the models here) + model <- cmdstan_model( + stan_file = system.file( + "stan", "renewal_ww_hosp.stan", + package = "cfaforecastrenewalww" + ), + compile = TRUE, + compile_standalone = TRUE, + force_recompile = TRUE + ) + + model$expose_functions(global = TRUE) + params <- get_params() # load in a data table with parameters + par_names <- colnames(params) # pull them into memory + for (i in seq_along(par_names)) { + assign(par_names[i], as.double(params[i])) + } + + site_lab_map <- data.frame(lab_site = 1:n_lab_sites, site = map_site_to_lab) %>% + left_join(data.frame(site = 1:n_sites, ww_pop = ww_pop_sites)) + + ht <- nt + forecast_time + n_weeks <- ceiling((ot + ht) / 7) + tot_weeks <- ceiling((uot + ot + ht) / 7) + # We need dates to get a weekday vector + dates <- seq( + from = sim_start_date, to = + (sim_start_date + days(ot + nt + ht - 1)), by = "days" + ) + log_i0_over_n <- log(i0_over_n) + day_of_week_vector <- lubridate::wday(dates, week_start = 1) + date_df <- data.frame( + t = 1:(ot + nt + ht), + date = dates + ) + forecast_date <- date_df %>% + filter(t == ot + nt) %>% + pull(date) + # set the lab-site multiplier presumably from lab measurement processes + log_m_lab_sites <- rnorm(n_lab_sites, + mean = 0, sd = sd_in_lab_level_multiplier + ) + # Assign a site level observation error to each site, but have it scale + # inversely with the catchment area of the site (this may not be the right + # scaling) + sigma_ww_lab_site <- mean(site_lab_map$ww_pop) * + mean_obs_error_in_ww_lab_site / site_lab_map$ww_pop + # Set randomly the lab-site reporting avg frequency (per day) and the + # reporting latency (in days). Will use this to sample times in the observed + # data + lab_site_reporting_freq <- abs(rnorm( + n = n_lab_sites, mean = mean_reporting_freq, + sd = sd_reporting_freq + )) + lab_site_reporting_latency <- pmax(1, ceiling(rnorm( + n = n_lab_sites, + mean = mean_reporting_latency, sd = sd_reporting_latency + ))) + # Set a lab-site-specific LOD in log scale + lod_lab_site <- rnorm(n_lab_sites, mean = mean_log_lod, sd = sd_log_lod) + + ## Delay distributions---------------------------------------------------- + generation_interval <- simulate_double_censored_pmf( + max = gt_max, meanlog = mu_gi, sdlog = sigma_gi, fun_dist = rlnorm, n = 5e6 + ) %>% drop_first_and_renormalize() + + + + # Set infection feedback to generation interval + infection_feedback_pmf <- generation_interval + infection_feedback_rev_pmf <- rev(infection_feedback_pmf) + infection_feedback <- 0 + if_feedback <- 1 + # Delay from infection to hospital admission: incubation period + + # time from symptom onset to hospital admission + inc <- make_incubation_period_pmf( + backward_scale, backward_shape, r + ) + sym_to_hosp <- make_hospital_onset_delay_pmf(neg_binom_mu, neg_binom_size) + inf_to_hosp <- make_reporting_delay_pmf(inc, sym_to_hosp) + # shedding kinetics delay distribution + vl_trajectory <- model$functions$get_vl_trajectory( + t_peak_mean, viral_peak_mean, + duration_shedding_mean, gt_max + ) + + # Generate the state level weekly R(t) before infection feedback------------- + unadj_r_weeks <- (r_in_weeks * rnorm(length(r_in_weeks), 1, 0.03))[1:n_weeks] + # Convert to daily for input into renewal equation + ind_m <- get_ind_m(ot + ht, n_weeks) + unadj_r <- ind_m %*% unadj_r_weeks + + # generate state-level incident infections using renewal equation for + # all time points + state_output <- model$functions$generate_infections( + unadj_r, uot, rev(generation_interval), log_i0_over_n, initial_growth, ht, + infection_feedback, infection_feedback_rev_pmf + ) + new_i_over_n <- state_output[[1]] + rt <- state_output[[2]] # Because infection feedback can damp R(t), get adj R + + # Generate expected state level hospitalizations from incident infections----- + # Generate a time varying P(hosp|infection), + p_hosp_int_logit <- qlogis(p_hosp_mean) # p_hosp_mean is declared in linear scale + p_hosp_m <- get_ind_m(uot + ot + ht, tot_weeks) # matrix needed to convert + # from weekly to daily + p_hosp_w_logit <- p_hosp_int_logit + rnorm( + tot_weeks - 1, 0, + p_hosp_w_sd_sd + ) + # random walk on p_hosp in logit scale + p_hosp_logit_weeks <- c( + p_hosp_int_logit, + p_hosp_w_logit + ) # combine with intercept + p_hosp_logit_days <- p_hosp_m %*% c( + p_hosp_int_logit, + p_hosp_w_logit + ) # convert to days + p_hosp_days <- inv.logit(p_hosp_logit_days) # convert back to linear scale + # Corresponds to a standard deviation in linear scale of 0.0003 + + # Get expected trajectory of hospital admissions from incident infections + # by convolving scaled incident infections with delay from infection to + # hospital admission + model_hosp_over_n <- model$functions$convolve_dot_product( + p_hosp_days * new_i_over_n, + rev(inf_to_hosp), + uot + ot + ht + )[(uot + 1):(uot + ot + ht)] + exp_hosp <- pop_size * model$functions$day_of_week_effect( + model_hosp_over_n, + day_of_week_vector, + hosp_wday_effect + ) + # Add observation error, get hospital admissions in the forecast period + exp_obs_hosp <- rnbinom( + n = length(exp_hosp), mu = exp_hosp, + size = 1 / ((inv_sqrt_phi_prior_mean)^2) + ) + + # Generate the site-level expected observed concentrations ----------------- + # first by adding + # variation to the site-level R(t) in each site, and then by adding time varying + # deviations in true concentration in each site, and then adding a site level + # true variability, and then adding lab-site level multiplier and obersvation + # error + + + ## Generate the site level infection dynamics---------------------------------- + new_i_over_n_site <- matrix(nrow = n_sites, ncol = (uot + ot + ht)) + r_site <- matrix(nrow = n_sites, ncol = (ot + ht)) + # Generate site-level R(t) + if (isTRUE(site_level_inf_dynamics)) { + log_r_state_week <- log(unadj_r_weeks) + log_r_site <- matrix(nrow = n_sites, ncol = n_weeks) + initial_growth_site <- vector(length = n_sites) + log_i0_over_n_site <- vector(length = n_sites) + for (i in 1:n_sites) { + log_r_site[i, ] <- rnorm( + n = n_weeks, + mean = log_r_state_week, + sd = 0.05 + ) # sigma_rt + initial_growth_site[i] <- rnorm( + n = 1, mean = initial_growth, + sd = initial_growth_prior_sd + ) + log_i0_over_n_site[i] <- rnorm( + n = 1, mean = log_i0_over_n, + sd = 0.5 + ) # sigma_I0 + } + + for (i in 1:n_sites) { + unadj_r_site <- ind_m %*% exp(log_r_site[i, ]) # daily R site + site_output <- model$functions$generate_infections( + unadj_r_site, uot, rev(generation_interval), log_i0_over_n_site[i], + initial_growth_site[i], ht, + infection_feedback, infection_feedback_rev_pmf + ) + new_i_over_n_site[i, ] <- site_output[[1]] + r_site[i, ] <- site_output[[2]] + } + } else { # site level R(t) and infections = state level R(t) and infections + for (i in 1:n_sites) { + new_i_over_n_site[i, ] <- new_i_over_n + r_site[i, ] <- rt + } + } + + + + ## Generate site-level mean genomes from infections in each site------- + log_g_over_n_site <- matrix(nrow = n_sites, ncol = (ot + ht)) + + for (i in 1:n_sites) { + model_net_i <- model$functions$convolve_dot_product( + new_i_over_n_site[i, ], + rev(vl_trajectory), + (uot + ot + ht) + )[(uot + 1):(uot + ot + ht)] + log_g_over_n_site[i, ] <- log(10) * log10_g_prior_mean + + log(model_net_i + 1e-8) + } + + ## Generate site-level true genomes ------------------------------------ + # with site multiplier and time-varying deviation + + log_exp_g_over_n_site <- matrix(nrow = n_sites, ncol = (ot + ht)) + + for (i in 1:n_sites) { + if (isFALSE(site_level_conc_dynamics)) { + log_exp_g_over_n_site[i, ] <- log_g_over_n_site[i, ] + } else { + log_exp_g_over_n_site[i, ] <- log_g_over_n_site[i, ] + + rnorm( + n = (ot + ht), mean = 0, + sd = 0.01 + ) # sigma_log_conc prior + } + } + + # Add on site-lab-level observation error -------------------------------------- + log_obs_g_over_n_lab_site <- matrix(nrow = n_lab_sites, ncol = (ot + ht)) + for (i in 1:n_lab_sites) { + log_g_w_multiplier <- log_exp_g_over_n_site[map_site_to_lab[i], ] + + log_m_lab_sites[i] + log_obs_g_over_n_lab_site[i, ] <- log_g_w_multiplier + + rnorm( + n = (ot + ht), mean = 0, + sd = sigma_ww_lab_site[i] + ) + } + + # Sample from some lab-sites more frequently than others and add different + # latencies for each lab-site + log_obs_conc_lab_site <- matrix(nrow = n_lab_sites, ncol = ot + ht) + for (i in 1:n_lab_sites) { + st <- sample(1:(ot + nt), floor((ot + nt) * lab_site_reporting_freq[i])) + stl <- pmin((ot + nt - lab_site_reporting_latency[i]), st) + log_obs_conc_lab_site[i, stl] <- log_obs_g_over_n_lab_site[i, stl] - + log(ml_of_ww_per_person_day) + } + + # Format the data----------------------------------------------------------- + + df_long <- as.data.frame(t(log_obs_conc_lab_site)) %>% + dplyr::mutate(t = 1:(ot + ht)) %>% + tidyr::pivot_longer(!t, + names_to = "lab_wwtp_unique_id", + names_prefix = "V", + values_to = "log_conc" + ) %>% + dplyr::mutate( + lab_wwtp_unique_id = as.integer(lab_wwtp_unique_id) + ) %>% + dplyr::left_join(date_df, by = "t") %>% + dplyr::left_join( + data.frame( + lab_site = 1:n_lab_sites, + lod_sewage = lod_lab_site + ), + by = c("lab_wwtp_unique_id" = "lab_site") + ) %>% + dplyr::mutate(below_LOD = ifelse(log_conc >= lod_sewage, 0, 1)) + + # Make a hospital admissiosn dataframe to bind to + df_hosp <- data.frame( + t = 1:(ot + ht), + daily_hosp_admits = c(exp_obs_hosp[1:ot], rep(NA, ht)), + daily_hosp_admits_for_eval = exp_obs_hosp + ) + + example_df <- df_long %>% + dplyr::left_join(df_hosp, + by = "t" + ) %>% + dplyr::mutate( + pop = pop_size, + forecast_date = forecast_date, + hosp_calibration_time = ot + ) %>% + dplyr::left_join(site_lab_map, + by = c("lab_wwtp_unique_id" = "lab_site") + ) + + + + # Get the true parameter dataframe, making sure this is formatted the same as + # as the output from get_full_param_distrib() + p_hosp_df <- data.frame( + name = "p_hosp", true_value = p_hosp_days, + index_rows = NA, + index_cols = seq_along(p_hosp_days) + ) + r_df <- data.frame( + name = "R", true_value = rt, + index_rows = NA, + index_cols = seq_along(rt) + ) + log10_g_df <- data.frame( + name = "log10_g", true_value = log10_g_prior_mean, + index_rows = NA, + index_cols = NA + ) + + param_df <- rbind(p_hosp_df, r_df, log10_g_df) + + toy_data_and_params <- list( + param_df = param_df, + example_df = example_df + ) + return(toy_data_and_params) +} diff --git a/cfaforecastrenewalww/R/get_config_vals.R b/cfaforecastrenewalww/R/get_config_vals.R new file mode 100644 index 00000000..673abcd1 --- /dev/null +++ b/cfaforecastrenewalww/R/get_config_vals.R @@ -0,0 +1,265 @@ +#' Read in the config yaml +#' +#' @param path_to_config path the config yaml +#' +#' @return +#' @export +#' +#' @examples +get_config_vals <- function(path_to_config) { + config <- read_yaml(path_to_config) + config$forecast_date <- lubridate::ymd(config$forecast_date) + config$date_run <- lubridate::ymd(config$forecast_date) + model_file_path <- get_model_file_path(config$model_type) + full_config <- c(config, + model_file_path = model_file_path + ) + + return(full_config) +} + + +#' Get the figure file path +#' +#' @param output_file_path +#' @param forecast_date +#' @param date_run +#' +#' @return +#' @export +#' +#' @examples +get_figure_file_path <- function(output_file_path, + forecast_date, date_run) { + fp <- file.path( + output_file_path, "figures", + glue::glue("{forecast_date}-run-on-{date_run}") + ) + return(fp) +} + +#' get the cleaned pdf filepath +#' +#' @param output_file_path +#' @param forecast_date +#' @param date_run +#' +#' @return +#' @export +#' +#' @examples +get_pdf_file_path <- function(output_file_path, + forecast_date, + date_run) { + fp <- file.path( + output_file_path, + "cleaned", + glue::glue("{forecast_date}-run-on-{date_run}") + ) + return(fp) +} + +#' Get the submission file path fior hub csv +#' +#' @param output_file_path +#' @param forecast_date +#' @param date_run +#' +#' @return +#' @export +#' +#' @examples +get_submission_file_path <- function(output_file_path, + forecast_date, + date_run) { + fp <- file.path( + output_file_path, + "cleaned", + glue::glue("{forecast_date}-run-on-{date_run}"), + "external" + ) + return(fp) +} + +#' Get summarized table with each location and +#' +#' @param hub_submission_df +#' @param full_diagnostics_df +#' @param hosp_only_states +#' @param repo_file_path +#' +#' @return +#' @export +#' +#' @examples +get_summarized_table <- function(hub_submission_df, + full_diagnostics_df, + hosp_only_states, + repo_file_path) { + diag_df_wide <- full_diagnostics_df %>% + dplyr::select(location, diagnostic, value) %>% + dplyr::filter(diagnostic %in% c( + "no_wastewater_data_flag", + "delayed_wastewater_data_flag", + "insufficient_ww_data_flag" + )) %>% + tidyr::pivot_wider( + id_cols = location, + names_from = diagnostic, + values_from = value + ) %>% + dplyr::mutate( + additional_notes = + ifelse(no_wastewater_data_flag == 1, "No wastewater data available", + dplyr::case_when( + insufficient_ww_data_flag == 1 ~ paste0( + "Wastewater data is too sparse, ", + "forecast not likely to be informed ", + "by wastewater" + ), + (delayed_wastewater_data_flag == 1) ~ paste0( + "Wastewater data is unavailable for recent ", + "time-points, forecast not likely to be ", + "informed by wastewater" + ), + location %in% c(hosp_only_states) ~ paste0( + "Hospital admissions only model was run ", + "due to either issues with input data or model" + ), + TRUE ~ "None" + ) + ) + ) %>% + dplyr::select(location, additional_notes) + + create_dir(repo_file_path) + + readr::write_tsv( + diag_df_wide, + file = fs::path( + repo_file_path, + glue::glue("wastewater_metadata_table.tsv") + ) + ) + cli::cli_inform("Writing forecast additional notes to repo ") + + + (diag_df_wide) +} + +#' Get metadata to list all states with no wastewater or insufficient wastewater +#' data +#' +#' @param full_diagnostics_df +#' @param repo_file_path +#' +#' @return +#' @export +#' +#' @examples +get_metadata_yaml <- function(full_diagnostics_df, + repo_file_path, + hosp_only_states) { + summary_list <- get_summary_stats(full_diagnostics_df) + + metadata <- list( + "States without wastewaster data" = + ifelse(rlang::is_empty(summary_list$states_w_no_ww_data), "None", + list(summary_list$states_w_no_ww_data) + ), + "States with insufficient wastewater data" = + ifelse(rlang::is_empty(summary_list$states_to_flag_for_hub), "None", + list(summary_list$states_to_flag_for_hub) + ), + "States we chose to use hospital admissions only model on" = + ifelse(rlang::is_empty(hosp_only_states), "None", list(hosp_only_states)) + ) + create_dir(repo_file_path) + write_yaml(metadata, file = file.path( + repo_file_path, + glue::glue("metadata.yaml") + )) + return(metadata) +} + + + +#' @title Write pipeline metadata to a YAML +#' @param us_run US run? +#' @param path_to_save_metadata +#' @param run_id +#' @param date_run +#' @param ww_data_dir +#' @param hosp_data_dir +#' @param forecast_date +#' @param prod_run +#' @param model_type +#' @param location +#' @param output_file_path +#' @param ... +#' @return the metadata +#' @export +get_pipeline_metadata <- function(us_run, + path_to_save_metadata, + run_id, + date_run, + ww_data_path, hosp_data_dir, + forecast_date, + prod_run, + model_type, + location, + output_file_path, + ...) { + git_hash <- system("git log --pretty=format:'%h' -n 1", intern = TRUE) + + + prod <- ifelse(isTRUE(prod_run), "prod", "test") + if (isTRUE(us_run)) { + locations_run <- c(location, "US") + } else { + locations_run <- location + } + + relative_hosp_path <- file.path( + hosp_data_dir, + glue::glue( + as.character(forecast_date), + ".csv" + ) + ) + + if (prod_run == TRUE) { + full_file_path <- file.path( + path_to_save_metadata, "prod", + glue::glue("{forecast_date}-run-on-{date_run}") + ) + } else { + full_file_path <- file.path( + path_to_save_metadata, "test", + glue::glue("{forecast_date}-run-on-{date_run}") + ) + } + create_dir(full_file_path) + + pipeline_metadata <- list( + git_hash = git_hash, + relative_output_path = output_file_path, + relative_hosp_path = relative_hosp_path, + relative_ww_path = ww_data_path, + full_output_path = here::here(output_file_path), + full_ww_path = here::here(ww_data_path), + full_hosp_path = here::here(relative_hosp_path), + date_run = date_run, + prod_run = prod_run, + run_id = run_id, + model_type = model_type, + locations_run = locations_run, + all_locs_run = length(locations_run) == 53 + ) + + write_yaml(pipeline_metadata, file = file.path( + full_file_path, + glue::glue("{run_id}.yaml") + )) + return(pipeline_metadata) +} diff --git a/cfaforecastrenewalww/R/get_data.R b/cfaforecastrenewalww/R/get_data.R new file mode 100644 index 00000000..cfad5d6f --- /dev/null +++ b/cfaforecastrenewalww/R/get_data.R @@ -0,0 +1,981 @@ +## Get model parameters (priors and set params of set distributions)------------ +#' @title Get parameters for model run +#' +#' @return a dataframe with numeric values for parameter values passed to the +#' model +#' @export +#' +#' @examples +get_params <- function() { + ml_of_ww_per_person_day <- 22.7e4 + + # Time to estimate back to for i0 + uot <- 50 + + # Generation Interval + # From: Park, Sang Woo, et al. "Inferring the differences in incubation-period + # and generation-interval distributions of the Delta and Omicron variants of + # SARS-CoV-2." Proceedings of the National Academy of Sciences 120.22 (2023): + # e2221887120. + # from the object in Fig 4F corresponding to between household transmission + # in Omicron https://github.com/parksw3/omicron-generation/blob/d36d4568bfd3b3d389b30282758b9c322cfe2b9f/figure/compare.R#L175 #nolint + # Mean of 2.9 days + mu_gi <- 0.92877 + sigma_gi <- 0.526 # (using lognormal CDF and Park CIs of 2.7 and 3.2) + + # Incubation period parameters + # From: Park, Sang Woo, et al. "Inferring the differences in incubation-period + # and generation-interval distributions of the Delta and Omicron variants of + # SARS-CoV-2." Proceedings of the National Academy of Sciences 120.22 (2023): + # e2221887120. + r <- 0.15 + backward_shape <- 1.5 + backward_scale <- 3.6 + + # Symptom onset to hospital admission delay parameters + # From Danache et al + # https://journals.plos.org/plosone/article?id=10.1371/journal.pone.0261428#:~:text=Multiple%20analysis%20with%20correction%20for%20multiple%20testing%20showed,a%20long%20delay%20%28aOR%3A%201.84%2095%25%20CI%20%281.32%E2%80%932.55%29%29. #nolint + # That Zack fit and described in cfa-parameter-estimates github repo + neg_binom_mu <- 6.98665 + neg_binom_size <- 2.490848 + + + gt_max <- 15 + dur_inf <- 7 # used for drift calculation of number currently infected + + # Hospitalization parameters (informative priors) + # IHR estimate from: https://www.nature.com/articles/s41467-023-39661-5 + p_hosp_mean <- 0.031 # mean =3.1%, 0.031 + p_hosp_sd <- 0.0015 # CI = 2.7-3.3%, 0.027, 0.031, so 1.96*sd = 0.003 + + # Infection feedback priors + infection_feedback_prior_mean <- 500 + infection_feedback_prior_sd <- 200 + + # Wastewater skedding kinetics (informative priors) + t_peak_mean <- 5 # Pretend we know this with uncertainty + t_peak_sd <- 1 + viral_peak_mean <- 5.1 + viral_peak_sd <- 0.5 + duration_shedding_mean <- 17 + duration_shedding_sd <- 3 + + # Uninformed priors + inv_sqrt_phi_prior_mean <- 1 / sqrt(100) + inv_sqrt_phi_prior_sd <- 1 / sqrt(50) + phi_w_prior_mean <- 100 + phi_w_prior_sd <- 30 + sigma_ww_site_prior_mean_mean <- 0.5 + sigma_ww_site_prior_mean_sd <- 1 + sigma_ww_site_prior_sd_mean <- 0 + sigma_ww_site_prior_sd_sd <- 1 + r_prior_mean <- 1 + r_prior_sd <- 1 + sigma_rt_prior <- 0.3 + log10_g_prior_mean <- 12 + log10_g_prior_sd <- 2 + log_g_prior_mean <- 12 * log(10) + log_g_prior_sd <- 2 * log(10) + wday_effect_prior_mean <- 1 / 7 + wday_effect_prior_sd <- 0.05 + initial_growth_prior_mean <- 0 + initial_growth_prior_sd <- 0.01 + autoreg_rt_a <- 2 # shape1 parameter of autoreg term on Rt trend + autoreg_rt_b <- 40 # shape2 parameter of autoreg on Rt trend + autoreg_conc_a <- 1 # shape1 parameter of autoreg term on Ct trend + autoreg_conc_b <- 2 # shape 2 parameter of autoreg term on Ct trend + # mean = a/(a+b) = 0.05, stdv = sqrt(a)/b = sqrt(2)/40 = 0.035 + eta_sd_sd <- 0.01 + p_hosp_sd_logit <- 0.3 + p_hosp_w_sd_sd <- 0.01 + ww_site_mod_sd_sd <- 0.25 + log_phi_g_prior_mean <- log(0.1) # prior mean in individual level dispersion + # in fecal shedding + log_phi_g_prior_sd <- 5 # wide std + + # Priors for initial growth and drift term (which we will eventually fit) + drift <- 1 + initial_growth <- 0 + + params <- data.frame( + ml_of_ww_per_person_day, uot, mu_gi, sigma_gi, + r, backward_shape, backward_scale, + neg_binom_mu, neg_binom_size, + gt_max, p_hosp_mean, p_hosp_sd, + t_peak_mean, t_peak_sd, viral_peak_mean, viral_peak_sd, + duration_shedding_mean, duration_shedding_sd, + inv_sqrt_phi_prior_mean, inv_sqrt_phi_prior_sd, + phi_w_prior_mean, phi_w_prior_sd, + r_prior_mean, r_prior_sd, log10_g_prior_mean, + log10_g_prior_sd, log_g_prior_mean, + log_g_prior_sd, + wday_effect_prior_mean, + wday_effect_prior_sd, initial_growth_prior_mean, initial_growth_prior_sd, + drift, initial_growth, dur_inf, + autoreg_rt_a, autoreg_rt_b, + autoreg_conc_a, autoreg_conc_b, + sigma_ww_site_prior_mean_mean, + sigma_ww_site_prior_mean_sd, + sigma_ww_site_prior_sd_mean, + sigma_ww_site_prior_sd_sd, + eta_sd_sd, + p_hosp_sd_logit, + p_hosp_w_sd_sd, + ww_site_mod_sd_sd, + sigma_rt_prior, + log_phi_g_prior_mean, + log_phi_g_prior_sd, + infection_feedback_prior_mean, + infection_feedback_prior_sd + ) + + return(params) +} + + +## Get stan data for the different models ------------------------------------- + +#' @title Get stan data +#' @export +#' @description Stan data needed for the model where we aggregate the ww data +#' so that we have at most one WW osbservation per day (but likely a weekly avg) +#' +#' +#' @param train_data +#' @param params +#' @param forecast_date +#' @param forecast_time +#' @param include_hosp +#' @param compute_likelihood +#' @param generation_interval vector of discretized probability mass indexed +#' starting at day 1 after infection, describing the probability of onwards +#' infection on each day +#' after infection +#' @param inf_to_hosp vector of discretized probability mass describing the +#' probability of hopsital admissions on each day of infection, indexed +#' starting at 0 +#' @param infection_feedback_pmf vector of discretized probability mass +#' used to enforce the delay distribution on infection feedback +#' @param ... +#' +#' @return +#' @export +#' +#' @examples +get_stan_data <- function(train_data, params, forecast_date, + forecast_time, include_hosp, + compute_likelihood, + generation_interval, + inf_to_hosp, + infection_feedback_pmf, ...) { + # Assign parmeter names + par_names <- colnames(params) + for (i in seq_along(par_names)) { + assign(par_names[i], as.double(params[i])) + } + + + # Train data is only for a single targroup, + include_ww <- unique(train_data$include_ww) + stopifnot( + "Multiple model types getting passed into model" = + length(include_ww) == 1 + ) + + last_obs_hosp_date <- max(train_data$date[!is.na( + train_data$daily_hosp_admits + )]) + last_obs_ww_date <- train_data %>% + filter(!is.na(ww), period != "forecast") %>% + select(date) %>% + pull(date) %>% + max() + last_date <- max(last_obs_hosp_date, last_obs_ww_date) + + nowcast_time <- train_data %>% + select(date, period) %>% + filter(period == "nowcast") %>% + nrow() + + # Get indices + ot <- train_data %>% + filter(period == "calibration") %>% + nrow() # all observed time + # number of days with which we observe WW + owt <- train_data %>% + filter(period != "forecast", !is.na(ww)) %>% + nrow() + # hospital admissions times + oht <- train_data %>% + filter(period != "forecast", !is.na(daily_hosp_admits)) %>% + nrow() + + # horizon time (forecast, though this could in reality include a nowcast) + ht <- nowcast_time + forecast_time + # vector of obsherved WW times (starting from + # day 1 = first observed hospital admissions day) + ww_sampled_times <- train_data %>% + filter(period != "forecast", !is.na(ww)) %>% + pull(t) + # vector of hospitalized times + hosp_times <- train_data %>% + filter(period != "forecast", !is.na(daily_hosp_admits)) %>% + pull(t) + + t <- seq(1, ht + ot) + dates <- seq( + from = min(train_data$date), to = + (min(train_data$date) + days(ht + ot - 1)), by = "days" + ) + day_of_week <- lubridate::wday(dates, week_start = 1) + n_weeks <- ceiling((ot + ht) / 7) + tot_weeks <- ceiling((ot + uot + ht) / 7) + + # matrix to convert R(t) from weekly to daily + ind_m <- get_ind_m(ot + ht, n_weeks) + + # matrix to transform p_hosp RW from weekly to daily + p_hosp_m <- get_ind_m_cum_sum(uot + ot + ht, tot_weeks) + + # Get other variables needed from data + pop <- train_data %>% + select(pop) %>% + unique() %>% + pull(pop) + stopifnot("More than one population size in training data" = length(pop) == 1) + + # Estimate of number of initial infections + i0 <- mean(train_data$daily_hosp_admits[1:7], na.rm = TRUE) / p_hosp_mean + + + # package up parameters for stan data object + viral_shedding_pars <- c( + t_peak_mean, t_peak_sd, viral_peak_mean, viral_peak_sd, + duration_shedding_mean, duration_shedding_sd + ) + + + hosp_delay_max <- length(inf_to_hosp) + hosp_train <- train_data %>% filter( + period == "calibration", + !is.na(daily_hosp_admits) + ) + ww_train <- train_data %>% filter(period != "forecast", !is.na(ww)) + + data_renewal <- list( + gt_max = gt_max, + hosp_delay_max = hosp_delay_max, + inf_to_hosp = inf_to_hosp, + dur_inf = dur_inf, # this is used bc drift approach needs currently infected + mwpd = ml_of_ww_per_person_day, + ot = ot, + owt = owt, + oht = oht, + uot = uot, + ht = ht, + n_weeks = n_weeks, + ind_m = ind_m, + tot_weeks = tot_weeks, + p_hosp_m = p_hosp_m, + generation_interval = generation_interval, + ts = 1:gt_max, + n = pop, + hosp_times = hosp_times, + ww_sampled_times = ww_sampled_times, + hosp = hosp_train$daily_hosp_admits, + day_of_week = day_of_week, + log_conc = log(ww_train$ww + 1e-8), + compute_likelihood = compute_likelihood, # + include_ww = include_ww, + include_hosp = include_hosp, + if_l = length(infection_feedback_pmf), + infection_feedback_pmf = infection_feedback_pmf, + # Priors + viral_shedding_pars = viral_shedding_pars, # tpeak, viral peak, + # duration shedding + autoreg_rt_a = autoreg_rt_a, + autoreg_rt_b = autoreg_rt_b, + inv_sqrt_phi_prior_mean = inv_sqrt_phi_prior_mean, + inv_sqrt_phi_prior_sd = inv_sqrt_phi_prior_sd, + r_prior_mean = r_prior_mean, + r_prior_sd = r_prior_sd, + log10_g_prior_mean = log10_g_prior_mean, + log10_g_prior_sd = log10_g_prior_sd, + log_i0_prior_mean = log(i0 / pop), + log_i0_prior_sd = 1, + wday_effect_prior_mean = wday_effect_prior_mean, + wday_effect_prior_sd = wday_effect_prior_sd, + initial_growth_prior_mean = initial_growth_prior_mean, + initial_growth_prior_sd = initial_growth_prior_sd, + sigma_ww_prior_mean = sigma_ww_site_prior_mean_mean, + eta_sd_sd = eta_sd_sd, + p_hosp_mean = p_hosp_mean, + p_hosp_sd_logit = p_hosp_sd_logit, + p_hosp_w_sd_sd = p_hosp_w_sd_sd, + infection_feedback_prior_mean = infection_feedback_prior_mean, + infection_feedback_prior_sd = infection_feedback_prior_sd + ) + + return(data_renewal) +} + +#' @title Get stan data site level model +#' @description +#' Get the formating of the stan data needed for the site level model, where +#' we can observe WW observations on any day and multiple per day across +#' different sites +#' +#' +#' @param train_data +#' @param params +#' @param forecast_date +#' @param forecast_time +#' @param include_hosp +#' @param compute_likelihood +#' @param model_type +#' @param generation_interval vector of discretized probability mass indexed +#' starting at day 1 after infection, describing the probability of onwards +#' infection on each day +#' after infection +#' @param inf_to_hosp vector of discretized probability mass describing the +#' probability of hopsital admissions on each day of infection, indexed +#' starting at 0 +#' @param infection_feedback_pmf vector of discretized probability mass +#' used to enforce the delay distribution on infection feedback +#' @param ... +#' +#' @return +#' @export +#' +#' @examples +get_stan_data_site_level_model <- function(train_data, params, forecast_date, + forecast_time, + model_type, + generation_interval, + inf_to_hosp, + infection_feedback_pmf, + include_hosp = 1, + compute_likelihood = 1, + ...) { + # Assign parmeter names + par_names <- colnames(params) + for (i in seq_along(par_names)) { + assign(par_names[i], as.double(params[i])) + } + + # Filter to remove outliers in WW data + n_ww_data_points <- sum(!is.na(train_data$ww)) + train_data <- train_data %>% mutate( + ww = ifelse(flag_as_ww_outlier != 1, ww, NA) + ) + + # Train data is only for a single targroup, + include_ww <- unique(train_data$include_ww) + stopifnot( + "Multiple model types getting passed into model" = + length(include_ww) == 1 + ) + + last_obs_hosp_date <- max(train_data$date[!is.na( + train_data$daily_hosp_admits + )]) + last_obs_ww_date <- train_data %>% + filter(!is.na(ww), date <= (forecast_date - days(2))) %>% + select(date) %>% + pull(date) %>% + max() + last_date <- max(last_obs_hosp_date, last_obs_ww_date) + + # Populations should be based on the site, not the lab-site combo + # if there are multiple populations, start by just taking the avg + # later, can refactor to pass in a vector or matrix by date + pop_ww <- train_data %>% + select(site_index, ww_pop) %>% + filter(!is.na(site_index)) %>% + group_by(site_index) %>% + summarise(pop_avg = mean(ww_pop)) %>% + arrange(site_index, "desc") %>% + pull(pop_avg) + + nowcast_time <- train_data %>% + select(date, period) %>% + filter(period == "nowcast") %>% + distinct() %>% + nrow() + + # Get indices + ot <- train_data %>% + filter(period == "calibration") %>% + select(t) %>% + distinct() %>% + nrow() # all observed time + # number of days with which we observe WW + owt <- train_data %>% + filter(date <= last_obs_ww_date, !is.na(ww)) %>% + distinct() %>% + nrow() + # hospital admissions times + oht <- train_data %>% + filter(period != "forecast", !is.na(daily_hosp_admits)) %>% + select(t) %>% + distinct() %>% + nrow() + + message("Removed ", n_ww_data_points - owt, " outliers from WW data") + + n_censored <- train_data %>% + filter(date <= last_obs_ww_date, !is.na(ww), below_LOD == 1) %>% + distinct() %>% + nrow() + n_uncensored <- owt - n_censored + + # These need to be whatever indices relative to the ww_sampled_times and + # ww_sampled sites they are so that we subset those + ww_censored <- train_data %>% + filter(date <= last_obs_ww_date, !is.na(ww)) %>% + distinct() %>% + mutate(ind_rel_to_sampled_times = row_number()) %>% + filter(below_LOD == 1) %>% + pull(ind_rel_to_sampled_times) + + ww_uncensored <- train_data %>% + filter(date <= last_obs_ww_date, !is.na(ww)) %>% + distinct() %>% + mutate(ind_rel_to_sampled_times = row_number()) %>% + filter(below_LOD == 0) %>% + pull(ind_rel_to_sampled_times) + + stopifnot( + "Length of censored vectors incorrect" = + length(ww_censored) + length(ww_uncensored) == owt + ) + # horizon time (forecast, though this could in reality include a nowcast) + ht <- nowcast_time + forecast_time + + # vector of obsherved WW times (starting from + # day 1 = first observed hospital admissions day) + ww_sampled_times <- train_data %>% + filter(date <= last_obs_ww_date, !is.na(ww)) %>% + distinct() %>% + pull(t) + # vector of hospitalized times + hosp_times <- train_data %>% + filter(period != "forecast", !is.na(daily_hosp_admits)) %>% + select(t) %>% + distinct() %>% + pull(t) + ww_sampled_sites <- train_data %>% + filter(date <= last_obs_ww_date, !is.na(ww)) %>% + distinct() %>% + select(site_index) %>% + pull() + ww_lod <- train_data %>% + filter(date <= last_obs_ww_date, !is.na(ww)) %>% + distinct() %>% + select(lod_sewage) %>% + pull() + ww_sampled_lab_sites <- train_data %>% + filter(date <= last_obs_ww_date, !is.na(ww)) %>% + distinct() %>% + select(lab_site_index) %>% + pull() + n_ww_sites <- train_data %>% + select(site_index) %>% + filter(!is.na(site_index)) %>% + distinct() %>% + nrow() + n_ww_lab_sites <- train_data %>% + select(lab_site_index) %>% + filter(!is.na(lab_site_index)) %>% + distinct() %>% + nrow() + lab_site_to_site_map <- train_data %>% + select(lab_site_index, site_index) %>% + arrange(lab_site_index, "desc") %>% + filter(!is.na(lab_site_index), !is.na(site_index)) %>% + distinct() %>% + pull(site_index) + + t <- seq(1, ht + ot) + dates <- seq( + from = min(train_data$date), to = + (min(train_data$date) + days(ht + ot - 1)), by = "days" + ) + day_of_week <- lubridate::wday(dates, week_start = 1) + n_weeks <- ceiling((ot + ht) / 7) + tot_weeks <- ceiling((ot + uot + ht) / 7) + + # matrix to transform from weekly to daily + ind_m <- get_ind_m(ot + ht, n_weeks) + + # matrix to transform p_hosp RW from weekly to daily + p_hosp_m <- get_ind_m_cum_sum(uot + ot + ht, tot_weeks) + + # Get other variables needed from data + pop <- train_data %>% + select(pop) %>% + unique() %>% + pull(pop) + stopifnot( + "More than one population size in training data" = + length(pop) == 1 + ) + + # Estimate of number of initial infections + i0 <- mean(train_data$daily_hosp_admits[1:7], na.rm = TRUE) / p_hosp_mean + + + + # package up parameters for stan data object + viral_shedding_pars <- c( + t_peak_mean, t_peak_sd, viral_peak_mean, viral_peak_sd, + duration_shedding_mean, duration_shedding_sd + ) + + hosp_delay_max <- length(inf_to_hosp) + + hosp_train <- train_data %>% + filter(period == "calibration", !is.na(daily_hosp_admits)) %>% + select(date, daily_hosp_admits) %>% + distinct() + ww_train <- train_data %>% + filter(date <= last_obs_ww_date, !is.na(ww)) %>% + distinct() + + data_renewal <- list( + gt_max = gt_max, + hosp_delay_max = hosp_delay_max, + inf_to_hosp = inf_to_hosp, + dur_inf = dur_inf, + mwpd = ml_of_ww_per_person_day, + ot = ot, + n_ww_sites = n_ww_sites, + n_ww_lab_sites = n_ww_lab_sites, + owt = owt, + oht = oht, + n_censored = n_censored, + n_uncensored = n_uncensored, + uot = uot, + ht = ht, + n_weeks = n_weeks, + ind_m = ind_m, + tot_weeks = tot_weeks, + p_hosp_m = p_hosp_m, + generation_interval = generation_interval, + ts = 1:gt_max, + n = pop, + ww_sampled_times = ww_sampled_times, + hosp_times = hosp_times, + ww_sampled_lab_sites = ww_sampled_lab_sites, + ww_log_lod = log(ww_lod), + ww_censored = ww_censored, + ww_uncensored = ww_uncensored, + ww_pops = pop_ww, + hosp = hosp_train$daily_hosp_admits, + day_of_week = day_of_week, + log_conc = as.numeric(log(ww_train$ww + 1e-8)), + compute_likelihood = compute_likelihood, + include_ww = include_ww, + include_hosp = include_hosp, + if_l = length(infection_feedback_pmf), + infection_feedback_pmf = infection_feedback_pmf, + # All the priors! + viral_shedding_pars = viral_shedding_pars, # tpeak, viral peak, + # duration shedding + autoreg_rt_a = autoreg_rt_a, + autoreg_rt_b = autoreg_rt_b, + inv_sqrt_phi_prior_mean = inv_sqrt_phi_prior_mean, + inv_sqrt_phi_prior_sd = inv_sqrt_phi_prior_sd, + r_prior_mean = r_prior_mean, + r_prior_sd = r_prior_sd, + log10_g_prior_mean = log10_g_prior_mean, + log10_g_prior_sd = log10_g_prior_sd, + log_i0_prior_mean = log(i0 / pop), + log_i0_prior_sd = 1, + wday_effect_prior_mean = wday_effect_prior_mean, + wday_effect_prior_sd = wday_effect_prior_sd, + initial_growth_prior_mean = initial_growth_prior_mean, + initial_growth_prior_sd = initial_growth_prior_sd, + sigma_ww_site_prior_mean_mean = sigma_ww_site_prior_mean_mean, + sigma_ww_site_prior_mean_sd = sigma_ww_site_prior_mean_sd, + sigma_ww_site_prior_sd_mean = sigma_ww_site_prior_sd_mean, + sigma_ww_site_prior_sd_sd = sigma_ww_site_prior_sd_sd, + eta_sd_sd = eta_sd_sd, + p_hosp_mean = p_hosp_mean, + p_hosp_sd_logit = p_hosp_sd_logit, + p_hosp_w_sd_sd = p_hosp_w_sd_sd, + ww_site_mod_sd_sd = ww_site_mod_sd_sd, + infection_feedback_prior_mean = infection_feedback_prior_mean, + infection_feedback_prior_sd = infection_feedback_prior_sd + ) + + if (model_type == "site-level time-varying concentration") { + data_renewal <- c(data_renewal, + autoreg_conc_a = autoreg_conc_a, + autoreg_conc_b = autoreg_conc_b + ) + } + + if (model_type == "site-level infection dynamics") { + data_renewal <- c(data_renewal, + list(ww_sampled_sites = ww_sampled_sites), + list(lab_site_to_site_map = lab_site_to_site_map), + sigma_rt_prior = sigma_rt_prior, + log_phi_g_prior_mean = log_phi_g_prior_mean, + log_phi_g_prior_sd = log_phi_g_prior_sd + ) + } + + + + return(data_renewal) +} + + + +## Initialization lists to be passed to stan--------------------------------- +#' @title Get initialization function for stan for aggregated model +#' @param train_data +#' @param params +#' @param stan_data +#' @return the initialization function +#' @keywords internal +state_agg_inits <- function(train_data, params, stan_data) { + # Assign parmeter names + par_names <- colnames(params) + for (i in seq_along(par_names)) { + assign(par_names[i], as.double(params[i])) + } + + # Get other variables needed from data + pop <- train_data %>% + select(pop) %>% + unique() %>% + pull(pop) + stopifnot( + "More than one population size in training data" = + length(pop) == 1 + ) + + n_weeks <- as.numeric(stan_data$n_weeks) + tot_weeks <- as.numeric(stan_data$tot_weeks) + + # Estimate of number of initial infections + i0 <- mean(train_data$daily_hosp_admits[1:7], na.rm = TRUE) / p_hosp_mean + + init_list <- list( + w = rnorm(n_weeks - 1, 0, 0.01), + eta_sd = abs(rnorm(1, 0, 0.01)), + autoreg_rt = abs(rnorm(1, autoreg_rt_a / (autoreg_rt_a + autoreg_rt_b), 0.05)), + log_r = rnorm(1, convert_to_logmean(1, 0.1), convert_to_logsd(1, 0.1)), + log_i0_over_n = rnorm(1, log(i0 / pop), 0.05), + initial_growth = rnorm(1, 0, 0.001), + inv_sqrt_phi_h = 1 / (sqrt(200)) + rnorm(1, 1 / 10000, 1 / 10000), + sigma_ww = abs(rnorm(1, 0, 0.5)), + p_hosp_int = rnorm(1, qlogis(p_hosp_mean), 0.01), + p_hosp_w = rnorm(tot_weeks - 1, 0, 0.01), + p_hosp_w_sd = abs(rnorm(1, 0.01, 0.001)), + t_peak = rnorm(1, t_peak_mean, 0.1 * t_peak_sd), + viral_peak = rnorm(1, viral_peak_mean, 0.1 * viral_peak_sd), + dur_shed = rnorm(1, duration_shedding_mean, 0.1 * duration_shedding_sd), + log10_g = rnorm(1, log10_g_prior_mean, 0.5), + hosp_wday_effect = to_simplex(rnorm(7, 1 / 7, 0.01)), + infection_feedback = abs(rnorm( + 1, infection_feedback_prior_mean, + 0.1 * infection_feedback_prior_sd + )) + ) + return(init_list) +} + + +#' @title Get initialization function for stan for time-varying concentration model +#' @param train_data +#' @param params +#' @param stan_data +#' @return the initialization function +#' @keywords internal +time_varying_conc_inits <- function(train_data, params, stan_data) { + par_names <- colnames(params) + for (i in seq_along(par_names)) { + assign(par_names[i], as.double(params[i])) + } + + + pop <- train_data %>% + select(pop) %>% + unique() %>% + pull(pop) + stopifnot("More than one population size in training data" = length(pop) == 1) + + n_weeks <- as.numeric(stan_data$n_weeks) + tot_weeks <- as.numeric(stan_data$tot_weeks) + n_ww_lab_sites <- as.numeric(stan_data$n_ww_lab_sites) + + # Estimate of number of initial infections + i0 <- mean(train_data$daily_hosp_admits[1:7], na.rm = TRUE) / p_hosp_mean + + init_list <- list( + w = rnorm(n_weeks - 1, 0, 0.01), + eta_sd = abs(rnorm(1, 0, 0.01)), + sigma_log_conc = abs(rnorm(1, 2, 0.5)), + autoreg_rt = abs(rnorm(1, autoreg_rt_a / (autoreg_rt_a + autoreg_rt_b), 0.05)), + autoreg_conc = abs(rnorm(1, autoreg_conc_a / (autoreg_conc_a + autoreg_conc_b), 0.05)), + log_r = rnorm(1, convert_to_logmean(1, 0.1), convert_to_logsd(1, 0.1)), + log_i0_over_n = rnorm(1, log(i0 / pop), 0.05), + initial_growth = rnorm(1, 0, 0.001), + inv_sqrt_phi_h = 1 / sqrt(200) + rnorm(1, 1 / 10000, 1 / 10000), + sigma_ww_site_mean = abs(rnorm( + 1, sigma_ww_site_prior_mean_mean, + 0.1 * sigma_ww_site_prior_mean_sd + )), + sigma_ww_site_sd = abs(rnorm( + 1, sigma_ww_site_prior_sd_mean, + 0.1 * sigma_ww_site_prior_sd_sd + )), + error_conc_site = matrix( + rnorm(n_ww_lab_sites * (stan_data$ot + stan_data$ht), + mean = 0, sd = 0.1 + ), + n_ww_lab_sites, (stan_data$ot + stan_data$ht) + ), + sigma_ww_site_raw = as.array(abs(rnorm(n_ww_lab_sites, 0, 0.05))), + p_hosp_int = rnorm(1, qlogis(p_hosp_mean), 0.01), + p_hosp_w = rnorm(tot_weeks - 1, 0, 0.01), + p_hosp_w_sd = abs(rnorm(1, 0.01, 0.001)), + t_peak = rnorm(1, t_peak_mean, 0.1 * t_peak_sd), + viral_peak = rnorm(1, viral_peak_mean, 0.1 * viral_peak_sd), + dur_shed = rnorm(1, duration_shedding_mean, 0.1 * duration_shedding_sd), + log10_g = rnorm(1, log10_g_prior_mean, 0.5), + ww_site_mod_raw = as.array(abs(rnorm(n_ww_lab_sites, 0, 0.3))), + ww_site_mod_sd = abs(rnorm(1, 0, 0.05)), + hosp_wday_effect = to_simplex(rnorm(7, 1 / 7, 0.01)), + infection_feedback = abs(rnorm(1, 750, 50)) + ) + return(init_list) +} + + +#' @title Get initialization function for stan for site-level observation error model +#' @param train_data +#' @param params +#' @param stan_data +#' @return the initialization function +#' @keywords internal +site_level_obs_inits <- function(train_data, params, stan_data) { + par_names <- colnames(params) + for (i in seq_along(par_names)) { + assign(par_names[i], as.double(params[i])) + } + + + pop <- train_data %>% + select(pop) %>% + unique() %>% + pull(pop) + stopifnot("More than one population size in training data" = length(pop) == 1) + + n_weeks <- as.numeric(stan_data$n_weeks) + tot_weeks <- as.numeric(stan_data$tot_weeks) + n_ww_lab_sites <- as.numeric(stan_data$n_ww_lab_sites) + + # Estimate of number of initial infections + i0 <- mean(train_data$daily_hosp_admits[1:7], na.rm = TRUE) / p_hosp_mean + + init_list <- list( + w = rnorm(n_weeks - 1, 0, 0.01), + eta_sd = abs(rnorm(1, 0, 0.01)), + autoreg_rt = abs(rnorm(1, autoreg_rt_a / (autoreg_rt_a + autoreg_rt_b), 0.05)), + log_r = rnorm(1, convert_to_logmean(1, 0.1), convert_to_logsd(1, 0.1)), + log_i0_over_n = rnorm(1, log(i0 / pop), 0.05), + initial_growth = rnorm(1, 0, 0.001), + inv_sqrt_phi_h = 1 / sqrt(200) + rnorm(1, 1 / 10000, 1 / 10000), + sigma_ww_site_mean = abs(rnorm( + 1, sigma_ww_site_prior_mean_mean, + 0.1 * sigma_ww_site_prior_mean_sd + )), + sigma_ww_site_sd = abs(rnorm( + 1, sigma_ww_site_prior_sd_mean, + 0.1 * sigma_ww_site_prior_sd_sd + )), + sigma_ww_site_raw = as.array(abs(rnorm(n_ww_lab_sites, 0, 0.05)), + dim = n_ww_lab_sites + ), + p_hosp_int = rnorm(1, qlogis(p_hosp_mean), 0.01), + p_hosp_w = rnorm(tot_weeks - 1, 0, 0.01), + p_hosp_w_sd = abs(rnorm(1, 0.01, 0.001)), + t_peak = rnorm(1, t_peak_mean, 0.1 * t_peak_sd), + viral_peak = rnorm(1, viral_peak_mean, 0.1 * viral_peak_sd), + dur_shed = rnorm(1, duration_shedding_mean, 0.1 * duration_shedding_sd), + log10_g = rnorm(1, log10_g_prior_mean, 0.5), + ww_site_mod_raw = as.array(abs(rnorm(n_ww_lab_sites, 0, 0.3))), + ww_site_mod_sd = abs(rnorm(1, 0, 0.05)), + hosp_wday_effect = to_simplex(rnorm(7, 1 / 7, 0.01)), + infection_feedback = abs(rnorm(1, 750, 50)) + ) + return(init_list) +} + +#' @title Get initialization function for stan for site-level infection model +#' @param train_data +#' @param params +#' @param stan_data +#' @return the initialization function +#' @keywords internal +site_level_inf_inits <- function(train_data, params, stan_data) { + # Assign parmeter names + par_names <- colnames(params) + for (i in seq_along(par_names)) { + assign(par_names[i], as.double(params[i])) + } + + # Get other variables needed from data + pop <- train_data %>% + select(pop) %>% + unique() %>% + pull(pop) + stopifnot("More than one population size in training data" = length(pop) == 1) + + n_weeks <- as.numeric(stan_data$n_weeks) + tot_weeks <- as.numeric(stan_data$tot_weeks) + n_ww_sites <- as.numeric(stan_data$n_ww_sites) + n_ww_lab_sites <- as.numeric(stan_data$n_ww_lab_sites) + ot <- as.numeric(stan_data$ot) + ht <- as.numeric(stan_data$ht) + + # Estimate of number of initial infections + i0 <- mean(train_data$daily_hosp_admits[1:7], na.rm = TRUE) / p_hosp_mean + + + init_list <- list( + w = rnorm(n_weeks - 1, 0, 0.01), + eta_sd = abs(rnorm(1, 0, 0.01)), + eta_i0 = abs(rnorm(n_ww_sites, 0, 0.01)), + sigma_i0 = abs(rnorm(1, 0, 0.01)), + eta_growth = abs(rnorm(n_ww_sites, 0, 0.01)), + sigma_growth = abs(rnorm(1, 0, 0.01)), + autoreg_rt = abs(rnorm(1, autoreg_rt_a / (autoreg_rt_a + autoreg_rt_b), 0.05)), + log_r_mu_intercept = rnorm(1, convert_to_logmean(1, 0.1), convert_to_logsd(1, 0.1)), + error_site = matrix( + rnorm(n_ww_sites * n_weeks, mean = 0, sd = 0.1), + n_ww_sites, n_weeks + ), + autoreg_rt_site = abs(rnorm(1, 0.5, 0.05)), + sigma_rt = abs(rnorm(1, 0, 0.01)), + log_i0_over_n = rnorm(1, log(i0 / pop), 0.05), + initial_growth = rnorm(1, 0, 0.001), + inv_sqrt_phi_h = 1 / sqrt(200) + rnorm(1, 1 / 10000, 1 / 10000), + sigma_ww_site_mean = abs(rnorm( + 1, sigma_ww_site_prior_mean_mean, + 0.1 * sigma_ww_site_prior_mean_sd + )), + sigma_ww_site_sd = abs(rnorm( + 1, sigma_ww_site_prior_sd_mean, + 0.1 * sigma_ww_site_prior_sd_sd + )), + sigma_ww_site_raw = abs(rnorm(n_ww_lab_sites, 0, 0.05)), + p_hosp_int = rnorm(1, qlogis(p_hosp_mean), 0.01), + p_hosp_w = rnorm(tot_weeks - 1, 0, 0.01), + p_hosp_w_sd = abs(rnorm(1, 0.01, 0.001)), + t_peak = rnorm(1, t_peak_mean, 0.1 * t_peak_sd), + viral_peak = rnorm(1, viral_peak_mean, 0.1 * viral_peak_sd), + dur_shed = rnorm(1, duration_shedding_mean, 0.1 * duration_shedding_sd), + log10_g = rnorm(1, log10_g_prior_mean, 0.5), + ww_site_mod_raw = abs(rnorm(n_ww_lab_sites, 0, 0.05)), + ww_site_mod_sd = abs(rnorm(1, 0, 0.05)), + hosp_wday_effect = to_simplex(rnorm(7, 1 / 7, 0.01)), + infection_feedback = abs(rnorm( + 1, infection_feedback_prior_mean, + 0.5 * infection_feedback_prior_sd + )) + ) + + + return(init_list) +} +#' Get shortened name for writing a file with model file name +#' +#' @param model_type +#' +#' @return shortened model type name +#' @export +#' +#' @examples +get_model_file_name <- function(model_type, include_ww) { + model_file_name <- case_when( + (model_type == "state-level aggregated wastewater" && include_ww == 0) ~ "hosp_only", + (model_type == "state-level aggregated wastewater" && include_ww == 1) ~ "state_agg_WW_hosp", + model_type == "hospital admissions only" ~ "hosp_only", + model_type == "site-level observation error" ~ "site_level_obs_error", + model_type == "site-level infection dynamics" ~ "site_level_inf_dyn", + model_type == "site-level time-varying concentration" ~ "site_level_time_varying_C" + ) + return(model_file_name) +} + + +#' @title Get path to stan wastewater model +#' @param model_type +#' @return the file path +#' @export +get_model_file_path <- function(model_type) { + if (model_type %in% c( + "state-level aggregated wastewater", "hospital admissions only" + )) { + model_file_path <- system.file( + "stan", + "renewal_ww_hosp.stan", + package = "cfaforecastrenewalww" + ) + } else if (model_type == "site-level observation error") { + model_file_path <- system.file( + "stan", + "renewal_ww_hosp_site_level_phi.stan", + package = "cfaforecastrenewalww" + ) + } else if (model_type == "site-level time-varying concentration") { + model_file_path <- system.file( + "stan", + "renewal_ww_hosp_site_level_phi_varying_C.stan", + package = "cfaforecastrenewalww" + ) + } else if (model_type == "site-level infection dynamics") { + model_file_path <- system.file("stan", + "renewal_ww_hosp_site_level_inf_dynamics.stan", + package = "cfaforecastrenewalww" + ) + } else { + model_file_path <- "Error" + } + stopifnot("Model type not specified correctly" = model_file_path != "Error") + + + return(model_file_path) +} + +#' @title Get initialization function for stan +#' @param model_type +#' @param train_data +#' @param params +#' @param stan_data +#' @return the initialization function +#' @export +get_init_fun <- function(model_type, train_data, params, stan_data) { + if (model_type == "site-level time-varying concentration") { + init_fun <- function() { + time_varying_conc_inits(train_data, params, stan_data) + } + } else if (model_type == "site-level observation error") { + init_fun <- function() { + site_level_obs_inits(train_data, params, stan_data) + } + } else if (model_type == "site-level infection dynamics") { + init_fun <- function() { + site_level_inf_inits(train_data, params, stan_data) + } + } else { + message("Model type not specified properly") + } + + return(init_fun) +} diff --git a/cfaforecastrenewalww/R/make_pps_data.R b/cfaforecastrenewalww/R/make_pps_data.R new file mode 100644 index 00000000..0351a532 --- /dev/null +++ b/cfaforecastrenewalww/R/make_pps_data.R @@ -0,0 +1,120 @@ +#' Gets generated quantites from a fitted ww model and formats for stan +#' @description +#' This function takes in a fitted wastewater model and some of the inputs which produced +#' it and returns data which can be used to fit the model to the posterior +#' predictive distribution of datasets. +#' +#' @param mcmc_fit CmdStanMCMC object +#' @param real_data the stan data object which produced the mcmc_fit +#' @param config the output of get_config_vals() which produced the mcmc_fit +#' @param draw vector, which draws from the MCMC object do we want in the result? +#' If NULL, uses all. This can be a very large data frame! +#' +#' @return a list, each of which is a list of formatted stan data +#' @export +make_pps_data <- function(mcmc_fit, + real_data, + config, + draw = NULL) { + all_draws <- posterior::subset_draws( + # list is supposedly more RAM-friendly format + mcmc_fit$draws(format = "draws_list"), + draw = draw + ) + + # Get information about the model's generated quantities + param_df <- get_model_param_df(mcmc_fit) %>% + filter(generated_quantity) + + pred_hosp_data <- .get_1_param( + param_df %>% filter(param_name == "pred_hosp"), + all_draws + ) + + pred_ww_data <- .get_1_param( + param_df %>% filter(param_name == "pred_ww"), + all_draws + ) + + pps <- lapply(seq_along(draw), function(new_draw_idx) { + .make_1_pps_data( + pred_hosp_data %>% filter(draw == new_draw_idx), + pred_ww_data %>% filter(draw == new_draw_idx), + real_data, + config + ) + }) + + return(pps) +} + +#' Internal helper for make_pps_data() +#' @description +#' Takes in pre-processed predictive hospital and wastewater data, plus a real-data +#' stan input and a config. Outputs a posterior predictive dataset. +#' +#' @param pps_hosp_data one draw's worth of pps hospital data +#' @param pps_ww_data one draw's worth of pps ww data +#' @param real_data the stan data object +#' @param config the output of get_config_vals() for the original (real) data +#' +#' @return a list, as real_data but with the pps hospital and ww data instead +#' of the real observations +#' @keywords internal + +.make_1_pps_data <- function(pps_hosp_data, + pps_ww_data, + real_data, + config) { + stan_data <- real_data + + y_df <- bind_rows( + pps_hosp_data, + pps_ww_data + ) + + hosp_reporting_delay <- config$hosp_reporting_delay + length_generated_hosp <- y_df %>% + filter(name == "pred_hosp") %>% + nrow() + calibration_time <- config$calibration_time + length_input_hosp <- calibration_time + + # Reallocate hosp vector to be the same length as input hosp vector + hosp <- y_df %>% + filter( + name == "pred_hosp", + day <= calibration_time + ) %>% + pull(value) + + # Reallocate wastewater vector to be the same parameter as + # the input wastewater vector + ww_sampled_times <- stan_data$ww_sampled_times + ww_sampled_lab_sites <- stan_data$ww_sampled_lab_sites + owt <- stan_data$owt + + # Make into a matrix with each row a ww_lab_site and each column a time + ww_conc_matrix <- y_df %>% + filter(name == "pred_ww") %>% + select(value, ww_lab_site, day) %>% + pivot_wider( + names_from = "day", + values_from = "value" + ) %>% + select(-ww_lab_site) + ww_conc_matrix <- data.matrix(ww_conc_matrix) + + # Get the vector of generated wastewater concentrations using the same + # sampling as in the "real" data + log_conc <- rep(0, owt) + for (i in 1:owt) { + log_conc[i] <- ww_conc_matrix[ww_sampled_lab_sites[i], ww_sampled_times[i]] + } + + + stan_data$log_conc <- log_conc + stan_data$hosp <- hosp + + return(stan_data) +} diff --git a/cfaforecastrenewalww/R/model_params.R b/cfaforecastrenewalww/R/model_params.R new file mode 100644 index 00000000..84b887ed --- /dev/null +++ b/cfaforecastrenewalww/R/model_params.R @@ -0,0 +1,176 @@ +#' Information about a ww model's parameters and generated quantities +#' +#' @description +#' Accepts a string describing the model name, a fitted model (output of model$sample()), +#' or a model object. +#' Returns information about the model parameters. +#' +#' @param x CmdStanModel or CmdStanFit object +#' +#' @return a dataframe containing the name of each parameter (and/or generated quantity) +#' and information about how it varies in time and across sites/labs. +#' +#' @export +get_model_param_df <- function(x) { + model <- x + if ("CmdStanModel" %in% class(x)) { + model <- basename(x$stan_file()) %>% + gsub(".stan", "", .) + } else if ("CmdStanFit" %in% class(x)) { + model <- x$metadata()$model_name %>% + gsub("_model$", "", .) + } else if (class(x) != "character") { + stop("Input to 'get_model_param_df' must be a character, a CmdStanModel, or a CmdStanFit.") + } + + static_params <- NA + daily_params <- NA + weekly_params <- NA + day_of_week_params <- NA + + site_static_params <- NA + site_daily_params <- NA + site_weekly_params <- NA + site_day_of_week_params <- NA + + lab_static_params <- NA + lab_daily_params <- NA + lab_weekly_params <- NA + lab_day_of_week_params <- NA + + lab_site_static_params <- NA + lab_site_daily_params <- NA + lab_site_weekly_params <- NA + lab_site_day_of_week_params <- NA + + static_gq <- NA + daily_gq <- NA + weekly_gq <- NA + day_of_week_gq <- NA + + site_static_gq <- NA + site_daily_gq <- NA + site_weekly_gq <- NA + site_day_of_week_gq <- NA + + lab_static_gq <- NA + lab_daily_gq <- NA + lab_weekly_gq <- NA + lab_day_of_week_gq <- NA + + lab_site_static_gq <- NA + lab_site_daily_gq <- NA + lab_site_weekly_gq <- NA + lab_site_day_of_week_gq <- NA + + # renewal_ww_hosp_site_level_phi_varying_C + if (model %in% c( + "renewal_ww_hosp_site_level_phi_varying_C", + "site-level time-varying concentration" + )) { + stop("This model has been deprecated.") + static_params <- c( + "eta_sd", "autoreg_rt", "autoreg_conc", "log_R", + "sigma_log_conc", "log_i0_over_n", "initial_growth", "inv_sqrt_phi_h", + "sigma_ww_site_mean", "sigma_ww_site_sd", "p_hosp_int", "p_hosp_w_sd", + "t_peak", "viral_peak", "dur_shed", "log10_g", + "ww_site_mod_sd", "infection_feedback" + ) + daily_params <- c("R", "new_I", "p_hosp") + weekly_params <- c("w", "p_hosp_w") + day_of_week_params <- c("hosp_wday_effect") + + lab_site_static_params <- c( + "sigma_ww_site_raw", "ww_site_mod_raw", + "ww_site_mod", "sigma_ww_site" + ) + lab_site_daily_params <- c("error_conc_site", "log_conc_site") + + daily_gq <- c("pred_hosp") + lab_site_daily_gq <- c("pred_ww") + } else if (model %in% c( + "renewal_ww_hosp_site_level_inf_dynamics", + "site-level infection dynamics" + )) { + static_params <- c( + "eta_sd", "autoreg_rt", "log_r_mu_intercept", "sigma_rt", + "autoreg_rt_site", "log_i0_over_n", "sigma_i0", "sigma_growth", + "initial_growth", "inv_sqrt_phi_h", "sigma_ww_site_mean", "sigma_ww_site_sd", + "p_hosp_w_sd", "t_peak", "dur_shed", "ww_site_mod_sd", + "infection_feedback" + ) + daily_params <- c("rt", "new_i", "p_hosp") + weekly_params <- c("w", "p_hosp_w") + day_of_week_params <- c("hosp_wday_effect") + + site_static_params <- c("eta_i0", "eta_growth") + site_daily_params <- c("r_site_t") + + lab_site_static_params <- c("ww_site_mod_raw", "sigma_ww_site_raw") + + daily_gq <- c("pred_hosp") + lab_site_daily_gq <- c("pred_ww") + } else if (model == "renewal_ww_hosp") { + stop("Not yet implemented.") + } else if (model == "renewal_ww_hosp_hierarchical_w_dispersion") { + stop("Not yet implemented.") + } else { + stop("Unrecognized model: ", model) + } + + param_list <- list( + static_params = static_params, + daily_params = daily_params, + weekly_params = weekly_params, + day_of_week_params = day_of_week_params, + site_static_params = site_static_params, + site_daily_params = site_daily_params, + site_weekly_params = site_weekly_params, + site_day_of_week_params = site_day_of_week_params, + lab_static_params = lab_static_params, + lab_daily_params = lab_daily_params, + lab_weekly_params = lab_weekly_params, + lab_day_of_week_params = lab_day_of_week_params, + lab_site_static_params = lab_site_static_params, + lab_site_daily_params = lab_site_daily_params, + lab_site_weekly_params = lab_site_weekly_params, + lab_site_day_of_week_params = lab_site_day_of_week_params, + static_gq = static_gq, + daily_gq = daily_gq, + weekly_gq = weekly_gq, + day_of_week_gq = day_of_week_gq, + site_static_gq = site_static_gq, + site_daily_gq = site_daily_gq, + site_weekly_gq = site_weekly_gq, + site_day_of_week_gq = site_day_of_week_gq, + lab_static_gq = lab_static_gq, + lab_daily_gq = lab_daily_gq, + lab_weekly_gq = lab_weekly_gq, + lab_day_of_week_gq = lab_day_of_week_gq, + lab_site_static_gq = lab_site_static_gq, + lab_site_daily_gq = lab_site_daily_gq, + lab_site_weekly_gq = lab_site_weekly_gq, + lab_site_day_of_week_gq = lab_site_day_of_week_gq + ) + + df <- data.frame( + daily = rep(c(FALSE, TRUE, FALSE, TRUE), 8), + weekly = rep(c(FALSE, FALSE, TRUE, FALSE), 8), + cyclic = rep(c(FALSE, FALSE, FALSE, TRUE), 8), + per_site = rep(c(rep(FALSE, 4), rep(TRUE, 4), rep(FALSE, 4), rep(FALSE, 4)), 2), + per_lab = rep(c(rep(FALSE, 4), rep(FALSE, 4), rep(TRUE, 4), rep(FALSE, 4)), 2), + per_lab_site = rep(c(rep(FALSE, 4), rep(FALSE, 4), rep(FALSE, 4), rep(TRUE, 4)), 2), + generated_quantity = c(rep(FALSE, 16), rep(TRUE, 16)) + ) + df$param_list <- param_list + + df <- df %>% + dplyr::relocate(param_list) %>% + tidyr::unnest(cols = c(param_list)) %>% + dplyr::filter(!is.na(param_list)) %>% + dplyr::rename(param_name = param_list) %>% + dplyr::mutate(time_varying = weekly | daily) %>% + dplyr::mutate(lab_or_site_varying = per_lab | per_site | per_lab_site) + + return(df) +} diff --git a/cfaforecastrenewalww/R/plots.R b/cfaforecastrenewalww/R/plots.R new file mode 100644 index 00000000..0166c6e5 --- /dev/null +++ b/cfaforecastrenewalww/R/plots.R @@ -0,0 +1,1503 @@ +# Plots + +#' Plot the WW and hospitalization data together +#' +#' @param comb dataframe for a single location to plot +#' @param figure_file_path higher level directory where data from this pipeline +#' will be saved +#' @param days_to_show_calib_data number of days before last hospital admissions +#' day to put on plot, default is 90 +#' @param write_files TRUE if write to file location +#' @return a plot for a single location the scaled WW versus hospital admissions +#' @export +#' +#' @examples +plot_combined_data <- function(comb, figure_file_path, + days_to_show_calib_data = 90, + write_files = TRUE, ...) { + selected_location <- comb %>% + pull(location) %>% + unique() + if (length(selected_location) != 1) { + print("Training data consists of more than one location") + } + + forecast_date <- comb %>% + pull(forecast_date) %>% + unique() + + include_ww <- comb %>% + pull(include_ww) %>% + unique() + + last_hosp_data_date <- max(comb$date[!is.na(comb$daily_hosp_admits)]) + last_ww_data_date <- max( + comb$date[comb$period != "forecast" & !is.na(comb$ww)] + ) + coeff <- ( + median(comb$daily_hosp_admits_for_eval, na.rm = TRUE) / + median(comb$ww, na.rm = TRUE) + ) + if (is.na(coeff)) { + coeff <- 1 + } + + + p <- comb %>% + filter(date >= last_hosp_data_date - days(days_to_show_calib_data)) %>% + ggplot() + + geom_bar( + aes(x = date, y = daily_hosp_admits_for_eval, fill = period), + stat = "identity", position = position_dodge(), alpha = 0.1 + ) + + geom_point( + data = comb %>% filter( + period != "forecast", + date >= last_hosp_data_date - days(days_to_show_calib_data) + ), + aes(x = date, y = ww * coeff), color = "black", fill = "black", + shape = 24 + ) + + geom_point( + data = comb %>% filter(period == "forecast"), + aes(x = date, y = ww * coeff), color = "black", fill = "white", + shape = 24, stroke = 1 + ) + + geom_vline(aes(xintercept = forecast_date), linetype = "dashed") + + geom_vline(aes(xintercept = last_hosp_data_date - days(11)), + color = "purple4", + linetype = "dashed" + ) + + geom_vline(aes(xintercept = last_ww_data_date - days(5)), + color = "darkgreen", + linetype = "dashed" + ) + + scale_y_continuous( + # Features of the first axis + name = "Daily hospital admissions", + + # Add a second axis and specify its features + sec.axis = sec_axis( + trans = ~ . / coeff, + name = "Genome copies per mL" + ) + ) + + xlab("") + + ylab("Hospital admissions") + + scale_x_date( + date_breaks = "2 weeks", + labels = scales::date_format("%Y-%m-%d") + ) + + theme_bw() + + theme( + axis.text.x = element_text( + size = 10, vjust = 1, + hjust = 1, angle = 45 + ), + axis.title.x = element_text(size = 10), + axis.title.y = element_text(size = 10), + plot.title = element_text( + size = 9, + vjust = 0.5, hjust = 0.5 + ) + ) + + ggtitle(glue::glue( + "Hospital admissions vs WW concentration in ", + "{selected_location} as of {forecast_date}" + )) + p + + model_type <- ifelse(include_ww == 1, + "state-level aggregated wastewater", + "hospital admissions only" + ) + + if (isTRUE(write_files)) { + # Helper function that checks if the path already exists and creates it + # if not + full_file_path <- file.path( + figure_file_path, selected_location + ) + create_dir(full_file_path) + + ggsave( + file.path( + full_file_path, + "observed_hosp_and_agg_WW.png" + ), + plot = p, + width = 8, + height = 5, + bg = "white" + ) + } + + + + return(p) +} + + +#' Plot of draws for a single forecast date, with optional groupings +#' +#' @param df dataframe either containing filepaths to load in model draws or +#' dataframe of model draws with data. Expected columns are: +#' name, t, value, draw, include_ww, forecast_date, hosp_reporting_delay, +#' location, date, daily_hosp_admits, daily_hosp_admits_for_eval, obs_data, +#' period, model_type +#' @param y outcome variable for the y-axis of plots, options are 'pred_hosp' +#' and 'pred_ww' +#' @param figure_file_path directory to save the figure +#' @param grouping_var what to group by, default is NA, options are 'model_type' +#' and 'location' +#' @param from_full_df if TRUE, df is a draws dataframe, if FALSE, df is a data +#' frame of filepaths +#' @param days_pre_forecast_date_plot how many days to show the calibration data +#' default is 90 +#' @param write_files whether or not to write files to the path, default is TRUE +#' @param show_calibration_data whether or not to show the data the model was +#' calibrated to, which might be different from the eval data. Default is false +#' @param show_median whether or not to show the median across all draws, default +#' is false +#' +#' @return plot object +#' @export +#' +#' @examples +get_plot_draws <- function(df, y, + figure_file_path, + grouping_var = NA, + from_full_df = FALSE, + days_pre_forecast_date_plot = 90, + write_files = TRUE, + show_calibration_data = FALSE, + show_median = FALSE) { + # Need to be able to load in multiple model runs and combine + if (isFALSE(from_full_df)) { # then load in the data + for (i in seq_len(nrow(df))) { + model_draws_i <- arrow::read_parquet( + file = + df$model_draws_file_path[i] + ) + model_draws_i <- model_draws_i %>% + filter(name == {{ y }}) %>% + select( + name, t, value, draw, include_ww, forecast_date, hosp_reporting_delay, + location, date, daily_hosp_admits, daily_hosp_admits_for_eval, obs_data, + period, model_type + ) + + if (i == 1) { + model_draws <- model_draws_i + } else { + model_draws <- rbind(model_draws, model_draws_i) + } + } + } else { + model_draws <- df %>% + filter(name == {{ y }}) %>% + select( + name, t, value, draw, include_ww, forecast_date, hosp_reporting_delay, + location, date, daily_hosp_admits, daily_hosp_admits_for_eval, obs_data, + period, model_type + ) + } + + + # check if we need to subset the model draws for plotting + if (length(unique(model_draws$draw)) > 500) { + model_draws <- model_draws %>% + filter(draw %in% sample(1:max(model_draws$draw), 100)) + } + + y_draws <- model_draws + + + # Get plot metadata + plot_metadata <- get_plot_metadata(y_draws, y) + locations <- plot_metadata$location + include_ww <- plot_metadata$include_ww + forecast_date <- plot_metadata$forecast_date + hosp_reporting_delay <- plot_metadata$hosp_reporting_delay + model_type <- plot_metadata$model_type + model_file_name <- plot_metadata$model_file_name + plot_color <- plot_metadata$plot_color + plot_shape <- ifelse(y == "pred_ww", 24, 21) + y_label <- plot_metadata$y_label + title <- plot_metadata$title + + set_color <- c( + "state-level aggregated wastewater" = "darkred", + "hospital admissions only" = "purple4", + "site-level observation error" = "darkorange4", + "site-level time-varying concentration" = "darkmagenta", + "site-level infection dynamics" = "cornflowerblue" + ) + + + y_draws <- y_draws %>% + filter(date >= ymd(forecast_date - days(days_pre_forecast_date_plot))) %>% + group_by(hosp_reporting_delay) %>% + mutate( + last_hosp_data_date = max(y_draws$date[!is.na(y_draws$daily_hosp_admits)]) + ) %>% + ungroup() + y_median <- y_draws %>% + group_by(date, location, model_type) %>% + summarise(median = quantile(value, 0.5, na.rm = TRUE)) + y_draws <- y_draws %>% left_join(y_median, by = c( + "date", + "location", "model_type" + )) + + + if (show_calibration_data == TRUE) { + # Temporarily replace the observed data column with the data the model was + # calibrated to not evaluated against + y_draws2 <- y_draws %>% mutate( + obs_data = case_when( + (name == "pred_hosp" & period == "calibration") ~ daily_hosp_admits, + (name == "pred_hosp_per_100k" & period == "calibration") ~ + daily_hosp_admits * 1e5 / pop, + (name == "pred_hosp_per_100k" & period != "calibration") ~ + daily_hosp_admits_for_eval * 1e5 / pop, + TRUE ~ obs_data + ) + ) + } + + max_obs_data <- max(y_draws$obs_data, na.rm = TRUE) + # Make a plot with the draws and the median + plot <- ggplot() + + geom_line( + data = y_draws %>% filter(period == "calibration"), + aes( + x = date, y = value, + group = draw, + color = model_type + ), + size = 0.1, alpha = 0.1 + ) + + geom_line( + data = y_draws %>% filter(period != "forecast"), + aes( + x = date, y = value, + group = draw, + color = model_type + ), + size = 0.1, alpha = 0.1 + ) + + geom_line( + data = y_draws, + aes( + x = date, y = value, + group = draw, + color = model_type + ), + size = 0.1, alpha = 0.1 + ) + + geom_point( + data = y_draws %>% filter(period == "calibration"), + aes(x = date, y = obs_data), + color = "black", fill = "black", alpha = 0.5, + shape = plot_shape + ) + + geom_point( + data = y_draws %>% filter(period != "calibration"), + aes(x = date, y = obs_data), + color = "black", alpha = 0.1, shape = plot_shape, fill = "white" + ) + + geom_vline( + xintercept = forecast_date, linetype = "dashed", + color = "black" + ) + + geom_vline( + data = y_draws, aes(xintercept = last_hosp_data_date), + linetype = "dashed", + color = "gray" + ) + + scale_color_manual(values = set_color) + + scale_x_date( + date_breaks = "2 weeks", + labels = scales::date_format("%Y-%m-%d") + ) + + xlab("") + + ylab(y_label) + + theme_bw() + + theme( + axis.text.x = element_text( + size = 10, vjust = 1, + hjust = 1, angle = 45 + ), + axis.title.x = element_text(size = 10), + axis.title.y = element_text(size = 10), + plot.title = element_text( + size = 10, + vjust = 0.5, hjust = 0.5 + ) + ) + + coord_cartesian(ylim = c(0, 3 * max_obs_data)) + + guides(color = "none") + + if (y == "pred_ww") { + # Fill in the WW data point + plot <- plot + geom_point( + data = y_draws %>% filter(period == "nowcast"), + aes(x = date, y = obs_data), + color = "black", fill = "black", alpha = 0.5, + shape = plot_shape + ) + } + + if (isTRUE(show_median)) { + plot <- plot + geom_line( + data = y_draws, + aes( + x = date, y = median, + color = model_type + ), + size = 1, alpha = 1 + ) + } + + if ( + length(locations) == 1 && + length(model_type) == 1 && + length(hosp_reporting_delay) == 1 + ) { + # If just one location, assume we just want to plot that location + p <- plot + ggtitle( + glue::glue( + "{model_type} : observed and estimated {title} in ", + "{locations} on {forecast_date}" + ) + ) + full_file_path <- file.path( + figure_file_path, locations + ) + create_dir(full_file_path) + save_figure <- ifelse( + y == "pred_ww" && model_file_name == "hosp_only", FALSE, TRUE + ) + + + if (save_figure && isTRUE(write_files)) { + message("Saving figure") + ggsave( + file.path( + full_file_path, + glue::glue("{y}_draws_{model_file_name}.png") + ), + plot = p, + width = 12, # 8 + height = 5, + units = "in", + bg = "white" + ) + } + } + + if (!is.na(grouping_var) && grouping_var == "model_type") { + p <- plot + facet_wrap({{ grouping_var }}) + + ggtitle( + glue::glue( + "Observed and estimated {title} on {forecast_date} with ", + "{hosp_reporting_delay} day hospital reporting delay in {locations}" + ) + ) + if (isTRUE(write_files)) { + full_file_path <- file.path( + figure_file_path, locations + ) + create_dir(full_file_path) + ggsave( + file.path( + full_file_path, "mult_models_hosp_forecast.png" + ), + plot = p, + width = 15, + height = 5, + bg = "white" + ) + } + } + + return(p) +} + + +#' Get the metadata needed for plotting +#' +#' @param y the output your plotting, default is NA in which case colors will be +#' based on other variables +#' @return a list with the plot color, label for y axis, and the output +#' description to use in the title +#' @export +#' +#' @examples +get_plot_metadata <- function(df, y = NA) { + model_type <- df %>% + select(model_type) %>% + unique() %>% + pull() + forecast_date <- df %>% + select(forecast_date) %>% + unique() %>% + pull() + location <- df %>% + select(location) %>% + unique() %>% + pull() + + if ("include_ww" %in% colnames(df)) { + include_ww <- df %>% + select(include_ww) %>% + unique() %>% + pull() + } else { + include_ww <- NA + } + + if ("hosp_reporting_delay" %in% colnames(df)) { + hosp_reporting_delay <- df %>% + pull(hosp_reporting_delay) %>% + unique() + } else { + hosp_reporting_delay <- NA + } + + + + model_file_name <- case_when( + model_type == "state-level aggregated wastewater" ~ "state_agg_WW_hosp", + model_type == "hospital admissions only" ~ "hosp_only", + model_type == "site-level observation error" ~ "site_level_obs_error", + model_type == "site-level infection dynamics" ~ "site_level_inf_dyn", + model_type == "site-level time-varying concentration" ~ "site_level_time_varying_C" + ) + + if (!is.na(y)) { + plot_color <- case_when( + y == "pred_hosp" ~ "darkred", + y == "pred_hosp_per_100k" ~ "darkred", + y == "pred_hosp" & model_type == "hospital admissions only" ~ "purple4", + y == "pred_ww" ~ "darkgreen", + TRUE ~ "gray" + ) + + y_label <- case_when( + y == "pred_hosp" ~ "Daily hospital admissions", + y == "pred_hosp_per_100k" ~ "Daily hospital admissions per 100k", + y == "pred_ww" ~ "Wastewater genome copies/mL" + ) + + title <- case_when( + y == "pred_hosp" ~ "daily hospital admissions", + y == "pred_hosp_per_100k" ~ "daily hospital admissions per 100k", + y == "pred_ww" ~ "genome copies/mL" + ) + } else { + plot_color <- NA + y_label <- NA + title <- NA + } + + + plot_shape <- ifelse(y == "pred_ww", 24, 21) + + return(list( + plot_color = plot_color, + y_label = y_label, + title = title, + model_type = model_type, + model_file_name = model_file_name, + location = location, + forecast_date = forecast_date, + plot_shape = plot_shape, + include_ww = include_ww, + hosp_reporting_delay = hosp_reporting_delay + )) +} + + + +#' Get plot of parameter distributions +#' +#' @param df dataframe either of parameter draws or of the filepath to obtain +#' the parameter draws +#' @param figure_file_path directory to save the figure +#' @param from_full_df if TRUE then df is draws object, if FALSE then df is a +#' dataframe of filepaths to load in the parameter object +#' @param write_files if TRUE then write files to specified location, if FALSE +#' then don't +#' @param ... +#' +#' @return plot object of histograms of key parameters +#' @export +#' +#' @examples +get_plot_param_distribs <- function(df, + figure_file_path, + from_full_df = FALSE, + write_files = TRUE, ...) { + if (isFALSE(from_full_df)) { + draws <- arrow::read_parquet( + file = + df$parameters_file_path + ) + } else { + draws <- df + } + + + + + posterior_params <- draws %>% + filter(name %in% c( + "phi_h", "eta_sd", "log10_g", "i0", + "infection_feedback", + "autoreg_rt", "initial_growth", "p_hosp_sd" + )) + + # get metadata for filename and title + plot_metadata <- get_plot_metadata(draws) + location <- plot_metadata$location + forecast_date <- plot_metadata$forecast_date + hosp_reporting_delay <- plot_metadata$hosp_reporting_delay + model_type <- plot_metadata$model_type + model_file_name <- plot_metadata$model_file_name + + + p <- ggplot(posterior_params) + + geom_histogram(aes(x = value), alpha = 0.3) + + facet_wrap(~name, scales = "free_x", nrow = 2) + + theme_bw() + + xlab("") + + ylab("") + + ggtitle( + glue::glue( + "Parameter draws for {model_type} in {location}", + " from forecast on {forecast_date}" + ) + ) + + theme( + axis.text.x = element_text( + size = 8, vjust = 1, + hjust = 1, angle = 45 + ), + plot.title = element_text( + size = 10, + vjust = 0.5, hjust = 0.5 + ) + ) + + if (isTRUE(write_files)) { + full_file_path <- file.path( + figure_file_path, location + ) + create_dir(full_file_path) + + ggsave( + file.path( + full_file_path, + glue::glue("posterior_params_{model_file_name}.png") + ), + plot = p, + width = 10, + height = 5, + bg = "white" + ) + } + + + return(p) +} + + +#' Plot of site-level Rt +#' +#' @param df dataframe of either model draws or filepath to load in model draws +#' @param figure_file_path where to save the figure +#' @param from_full_df if TRUE then df is draws object, if FALSE then df is a +#' dataframe of filepaths to load in the parameter object +#' @param write_files if TRUE then write files to specified location, if FALSE +#' then don't +#' @return plot object of R(t)s in each site with state level median overlaid +#' @export +get_rt_site_level <- function(df, + figure_file_path, + from_full_df = FALSE, + write_files = TRUE) { + if (isFALSE(from_full_df)) { + model_draws <- arrow::read_parquet( + file = + df$model_draws_file_path + ) + } else { + model_draws <- df + } + + # Get the median for plotting + rt_draws <- model_draws %>% + filter( + name == "R_site_t" + ) + rt_draws <- rt_draws %>% left_join( + rt_draws %>% + group_by(date, site) %>% + summarise(median_Rt = quantile(value, 0.5, na.rm = TRUE)) + ) + + state_rt <- model_draws %>% + filter( + name == "R(t)" + ) %>% + group_by(date) %>% + summarise( + median_Rt_state = quantile(value, 0.5, na.rm = TRUE) + ) + + # Subset to 100 draws if greater than 500 passed in + if (length(unique(rt_draws$draw)) > 500) { + rt_draws <- rt_draws %>% + filter(draw %in% sample(1:max(rt_draws$draw), 100)) + } + + plot_metadata <- get_plot_metadata(model_draws) + location <- plot_metadata$location + include_ww <- plot_metadata$include_ww + forecast_date <- plot_metadata$forecast_date + hosp_reporting_delay <- plot_metadata$hosp_reporting_delay + model_type <- plot_metadata$model_type + model_file_name <- plot_metadata$model_file_name + n_sites <- length(unique(rt_draws$site)) + + title <- glue::glue("Site-level R(t) as of {forecast_date} in {location}") + + plot <- ggplot(rt_draws) + + geom_line(aes(x = date, y = value, group = draw, color = as.factor(site)), + show.legend = FALSE, + alpha = 0.05, size = 0.5 + ) + + geom_line(aes(x = date, y = median_Rt, color = as.factor(site)), + show.legend = FALSE, size = 1.3 + ) + + geom_line( + data = state_rt, + aes(x = date, y = median_Rt_state), color = "black" + ) + + geom_vline(aes(xintercept = forecast_date), linetype = "dashed") + + facet_wrap(~site) + + xlab("") + + ylab("R(t)") + + theme_bw() + + scale_x_date( + date_breaks = "2 weeks", + labels = scales::date_format("%Y-%m-%d") + ) + + ggtitle(title) + + coord_cartesian(ylim = c(0, 3)) + theme( + axis.text.x = element_text( + size = 8, vjust = 1, + hjust = 1, angle = 45 + ), + axis.title.x = element_text(size = 8), + axis.title.y = element_text(size = 10), + plot.title = element_text( + size = 12, + vjust = 0.5, hjust = 0.5 + ) + ) + + if (isTRUE(write_files)) { + full_file_path <- file.path( + figure_file_path, location + ) + create_dir(full_file_path) + ggsave( + file.path( + full_file_path, + glue::glue("site_level_Rt_from_{model_file_name}.png") + ), + plot = plot, + width = max(3 * round(sqrt(n_sites)), 6), + height = max(2 * round(sqrt(n_sites)), 4), + units = "in", + bg = "white" + ) + } + + + + return(plot) +} + +#' Get R(t) for a single location +#' +#' @param quantiles dataframe of forecasts with quantiles including for R(t) +#' @param figure_file_path higher level directory where data from this pipeline will be saved +#' @param from_full_df if TRUE then df is draws object, if FALSE then df is a +#' dataframe of filepaths to load in the parameter object +#' @param write_files if TRUE then write files to specified location, if FALSE +#' then don't +#' +#' @return plot of R(t) for a single location, model, and forecast date +#' @export +#' +#' @examples +get_rt_from_draws <- function(df, + figure_file_path, + from_full_df = FALSE, + write_files = TRUE) { + if (isFALSE(from_full_df)) { + model_draws <- arrow::read_parquet( + file = + df$model_draws_file_path + ) + } else { + model_draws <- df + } + + # Get the median for plotting + rt_draws <- model_draws %>% + filter(name == "R(t)") + + rt_draws <- rt_draws %>% + left_join( + rt_draws %>% + group_by(date) %>% + summarise( + median_Rt = quantile(value, 0.5, na.rm = TRUE) + ) + ) + + # Subset to 100 draws if greater than 500 passed in + if (length(unique(rt_draws$draw)) > 500) { + rt_draws <- rt_draws %>% + filter(draw %in% sample(1:max(rt_draws$draw), 100)) + } + + + plot_metadata <- get_plot_metadata(model_draws) + location <- plot_metadata$location + include_ww <- plot_metadata$include_ww + forecast_date <- plot_metadata$forecast_date + hosp_reporting_delay <- plot_metadata$hosp_reporting_delay + model_type <- plot_metadata$model_type + model_file_name <- plot_metadata$model_file_name + + title <- glue::glue("R(t) as of {forecast_date} in {location} with {model_type}") + + p <- ggplot(rt_draws) + + geom_line(aes(x = date, y = value, group = draw, color = period), + alpha = 0.2, + show.legend = FALSE + ) + + geom_line(aes(x = date, y = median_Rt), + show.legend = FALSE + ) + + geom_vline(aes(xintercept = forecast_date), linetype = "dashed") + + geom_hline(aes(yintercept = 1), linetype = "dotted") + + xlab("") + + ylab("R(t)") + + theme_bw() + + scale_x_date( + date_breaks = "2 weeks", + labels = scales::date_format("%Y-%m-%d") + ) + + ggtitle(title) + + scale_y_continuous(trans = scales::log_trans()) + + theme( + axis.text.x = element_text( + size = 10, vjust = 1, + hjust = 1, angle = 45 + ), + axis.title.x = element_text(size = 10), + axis.title.y = element_text(size = 10), + plot.title = element_text( + size = 12, + vjust = 0.5, hjust = 0.5 + ) + ) + + p + + if (isTRUE(write_files)) { + full_file_path <- file.path( + figure_file_path, location + ) + create_dir(full_file_path) + ggsave( + file.path( + full_file_path, + glue::glue("Rt_from_{model_file_name}.png") + ), + plot = p, + width = 7, + height = 7, + units = "in", + bg = "white" + ) + } + + return(p) +} + + + +#' Title +#' +#' @param df dataframe of either quantiles or the path to load in quantiles +#' @param figure_file_path directory to save figure +#' @param days_to_show_forecast duration of forecast to plot, default is 14 +#' @param from_full_df if TRUE then df is quantiles object, if FALSE then df is a +#' dataframe of filepaths to load in the parameter object +#' @param write_files if TRUE then write files to specified location, if FALSE +#' then don't +#' +#' @return plot of bar chart of hospitalizations with mean state level +#' wastewater overlaid +#' @export +#' +#' @examples +get_combo_quantile_plot <- function(df, + figure_file_path, + days_to_show_forecast = 14, + from_full_df = FALSE, + write_files = TRUE) { + if (isFALSE(from_full_df)) { + quantiles_long <- arrow::read_parquet( + file = + df$quantiles_file_path + ) + } else { + quantiles_long <- df + } + + + quantiles_wide_sel_state <- pivot_data_for_plotting(quantiles_long) + + quantiles_wide <- quantiles_wide_sel_state %>% + filter(date <= ymd(forecast_date) + days(days_to_show_forecast)) + + plot_metadata <- get_plot_metadata(quantiles_wide_sel_state) + location <- plot_metadata$location + include_ww <- plot_metadata$include_ww + forecast_date <- plot_metadata$forecast_date + hosp_reporting_delay <- plot_metadata$hosp_reporting_delay + model_type <- plot_metadata$model_type + model_file_name <- plot_metadata$model_file_name + + coeff <- median( + quantiles_wide$`quantity_0.5`[quantiles_wide$name == "pred_hosp"], + na.rm = TRUE + ) / median( + quantiles_wide$`quantity_0.5`[ + quantiles_wide$name == "exp_state_ww_conc" + ], + na.rm = TRUE + ) + + max_obs_data <- quantiles_wide %>% + select(daily_hosp_admits) %>% + pull() %>% + max(na.rm = TRUE) + + p <- ggplot(quantiles_wide) + + geom_bar( + data = quantiles_wide %>% filter(name == "pred_hosp"), + aes(x = date, y = daily_hosp_admits), stat = "identity", + color = "gray", fill = "gray", alpha = 0.3 + ) + + geom_ribbon( + data = quantiles_wide %>% filter(name == "pred_hosp"), + aes(x = date, ymin = `quantity_0.25`, ymax = `quantity_0.75`), + alpha = 0.1, fill = "darkred" + ) + + geom_ribbon( + data = quantiles_wide %>% filter(name == "pred_hosp"), + aes(x = date, ymin = `quantity_0.025`, ymax = `quantity_0.975`), + alpha = 0.1, fill = "darkred" + ) + + geom_line( + data = quantiles_wide %>% filter(name == "pred_hosp"), + aes(x = date, y = `quantity_0.5`), color = "darkred" + ) + + geom_ribbon( + data = quantiles_wide %>% filter(name == "exp_state_ww_conc"), + aes( + x = date, ymin = coeff * `quantity_0.25`, + ymax = coeff * `quantity_0.75` + ), + alpha = 0.1, fill = "darkgreen" + ) + + geom_ribbon( + data = quantiles_wide %>% filter(name == "exp_state_ww_conc"), + aes( + x = date, ymin = coeff * `quantity_0.025`, + ymax = coeff * `quantity_0.975` + ), + alpha = 0.1, fill = "darkgreen" + ) + + geom_line( + data = quantiles_wide %>% filter(name == "exp_state_ww_conc"), + aes(x = date, y = coeff * `quantity_0.5`), color = "darkgreen" + ) + + geom_vline(xintercept = forecast_date, linetype = "dashed") + + coord_cartesian(ylim = c(0, 3 * max_obs_data)) + + scale_x_date( + date_breaks = "2 weeks", + labels = scales::date_format("%Y-%m-%d") + ) + + theme_bw() + + theme( + axis.text.x = element_text( + size = 10, vjust = 1, + hjust = 1, angle = 45 + ), + axis.title.x = element_text(size = 12), + axis.title.y = element_text(size = 12), + plot.title = element_text( + size = 10, + vjust = 0.5, hjust = 0.5 + ) + ) + + xlab("") + + scale_y_continuous( + # Features of the first axis + name = "Daily Hospital Admissions", + + # Add a second axis and specify its features + sec.axis = sec_axis( + trans = ~ . / coeff, + name = "Genome copies per mL" + ) + ) + + ggtitle(glue::glue("Hospital admissions and mean wastewater concentration in {location} from {model_type} model")) # nolint + + + + if (isTRUE(write_files)) { + full_file_path <- file.path(figure_file_path, location) + create_dir(full_file_path) + ggsave( + file.path( + full_file_path, + glue::glue("combined_quantiles_{model_file_name}.png") + ), + plot = p, + width = 9, + height = 4, + units = "in", + bg = "white" + ) + } + + return(p) +} + + + +#' Plot of lab-site level wastewater draws +#' +#' @param df dataframe of draws or dataframe containing filepath to load in draws +#' @param figure_file_path path to save figure +#' @param from_full_df if TRUE then df is draws object, if FALSE then df is a +#' dataframe of filepaths to load in the parameter object +#' @param write_files if TRUE then write files to specified location, if FALSE +#' then don't +#' @return plot object of site level wastewater trajectories with observed data +#' overlaid +#' @export +#' +#' @examples +get_plot_labsite_ww_draws <- function(df, + figure_file_path, + from_full_df = FALSE, + write_files = TRUE) { + if (isFALSE(from_full_df)) { + all_draws <- arrow::read_parquet( + file = + df$model_draws_file_path + ) + } else { + all_draws <- df + } + + # Subset to 100 draws if greater than 500 passed in + if (length(unique(all_draws$draw)) > 500) { + all_draws <- all_draws %>% + filter(draw %in% sample(1:max(all_draws$draw), 100)) + } + + + ww_draws <- all_draws %>% filter(name == "pred_ww") + + + lab_sites_to_plot <- ww_draws %>% + select(lab_wwtp_unique_id) %>% + filter(!is.na(lab_wwtp_unique_id)) %>% + unique() %>% + pull() + + plot_metadata <- get_plot_metadata(all_draws) + forecast_date <- plot_metadata$forecast_date + location <- plot_metadata$location + model_file_name <- plot_metadata$model_file_name + model_type <- plot_metadata$model_type + + + p <- ggplot(ww_draws %>% filter( + date <= forecast_date + days(0), + lab_wwtp_unique_id %in% lab_sites_to_plot + )) + + geom_line( + aes( + x = date, y = value, group = draw, + color = as.factor(lab_wwtp_unique_id) + ), + linewidth = 0.1, alpha = 0.1, show.legend = FALSE + ) + + geom_line( + data = ww_draws %>% filter( + period != "forecast", + lab_wwtp_unique_id %in% lab_sites_to_plot + ), + aes( + x = date, y = value, group = draw, + color = as.factor(lab_wwtp_unique_id) + ), + linewidth = 0.1, alpha = 0.3, show.legend = FALSE + ) + + geom_point(aes(x = date, y = ww), size = 1, shape = 21) + + geom_point( + data = ww_draws %>% filter( + period != "forecast", + lab_wwtp_unique_id %in% lab_sites_to_plot + ), + aes(x = date, y = ww), + fill = "black", size = 1, shape = 21 + ) + + geom_point( + data = ww_draws %>% filter(below_LOD == 1), + aes(x = date, y = ww), size = 1, shape = 21, color = "red" + ) + + geom_point( + data = ww_draws %>% filter(flag_as_ww_outlier == 1), + aes(x = date, y = ww), size = 1.5, shape = 21, color = "purple" + ) + + geom_hline(aes(yintercept = lod_sewage), linetype = "dashed") + + geom_vline(aes(xintercept = forecast_date), linetype = "dashed") + + facet_wrap(~lab_wwtp_unique_id, scales = "free") + + theme_bw() + + xlab("") + + ylab("Genome copies/mL") + + ggtitle(glue::glue( + "Lab-site-level wastewater concentrations in {location} from {model_type} model" + )) + + p2 <- ggplot(ww_draws %>% filter( + date <= forecast_date + days(0), + lab_wwtp_unique_id %in% lab_sites_to_plot + )) + + geom_line( + aes( + x = date, y = log(value), group = draw, + color = as.factor(lab_wwtp_unique_id) + ), + linewidth = 0.1, alpha = 0.1, show.legend = FALSE + ) + + geom_line( + data = ww_draws %>% filter( + period != "forecast", + lab_wwtp_unique_id %in% lab_sites_to_plot + ), + aes( + x = date, y = log(value), group = draw, + color = as.factor(lab_wwtp_unique_id) + ), + linewidth = 0.1, alpha = 0.3, show.legend = FALSE + ) + + geom_point(aes(x = date, y = log(ww)), size = 1, shape = 21) + + geom_point( + data = ww_draws %>% filter( + period != "forecast", + lab_wwtp_unique_id %in% lab_sites_to_plot + ), + aes(x = date, y = log(ww)), + fill = "black", size = 1, shape = 21 + ) + + geom_point( + data = ww_draws %>% filter(below_LOD == 1), + aes(x = date, y = log(ww)), size = 1, shape = 21, color = "red" + ) + + geom_point( + data = ww_draws %>% filter(flag_as_ww_outlier == 1), + aes(x = date, y = log(ww)), size = 1.5, shape = 21, color = "purple" + ) + + geom_hline(aes(yintercept = log(lod_sewage)), linetype = "dashed") + + geom_vline(aes(xintercept = forecast_date), linetype = "dashed") + + facet_wrap(~lab_wwtp_unique_id, scales = "free") + + theme_bw() + + xlab("") + + ylab("log(Genome copies/mL)") + + ggtitle(glue::glue( + "Lab-site-level wastewater concentrations in {location} from {model_type} model" + )) + + + + + if (isTRUE(write_files)) { + print("Saving figure") + full_file_path <- file.path( + figure_file_path, location + ) + create_dir(file.path(full_file_path)) + ggsave( + file.path( + full_file_path, + glue::glue("lab_site_level_ww_conc_{model_file_name}.png") + ), + plot = p, + width = 20, + height = 20, + units = "in", + bg = "white" + ) + ggsave( + file.path( + full_file_path, + glue::glue("lab_site_level_log_conc_{model_file_name}.png") + ), + plot = p2, + width = 20, + height = 20, + units = "in", + bg = "white" + ) + } + + return(p2) +} + + +#' Plot of lab-site level wastewater quantiles +#' +#' @param df dataframe of draws or dataframe containing filepath to load in draws +#' @param figure_file_path path to save figure +#' @param from_full_df if TRUE then df is draws object, if FALSE then df is a +#' dataframe of filepaths to load in the parameter object +#' @param write_files if TRUE then write files to specified location, if FALSE +#' then don't +#' @return plot object of site level wastewater median, 50th, and 95% CI +#' with observed data overlaid +#' @export +#' +#' @examples +get_ww_site_plots <- function(df, + figure_file_path, + from_full_df = FALSE, + write_files = TRUE) { + if (isFALSE(from_full_df)) { + model_draws <- arrow::read_parquet( + file = + df$model_draws_file_path + ) + } else { + model_draws <- df + } + + + # For now do this, later get quantiles for all sites and use that directly + quantiles <- get_quantiles_on_site_level_ww(model_draws) + + ww_site <- quantiles %>% filter(date <= ymd(forecast_date) + days(14)) + + plot_metadata <- get_plot_metadata(ww_site) + location <- plot_metadata$location + include_ww <- plot_metadata$include_ww + forecast_date <- plot_metadata$forecast_date + model_type <- plot_metadata$model_type + model_file_name <- plot_metadata$model_file_name + + + ww_site <- ww_site %>% mutate( + lab_name = ifelse(!is.na(lab), paste0( + "Lab: ", + as.character(lab) + ), + "Lab not specified" + ) + ) + + ww_site_test <- ww_site %>% filter(!is.na(lab) & !is.na(site)) + n_sites <- ww_site %>% + select(site_lab) %>% + unique() %>% + nrow() + + p <- ggplot(ww_site) + + geom_line(aes(x = date, y = median_ww, color = as.factor(site_lab)), + show.legend = FALSE + ) + + geom_ribbon( + aes( + x = date, ymin = lb_25th, ymax = ub_75th, + fill = as.factor(site_lab) + ), + alpha = 0.3, show.legend = FALSE + ) + + geom_ribbon( + aes( + x = date, ymin = lb_025th, ymax = ub_975th, + fill = as.factor(site_lab) + ), + alpha = 0.3, show.legend = FALSE + ) + + geom_point(aes(x = date, y = log_conc)) + + geom_point( + data = ww_site %>% filter(below_LOD == 1), + aes(x = date, y = log_conc), color = "red", size = 1.1 + ) + + geom_point( + data = ww_site %>% filter(flag_as_ww_outlier == 1), + aes(x = date, y = log_conc), color = "blue", size = 1.1 + ) + + geom_vline(aes(xintercept = forecast_date), linetype = "dashed") + + facet_wrap(~site_lab, scales = "free") + + xlab("") + + ylab("Log(Genome copies per mL)") + + ggtitle(glue::glue( + "Site-level expected observed wastewater concentration in {location} from {model_type} model" + )) + + theme_bw() + + scale_color_discrete() + + scale_fill_discrete() + + scale_x_date( + date_breaks = "2 weeks", + labels = scales::date_format("%Y-%m-%d") + ) + + theme_bw() + + theme( + axis.text.x = element_text( + size = 8, vjust = 1, + hjust = 1, angle = 45 + ), + axis.title.x = element_text(size = 12), + axis.title.y = element_text(size = 12), + plot.title = element_text( + size = 10, + vjust = 0.5, hjust = 0.5 + ) + ) + + + if (isTRUE(write_files)) { + full_file_path <- full_file_path <- file.path( + figure_file_path, location + ) + create_dir(full_file_path) + + ggsave( + file.path( + full_file_path, + glue::glue("site_level_WW_conc_{model_file_name}.png") + ), + plot = p, + width = max(3 * round(sqrt(n_sites)), 6), + height = max(2 * round(sqrt(n_sites)), 4), + units = "in", + bg = "white" + ) + } + + return(p) +} + + +#' Get R(t) box plot across states +#' +#' @param df_of_filepaths dataframe containing the filepaths needed to load +#' in the R(t) trajectories for each state +#' @param figure_file_path directory to save the figure +#' @param write_files if TRUE then write files to specified location, if FALSE +#' then don't +#' @return plot object of R(t) as a horizontal box plot for each state +#' @export +#' +#' @examples +get_rt_boxplot_across_states <- function(df_of_filepaths, + figure_file_path, + write_files = TRUE) { + # Need to be able to load in multiple model runs and combine + for (i in seq_len(nrow(df_of_filepaths))) { + model_draws_i <- arrow::read_parquet( + file = + df_of_filepaths$model_draws_file_path[i] + ) + + model_draws_i <- model_draws_i %>% + filter(name == "R(t)") %>% + select( + name, t, value, draw, include_ww, forecast_date, hosp_reporting_delay, + location, date, daily_hosp_admits, daily_hosp_admits_for_eval, obs_data, + period, model_type + ) + + if (i == 1) { + rt_draws <- model_draws_i + } else { + rt_draws <- rbind(rt_draws, model_draws_i) + } + } + + plot_metadata <- get_plot_metadata(rt_draws) + location <- plot_metadata$location + include_ww <- plot_metadata$include_ww + forecast_date <- plot_metadata$forecast_date + hosp_reporting_delay <- plot_metadata$hosp_reporting_delay + model_type <- plot_metadata$model_type + model_file_name <- plot_metadata$model_file_name + if (length(model_file_name) > 1) { + model_file_name <- "comb_models" + model_type <- "multiple models" + } + + + # find median R(t) + r_t_draws_w_median <- rt_draws %>% + select(location, value, draw, name, forecast_date, date, t) %>% + left_join( + rt_draws %>% + group_by(location, date) %>% + summarise( + R_t_median = quantile(value, 0.5, na.rm = TRUE) + ), + by = c("location", "date") + ) %>% + filter(date == forecast_date) %>% + arrange(R_t_median, "desc") + + r_t_draws_w_median$location <- factor(r_t_draws_w_median$location, + levels = unique(as.character( + r_t_draws_w_median$location + )) + ) + + p <- ggplot(r_t_draws_w_median, aes( + x = location, + y = value, fill = R_t_median + )) + + geom_boxplot() + + geom_hline(aes(yintercept = 1), linetype = "dashed") + + coord_flip() + + theme_bw() + + ylab("R(t) estimate") + + xlab("State") + + # scale_fill_gradientn(colours = terrain.colors(10))+ + scale_fill_gradient(low = "blue", high = "red") + + ggtitle(glue::glue("R(t) estimate as of {forecast_date} from {model_type} model")) + + guides(fill = guide_legend(title = "R(t)")) + + scale_y_continuous(trans = "log") + + if (isTRUE(write_files)) { + full_file_path <- file.path( + figure_file_path + ) + create_dir(full_file_path) + + ggsave( + file.path( + full_file_path, + glue::glue("R_t_all_states-{model_file_name}.png") + ), + plot = p, + width = 7, + height = 7, + units = "in", + bg = "white" + ) + } + return(p) +} + + +#' Get plot COVID hub submission +#' +#' @param df dataframe containing the 23 quantiles in the forecast dates for all +#' states for submitting to the hub +#' @param days_to_show_truth_data days we want to go back to show the observed +#' data before making our forecast, default is 90 +#' @param truth_data_path link to get the truth data for comparison, +#' default is from the hub +#' +#' @return +#' @export +#' +#' @examples +get_plot_covidhub_submission <- function(df, + days_to_show_truth_data = 90, + truth_data_path = "https://media.githubusercontent.com/media/reichlab/covid19-forecast-hub/master/data-truth/truth-Incident%20Hospitalizations.csv") { # nolint + location_code <- df %>% + pull(location) %>% + unique() + forecast_date <- df %>% + pull(forecast_date) %>% + unique() + + + truth_data <- read_csv(truth_data_path) %>% + filter( + location == location_code, + date >= forecast_date - days(days_to_show_truth_data) + ) + + location <- truth_data %>% + pull(location_name) %>% + unique() + + plot_title <- glue::glue("{location} as of {forecast_date}") + + quant_plot <- plot_quantiles(df, + time_column = target_end_date, + observation_column = value, + quantile_level_column = quantile + ) + + plot <- quant_plot + + ggplot2::geom_line( + data = truth_data, + mapping = ggplot2::aes( + x = date, + y = value + ), + alpha = 1, + size = 2, + color = "black", + inherit.aes = FALSE + ) + + ggplot2::geom_point( + data = truth_data, + mapping = ggplot2::aes( + x = date, + y = value + ), + alpha = 1, + size = 4, + color = "black", + inherit.aes = FALSE + ) + + ggplot2::scale_y_continuous( + trans = "log" + ) + + ggplot2::theme_minimal(base_size = 15) + + ggplot2::labs( + y = "Daily COVID-19 hospital admissions", + x = "" + ) + ggplot2::ggtitle(plot_title) + + + return(plot) +} diff --git a/cfaforecastrenewalww/R/posterior_predictive_analysis.R b/cfaforecastrenewalww/R/posterior_predictive_analysis.R new file mode 100644 index 00000000..27a1ad33 --- /dev/null +++ b/cfaforecastrenewalww/R/posterior_predictive_analysis.R @@ -0,0 +1,184 @@ +#' Runs posterior-predictive analyses and returns summaries of performance +#' @description +#' This function takes in a model object, the observed data, and the configuration file used to +#' produce the real-data stan data object. It then fits the model, extracts generated quantities +#' from some number of those fits, and runs new analyses on the simulated data. It then returns +#' summaries of estimation performance. +#' +#' @param model a CmdStanModel object defining the model +#' @param real_data observed data, formated for stan +#' @param config the output of get_config_vals() +#' @param draw vector, which draws from the MCMC object do we want to run PPS analyses for? +#' If NULL, runs one analysis per sample. This can take a long time and a lot of space! +#' @param real_data_fit CmdStanMCMC object, optional argument providing a +#' previous real-data model fit +#' @param pps_mcmc_fits list of CmdStanMCMC objects, optional argument providing +#' previously-run pps analyses (for re-summarizing) +#' @param mclapply_cores integer specifying number of threads to use for +#' posterior-predictive-analysis-level parallelization, separate from stan parallelization +#' +#' @param ... further arguments passed to model$sample(), e.g. # chains +#' +#' @return a list, each of which is a list of formatted stan data +#' @export +posterior_predictive_analysis <- function(model, + real_data, + config, + draw = NULL, + real_data_fit = NA, + ci_width = 0.89, + mclapply_cores = NA, + ...) { + alpha <- 1 - ci_width + ci <- c(alpha / 2, 1 - alpha / 2) + + # Fit any and all models we need to fit + if (!("CmdStanMCMC" %in% class(real_data_fit))) { + real_data_fit <- model$sample(data = real_data, ...) + } + + real_data_draws <- posterior::subset_draws(real_data_fit$draws(), draw = draw) + + stan_predictive_data <- make_pps_data( + real_data_fit, + real_data, + config, + draw + ) + + pps_mcmc_fits <- NULL + + if (any(is.numeric(mclapply_cores))) { + pps_mcmc_fits <- parallel::mclapply(seq_along(stan_predictive_data), function(i) { + .do_1_pps_analysis(i, model, real_data_draws, stan_predictive_data, ci, ...) + }, mc.cores = mclapply_cores) + } else { + pps_mcmc_fits <- lapply(seq_along(stan_predictive_data), function(i) { + .do_1_pps_analysis(i, model, real_data_draws, stan_predictive_data, ci, ...) + }) + } + + # Smuggling this around like this avoids having to track/pass objects later + # but it may be overkill + attr(pps_mcmc_fits, "model_param_df") <- get_model_param_df(model) + + return(pps_mcmc_fits) +} + +#' Internal helper function to do a single analysis of PPS data +#' @description +#' Takes in index, parameter values from which data was simulated, +#' list of simulated data, the model to run, and other arguments for either +#' the model running or summarizing. +#' Runs stan on the simulated data with this index returns a summary of performance. +#' +#' @param i index of simulated data to analyze +#' the parameters from which the data was simulated +#' @param model CmdStanModel to fit +#' @param real_data_draws draws object containing MCMC samples from real-data model fit +#' @param stan_predictive_data list of simulated datasets, in same order as real_data_draws +#' @param ci length-2 numeric vector of [lower, upper] values for CI +#' @param ... further arguments passed to model$sample(), e.g. # chains +#' +#' @return a summary of the performance of the +#' @keywords internal +.do_1_pps_analysis <- function(i, + model, + real_data_draws, + stan_predictive_data, + ci, + ...) { + true_params <- real_data_draws %>% + posterior::subset_draws(draw = i) + + fit_pp <- quiet( + model$sample(data = stan_predictive_data[[i]], ...) + ) + + fit_summary <- .summarize_performance( + true_params, + fit_pp$draws(), + ci = ci + ) + return(fit_summary) +} + + +#' Internal helper function to summarize how well an analysis of posterior +#' predictive data performed +#' @description +#' Takes in true parameter values and MCMC samples and computes summaries of the +#' samples, possibly wrt the truth. +#' +#' @param true_param_draws draws-family object containing a single draw with +#' the parameters from which the data was simulated +#' @param fit_draws draws-family object containing the MCMC +#' @param ci length-2 numeric vector of [lower, upper] values for CI +#' +#' @return a list, each of which is a list of formatted stan data +#' @keywords internal +.summarize_performance <- function(true_param_draws, + fit_draws, + ci) { + post_summary <- posterior::summarize_draws(true_param_draws, mean) %>% + rename(true_value = mean) + + post_summary <- post_summary %>% + left_join( + posterior::summarize_draws( + fit_draws, + mean, + median, + sd, + mad, + ~ quantile(., probs = ci) + ) + ) + + return(post_summary) +} + +#' Reformats output of posterior_predictive_analysis() into something more easily usable +#' +#' @param x output of posterior_predictive_analysis() +#' @param keep_generated boolean indicating whether to keep generated quantities or not +#' +#' @return long-format tibble which is per-parameter, per-replicate-analysis +#' @export +get_ppa_long <- function(x, keep_generated = FALSE) { + stats <- names(x[[1]])[-1] + nstats <- length(stats) + nrep <- length(x) + + # Get information about the model's parameters + param_df <- attr(x, "model_param_df") + if (isFALSE(keep_generated)) { + param_df <- param_df %>% filter(!generated_quantity) + } + + # Hack into a draws format so we can handle same as get_param_samples_long_df() does + all_draws <- lapply(x, function(pp_rep) { + cnames <- pp_rep %>% pull(variable) + pp_rep <- pp_rep %>% + select(-variable) %>% + t() + colnames(pp_rep) <- cnames + return(posterior::as_draws(pp_rep)) + }) %>% + bind_draws(along = "draw") + + # Get in long format + full_param_df <- lapply(param_df$param_name, function(p_name) { + .get_1_param( + param_df %>% filter(param_name == p_name), + all_draws + ) + }) %>% + bind_rows() %>% + mutate(rep = 1 + floor((draw - 1) / nstats)) %>% + mutate(stat_index = 1 + (draw - 1) %% nstats) %>% + mutate(stat = stats[stat_index]) %>% + select(-draw, -stat_index) + + return(full_param_df) +} diff --git a/cfaforecastrenewalww/R/pre_processing.R b/cfaforecastrenewalww/R/pre_processing.R new file mode 100644 index 00000000..0e81d5ee --- /dev/null +++ b/cfaforecastrenewalww/R/pre_processing.R @@ -0,0 +1,1419 @@ +#' Local functions that are used to pre-process our specific data for use +#' in the stan model +#' These will be used to get the data up to the point it needs to be in the +#' get_stan_data functions, which format the data into the stan lists that the +#' stan model needs. +#' None of these will be exported + +## Hospitalization data pre-processing ------------------------------------- +#' Get forecast date from today's date +#' @export +get_nearest_forecast_date <- function() { + today_weekday <- lubridate::wday(lubridate::today(tzone = "EST")) + today_date <- lubridate::today(tzone = "EST") + + forecast_date <- case_when( + today_weekday == 6 ~ as.character(today_date + days(3)), # if Fri the Mon + today_weekday == 7 ~ as.character(today_date + days(2)), # if Sat then Mon + today_weekday == 1 ~ as.character(today_date + days(1)), # if Sun then Mon + today_weekday == 2 ~ as.character(today_date), # if Mon then Mon + today_weekday == 3 ~ as.character(today_date - days(1)), # if Tues then Mond + today_weekday == 4 ~ as.character(today_date), # if Wed the Wed + today_weekday == 5 ~ as.character(today_date - days(1)) # if Thurs then Wed + ) + + return(forecast_date) +} + +#' Get the hospital reporting delay +#' @description +#' This is purely based on our knowledge of the NHSN data reporting, as we +#' pre-specify before loading the most recent data.. +#' +#' @param forecast_date The date the forecast is made +#' +#' @return hosp_reporting delay The delay from forecast date to last hospital +#' admission date +#' @export +#' +#' @examples +get_hosp_reporting_delay <- function(forecast_date) { + hosp_reporting_delay <- + case_when( + lubridate::wday(forecast_date) %in% c(1, 2, 3, 7) ~ 9, # Sun Mon Tues Wed + lubridate::wday(forecast_date) %in% c(4, 5, 6) ~ 4 + ) # Wed Thurs Fri + + return(hosp_reporting_delay) +} + +#' @title Get raw hospitalization data +#' @description +#' This function takes in a hospitalization data source and a forecast date +#' and generates a dataframe with state-level hospitalizations from all time +#' points as of that forecast date. +#' If the vintaged data available as of a forecast date already exists, it pulls +#' from that, otherwise it pulls from hosp data source and saves the file. +#' +#' @param hosp_data_source covidcast or another source (e.g. if pulling directly +#' from DCIPHER or the S drive, will need to write relevant paths for this) +#' @param forecast_date date we want the data as of (as if we were making a +#' forecast on that day) +#' @param hosp_data_dir if pulling from local, which directory +#' to search for datestamped hospitalization data +#' @param population_data_path path to a table of state populations +#' @param pull_from_local if TRUE, look for local files first, +#' default value is FALSE +#' +#' @return dataframe containing number of hospital admissions by state +#' +#' @export +#' +#' @examples +get_state_level_hosp_data <- function(hosp_data_source, + forecast_date, + hosp_data_dir, + population_data_path, + pull_from_local = FALSE) { + state_population_table <- readr::read_csv(population_data_path) %>% + dplyr::mutate(population = as.numeric(population)) + hosp_data_local_path <- file.path( + hosp_data_dir, + paste0(as.character(forecast_date), ".csv") + ) + + if (isTRUE(pull_from_local) && file.exists(hosp_data_local_path)) { + cli::cli_inform( + c( + "Pulling file from local for", + "complete hospitalization data" + ) + ) + + hosp <- readr::read_csv(hosp_data_local_path) + } else { + # Raw state level hospital data + if (hosp_data_source == "covidcast") { + # These codechunk depends on the covidcast package + check_package_is_installed("covidcast") + options(covidcast.auth = get_secret("covidcast_api_key")) + + # Get hospital admissions data by state + hosp_raw <- (covidcast::covidcast_signal( + "hhs", "confirmed_admissions_covid_1d", + geo_type = "state", geo_values = "*" + )) + + stopifnot( + "Hospitalization data more than 13 days delayed" = + max(hosp_raw$time_value) > lubridate::today() - 13 + ) + } + + if (hosp_data_source == "NHSN") { + # Get hospital admissions data by state from forecastools + api_key_id <- get_secret("NHSN_API_KEY_ID") + api_key_secret <- get_secret("NHSN_API_KEY_SECRET") + + hosp_raw <- pull_nhsn( + columns = c( + "state", "date", + "previous_day_admission_adult_covid_confirmed", + "previous_day_admission_pediatric_covid_confirmed" + ), + start_date = "2023-01-01", + api_key_id = api_key_id, + api_key_secret = api_key_secret + ) %>% + dplyr::rename( + geo_value = state + ) %>% + dplyr::mutate( + value = as.numeric(previous_day_admission_adult_covid_confirmed) + + as.numeric(previous_day_admission_pediatric_covid_confirmed), + time_value = lubridate::as_date(date) - lubridate::days(1) # Assign admissions to the + # previous day + ) %>% + dplyr::select(-date) + } + + if (hosp_data_source == "HHS_protect_vintages") { + hosp_raw <- quiet(covidcast::covidcast_signal( + "hhs", "confirmed_admissions_covid_1d", + geo_type = "state", + geo_values = "*", + as_of = forecast_date + )) + } + + hosp <- hosp_raw %>% + dplyr::as_tibble() %>% + dplyr::mutate(abbreviation = toupper(geo_value)) %>% + dplyr::left_join(state_population_table, by = "abbreviation") %>% + dplyr::rename( + date = time_value, + daily_hosp_admits = value, + pop = population + ) %>% + dplyr::select(date, ABBR = abbreviation, daily_hosp_admits, pop) + + if (hosp_data_source == "HHS_protect_vintages") { + # Then we want to write this to a file + create_dir(hosp_data_dir) + + readr::write_csv( + hosp, + file = file.path( + hosp_data_dir, paste0(as.character(lubridate::ymd(forecast_date)), ".csv") + ) + ) + } else if (hosp_data_source == "NHSN") { + # Then we want to write this to a file with the date run time stamped to it + create_dir(hosp_data_dir) + + readr::write_csv( + hosp, + file = file.path( + hosp_data_dir, paste0(as.character(lubridate::today()), ".csv") + ) + ) + } + } # End if pull_from_local = TRUE + + return(hosp) +} + + +#' Gets hospitalization data that model will be trained on +#' +#' @param hosp_data_source Source of hospitalization data +#' from which to pull. Options include "NHSN" and "covidcast". +#' @param geo_type type of geographic region for which to pull data +#' @param forecast_date date for which we are producing a forecast +#' @param hosp_data_dir if pulling from local, where to get the data from +#' @param population_data_path path to a table of state populations +#' @param pull_from_local if TRUE, look for local files first, +#' default value is FALSE +#' +#' +#' @return a data frame at the geo_type level of number of daily hospital admits +#' +#' @export +#' +#' @examples +get_hosp_data <- function(hosp_data_source, + geo_type, + forecast_date, + hosp_data_dir, + population_data_path, + pull_from_local = FALSE) { + state_hosp_data <- get_state_level_hosp_data( + hosp_data_source, + forecast_date, + hosp_data_dir, + population_data_path, + pull_from_local = pull_from_local + ) + + if (geo_type == "region") { + regions <- get_regions_for_mapping() + + hosp <- state_hosp_data %>% + dplyr::inner_join(regions, by = "ABBR") %>% + # summarize populations and admissions over the week + dplyr::filter(!is.na(daily_hosp_admits)) %>% + group_by(date, region) %>% # value = daily new admissionsin region + summarize(across(c(daily_hosp_admits, pop), sum), .groups = "drop") %>% + # add in week, defined by wednesdays like in Biobot data + mutate(week = round_date(date, "week", week_start = 3)) %>% + rename(location = region) + } + + if (geo_type == "state") { + hosp <- state_hosp_data %>% + dplyr::filter(!is.na(daily_hosp_admits)) %>% + mutate(week = round_date(date, "week", week_start = 3)) %>% + rename(location = ABBR) + } + + # National hosp + state_population_table <- readr::read_csv(population_data_path) %>% + dplyr::mutate(population = as.numeric(population)) + + usa_hosp <- state_hosp_data %>% + dplyr::filter(!is.na(daily_hosp_admits)) %>% + dplyr::group_by(date) %>% + dplyr::summarise(daily_hosp_admits = sum(daily_hosp_admits)) %>% + dplyr::ungroup() %>% + dplyr::mutate( + week = round_date(date, "week", week_start = 3), + abbreviation = "US" + ) %>% + dplyr::inner_join(state_population_table, by = "abbreviation") %>% + dplyr::select( + date, + location = abbreviation, + daily_hosp_admits, + pop = population, + week + ) + + # Bind US hospitalizations to the end + hosp <- rbind(hosp, usa_hosp) + + return(hosp) +} + +#' Get dataframe with wastewater and hospitalizaiton data for training the model +#' +#' @param ww_data_raw +#' @param hosp_data_raw +#' @param forecast_date +#' @param calibration_time +#' @param location +#' @param hosp_reporting_delay +#' @param forecast_time +#' +#' @return a dataframe of daily hospital admits, observed wastewater +#' concentrations, time starting at the start of the calibration period and +#' going til the end of the forecast period, the day of the week, period, date, +#' and location +#' +#' @export +#' +#' @examples +get_training_data <- function(ww_data_raw, + hosp_data_raw, + forecast_date, + calibration_time, + location, + hosp_reporting_delay, + forecast_time) { + # Pull the hospitalization data + # This will either grab the data from the latest covidcast data + # or will use the forecast date in config vars if vitnages is specified + + if (forecast_date %in% unique(hosp_data_raw$date)) { + closest_date <- forecast_date + } else { + closest_date <- max(hosp_data_raw$date) + } + + + full_dates <- data.frame(date = seq( + from = min(hosp_data_raw$date), + to = max(forecast_date, max(hosp_data_raw$date)), by = "days" + )) + + df_intermediate <- tidyr::expand_grid( + date = seq( + from = min(hosp_data_raw$date), + to = max(forecast_date, max(hosp_data_raw$date)), by = "days" + ), + location = unique(hosp_data_raw$location) + ) %>% + dplyr::left_join( + hosp_data_raw %>% + group_by(location) %>% + dplyr::filter(date == closest_date) %>% + dplyr::ungroup() %>% + dplyr::select(pop, location), + by = "location" + ) + + hosp_data_expanded <- df_intermediate %>% + left_join(hosp_data_raw %>% select(-pop), + by = c("date", "location") + ) + + comb <- hosp_data_expanded %>% + left_join(ww_data_raw, by = c("date", "location")) + + selected_location <- location + last_hosp_data_date <- min( + forecast_date - days(hosp_reporting_delay), + max(hosp_data_raw$date) + ) + + comb <- comb %>% dplyr::filter( + date > lubridate::ymd(last_hosp_data_date - days(calibration_time)), + date <= lubridate::ymd(forecast_date + days(forecast_time)), + location %in% selected_location + ) + + # make sure you have values for all dates + date_df <- data.frame( + date = seq( + from = min(comb$date), + to = max(comb$date), by = "days" + ), + t = seq( + from = 1, + to = max(comb$date) - min(comb$date) + 1 + ) + ) + + train_data <- date_df %>% + left_join(comb, by = c("date")) %>% + mutate( + daily_hosp_admits = ifelse(is.na(daily_hosp_admits), + 0, daily_hosp_admits + ), + day_of_week = lubridate::wday(date, week_start = 1), + forecast_date = forecast_date + ) %>% + dplyr::filter( + date <= (forecast_date + days(forecast_time)), + ) %>% + # Fill data with NAs if during nowcast/calibration time! + dplyr::mutate(daily_hosp_admits = ifelse( + date <= last_hosp_data_date, + daily_hosp_admits, + NA + )) %>% + dplyr::ungroup() + + return(train_data) +} + +#' Get testing dataset +#' +#' @param ww_data_raw The WW data that we need alongside +#' the testing hospitalization data (WW data doesn't change) +#' @param config_vars The config vars that tell us the +#' forecast date, locations, data sources, hosp reporting +#' delays, etc +#' @param date_as_of The date that we want to evaluate the +#' projections as of. This could be today, or could be some +#' weeks in the future +#' @return A dataset that goes up until the forecast_date + +#' forecast_time and starts when the calibration started +#' for each location. Labels whether the data is calibration, +#' nowcast, or forecasted. This will be for multiple locations, +#' but only for a single model type, forecast date, and +#' hospitalizaiton reporting delay +#' +#' @export +#' +#' @examples +get_testing_data <- function(data_as_of, + forecast_date, + location, + calibration_time, + forecast_time, + hosp_reporting_delay, + geo_type, + hosp_data_source, + pull_from_local, + hosp_data_dir, + population_data_path) { + ## Pull the latest hospitalization data + ## If source is HHS_protect_vintages, will + ## pull from data as of otherwise pulls + ## the latest data. Use forecast date input + ## but set to more recent date + hosp_data_raw <- get_hosp_data( + hosp_data_source, + geo_type, + data_as_of, + hosp_data_dir, + population_data_path, + pull_from_local + ) + + if (forecast_date %in% unique(hosp_data_raw$date)) { + closest_date <- forecast_date + } else { + closest_date <- max(hosp_data_raw$date) + } + + full_dates <- data.frame(date = seq( + from = min(hosp_data_raw$date), + to = max(forecast_date, max(hosp_data_raw$date)), by = "days" + )) + df_intermediate <- tidyr::expand_grid( + date = seq( + from = min(hosp_data_raw$date), + to = max(forecast_date + days(forecast_time), max(hosp_data_raw$date)), by = "days" + ), + location = unique(hosp_data_raw$location) + ) %>% + dplyr::left_join( + hosp_data_raw %>% + group_by(location) %>% + dplyr::filter(date == closest_date) %>% + dplyr::ungroup() %>% + dplyr::select(pop, location), + by = "location" + ) # grabs one population per location + + hosp_data_expanded <- df_intermediate %>% + dplyr::left_join( + hosp_data_raw %>% select(-pop), + by = c("date", "location") + ) + + comb <- hosp_data_expanded + calibration_time <- as.numeric(calibration_time) + selected_location <- location + last_hosp_data_date <- forecast_date - days(hosp_reporting_delay) + + comb <- comb %>% + dplyr::filter( + date > lubridate::ymd(!!last_hosp_data_date - days(!!calibration_time)), + location %in% !!selected_location + ) + + # make sure you have values for all dates + date_df <- data.frame( + date = seq( + from = min(comb$date), + to = max(comb$date), by = "days" + ), + t = seq( + from = 1, + to = max(comb$date) - min(comb$date) + 1 + ) + ) + + test_data <- date_df %>% + dplyr::left_join(comb, by = c("date")) %>% + dplyr::select(-t) %>% + dplyr::mutate( + day_of_week = lubridate::wday(date, week_start = 1) + ) %>% + dplyr::filter( + date <= (forecast_date + days(forecast_time)), + ) %>% + dplyr::rename(daily_hosp_admits_for_eval = daily_hosp_admits) + + return(test_data) +} + + + +#' Get long tibble of data needed for model fitting +#' +#' @param ww_data_raw +#' @param forecast_date +#' @param location +#' @param calibration_time +#' @param geo_type +#' @param pull_from_local +#' @param hosp_data_dir +#' @param population_data_path +#' @param forecast_time +#' @param hosp_reporting_delay +#' @param ww_geo_type +#' @param hosp_data_source +#' @param include_ww +#' +#' @return a long stacked dataframe with columns corresponding to model specs +#' and data specs +#' +#' @export +#' +#' @examples +get_all_training_data <- function(ww_data_raw, + forecast_date, + location, + calibration_time, + geo_type, + pull_from_local, + hosp_data_dir, + population_data_path, + forecast_time, + hosp_reporting_delay, + ww_geo_type, + hosp_data_source, + include_ww, + train_data_dir, + model_type, + write_files = TRUE, + ...) { + # These config vars contain multiple elements for forecast_date, + # hosp data delay, and whether or not to include ww + + # Load in a single set of hospitalization and ww data that is up to date + # This way we only call the covidcast API twice. + test_data <- get_testing_data( + data_as_of = lubridate::today(), + forecast_date = lubridate::today(), + location, + calibration_time = as.numeric(lubridate::today() - lubridate::ymd("2020-01-01")), + forecast_time, + hosp_reporting_delay = 0, + geo_type, + hosp_data_source, + pull_from_local, + hosp_data_dir, + population_data_path + ) + + # First get just the training data, which should be the length of the + # calibration time. + for (i in seq_along(forecast_date)) { + single_forecast_date <- forecast_date[i] + # Grab the hospitalization data as of the forecast date + hosp_data <- get_hosp_data( + hosp_data_source, + geo_type, + single_forecast_date, + hosp_data_dir, + population_data_path, + pull_from_local + ) + + for (j in seq_along(hosp_reporting_delay)) { + for (k in seq_along(include_ww)) { + single_hosp_reporting_delay <- hosp_reporting_delay[j] + single_include_ww <- include_ww[k] + + + # If the WW data is at the state level do aggregation here: + if (ww_geo_type == "state") { + ww_data <- aggregate_ww( + ww_data_raw, forecast_date, calibration_time, + hosp_reporting_delay + ) + } else { + ww_data <- ww_data_raw # no further aggregation needed + } + + single_group_train_data <- get_training_data( + ww_data, + hosp_data, + single_forecast_date, + calibration_time, + location, + single_hosp_reporting_delay, + forecast_time + ) + + last_hosp_data_date <- single_group_train_data %>% + dplyr::filter(!is.na(daily_hosp_admits)) %>% + dplyr::pull(date) %>% + max() + + # get the test data in the exact format we need for joining + test_data_single_group <- test_data %>% + mutate(forecast_date = single_forecast_date) %>% + dplyr::filter( + date > lubridate::ymd(lubridate::ymd(last_hosp_data_date) - days(calibration_time)), + date <= lubridate::ymd(lubridate::ymd(single_forecast_date) + days(forecast_time)) + ) + + single_group_train_data <- test_data_single_group %>% + left_join( + single_group_train_data %>% select( + -pop, -day_of_week, -week, + -forecast_date, -t + ) %>% + distinct(), + by = c("date", "location") + ) %>% + mutate( + forecast_date = single_forecast_date, + hosp_reporting_delay = single_hosp_reporting_delay, + include_ww = single_include_ww, + period = case_when( + date <= last_hosp_data_date ~ "calibration", + (date > last_hosp_data_date & date <= single_forecast_date) ~ "nowcast", + date > forecast_date ~ "forecast" + ) + ) + + # make sure you have values for all dates + date_df <- data.frame( + date = seq( + from = min(single_group_train_data$date), + to = max(single_group_train_data$date), by = "days" + ), + t = seq( + from = 1, + to = max(single_group_train_data$date) - min(single_group_train_data$date) + 1 + ) + ) + + single_group_train_data <- single_group_train_data %>% + left_join(date_df, by = "date") + + if (i == 1 && j == 1 && k == 1) { + train_data <- single_group_train_data + } else { + train_data <- rbind(train_data, single_group_train_data) + } + } + } + } + + + if (ww_geo_type == "site") { + site_map <- train_data %>% + group_by(location, forecast_date) %>% + select(site, location, forecast_date) %>% + dplyr::filter(!is.na(site)) %>% + distinct() %>% + mutate(site_index = row_number()) + train_data <- train_data %>% + left_join(site_map, by = c("site", "location", "forecast_date")) + + site_lab_map <- train_data %>% + group_by(location, forecast_date) %>% + select(lab_wwtp_unique_id, location, forecast_date) %>% + dplyr::filter(!is.na(lab_wwtp_unique_id)) %>% + distinct() %>% + mutate(lab_site_index = row_number()) + train_data <- train_data %>% + left_join(site_lab_map, by = c("lab_wwtp_unique_id", "location", "forecast_date")) + } + + if (isTRUE(write_files)) { + model_file_name <- get_model_file_name(model_type, include_ww) + fp <- file.path(train_data_dir, forecast_date, model_file_name) + create_dir(fp) + readr::write_csv(train_data, file.path(fp, "train_data.csv")) + } + return(train_data) +} + + + + + +## WW data pre-processing, used for site level data------------------------ + +#' Save time stampped NWSS data +#' +#' @param ww_path_to_save filepath to save the time stamped wastewater datasets +#' default is data/ww_data +#' keys +#' +#' @return ww_data_path +#' @export +#' +#' @examples +save_timestamped_nwss_data <- function(ww_path_to_save) { + hour <- lubridate::hour(Sys.time()) + minute <- lubridate::minute(Sys.time()) + + time <- hour + minute / 60 + if (time <= (21 + 5 / 60)) { # Hacky way of saying we want the data to be labeled + # as data from the previous day if NWSS data not updated (before 9:05) + time_stamp <- as.character(lubridate::today() - lubridate::days(1)) + } else { + time_stamp <- as.character(lubridate::today()) + } + ww_data_path <- file.path( + ww_path_to_save, + glue::glue("{time_stamp}.csv") + ) + + if (file.exists(ww_data_path)) { + message("Loading ww data from local storage") + } else { + check_package_is_installed("httr") + + # Load in the nwss data token and RID + token <- get_secret("nwss_data_token") + rid <- get_secret("data_rid") + + url <- paste0( + "https://dcipher.cdc.gov/api/v1/datasets/", rid, + "/readTable?preview=True&format=ARROW" + ) + + + raw_result <- httr::GET( + url, + httr::add_headers(Authorization = token) + ) + if (raw_result$status_code == 401) { + warning( + "Attempt to read data from API has resulted in a 401 Unauthorized status code. ", + "The \"nwss_data_token\" may be expired." + ) + } + + arrow_stream <- httr::content(raw_result, "raw") + temp_file <- tempfile(fileext = ".arrow") + writeBin(arrow_stream, temp_file) + message("Loading in NWSS data from API, time stamping to ", time_stamp) + arrow_table <- arrow::read_ipc_stream(temp_file) + + nwss_data <- arrow_table + create_dir(ww_path_to_save) + + write_csv(nwss_data, file.path( + ww_path_to_save, + paste0(time_stamp, ".csv") + )) + } + + return(ww_data_path) +} + + + +#' Initial subsetting of NWSS data +#' @description +#' Grab the columns we want and subset to raw wastewater and to only +#' Wastewater treatment plants (rather than downstream sites, for now). +#' Transform concentration to copies per mL +#' +#' +#' @param raw_nwss_data nwss data from nwss +#' +#' @return nwss_subset_raw which just dplyr::filters based on sample types and wwtp and +#' returns a subset of the columns +#' +#' @export +#' +#' @examples +init_subset_nwss_data <- function(raw_nwss_data) { + nwss_subset_raw <- raw_nwss_data %>% + dplyr::filter( + sample_location == "wwtp", + sample_matrix != "primary sludge", + pcr_target_units != "copies/g dry sludge", + pcr_target == "sars-cov-2" + ) %>% + #* Note, we need to figure out how to convert copies/g dry sludge to a WW concentration, + #* but now now we're just going to exclude + select( + lab_id, sample_collect_date, wwtp_name, pcr_target_avg_conc, + pcr_target_flowpop_lin, + wwtp_jurisdiction, county_names, population_served, pcr_target_units, + pcr_target_below_lod, lod_sewage, quality_flag, county_names + ) %>% + mutate( + pcr_target_avg_conc = case_when( + pcr_target_units == "copies/l wastewater" ~ pcr_target_avg_conc / 1000, + pcr_target_units == "log10 copies/l wastewater" ~ (10^(pcr_target_avg_conc)) / 1000 + ), + lod_sewage = case_when( + pcr_target_units == "copies/l wastewater" ~ lod_sewage / 1000, + pcr_target_units == "log10 copies/l wastewater" ~ (10^(lod_sewage)) / 1000 + ), + ) %>% + dplyr::filter(!quality_flag %in% c( + "yes", "y", "result is not quantifiable", + "temperature not assessed upon arrival at the laboratory", + "> max temp and/or hold time" + )) + + # will treat data without LOD as uninformative + conservative_lod <- as.numeric( + quantile(nwss_subset_raw$lod_sewage, 0.95, na.rm = TRUE) + ) + nwss_subset_raw <- nwss_subset_raw %>% + mutate(lod_sewage = ifelse(is.na(lod_sewage), + conservative_lod, + lod_sewage + )) %>% + mutate(below_LOD = case_when( + pcr_target_below_lod == "Yes" ~ 1, + pcr_target_below_lod == "No" ~ 0, + pcr_target_avg_conc < lod_sewage ~ 1, + pcr_target_avg_conc >= lod_sewage ~ 0, + round(pcr_target_avg_conc) == 0 ~ 1 + )) %>% + mutate( # if value below LOD, set at LOD + pcr_target_avg_conc = ifelse(below_LOD == 1, lod_sewage, pcr_target_avg_conc) + ) + + unique_combos_map <- nwss_subset_raw %>% + select(wwtp_name, lab_id) %>% + unique() %>% + mutate(lab_wwtp_unique_id = row_number()) + + nwss_subset <- nwss_subset_raw %>% + left_join(unique_combos_map, + by = c("wwtp_name", "lab_id") + ) %>% + mutate(sample_collect_date = lubridate::ymd(sample_collect_date)) + + # Find the number of datapoints in each lab site (exclude rows + # where lab_wwtp_unique_id is NA bc those are days with no WW obs) + n_dps <- nwss_subset %>% + group_by(lab_wwtp_unique_id) %>% + summarise(n_data_points = n()) + # Remove labs that have only 1 data point + nwss_subset <- nwss_subset %>% + left_join(n_dps, by = "lab_wwtp_unique_id") %>% + dplyr::filter(n_data_points > 1) + + # If there are multiple values per lab-site-day, replace with the mean + nwss_subset_no_repeats <- nwss_subset %>% + group_by(lab_wwtp_unique_id, sample_collect_date) %>% + summarise( + pcr_target_avg_conc = mean(pcr_target_avg_conc, na.rm = TRUE), + pcr_target_flowpop_lin = mean(pcr_target_flowpop_lin, na.rm = TRUE), + population_served = mean(population_served, na.rm = TRUE), + county_names = county_names[which.max(nchar(county_names))] # mult entries + # for a site-lab-day will list different countys, pick the most inclusive one + ) + + # Get only one value per lab-site-day combo + nwss_subset_clean <- nwss_subset %>% + dplyr::select( + -pcr_target_avg_conc, + -pcr_target_flowpop_lin, + -population_served, + -county_names + ) %>% + dplyr::distinct() %>% + dplyr::left_join(nwss_subset_no_repeats, + by = c( + "lab_wwtp_unique_id", + "sample_collect_date" + ) + ) %>% + dplyr::select(colnames(nwss_subset)) + + return(nwss_subset_clean) +} + + +#' Summarize data into weekly by site +#' @description +#' Get one sample per site per week by averaging over the week if a site submits +#' more than once per week +#' +#' @param nwss_subset subsetted nwss data +#' +#' @return weekly summary of nwss data by site +#' +#' @export +#' +#' @examples +get_weekly_summary <- function(nwss_subset, ww_target_type = "pcr_target_avg_conc") { + nwss_subset <- nwss_subset %>% mutate( + week = epiweek(lubridate::ymd(sample_collect_date)), + year = lubridate::year(lubridate::ymd(sample_collect_date)), + sample_collect_date = lubridate::ymd(sample_collect_date), + midweek_date = round_date(lubridate::ymd(sample_collect_date), "week", week_start = 3) + ) + + if (ww_target_type == "pcr_target_avg_conc") { + nwss_by_week <- nwss_subset %>% + dplyr::group_by(wwtp_name, midweek_date) %>% + dplyr::summarise( + site_weekly_avg_conc = mean(pcr_target_avg_conc, + na.rm = TRUE + ) + ) %>% + dplyr::left_join( + nwss_subset %>% + dplyr::select( + county_names, + population_served, + wwtp_jurisdiction, + wwtp_name, + midweek_date + ) %>% + dplyr::distinct(), + by = c("midweek_date", "wwtp_name") + ) + } + if (ww_target_type == "pcr_target_flowpop_lin") { + nwss_by_week <- nwss_subset %>% + dplyr::group_by(wwtp_name, midweek_date) %>% + dplyr::summarise( + site_weekly_avg_conc = mean(pcr_target_flowpop_lin, + na.rm = TRUE + ) + ) %>% + dplyr::left_join( + nwss_subset %>% dplyr::select( + county_names, + population_served, + wwtp_jurisdiction, + wwtp_name, + midweek_date + ) %>% + dplyr::distinct(), + by = c("midweek_date", "wwtp_name") + ) + } + + return(nwss_by_week) +} + +#' Get summary of WW viral concentrations by state +#' @description +#' This uses the same processing steps that biobot uses (described in: +#' https://github.com/biobotanalytics/covid19-wastewater-data#wastewater-data) +#' We make columns for the unweighted avg concentraiton across the state, +#' the population weighted average, the population weighted average with a +#' 300,000 person threshold for site-specific population served, and a 3 week +#' rolling average of the weighted concentration with the threshold, for both +#' the state and national level. If there are gaps in weeks for a state, +#' the 3 week average is across a longer time frame. We purposely do not use +#' expand grid to inflate this, as we want those states with missing/ incomplete +#' data to be missing data when the model is fit (rather than have NA values). +#' +#' +#' @param nwss_by_week +#' +#' @return +#' +#' @export +#' +#' @examples +get_state_level_summary <- function(nwss_by_week) { + nwss_by_state <- nwss_by_week %>% + dplyr::group_by( + wwtp_jurisdiction, + midweek_date + ) %>% + dplyr::summarise( + pop_weighted_conc = sum(site_weekly_avg_conc * population_served) / + sum(population_served), + unweighted_avg_conc = mean(site_weekly_avg_conc), + pop_weighted_conc_w_thres = sum(site_weekly_avg_conc * pmin( + 3e5, + population_served + )) / + sum(pmin(3e5, population_served)) + ) %>% + dplyr::mutate( + rlng_avg_pop_weighted_conc_w_thres = rollmean( + pop_weighted_conc_w_thres, + 3, + fill = NA, + align = "center" + ) + ) %>% + dplyr::left_join( + nwss_by_week %>% + dplyr::group_by(midweek_date) %>% + dplyr::summarise( + ntl_pop_weighted_conc = sum(site_weekly_avg_conc * population_served, + na.rm = TRUE + ) / sum(population_served), + ntl_unweighted_avg_conc = mean(site_weekly_avg_conc), + ntl_pop_weighted_conc_w_thres = sum(site_weekly_avg_conc * pmin( + 3e5, + population_served + ), na.rm = TRUE) / sum(pmin(3e5, population_served), + na.rm = TRUE + ) + ) %>% + dplyr::mutate( + rlng_avg_ntl_pop_weighted_conc_w_thres = rollmean( + ntl_pop_weighted_conc_w_thres, + 3, + fill = NA, + align = "center" + ) + ), + by = "midweek_date" + ) + + nwss_usa <- nwss_by_week %>% + dplyr::group_by(midweek_date) %>% + dplyr::summarise( + pop_weighted_conc = sum(site_weekly_avg_conc * population_served) / + sum(population_served), + unweighted_avg_conc = mean(site_weekly_avg_conc), + pop_weighted_conc_w_thres = sum(site_weekly_avg_conc * + pmin( + 3e5, + population_served + )) / sum(pmin( + 3e5, + population_served + )) + ) %>% + dplyr::mutate( + wwtp_jurisdiction = "us", + rlng_avg_pop_weighted_conc_w_thres = rollmean( + pop_weighted_conc_w_thres, + 3, + fill = NA, + align = "center" + ) + ) %>% + dplyr::left_join( + nwss_by_week %>% + dplyr::group_by(midweek_date) %>% + dplyr::summarise( + ntl_pop_weighted_conc = sum( + site_weekly_avg_conc * + population_served, + na.rm = TRUE + ) / sum(population_served), + ntl_unweighted_avg_conc = mean( + site_weekly_avg_conc + ), + ntl_pop_weighted_conc_w_thres = sum( + site_weekly_avg_conc * + pmin( + 3e5, + population_served + ), + na.rm = TRUE + ) / + sum(pmin(3e5, population_served), + na.rm = TRUE + ) + ) %>% + dplyr::mutate( + rlng_avg_ntl_pop_weighted_conc_w_thres = rollmean( + ntl_pop_weighted_conc_w_thres, + 3, + fill = NA, + align = "center" + ) + ), + by = "midweek_date" + ) %>% + dplyr::select(colnames(nwss_by_state)) + + nwss_by_state <- rbind(nwss_by_state, nwss_usa) + + return(nwss_by_state) +} + +#' Get the watstewater data for a particular source +#' and geographic granularity +#' @description +#' Wrapper function around the worker functions. +#' Outputs a different dataframe depending on if +#' the pipeline is site level (ww_geo_type != geo_type) +#' or state level +#' +#' @param ww_data_source +#' @param geo_type +#' @param ww_data_type +#' @param ww_target_type +#' @param ww_geo_type +#' @param ww_data_path +#' +#' @return dataframe with observed viral concentrations at the geographic +#' level specified and weekly temporal granularity. Dates correspond to the +#' middle of the week. Will be used to map to hospitalization data. +#' +#' @export +#' +#' @examples +get_ww_data <- function(ww_data_source, geo_type, ww_data_type, + ww_target_type, ww_geo_type, ww_data_path, ...) { + if ( + ww_data_source == "biobot" && + geo_type == "region" && + ww_geo_type == "region" + ) { + ww_region <- quiet(readr::read_csv(ww_data_path)) + + ww_data <- ww_region %>% + dplyr::rename( + ww = effective_concentration_rolling_average + ) %>% + dplyr::filter(region != "Nationwide") %>% + dplyr::rename(location = region) %>% + dplyr::group_by(location, sampling_week) %>% + dplyr::summarise(ww = mean(ww, na.rm = TRUE)) + } + + if ( + ww_data_source == "NWSS" && + geo_type == "state" + ) { + if (!file.exists(ww_data_path)) { + print("NWSS data not in specified location") + } + nwss <- readr::read_csv(ww_data_path) + nwss_subset <- init_subset_nwss_data(nwss) + + + ww_data <- nwss_subset %>% + ungroup() %>% + rename( + date = sample_collect_date, + ww = {{ ww_target_type }}, + ww_pop = population_served + ) %>% + mutate( + location = toupper(wwtp_jurisdiction), + site = wwtp_name, + lab = lab_id + # since we might expect to see + ) %>% + select( + date, location, ww, site, lab, lab_wwtp_unique_id, ww_pop, + below_LOD, lod_sewage + ) + + # Duplicate all ww data with the location labeled US so it gets aggregated + ww_data_usa <- ww_data %>% + mutate(location = "US") + + ww_data <- rbind(ww_data, ww_data_usa) + } + + + return(ww_data) +} + + + +#' @title: get states mapped to their regions +#' +#' @return state abbreviations and region that corr to the WW data source for +#' the biobot data +#' +#' @export +#' +#' @examples +get_regions_for_mapping <- function() { + # Need regions if we're mapping to biobot data only + # Biobot uses US Census regions, but puts Maryland in the Northeast + regions <- tibble( + ABBR = us_states_abb, + region = case_when( + ABBR %in% c("MD") ~ "Southwest", + TRUE ~ as.character(recode(state.region, "North Central" = "Midwest")) + ) + ) + return(regions) +} + + +#' Flag WW outliers +#' +#' @param ww_data data at the lab-site level of WW concentrations +#' @param rho_threshold z-score threshold for "jump" +#' @param log_conc_threshold z-score threshold for log concentration +#' @param threshold_n_dps min number of data points above the LOD per lab-site +#' +#' @return ww_data + columns for outlier flagging +#' @export +#' +#' @examples +flag_ww_outliers <- function(ww_data, rho_threshold = 2, + log_conc_threshold = 3, + threshold_n_dps = 1) { + n_dps <- ww_data %>% + dplyr::filter(below_LOD == 0) %>% + group_by(lab_wwtp_unique_id) %>% + summarise(n_data_points = n()) + + # Get the ww statistics we need for outlier detection + ww_stats <- ww_data %>% + left_join(n_dps, by = "lab_wwtp_unique_id") %>% + # exclude below LOD from z scoring and remove lab-sites with too few data points + dplyr::filter(below_LOD == 0, n_data_points > threshold_n_dps) %>% + group_by(lab_wwtp_unique_id) %>% + arrange(date, "desc") %>% + mutate( + log_conc = log(ww), + prev_log_conc = lag(log_conc, 1), + prev_date = lag(date, 1), + diff_log_conc = log_conc - prev_log_conc, + diff_time = as.numeric(difftime(date, prev_date)), + rho = diff_log_conc / diff_time + ) %>% + select(date, lab_wwtp_unique_id, rho) %>% + distinct() + + # Combine stats with ww data + ww_rho <- ww_data %>% + left_join(ww_stats, by = c("lab_wwtp_unique_id", "date")) + + # compute z scores and flag + ww_z_scored <- ww_rho %>% + dplyr::left_join( + ww_rho %>% + dplyr::group_by(lab_wwtp_unique_id) %>% + dplyr::summarise( + mean_rho = mean(rho, na.rm = TRUE), + std_rho = sd(rho, na.rm = TRUE), + mean_conc = mean(ww, na.rm = TRUE), + std_conc = sd(ww, na.rm = TRUE) + ), + by = "lab_wwtp_unique_id" + ) %>% + dplyr::group_by(lab_wwtp_unique_id) %>% + mutate( + z_score_conc = (ww - mean_conc) / std_conc, + z_score_rho = (rho - mean_rho) / std_rho + ) %>% + dplyr::mutate( + z_score_rho_t_plus_1 = lead(z_score_rho, 1), + flagged_for_removal_conc = dplyr::case_when( + abs(z_score_conc) >= log_conc_threshold ~ 1, + is.na(z_score_conc) ~ 0, + TRUE ~ 0 + ), + flagged_for_removal_rho = dplyr::case_when( + ( + abs(z_score_rho) >= rho_threshold & + (abs(z_score_rho_t_plus_1) >= rho_threshold) & + sign(z_score_rho != sign(z_score_rho_t_plus_1)) + ) ~ 1, + is.na(z_score_rho) ~ NA, + TRUE ~ 0 + ) + ) %>% + dplyr::mutate(flag_as_ww_outlier = dplyr::case_when( + flagged_for_removal_rho == 1 ~ 1, + flagged_for_removal_conc == 1 ~ 1, + TRUE ~ 0 + )) %>% + dplyr::ungroup() + + return(ww_z_scored) +} + +#' Manual removal of hopsital admissions +#' data points in particular states +#' +#' @param train_data original training dataset +#' with hopsitalizations in tact +#' @param vector_of_states states in the order +#' of the corresponding dates we want to remove +#' @param vector_of_dates dates lining up with the +#' states we want to remove from +#' +#' @return revised train data with hospital admissions removed +#' @export +#' +#' @examples +manual_removal_of_hosp_data <- function(train_data, + vector_of_states, + vector_of_dates, + ...) { + ## Iterate through each location and each date + ## and remove if both date and state present + for (i in seq_along(vector_of_dates)) { + to_remove <- ( + train_data$location == vector_of_states[i] & + train_data$date == vector_of_dates[i] + ) + train_data$daily_hosp_admits[to_remove] <- NA + } + + return(train_data) +} + +#' Aggregate the WW data to the state-level +#' +#' @param ww_data_raw The site leve ww data after being cleaned +#' @param forecast_date date forecast is being made +#' @param calibration_time duration of calibration period for hospitalizations +#' @param hosp_reporting_delay the hospital reporting delay (how much is +#' being nowcasted) +#' +#' @return a dataframe with wastewater data for all locations, +#' the weekly avg pcr concentration, and the date +#' @export +#' +#' @examples +aggregate_ww <- function(ww_data_raw, forecast_date, calibration_time, + hosp_reporting_delay) { + ww_data <- ww_data_raw %>% + dplyr::filter( + date <= lubridate::ymd(forecast_date), + date >= forecast_date - days(hosp_reporting_delay) - days(calibration_time) + ) + + ww_data_outliers_flagged <- flag_ww_outliers(ww_data) + + ww_data_outliers_removed <- ww_data_outliers_flagged %>% dplyr::filter(flag_as_ww_outlier == 0) + + # Get a single weekly value per site + ww_full_data <- ww_data_outliers_removed %>% mutate( + week = epiweek(lubridate::ymd(date)), + year = lubridate::year(lubridate::ymd(date)), + midweek_date = round_date(lubridate::ymd(date), "week", week_start = 3) + ) + + # Summarize over the week + ww_weekly <- ww_full_data %>% + dplyr::group_by(lab_wwtp_unique_id, midweek_date) %>% + dplyr::summarise(ww = mean(ww, na.rm = TRUE)) %>% + dplyr::left_join( + ww_full_data %>% select( + lab_wwtp_unique_id, + ww_pop, + location, site, lab, + midweek_date + ) %>% + dplyr::distinct(), + by = c("midweek_date", "lab_wwtp_unique_id") + ) %>% + dplyr::ungroup() + + # Summarize over the sites within each location + ww_agg <- ww_weekly %>% + dplyr::group_by(location, midweek_date) %>% + dplyr::summarise(ww = mean(ww, na.rm = TRUE)) %>% + dplyr::left_join( + ww_weekly %>% + dplyr::select( + location, + midweek_date + ) %>% + dplyr::distinct(), + by = c("midweek_date", "location") + ) %>% + dplyr::rename(date = midweek_date) %>% + dplyr::ungroup() + + return(ww_agg) +} + + +#' Get site county mapp +#' +#' @param nwss wastewater data +#' +#' @return a mapping from the unique county fips in the ww data to the major county +#' @export +#' +#' @examples +get_site_county_map <- function(nwss) { + if (file.exists(file.path( + "data", + "ww_data", + "county_site_map.csv" + ))) { + site_county_map <- readr::read_csv( + file.path( + "data", + "ww_data", + "county_site_map.csv" + ) + ) + cli::cli_inform("Reading in existing site county map") + } else { + create_dir(file.path("data", "ww_data")) + county_state_fips_path <- paste0( + "https://raw.githubusercontent.com/", + "kjhealy/fips-codes/master/", + "state_and_county_fips_master.csv" + ) + county_state_fips_map <- readr::read_csv(county_state_fips_path) + site_county_map <- nwss %>% + select(wwtp_name, county_names) %>% + unique() %>% + mutate(major_county_name_numeric = as.numeric(substr(county_names, 1, 5))) %>% + left_join(county_state_fips_map, by = c("major_county_name_numeric" = "fips")) %>% + mutate(full_county_name = paste0(name, ", ", state)) %>% + select(wwtp_name, county_names, full_county_name) %>% + rename( + site = wwtp_name, + county_codes = county_names + ) + + readr::write_csv( + site_county_map, file.path("data", "ww_data", "county_site_map.csv") + ) + + message("Writing site-county map") + } + + return(site_county_map) +} diff --git a/cfaforecastrenewalww/R/process_model_outputs.R b/cfaforecastrenewalww/R/process_model_outputs.R new file mode 100644 index 00000000..bdfa50c8 --- /dev/null +++ b/cfaforecastrenewalww/R/process_model_outputs.R @@ -0,0 +1,1594 @@ +# Utils for simulation-based calibration analysis------------------------------ +#' Get full parameter distribution +#' @description +#' This function takes in a fitted wastewater model and returns a long-format +#' tibble of the parameter values for all (or a subset of) draws. +#' +#' @param mcmc_fit CmdStanMCMC object +#' @param draw vector, which draws from the MCMC object do we want in the result? +#' If NULL, returns all. This can be a very large data frame! +#' +#' @return a tibble containing the posterior distribution of each +#' parameter and additional information, +#' namely its name, its temporal context, and its spatial context. +#' @export +get_param_samples_long_df <- function(mcmc_fit, + draw = NULL) { + if (!"CmdStanMCMC" %in% class(mcmc_fit)) { + stop("mcmc_fit must be of class `CmdStanMCMC`") + } + + # Get information about the model's parameters + param_df <- get_model_param_df(mcmc_fit) %>% + filter(!generated_quantity) + + # @TODO allow passing in only one variable at a time or a subset + # use custom param_df to do so + + all_draws <- posterior::subset_draws( + # list is supposedly more RAM-friendly format + mcmc_fit$draws(format = "draws_list"), + draw = draw + ) + + # Get in long format + full_param_df <- lapply(param_df$param_name, function(p_name) { + .get_1_param( + param_df %>% filter(param_name == p_name), + all_draws + ) + }) + + return(do.call(bind_rows, full_param_df)) +} + +#' Internal helper for get_param_samples_long_df +#' @description +#' This function makes a "long" data frame for a single parameter. This may be a +#' scalar-, vector-, or matrix-valued parameter. +#' +#' +#' @param param_info single-row data frame (or tibble), originating from get_model_param_df(). +#' @param all_draws MCMC samples as a draws_array object +#' +#' @return data frame with parameter name, values, and (as applicable) information +#' about the spatiotemporal aspects of the parameter +#' @keywords internal +.get_1_param <- function(param_info, all_draws) { + out_df <- NULL + + this_param <- param_info %>% pull(param_name) + t_var <- param_info %>% pull(time_varying) + ls_var <- param_info %>% pull(lab_or_site_varying) + + # spread according to param type: scalar, vector, matrix + if (xor(t_var, ls_var)) { + spread_on <- .get_param_spreader_strings(param_info) + out_df <- all_draws %>% + tidybayes::spread_draws((!!sym(this_param))[!!sym(spread_on)]) + } else if (t_var && ls_var) { + spread_on <- .get_param_spreader_strings(param_info) + out_df <- all_draws %>% + tidybayes::spread_draws( + (!!sym(this_param))[ + !!sym(spread_on["place"]), + !!sym(spread_on["time"]) + ], + regex = TRUE + ) + } else { + out_df <- all_draws %>% + tidybayes::spread_draws(!!sym(this_param)) + } + + out_df <- out_df %>% + mutate( + name = this_param, + ) %>% + rename( + value = !!sym(this_param), + draw = `.draw` + ) %>% + select(-`.chain`, -`.iteration`) + + return(out_df) +} + +#' Internal helper for .get_1_param +#' @description +#' Provides information required to spread() vector- or matrix-valued parameters. +#' +#' @param param_info single-row data frame (or tibble), originating from get_model_param_df(). +#' +#' @return named vector, +#' @keywords internal +.get_param_spreader_strings <- function(param_info) { + time_names <- c("day", "week", "day_of_week") + names(time_names) <- rep("time", length(time_names)) + + place_names <- c("ww_lab_site", "ww_lab", "ww_site") + names(place_names) <- rep("place", length(place_names)) + + place_bool <- param_info %>% + select(c("per_lab_site", "per_lab", "per_site")) %>% + as.logical() + time_bool <- param_info %>% + select(c("daily", "weekly", "cyclic")) %>% + as.logical() + # At the moment all cyclic parameters are also daily + if (time_bool[3]) { + time_bool <- c(FALSE, FALSE, TRUE) + } + res <- c( + place_names[place_bool], + time_names[time_bool] + ) + return(res) +} + + +#' Get full parameter distribution +#' @description +#' This function takes in vectors of parameters, grouped by their indexing, +#' and returns a tidy dataframe with all the draws of all the parameters and +#' the corresponding indices +#' +#' +#' @param all_draws draws from the stan object +#' @param static_params character vector of parameters that are static and +#' don't need any indexing +#' @param weekly_params character vector of parameters that are indexed by week +#' @param daily_ww_params character vector of parameters that are indexed by +#' day (t) and ww lab site +#' @param ww_lab_site_params character vector of parameters that are indexed by +#' unique combo of the wastewater lab and site +#' @param day_of_week_params character vector of parameters that are indexed by +#' day of week +#' +#' @return a dataframe containing the posterior distribution of each parameter +#' With indices corresponding to the parameters that have them +#' @export +#' +#' @examples +get_full_param_distrib <- function(all_draws, + static_params, + vector_params, + matrix_params = NA) { + # Get the static parameters + for (i in seq_along(static_params)) { + this_param <- static_params[i] + this_param_df <- all_draws %>% + spread_draws(!!sym(this_param)) %>% + mutate( + name = this_param, + value = !!sym(this_param), + index_rows = NA, + index_cols = NA + ) %>% + select( + name, value, `.draw`, + index_rows, index_cols + ) + if (i == 1) { + param_df <- this_param_df + } else { + param_df <- rbind(param_df, this_param_df) + } + } + + # Get the vector parameters + for (i in seq_along(vector_params)) { + this_vector_param <- vector_params[i] + this_vector_param_df <- all_draws %>% + spread_draws((!!sym(this_vector_param))[!!sym("index_cols")], + regex = TRUE + ) %>% + mutate( + name = this_vector_param, + value = !!sym(this_vector_param), + index_rows = NA + ) %>% + select( + name, value, `.draw`, + index_rows, index_cols + ) + if (i == 1) { + vector_param_df <- this_vector_param_df + } else { + vector_param_df <- rbind(vector_param_df, this_vector_param_df) + } + } + + + # Get the daily ww parameters + if (!is.na(matrix_params)) { + for (i in seq_along(matrix_params)) { + this_matrix_param <- matrix_params[i] + this_matrix_param_df <- all_draws %>% + spread_draws( + (!!sym(this_matrix_param))[ + !!sym("index_rows"), + !!sym("index_cols") + ], + regex = TRUE + ) %>% + mutate( + name = this_matrix_param, + value = !!sym(this_matrix_param), + ) %>% + select( + name, value, `.draw`, + index_rows, index_cols + ) + if (i == 1) { + matrix_df <- this_matrix_param_df + } else { + matrix_df <- rbind(matrix_df, this_matrix_param_df) + } + } + } + + + + if (!is.na(matrix_params)) { + full_param_df <- rbind( + param_df, vector_param_df, matrix_df + ) + } else { + full_param_df <- rbind( + param_df, vector_param_df + ) + } + + + + # Rename draw for ease of calling it + full_param_df <- full_param_df %>% + rename(draw = `.draw`) %>% + left_join( + full_param_df %>% + group_by(index_rows, index_cols, name) %>% + summarise(median = quantile(value, 0.5, na.rm = TRUE)), + by = c("index_rows", "index_cols", "name") + ) + + return(full_param_df) +} + +## Diagnostics------------------------------------------------------------------ + +#' Calculate low case count diagnostic flag +#' +#' The diagnostic flag is TRUE if either of the _last_ two weeks of the dataset +#' have fewer than an aggregate 10 hospital admissions per week. +#' This aggregation excludes the +#' count from confirmed outliers, which have been set to NA in the data. +#' +#' Adapted from https://github.com/cdcent/cfa-nnh-pipelines/blob/7f1c89d2eecfed89cc3f1be1771d93540ffd6eb4/NHSN/Rt/R/disease_process.R #nolint +#' +#' This function assumes that the `calib_data` input dataset has been +#' "completed": that any implicit missingness has been made explicit. +#' +#' @param calib_data A dataframe. It has `date` column of type `Date`, +#' `daily_hosp_admits` column of type numeric and `period` +#' column of type character. +#' +#' @return Returns TRUE if less than 10 hospital admissions in either of +#' the last two weeks +#' @export +get_low_case_count_diagnostic <- function(calib_data) { + # Sorts dates in ascending order and get the last + max_dates <- tail(sort(unique( + calib_data$date[calib_data$period == "calibration"] + )), 14) + + case_data_flag <- calib_data %>% + ungroup() %>% + # Pull out the last two weeks. This assumes that the df is "complete", i.e. + # that all the nulls are made explicit. + filter(date %in% max_dates) %>% + # Are the dates in the first 7 days or the second 7 days? + mutate(week_rank = dense_rank(date) <= 7) %>% + group_by(week_rank) %>% + # Threshold of 10 cases in both of the last two weeks. The `na.rm = TRUE` + # ensures that missing data is treated as 0 for purposes of this diagnostic. + summarize( + n_weekly_cases_below_thresh = sum(daily_hosp_admits, na.rm = TRUE) < 10 + ) %>% + ungroup() %>% + pull(n_weekly_cases_below_thresh) %>% + # If either is TRUE, diagnostic is TRUE + any() + + return(case_data_flag) +} + +#' Get some basic flags on the wastewater data, for internal use and for +#' reporting out in our metadata +#' +#' @param calib_data The training data object susbetted to before the forecast +#' date +#' @param delay_thres The maximum number of days of delay between the last +#' wastewater data point and the forecat date, before we would flag a state as +#' having insufficient wastewater data to inform a forecast. Default is 21 +#' @param n_dps_thres The threshold number of data points within a single site +#' within a state before we would flag the state as having insufficient +#' wastewater data to inform a forecast. Default is 5 +#' @param prop_below_lod_thres The threshold proportion of wastewater data +#' points that can be below the LOD. If greater than this proportion of points +#' are below the LOD, we flag the state as having insufficient wastewater data. +#' Default is 0.5 +#' @param sd_thres The minimum standard deviation between wastewater data points +#' within a site. This is intended to catch when a site reports all the same +#' values. Default is 0.1 +#' @return a dataframe with 5 True or False flags corresponding to wastewater +#' data presence and quality +#' @export +#' +#' @examples +get_wastewater_diagnostic <- function(calib_data, + delay_thres = 21, + n_dps_thres = 5, + prop_below_lod_thres = 0.5, + sd_thres = 0.1, + mean_log_ww_value_thres = -4) { + # Flag if all wastewater data is missing + no_wastewater_data_flag <- all(is.na(calib_data$ww)) + + if (isFALSE(no_wastewater_data_flag)) { + # Flag if there isn't any wastewater data from the past 3 weeks + delayed_wastewater_data_flag <- all(is.na( + calib_data %>% + filter(date >= forecast_date - days(delay_thres)) %>% + pull(ww) + )) + + # Flag if there are less than 5 data points + insufficient_ww_data_flag <- ( + calib_data %>% + filter(!is.na(ww)) %>% + group_by(lab_wwtp_unique_id) %>% + summarize(n_dps = n()) %>% + pull(n_dps) %>% + max() + ) <= n_dps_thres + + # Flag if most datapoints are below the LOD + most_below_lod <- ( + calib_data %>% + filter(!is.na(ww)) %>% + summarize( + n_ww = n(), + n_below_LOD = sum(below_LOD) + ) %>% + mutate(prop_below_LOD = n_below_LOD / n_ww) %>% + pull(prop_below_LOD) + ) > prop_below_lod_thres + + # Flag if most data points within a lab-site are flat + most_flat <- ( + calib_data %>% + group_by(lab_wwtp_unique_id) %>% + summarise(sd_ww = sd(ww, na.rm = TRUE)) %>% + filter(!is.na(sd_ww)) %>% + ungroup() %>% + summarise(mean_sd = mean(sd_ww)) %>% + pull(mean_sd) + ) <= sd_thres + + wastewater_values_too_low <- ( + calib_data %>% + summarise(mean_log_ww = mean(log(ww), na.rm = TRUE)) %>% + pull(mean_log_ww) + ) <= mean_log_ww_value_thres + } else { + delayed_wastewater_data_flag <- NA + insufficient_ww_data_flag <- NA + most_below_lod <- NA + most_flat <- NA + wastewater_values_too_low <- NA + } + + wastewater_diagnostic <- tibble( + no_wastewaster_data_flag = no_wastewater_data_flag, + delayed_wastewater_data_flag = delayed_wastewater_data_flag, + insufficient_ww_data_flag = insufficient_ww_data_flag, + most_below_lod = most_below_lod, + wastewater_values_too_low = wastewater_values_too_low, + most_flat = most_flat + ) + return(wastewater_diagnostic) +} + +#' Get a joint dataframe of data and model fit diagnostics +#' +#' @description +#' This returns a 10 row dataframe corresponding to 6 flags of the hospital +#' admissions or wastewater data and 4 rows corresponding to stan fit +#' diagnostics. +#' +#' +#' @param stan_fit_object The output of fit$sample() in cmdstanR +#' @param train_data The datarframe containing hospital admissions and +#' wastewater data for callibration of the model +#' @param location The location the model is being run on +#' @param model_type The type of model e.g. site-level observation error +#' @param forecast_date The date of the forecast +#' @param ... +#' +#' @return Returns a dataframe containing diagnostic summaries +#' @export +#' +#' @examples +get_diagnostics <- function(stan_fit_object, train_data, location, + model_type, forecast_date, ...) { + calib_data <- train_data %>% filter(date <= forecast_date) + low_case_count_diagnostic <- get_low_case_count_diagnostic(calib_data) + + if (!(model_type %in% c( + "hospital admissions only", "state-level aggregated wastewater" + ))) { + wastewater_diagnostic <- get_wastewater_diagnostic(calib_data) + } else { + wastewater_diagnostic <- tibble( + no_wastewaster_data_flag = TRUE, + delayed_wastewater_data_flag = NA, + insufficient_ww_data_flag = NA, + most_below_lod = NA, + wastewater_values_too_low = NA, + most_flat = NA + ) + } + + + data_df <- tibble( + diagnostic = c( + "low_case_count_flag", + "no_wastewater_data_flag", + "delayed_wastewater_data_flag", + "insufficient_ww_data_flag", + "most_below_lod", + "wastewater_values_too_low", + "most_flat" + ), + value = c( + low_case_count_diagnostic, + wastewater_diagnostic$no_wastewaster_data_flag, + wastewater_diagnostic$delayed_wastewater_data_flag, + wastewater_diagnostic$insufficient_ww_data_flag, + wastewater_diagnostic$most_below_lod, + wastewater_diagnostic$wastewater_values_too_low, + wastewater_diagnostic$most_flat + ), + "location" = location, + "forecast_date" = forecast_date, + "model_type" = model_type + ) + + diagnostics <- stan_fit_object$diagnostic_summary(quiet = TRUE) + diagnostic_df <- tibble( + diagnostic = c( + "n_divergent", + "n_max_treedepth", + "mean_ebfmi", + "p_high_rhat" + ), + value = c( + sum(diagnostics$num_divergent), + sum(diagnostics$num_max_treedepth), + mean(diagnostics$ebfmi), + as.numeric(mean(stan_fit_object$summary()[, "rhat"]$rhat > 1.05, na.rm = TRUE)) + ), + "location" = location, + "forecast_date" = forecast_date, + "model_type" = model_type + ) + + return(rbind(data_df, diagnostic_df)) +} + +#' Load in and combine all the diagnostic tables +#' +#' @param df_of_filepaths dataframe containing filepath indicating where +#' model outputs are saved +#' +#' @return a combined list of all the diagnostics across locations and model +#' runs +#' @export +#' +#' @examples +read_diagnostics_df <- function(df_of_filepaths) { + for (i in seq_len(nrow(df_of_filepaths))) { + diagnostics_i <- read_csv( + file.path(df_of_filepaths$diagnostics_file_path[i]) + ) + + if (i == 1) { + diagnostics_df <- diagnostics_i + } else { + diagnostics_df <- rbind(diagnostics_df, diagnostics_i) + } + } + return(diagnostics_df) +} + +#' Get the lists of states with different flags (both data and model) +#' +#' @param df long table containing diagnostic, value, location, forecast_date, +#' and model_type +#' @param ebmfi_tolerance tolerance for mean EBMFI, default of 0.2 +#' @param divergences_tolerance tolerance for number of divergent transitions +#' assuming 2000 iterations, default 20 +#' @param p_high_rhat_tolerance tolerance for probability of high p_hat, +#' default 0.05 +#' @param n_max_tree_depth_tol tolerance for number of draws that +#' hit the maximum tree depth, default 20 +#' +#' @return +#' @export +#' +#' @examples +get_summary_stats <- function(df, + ebmfi_tolerance = 0.2, + divergences_tolerance = 20, + p_high_rhat_tolerance = 0.05, + n_max_tree_depth_tol = 20) { + states_w_no_ww_data <- df %>% + filter(diagnostic == "no_wastewater_data_flag", value == 1) %>% + pull(location) + + states_w_insufficient_ww_data <- df %>% + filter(diagnostic == "insufficient_ww_data_flag", value == 1) %>% + pull(location) + + states_w_delayed_ww_data <- df %>% + filter(diagnostic == "delayed_wastewater_data_flag", value == 1) %>% + pull(location) + + # states with any data below LOD, or flat + states_below_lod_or_flat <- df %>% + filter( + diagnostic %in% c("most_below_lod", "most_flat"), + value == 1 + ) %>% + pull(location) + + # states with any wastewater values too low + states_low_ww <- df %>% + filter( + diagnostic %in% c("wastewater_values_too_low"), + value == 1 + ) %>% + pull(location) + + states_to_flag_for_hub <- unique(c( + states_w_insufficient_ww_data, + states_w_delayed_ww_data + )) + + states_w_low_hosp_admissions <- df %>% + filter(diagnostic == "low_case_count_flag", value == 1) %>% + pull(location) + + states_w_low_ebmfi <- df %>% + filter(diagnostic == "mean_ebmfi", value <= ebmfi_tolerance) %>% + pull(location) + + states_w_too_many_divergences <- df %>% + filter(diagnostic == "n_divergent", value >= divergences_tolerance) %>% + pull(location) + + states_w_high_rhat <- df %>% + filter(diagnostic == "p_high_rhat", value >= p_high_rhat_tolerance) %>% + pull(location) + + # states with high number of draws at maximum tree depth + states_high_tree_depth <- df %>% + filter( + diagnostic == "n_max_treedepth", + value >= n_max_tree_depth_tol + ) %>% + pull(location) + + stats <- list( + states_w_no_ww_data = states_w_no_ww_data, + states_w_insufficient_ww_data = states_w_insufficient_ww_data, + states_w_delayed_ww_data = states_w_delayed_ww_data, + states_below_lod_or_flat = states_below_lod_or_flat, + states_low_ww = states_low_ww, + states_to_flag_for_hub = states_to_flag_for_hub, + states_w_low_hosp_admissions = states_w_low_hosp_admissions, + states_w_low_ebmfi = states_w_low_ebmfi, + states_w_too_many_divergences = states_w_too_many_divergences, + states_w_high_rhat = states_w_high_rhat, + states_high_tree_depth = states_high_tree_depth + ) + return(stats) +} + + +## Extract and format the generated quantites----------------------------------- + +#' @title Get generated quantities draws site level model +#' @description +#' This function takes the raw stan output from the site leve model and +#' arranges them in a tidy data format, with time and site_index as indexing +#' variables. +#' +#' +#' @param all_draws +#' @param train_data +#' +#' @return A long dataframe with model draws from pred_hosp, pred_ww, R(t) and +#' p_hosp(t), where all but pred_ww have one value per time point and draw. Bc +#' we need all the column names to be the same, site_index is left empty for those. +#' The resulting dataframe has the following columns: +#' name, site_index, t, value, draw +#' +#' @export +#' +#' @examples +get_gen_quants_draws <- function(all_draws, + model_type) { + hosp_draws <- all_draws %>% + spread_draws(pred_hosp[t]) %>% + # sample_draws(ndraws = n_draws) %>% + rename(value = pred_hosp) %>% + mutate( + draw = `.draw`, + name = "pred_hosp", + lab_site_index = NA + ) %>% + select(name, lab_site_index, t, value, draw) + + ww_draws <- all_draws %>% + spread_draws(pred_ww[lab_site_index, t]) %>% + # sample_draws(ndraws = n_draws) %>% + rename(value = pred_ww) %>% + mutate( + draw = `.draw`, + name = "pred_ww", + value = exp(value) + ) %>% + select(name, lab_site_index, t, value, draw) + + exp_state_ww_draws <- all_draws %>% + spread_draws(exp_state_ww_conc[t]) %>% + # sample_draws(ndraws = n_draws) %>% + rename(value = exp_state_ww_conc) %>% + mutate( + draw = `.draw`, + name = "exp_state_ww_conc", + lab_site_index = NA + ) %>% + select(name, lab_site_index, t, value, draw) + + rt_draws <- all_draws %>% + spread_draws(rt[t]) %>% + # sample_draws(ndraws = n_draws) %>% + rename(value = rt) %>% + mutate( + draw = `.draw`, + name = "R(t)", + lab_site_index = NA + ) %>% + select(name, lab_site_index, t, value, draw) + + p_hosp_draws <- all_draws %>% + spread_draws(p_hosp[t]) %>% + # sample_draws(ndraws = n_draws) %>% + rename(value = p_hosp) %>% + mutate( + draw = `.draw`, + name = "p_hosp", + lab_site_index = NA + ) %>% + select(name, lab_site_index, t, value, draw) + + model_draws <- rbind( + hosp_draws, ww_draws, + exp_state_ww_draws, rt_draws, + p_hosp_draws + ) + model_draws <- model_draws %>% + mutate(site_index = NA) + + if (model_type == "site-level infection dynamics") { + site_level_rt <- all_draws %>% + spread_draws(r_site_t[site_index, t]) %>% + rename(value = r_site_t) %>% + mutate( + draw = `.draw`, + name = "R_site_t", + lab_site_index = NA + ) %>% + select(colnames(model_draws)) + + model_draws <- rbind(model_draws, site_level_rt) + } + + return(model_draws) +} + +#' @title Get generated quantities draws +#' @description +#' This function takes the raw stan output from the aggregated model and +#' arranges them in a tidy data format, with time as an indexing variable. +#' @param all_draws +#' @param train_data +#' +#' @return A long dataframe with model draws from pred_hosp, pred_ww, R(t) and +#' p_hosp(t), where all have one value per time point and draw. +#' The resulting dataframe has the following columns: +#' name, t, value, draw +#' @export +#' +#' @examples +get_generated_quantities_draws <- function(all_draws, n_draws = 100) { + # Dataframes with ndraws (long format) + hosp_draws <- all_draws %>% + spread_draws(pred_hosp[t]) %>% + # sample_draws(ndraws = n_draws) %>% + rename(value = pred_hosp) %>% + mutate( + draw = `.draw`, + name = "pred_hosp" + ) %>% + select(name, t, value, draw) + + ww_draws <- all_draws %>% + spread_draws(pred_conc[t]) %>% + # sample_draws(ndraws = n_draws) %>% + rename(value = pred_conc) %>% + mutate( + draw = `.draw`, + name = "pred_ww", + value = exp(value) + ) %>% + select(name, t, value, draw) + + exp_state_ww_draws <- all_draws %>% + spread_draws(exp_state_ww_conc[t]) %>% + # sample_draws(ndraws = n_draws) %>% + rename(value = exp_state_ww_conc) %>% + mutate( + draw = `.draw`, + name = "exp_state_ww_conc", + ) %>% + select(name, t, value, draw) + + rt_draws <- all_draws %>% + spread_draws(rt[t]) %>% + # sample_draws(ndraws = n_draws) %>% + rename(value = rt) %>% + mutate( + draw = `.draw`, + name = "R(t)" + ) %>% + select(name, t, value, draw) + + p_hosp_draws <- all_draws %>% + spread_draws(p_hosp[t]) %>% + # sample_draws(ndraws = n_draws) %>% + rename(value = p_hosp) %>% + mutate( + draw = `.draw`, + name = "p_hosp" + ) %>% + select(name, t, value, draw) + + model_draws <- rbind( + hosp_draws, ww_draws, rt_draws, + exp_state_ww_draws, p_hosp_draws + ) + + return(model_draws) +} + + +## Extract draws from posterior of static parameters---------------------------- +#' @title Get parameters +#' @description +#' Returns a list of the static parameter in this model. Can be edited as needed +#' +#' @return +#' @export +#' +#' @examples +get_pars <- function() { + pars <- c( + "phi_h", "sigma_ww", "G", "eta_sd", "p_hosp_sd", "i0", "initial_growth", + "viral_peak", "t_peak", "dur_shed", "autoreg_rt" + ) + return(pars) +} + +#' @title Get raw parameter draws +#' @description +#' This concatenates all the tidy draws dataframes of each of the parameters +#' +#' @param stan_output_draws +#' @param n_draws +#' @param ... +#' +#' @return a long tidy dataframe with columns names: +#' name, t, value, draw corresponding to the value of the draw of the posterior +#' of that parameter +#' @export +#' +#' @examples +get_raw_param_draws <- function(stan_output_draws, n_draws = 500, ...) { + # Single parmeter psoterior draws with sumamry stats + phi_h <- stan_output_draws %>% + spread_draws(phi_h) %>% + sample_draws(ndraws = n_draws) %>% + mutate(draw = `.draw`) %>% + mutate( + name = "phi_h", + t = NA + ) %>% + rename(value = phi_h) %>% + select(name, t, value, draw) + + eta_sd <- stan_output_draws %>% + spread_draws(eta_sd) %>% + sample_draws(ndraws = n_draws) %>% + mutate(draw = `.draw`) %>% + mutate( + name = "eta_sd", + t = NA + ) %>% + rename(value = eta_sd) %>% + select(name, t, value, draw) + + log10_g <- stan_output_draws %>% + spread_draws(log10_g) %>% + sample_draws(ndraws = n_draws) %>% + mutate(draw = `.draw`) %>% + mutate( + name = "log10_g", + t = NA + ) %>% + rename(value = log10_g) %>% + select(name, t, value, draw) + + + i0 <- stan_output_draws %>% + spread_draws(i0) %>% + sample_draws(ndraws = n_draws) %>% + mutate(draw = `.draw`) %>% + mutate( + name = "i0", + t = NA + ) %>% + rename(value = i0) %>% + select(name, t, value, draw) + + p_hosp_sd <- stan_output_draws %>% + spread_draws(p_hosp_w_sd) %>% + sample_draws(ndraws = n_draws) %>% + mutate(draw = `.draw`) %>% + mutate( + name = "p_hosp_sd", + t = NA + ) %>% + rename(value = p_hosp_w_sd) %>% + select(name, t, value, draw) + + initial_growth <- stan_output_draws %>% + spread_draws(initial_growth) %>% + sample_draws(ndraws = n_draws) %>% + mutate(draw = `.draw`) %>% + mutate( + name = "initial_growth", + t = NA + ) %>% + rename(value = initial_growth) %>% + select(name, t, value, draw) + + infection_feedback <- stan_output_draws %>% + spread_draws(infection_feedback) %>% + sample_draws(ndraws = n_draws) %>% + mutate(draw = `.draw`) %>% + mutate( + name = "infection_feedback", + t = NA + ) %>% + rename(value = infection_feedback) %>% + select(name, t, value, draw) + + autoreg_rt <- stan_output_draws %>% + spread_draws(autoreg_rt) %>% + sample_draws(ndraws = n_draws) %>% + mutate(draw = `.draw`) %>% + mutate( + name = "autoreg_rt", + t = NA + ) %>% + rename(value = autoreg_rt) %>% + select(name, t, value, draw) + + + posterior_params <- rbind( + phi_h, eta_sd, log10_g, i0, + infection_feedback, + autoreg_rt, initial_growth, p_hosp_sd + ) + + return(posterior_params) +} + +#' @title Get posterior parameter draws and summary stats +#' @description +#' Reads in model_draws, parameters, and training data and gets summary +#' stats on the model parameters, alongside the metadata associated with the model +#' run (comes from train data) +#' +#' @param stan_output_draws the wide format output directly from stan +#' @param train_data the data that went into stan (for a single forecast date, +#' location, model type, and data scenario) +#' +#' @return dataframe with the following parameters: phi_h, phi_w, eta_sd, G, +#' p_hosp, i0, initial_growth, dur_shed, viral_peak, t_peak, with n_draws from +#' the posterior alongside median and 50% and 95% credible intervals +#' @export +#' +#' @examples +get_parameter_draws <- function(model_draws, pars, train_data) { + metadata_df <- get_metadata(train_data) + forecast_date <- metadata_df$forecast_date + location <- metadata_df$location + last_hosp_data_date <- metadata_df$last_hosp_data_date + pop <- metadata_df$pop + hosp_reporting_delay <- metadata_df$hosp_reporting_delay + include_ww <- metadata_df$include_ww + + posterior_params <- model_draws %>% + filter(name %in% pars) %>% + select(-t) %>% + ungroup() + + posterior_params <- posterior_params %>% + group_by(name) %>% + mutate( + median = quantile(value, 0.5, na.rm = TRUE), + lb_50th = quantile(value, 0.25, na.rm = TRUE), + ub_50th = quantile(value, 0.75, na.rm = TRUE), + lb_95th = quantile(value, 0.025, na.rm = TRUE), + ub_95th = quantile(value, 0.975, na.rm = TRUE) + ) %>% + ungroup() %>% + mutate( + forecast_date = forecast_date, + location = location, + last_hosp_data_date = last_hosp_data_date, + hosp_reporting_delay = hosp_reporting_delay, + include_ww = include_ww + ) + + return(posterior_params) +} + +# Prepare for submission ---------------------------------------------------- + +#' Get a consolidated dataframe with each location and its corresponding +#' file path for the necesary outputs. +#' +#' @param df_of_filepaths_inf_dyn the output filepaths resulting after running +#' the infection dynamics model targets, default is NA +#' @param df_of_filepaths_site_obs the output filepaths resulting after running +#' the site-level observation error model targets, default is NA +#' @param df_of_filepaths_hosp_only the output filepaths resulting after running +#' the hospital admissions only model targets, default is NA +#' @param df_of_filepaths_agg the output filepaths resulting after running the +#' national aggreated model target, default is NA +#' @param df_of_filepaths_varying_conc the output filepaths resulting after +#' running the time varying concentration model targets, default is NA +#' @param prod_model_type the model type we want to submit, default is +#' "site-level infection dynamics" +#' @param hosp_only_states the states that we want to manually +#' specify to use the hospital admissions only model instead of the wastewater +#' informed model +#' +#' @return a dataframe of length of the number of locations (will message if +#' not = 53) containing the model type and filepaths for the model outputs needed +#' for the hub submission +#' @export +#' +#' @examples +get_submission_filepath_df <- function(prod_model_type, + hosp_only_states, + df_of_filepaths_inf_dyn = NA, + df_of_filepaths_site_obs = NA, + df_of_filepaths_hosp_only = NA, + df_of_filepaths_agg = NA, + df_of_filepaths_varying_conc = NA) { + if (prod_model_type == "site-level observation error") { + stopifnot( + "Filepaths for production model type not passed in" = + !is.na(df_of_filepaths_site_obs) + ) + df_of_filepaths <- rbind( + df_of_filepaths_site_obs, + df_of_filepaths_agg + ) + } else if (prod_model_type == "site-level infection dynamics") { + stopifnot( + "Filepaths for production model type not passed in" = + !is.na(df_of_filepaths_inf_dyn) + ) + df_of_filepaths <- rbind( + df_of_filepaths_inf_dyn, + df_of_filepaths_agg + ) + } else if (prod_model_type == "site-level time-varying concentration") { + stopifnot( + "Filepaths for production model type not passed in" = + !is.na(df_of_filepaths_varying_conc) + ) + df_of_filepaths <- rbind( + df_of_filepaths_varying_conc, + df_of_filepaths_agg + ) + } else { + message("Production model type not specified properly") + } + + if (!is.null(hosp_only_states)) { + # Replace the full file path of the wastewater model with the + # hospital admissions only model + inds_ho <- df_of_filepaths$location %in% c(hosp_only_states) + + df_of_filepaths$model_draws_file_path[inds_ho] <- + df_of_filepaths_hosp_only$model_draws_file_path[inds_ho] + df_of_filepaths$quantiles_file_path[inds_ho] <- + df_of_filepaths_hosp_only$quantiles_file_path[inds_ho] + df_of_filepaths$future_hosp_draws_file_path[inds_ho] <- + df_of_filepaths_hosp_only$future_hosp_draws_file_path[inds_ho] + df_of_filepaths$parameters_file_path[inds_ho] <- + df_of_filepaths_hosp_only$parameters_file_path[inds_ho] + df_of_filepaths$diagnostics_file_path[inds_ho] <- + df_of_filepaths_hosp_only$diagnostics_file_path[inds_ho] + # Replace model type + df_of_filepaths$model_type[inds_ho] <- "hospital admissions only" + } + + if (any(duplicated(df_of_filepaths$location))) { + stop("Multiple model outputs for a single location") + } + + if (length(df_of_filepaths$location) < 53) { + message("Dataframe of filepaths only generating for a subset of locations") + } else { + message("All 53 states and territories in dataframe for hub submission") + } + return(df_of_filepaths) +} + +#' Hardcoded figure filepath for figures per the read me +#' +#' @param output_file_path +#' @param forecast_date +#' @param date_run +#' +#' @return +#' @export +#' +#' @examples +get_figure_file_path <- function( + output_file_path, + forecast_date, + date_run) { + fp <- file.path( + output_file_path, "figures", + glue::glue("{forecast_date}-run-on-{date_run}") + ) + return(fp) +} +#' Get the hardcoded file path for pdfs per the read me +#' +#' @param output_file_path +#' @param forecast_date +#' @param date_run +#' +#' @return +#' @export +#' +#' @examples +get_pdf_file_path <- function(output_file_path, + forecast_date, + date_run) { + fp <- file.path( + output_file_path, "cleaned", + glue::glue("{forecast_date}-run-on-{date_run}") + ) + return(fp) +} + +#' Get the filepath to save the forecasts within this repo +#' +#' @param forecast_date date of forecast +#' +#' @return +#' @export +#' +#' @examples +get_repo_forecast_file_path <- function(forecast_date) { + fp <- file.path( + "output", "forecasts", + glue::glue("{forecast_date}") + ) + + return(fp) +} + +#' Get the hardcoded submission file path +#' +#' @param output_file_path +#' @param forecast_date +#' @param date_run +#' @param prod_run +#' @param ... +#' +#' @return +#' @export +#' +#' @examples +get_submission_file_path <- function(output_file_path, + forecast_date, + date_run) { + fp <- file.path( + output_file_path, "cleaned", + glue::glue("{forecast_date}-run-on-{date_run}") + ) + + return(fp) +} + +#' Load in future hosp draws and combine into a single dataframe +#' +#' @param df_of_filepaths filepaths where the future hosp draws live +#' @param forecast_submission_filepath where we want the csv to be saved +#' @param submitting_model_name name of the model that we will set as the +#' folder name +#' @param write_files whether or not to write to the forecast submission +#' file path +#' @return df of hub submission for all locations +#' @export +#' +#' @examples +get_df_for_hub_submission <- function(df_of_filepaths, + submitting_model_name, + submission_file_path, + repo_file_path, + prod_run, + write_files = TRUE, + ...) { + for (i in seq_len(nrow(df_of_filepaths))) { + model_draws_i <- arrow::read_parquet( + file = df_of_filepaths$future_hosp_draws_file_path[i] + ) + + quant_summary_i <- format_hosp_draws_hub_sub(model_draws_i) + + if (i == 1) { + quant_summary_full <- quant_summary_i + } else { + quant_summary_full <- rbind(quant_summary_full, quant_summary_i) + } + } + + model_types <- quant_summary_full %>% + pull(model_type) %>% + unique() + message("More than one model type being passed in") + n_locs <- quant_summary_full %>% + pull(location) %>% + unique() %>% + length() + message("Number of locations in dataset passed in: ", n_locs) + forecast_date <- quant_summary_full %>% + pull(forecast_date) %>% + unique() + + # remove model type + quant_summary <- quant_summary_full %>% + select(-model_type) %>% + mutate(quantile = round(quantile, digits = 4)) + + if (isTRUE(write_files)) { + if (isTRUE(prod_run)) { + full_file_path <- file.path( + submission_file_path, + "submitted_forecasts", + submitting_model_name + ) + } else { + full_file_path <- file.path( + submission_file_path, + "test_forecasts", + submitting_model_name + ) + } + + create_dir(full_file_path) + create_dir(repo_file_path) + + write_csv(quant_summary, file.path( + full_file_path, + glue::glue("{forecast_date}-{submitting_model_name}.csv") + )) + message("Writing forecast Hub files to csv") + write.table(quant_summary_full, + file = + file.path( + repo_file_path, + glue::glue("{forecast_date}.tsv") + ), + row.names = FALSE + ) + message("Writing forecast files to repo location") + } + + return(quant_summary_full) +} + + + +#' Prepare posterior draws of hospital admissions for the COVID-19 forecast hub +#' +#' @param hosp_draws dataframe containing the posterior draws from +#' all time points of the hospital admissions for a single model and location +#' @return a dataframe formatted for COVID-19 forecast hub submission +#' @export +#' +#' @examples +format_hosp_draws_hub_sub <- function(hosp_draws) { + model_type <- hosp_draws %>% + pull(model_type) %>% + unique() + forecast_date <- hosp_draws %>% + pull(forecast_date) %>% + unique() + + stopifnot("More than one model output passed in" = length(model_type) == 1) + stopifnot("More than one forecast date passed in" = length(forecast_date) == 1) + + quant_summary <- hosp_draws %>% + trajectories_to_quantiles( + timepoint_cols = "date", + id_cols = "location", + value_col = "value" + ) %>% + mutate( + location = loc_abbr_to_flusight_code(location), + model_type = model_type, + forecast_date = forecast_date + ) %>% + filter(date >= forecast_date + days(1)) %>% + rename( + target_end_date = date + ) %>% + mutate(days_ahead = as.numeric(target_end_date - forecast_date)) %>% + mutate( + target = glue::glue("{days_ahead} day ahead inc hosp"), + type = "quantile" + ) %>% + rename( + value = quantile_value, + quantile = quantile_level + ) %>% + select( + target, location, forecast_date, target_end_date, + quantile, value, type, model_type + ) + + return(quant_summary) +} + + + + +#' @title Get all quantiles +#' @description +#' Takes in the model draws and summarizes over them to get quantiles that +#' correspond to the quantiles reported in the COVID-19 Forecast Hub that +#' are used for generating WIS scores. +#' +#' @param model_draws +#' +#' @return a long dataframe of all the quantiled values of the model variables +#' columns names include all the things we had in the draws_df + metadata: +#' name, t, value, draw, quantile, +#' include_ww, forecast_date, hosp_reporting_delay, +#' location, data_type, date, ww, daily_hosp_admits, +#' daily_hosp_admits_for_eval, pop, obs_data, period, damp_type +#' @export +#' +#' @examples +get_all_quantiles <- function(model_draws) { + forecasts <- trajectories_to_quantiles( + model_draws, + timepoint_cols = "t", + value_col = "value", + id_cols = c("location", "name") + ) %>% + rename( + quantile = quantile_level, + value = quantile_value + ) + + # Get the truth data, but also all the other variables that we need to keep + # track of in the grouping! + obs_data <- model_draws %>% + select(-draw, -value) %>% + distinct() + + inf_and_forecasts_w_obs <- forecasts %>% + as.data.frame() %>% + left_join(obs_data, by = c("t", "location", "name")) %>% + mutate( + data_type = "quantile", + draw = NA + ) %>% + ungroup() %>% + select(c(colnames(model_draws), quantile)) + + return(inf_and_forecasts_w_obs) +} + +# Scores from quantiles ------------------------------------------------------- +#' @title Get scores +#' @description +#' Reads in the quantiles and summarizes scores by the grouping variables specified +#' +#' @param quantiles +#' @param output_file_path +#' @param grouping_vars +#' @param write_files +#' +#' @return a dataframe of average scores over the grouping variables indicated +#' @export +#' +#' @examples +get_scores <- function(quantiles, output_file_path, + scores_file_path = file.path("summaries", "scores"), + grouping_vars = c( + "hosp_reporting_delay", + "location_name", "period", + "forecast_date", "name", "model" + ), + write_files = TRUE) { + # Add model column + if (str_contains(colnames(quantiles), "include_ww")) { + quantiles <- quantiles %>% mutate( + model = ifelse(include_ww == 1, "WW + hosp", "hosp only") + ) + } else { + # Assume if column isn't present, we are running the WW + hosp model! + quantiles <- quantiles %>% mutate( + model = "WW + hosp" + ) + } + + log_quantiles <- quantiles %>% mutate( + true_value = log(true_value), + prediction = log(prediction) + ) + + log_wis_scores <- log_quantiles %>% + scoringutils::score() %>% + scoringutils::summarise_scores( + by = c({{ grouping_vars }}) + ) %>% + ungroup() %>% + rename( + log_interval_score = interval_score, + log_dispersion = dispersion, + log_underprediction = underprediction, + log_overprediction = overprediction + ) %>% + select(-coverage_deviation, -bias, -ae_median) + + scores_summary <- quantiles %>% + scoringutils::score() %>% + scoringutils::add_coverage( + ranges = c(50, 90), + by = c({{ grouping_vars }}) + ) %>% + scoringutils::summarize_scores(by = c({{ grouping_vars }})) %>% + ungroup() + + baseline_score <- scores_summary %>% + filter(model == "hosp only") %>% + select(location_name, period, name, forecast_date, interval_score) %>% + group_by(location_name, period, name, forecast_date) %>% + mutate(baseline_score = interval_score) %>% + ungroup() %>% + select(-interval_score) + + scores_summary <- scores_summary %>% + left_join(baseline_score) %>% + ungroup() %>% + mutate(relative_WIS = interval_score / baseline_score) %>% + left_join(log_wis_scores, by = c({{ grouping_vars }})) + + if (isTRUE(write_files)) { + create_dir(file.path(output_file_path, scores_file_path)) + + arrow::write_parquet( + x = scores_summary, + sink = file.path( + output_file_path, scores_file_path, + "scores_summary.parquet" + ) + ) + } + + return(scores_summary) +} + +#' @title Summarize scores +#' @description +#' Takes the scores grouped by location, period, model, data type (name), +#' and hosp_reporting delay and averages over them. Used to get summaries to +#' compare across models and scenarios over time +#' +#' +#' @param scores +#' +#' @return wide dataframe of average scores across time +#' @export +#' +#' @examples +summarize_scores <- function(scores) { + scores_sum <- scores %>% + group_by(location_name, period, model, name, hosp_reporting_delay) %>% + summarise( + mean_coverage_90 = mean(coverage_90), + mean_ae_median = mean(ae_median), + mean_WIS = mean(interval_score), + mean_relative_WIS = mean(relative_WIS), + mean_log_WIS = mean(log_interval_score), + mean_abs_coverage_deviation = mean(abs(coverage_deviation)) + ) %>% + filter(name == "pred_hosp", period != "calibration") + + return(scores_sum) +} + + +#' Pivot the quantiles output for easy plotting +#' +#' @param quantiles a long dataframe of quantiles +#' +#' @return a wide dataframe of quantiles with just the quantiles we want for plotting +#' @export +#' +#' @examples +pivot_data_for_plotting <- function(quantiles) { + quantiles_wide <- quantiles %>% + dplyr::mutate(quantile = round(quantile, 3)) %>% + dplyr::filter( + name %in% c("R(t)", "pred_hosp", "exp_state_ww_conc"), + quantile %in% c( + 0.025, 0.25, 0.5, + 0.750, 0.975 + ) + ) %>% + dplyr::select(date, location, name, value, quantile) %>% + tidyr::pivot_wider( + id_cols = c(location, name, date), + names_from = quantile, values_from = value, + names_prefix = "quantity_" + ) %>% + dplyr::left_join( + quantiles %>% + dplyr::select( + date, + location, + daily_hosp_admits, + forecast_date, + daily_hosp_admits_for_eval, + period, + model_type + ) %>% + dplyr::distinct(), + by = c("location", "date") + ) + + return(quantiles_wide) +} + +#' Quantile the site level expected observed WW +#' +#' @param draws the tidy bayes output with stacked draws of all generated quantites +#' +#' @return a wide format dataframe with just the median, 50th, and 95th quantiles of +#' the expected WW concentation +#' @export +#' +#' @examples +get_quantiles_on_site_level_ww <- function(draws) { + ww_quantiles <- draws %>% + filter(name == "pred_ww") %>% + group_by(lab_site_index, date) %>% + summarise( + median_ww = quantile(log(value), 0.5, na.rm = TRUE), + lb_25th = quantile(log(value), 0.25, na.rm = TRUE), + ub_75th = quantile(log(value), 0.75, na.rm = TRUE), + lb_025th = quantile(log(value), 0.025, na.rm = TRUE), + ub_975th = quantile(log(value), 0.975, na.rm = TRUE) + ) %>% + left_join( + draws %>% + select( + lab_site_index, date, + site, lab, forecast_date, + location, ww, model_type, + below_LOD, flag_as_ww_outlier + ) %>% + distinct(), + by = c("lab_site_index", "date") + ) %>% + mutate( + log_conc = log(ww), + site_lab = ifelse( + !is.na(lab), + paste0("Site: ", site, " Lab: ", lab), + paste0("Site: ", site, " Lab: not specified") + ), + include_ww = 1 + ) %>% + ungroup() + + return(ww_quantiles) +} + +#' Save a single pdf of plots +#' +#' Saves pdf containing the concatenated figures +#' +#' @param list_of_plots the output from targets of a list of ggplot objects +#' @param pdf_file_path where we want to save the pdf within the output file path +#' @param type_of_output what the pdf is a plot of +#' @param n_row number of rows of figures on a page +#' @param n_col number of columns of figures on a page +#' @param output_file_path where to save the output +#' @param forecast_date date of forecast +#' @param model_type which model we are running +#' @param ... +#' +#' @return NULL +#' @export +#' +#' @examples +save_to_pdf <- function(list_of_plots, + type_of_output, + pdf_file_path, + forecast_date, + model_type, + n_row = 3, + n_col = 2, + ...) { + model_file_name <- case_when( + model_type == "state-level aggregated wastewater" ~ "state_agg_WW_hosp", + model_type == "hospital admissions only" ~ "hosp_only", + model_type == "site-level observation error" ~ "site_level_obs_error", + model_type == "site-level infection dynamics" ~ "site_level_inf_dyn" + ) + + full_file_path <- file.path(pdf_file_path) + create_dir(full_file_path) + + ggsave( + filename = file.path( + full_file_path, + paste0(type_of_output, ".pdf") + ), + plot = marrangeGrob(list_of_plots, nrow = n_row, ncol = n_col), + width = 8.5, height = 11 + ) + + return(NULL) +} diff --git a/cfaforecastrenewalww/R/render_diagnostic_report.R b/cfaforecastrenewalww/R/render_diagnostic_report.R new file mode 100644 index 00000000..0192a98e --- /dev/null +++ b/cfaforecastrenewalww/R/render_diagnostic_report.R @@ -0,0 +1,28 @@ +#' Render diagnostic report +#' +#' @param output path to output .html +#' @param params list of parameters for the Rmd +#' @param report_rmd path to Rmarkdown skeleton +#' @param ... additional parameters passed to `rmarkdown::render` +#' +#' @export +render_diagnostic_report <- function( + output, + params, + report_rmd = system.file( + "diagnostic_report_non_targets.Rmd", + package = "cfaforecastrenewalww", + mustWork = TRUE + ), + ...) { + check_package_is_installed("rmarkdown") + + rmarkdown::render( + input = report_rmd, + output_file = basename(output), + output_dir = dirname(output), + params = params, + envir = new.env(), + ... + ) +} diff --git a/cfaforecastrenewalww/R/setup_secrets.R b/cfaforecastrenewalww/R/setup_secrets.R new file mode 100644 index 00000000..a8aa0e2b --- /dev/null +++ b/cfaforecastrenewalww/R/setup_secrets.R @@ -0,0 +1,78 @@ +#' Just a list of things the package needs, for convenience +#' +#' @return the API token/secret/ID, as a character +#' @keywords internal +.get_api_needed <- function() { + needed_values <- c( + "covidcast_api_key", + "NHSN_API_KEY_ID", + "NHSN_API_KEY_SECRET", + "nwss_data_token", + "data_rid" + ) + + return(needed_values) +} + +#' Interface for getting information needed for API interfacing +#' +#' @param secret character, name of the API token/secret/ID needed +#' +#' @return the API token/secret/ID, as a character +#' @export +get_secret <- function(secret) { + val <- Sys.getenv(secret) + if (identical(val, "")) { + stop( + paste0( + "Requested secret \"", secret, "\" does not exist in the environment. ", + "Have you run setup_secrets()?" + ) + ) + } + return(val) +} + +#' Handles values needed to retrieve data from APIs to run pipeline +#' +#' @param yaml_path character, file path to a YAML containing the API keys, tokens, and IDs +#' +#' @return nothing, sets values as environmental variables +#' @export +setup_secrets <- function(yaml_path) { + needed_values <- .get_api_needed() + + stopifnot("Cannot find file with secrets" = file.exists(yaml_path)) + + secrets <- yaml::read_yaml(yaml_path, + fileEncoding = "UTF-8", + readLines.warn = FALSE + ) + + to_do <- intersect(names(secrets), needed_values) + if (!all(needed_values %in% to_do)) { + warning( + cat( + "Cannot find following secrets:", + paste0(setdiff(needed_values, names(secrets)), collapse = ", "), + "\n", + "May not be able to retrieve all requisite data from APIs.", + sep = "" + ) + ) + } + + secrets <- secrets[names(secrets) %in% to_do] + + do.call(Sys.setenv, secrets) +} + +#' Cleans up environment when secrets and API information is no longer needed +#' +#' @return nothing, unsets values of environmental variables set by setup_secrets +#' @export +cleanup_secrets <- function() { + for (val in .get_api_needed()) { + Sys.unsetenv(val) + } +} diff --git a/cfaforecastrenewalww/R/utils.R b/cfaforecastrenewalww/R/utils.R new file mode 100644 index 00000000..5d3e7007 --- /dev/null +++ b/cfaforecastrenewalww/R/utils.R @@ -0,0 +1,275 @@ +#' @title Normalize vector to a simplex +#' +#' @param vector numeric vector +#' +#' @return vector whos sum adds to 1 +#' @export +#' @examples +#' to_simplex(c(1, 1, 1)) +#' @noRd +to_simplex <- function(vector) { + return(vector / sum(vector)) +} + + +#' @title Convert to logmean in lognorm distribution +#' @description see arithmetic moments here +#' https://en.wikipedia.org/wiki/Log-normal_distribution +#' @param mean +#' @param sd +#' +#' @return corresponding mean of the lognormal distribution +#' @export +#' +#' @examples +convert_to_logmean <- function(mean, sd) { + logmean <- log(mean^2 / sqrt(sd^2 + mean^2)) + return(logmean) +} + + +#' @title Convert to logsd in lognormal distribution +#' @description@description see arithmetic moments here +#' https://en.wikipedia.org/wiki/Log-normal_distribution +#' +#' @param mean +#' @param sd +#' +#' @return corresponding stdev of the lognormal distribution +#' @export +#' +#' @examples +convert_to_logsd <- function(mean, sd) { + logsd <- sqrt(log(1 + (sd^2 / mean^2))) + return(logsd) +} + + +#' @title Suppress output and messages for code. +#' @description Used in the pipeline. +#' @return The result of running the code. +#' @param code Code to run quietly. +#' @examples +#' library(cmdstanr) +#' compile_model("stan/model.stan") +#' quiet(fit_model("stan/model.stan", simulate_data_discrete())) +#' out +#' @noRd +quiet <- function(code) { + sink(nullfile()) + on.exit(sink()) + suppressMessages(code) +} + + +#' @title Get the quantiles being used +#' +#' @param grouped_quantiles +#' +#' @return +#' @export +#' +#' @examples +get_quantiles <- function(grouped_quantiles) { + list_of_quantiles <- grouped_quantiles %>% + select(quantile) %>% + unique() %>% + pull() + return(list_of_quantiles) +} + +#' @title Get metadata from a single group training data +#' @description From a single model run, get the relevant metadata +#' @param train_data single group training data +#' (single location, model type, forecast date) +#' +#' @return single row dataframe containing values for forecast date, pop, +#' include_ww, hosp_reporting delay, and location +#' @export +#' +#' @examples +get_metadata <- function(train_data) { + last_hosp_data_date <- max(train_data$date[!is.na( + train_data$daily_hosp_admits + )]) + + metadata_df <- train_data %>% + ungroup() %>% + select( + forecast_date, + pop, + include_ww, + hosp_reporting_delay, + location + ) %>% + distinct() %>% + mutate(last_hosp_data_date = last_hosp_data_date) + + stopifnot( + "Trying to access metadata from more than one model run" = + nrow(metadata_df) == 1 + ) + + return(metadata_df) +} + +#' @title Create a new directory if one doesn't exist +#' @description +#' Function to create a directory for the specified output file path if needed. +#' dir_create won't throw a warning if its already made though! +#' +#' +#' @param output_file_path file path that may or may not need to be created +#' +#' @export +#' +#' @examples +create_dir <- function(output_file_path) { + if (!file.exists(output_file_path)) { + fs::dir_create(output_file_path, recurse = TRUE, mode = "0777") + Sys.chmod(output_file_path, mode = "0777", use_umask = FALSE) + } +} + +#' @title Get index matrix +#' @description Get the matrix needed to convert a vetor from weekly to daily +#' @param n_days number of days we will expand to +#' @param n_weeks number of weeks those days correspond to +#' +#' @return a n_day x n_week matrix for multiplying by weekly estimated +#' value to conver it to daily +#' @export +#' +#' @examples +get_ind_m <- function(n_days, n_weeks) { + ind_m <- matrix(nrow = n_days, ncol = n_weeks) + for (i in 1:n_days) { + for (j in 1:n_weeks) { + if (((i - 1) %/% 7) + 1 == j) { + ind_m[i, j] <- 1 + } else { + ind_m[i, j] <- 0 + } + } + } + + return(ind_m) +} + +#' @title Get index matrix +#' @description Get the matrix needed to convert a vetor from weekly to daily +#' @param n_days number of days we will expand to +#' @param n_weeks number of weeks those days correspond to +#' +#' @return a n_day x n_week matrix for multiplying by weekly estimated +#' value to conver it to daily +#' @export +#' +#' @examples +get_ind_m_cum_sum <- function(n_days, n_weeks) { + ind_m <- matrix(nrow = n_days, ncol = n_weeks) + for (i in 1:n_days) { + for (j in 1:n_weeks) { + if (((i - 1) %/% 7) + 1 >= j) { + ind_m[i, j] <- 1 + } else { + ind_m[i, j] <- 0 + } + } + } + + return(ind_m) +} + +#' Add probability mass functions +#' +#' This function allows the addition of probability mass functions (PMFs) to +#' produce a new PMF. This is useful for example in the context of reporting +#' delays where the PMF of the sum of two Poisson distributions is the +#' convolution of the PMFs. +#' +#' This code was adapted from code written +#' (under an MIT license) as part of the `epinowcast` +#' package (https://github.com/epinowcast/epinowcast) +#' +#' @param pmfs A list of vectors describing the probability mass functions to +#' +#' @return A vector describing the probability mass function of the sum of the +#' +#' @export +#' @examples +#' # Sample and analytical PMFs for two Poisson distributions +#' x <- rpois(10000, 5) +#' xpmf <- dpois(0:20, 5) +#' y <- rpois(10000, 7) +#' ypmf <- dpois(0:20, 7) +#' # Add sampled Poisson distributions up to get combined distribution +#' z <- x + y +#' # Analytical convolution of PMFs +#' conv_pmf <- add_pmfs(list(xpmf, ypmf)) +#' conv_cdf <- cumsum(conv_pmf) +#' # Empirical convolution of PMFs +#' cdf <- ecdf(z)(0:42) +#' # Compare sampled and analytical CDFs +#' plot(conv_cdf) +#' lines(cdf, col = "black") +add_pmfs <- function(pmfs) { + d <- length(pmfs) + if (d == 1) { + return(pmfs[[1]]) + } + if (!is.list(pmfs)) { + return(pmfs) + } + # P(Z = z) = sum_over_x(P(X = x) * P(Y = z - x)) # nolint + return( + Reduce(x = pmfs, f = function(conv, pmf) { + lc <- length(conv) + wd <- seq_len(lc) - 1 + proc <- numeric(lc + length(pmf)) + for (j in seq_along(pmf)) { + proc[j + wd] <- proc[j + wd] + pmf[j] * conv + } + return(proc) + }) + ) +} + +#' Get a random string of length 8 containing 3 letters, 4 digits, 1 letter +#' +#' @param forecast_date +#' @param date_run +#' @param ww_data_path +#' +#' @return the random string with uppercase letters +#' @export +#' +#' @examples +get_random_string <- function(forecast_date, date_run, ww_data_path) { + time_hash <- rlang::hash(Sys.time()) + random_string <- as.character(substr(time_hash, 1, 5)) + + return(random_string) +} + +#' Check whether a required package is installed +#' @param pkg_name Character scalar. The name of the package to check. +#' @return If the package is not available, it returns an error. +#' @noRd +check_package_is_installed <- function(pkg_name) { + if (!requireNamespace(pkg_name)) { + stop( + glue::glue("The R package `{pkg_name}` is not available. "), + glue::glue("Use `install.packages(\"{pkg_name}\")`.") + ) + } +} + +# From datasets::state.abb +us_states_abb <- c( + "AL", "AK", "AZ", "AR", "CA", "CO", "CT", "DE", "FL", + "GA", "HI", "ID", "IL", "IN", "IA", "KS", "KY", "LA", "ME", "MD", "MA", + "MI", "MN", "MS", "MO", "MT", "NE", "NV", "NH", "NJ", "NM", "NY", + "NC", "ND", "OH", "OK", "OR", "PA", "RI", "SC", "SD", "TN", "TX", + "UT", "VT", "VA", "WA", "WV", "WI", "WY" +) diff --git a/cfaforecastrenewalww/data-raw/example_data.R b/cfaforecastrenewalww/data-raw/example_data.R new file mode 100644 index 00000000..0a8a0eaa --- /dev/null +++ b/cfaforecastrenewalww/data-raw/example_data.R @@ -0,0 +1,6 @@ +toy_data_and_params <- cfaforecastrenewalww::generate_simulated_data() +example_df <- toy_data_and_params$example_df +param_df <- toy_data_and_params$param_df + +usethis::use_data(param_df, overwrite = TRUE) +usethis::use_data(example_df, overwrite = TRUE) diff --git a/cfaforecastrenewalww/data-raw/flusight_location_table.R b/cfaforecastrenewalww/data-raw/flusight_location_table.R new file mode 100644 index 00000000..d3eb2cd4 --- /dev/null +++ b/cfaforecastrenewalww/data-raw/flusight_location_table.R @@ -0,0 +1,25 @@ +nation <- tibble::tibble( + location_code = "US", + short_name = "US", + long_name = "United States" +) + +states <- readr::read_delim( + "https://www2.census.gov/geo/docs/reference/state.txt", + delim = "|" +) |> + dplyr::select( + location_code = STATE, + short_name = STUSAB, + long_name = STATE_NAME + ) + +flusight_location_table <- dplyr::bind_rows( + nation, + states +) + +usethis::use_data(flusight_location_table, + overwrite = TRUE, + ascii = TRUE +) diff --git a/cfaforecastrenewalww/data/example_df.rda b/cfaforecastrenewalww/data/example_df.rda new file mode 100644 index 00000000..63073b83 Binary files /dev/null and b/cfaforecastrenewalww/data/example_df.rda differ diff --git a/cfaforecastrenewalww/data/flusight_location_table.rda b/cfaforecastrenewalww/data/flusight_location_table.rda new file mode 100644 index 00000000..05ff9751 Binary files /dev/null and b/cfaforecastrenewalww/data/flusight_location_table.rda differ diff --git a/cfaforecastrenewalww/data/param_df.rda b/cfaforecastrenewalww/data/param_df.rda new file mode 100644 index 00000000..fda14298 Binary files /dev/null and b/cfaforecastrenewalww/data/param_df.rda differ diff --git a/cfaforecastrenewalww/inst/include/stan_meta_header.hpp b/cfaforecastrenewalww/inst/include/stan_meta_header.hpp new file mode 100644 index 00000000..3b914da2 --- /dev/null +++ b/cfaforecastrenewalww/inst/include/stan_meta_header.hpp @@ -0,0 +1 @@ +// Insert all #include statements here diff --git a/cfaforecastrenewalww/inst/stan/functions/ar1.stan b/cfaforecastrenewalww/inst/stan/functions/ar1.stan new file mode 100644 index 00000000..7d6c1712 --- /dev/null +++ b/cfaforecastrenewalww/inst/stan/functions/ar1.stan @@ -0,0 +1,28 @@ +/** + * Assembles an AR(1) process out of its non-centered, non-scaled components. + * @param mu vector of the mean value that the process preserves to + * @param ac The autocorrelation coefficient. + * @param sd The sd for the white noise/IID normal terms. + * @param z vector of IID Normal(0,1) variables, the white noise/increment terms. + * @return A vector, the values of the mean-preserving AR(1) process: + * x[1] = x0, + * x[i > 1] = mu + tvd[[i], where + * tvd[i] = ac * tvd[i - 1] + sd* z[i] + * Formally x(t) = mu(t) + delta(t) where + * delta(t) = psi*delta(t-1) + eta(t) + */ +vector ar1(vector mu, real ac, real sd, vector z) { + int n = num_elements(z); + vector[n] x; + vector[n] tvd; + + tvd[1] = sd * z[1]; + x[1] = mu[1] + tvd[1]; + + for (i in 2:n) { + tvd[i] = ac * tvd[i - 1] + sd * z[i]; + x[i] = mu[i] + tvd[i]; + } + + return x; +} diff --git a/cfaforecastrenewalww/inst/stan/functions/biased_rw.stan b/cfaforecastrenewalww/inst/stan/functions/biased_rw.stan new file mode 100644 index 00000000..fbbf5b1a --- /dev/null +++ b/cfaforecastrenewalww/inst/stan/functions/biased_rw.stan @@ -0,0 +1,22 @@ +/** + * Assembles a biased (GMRF-like) random walk out of its non-centered, non-scaled components. + * The bias is that (x[i] - x[i - 1]) is positively correlated with (x[i - 1] - x[i - 2]). + * @param x0 The initial value, or intercept. + * @param ar The autocorrelation coefficient. + * @param sd The sd for the white noise/IID normal terms. + * @param z vector of IID Normal(0,1) variables, the white noise/increment terms. + * @return A vector, the values of the biased random walk. + */ +vector biased_rw(real x0, real ar, real sd, vector z) { + int n = num_elements(z) + 1; + vector[n] x; + + x[1] = x0; + x[2] = x[1] + sd * z[1]; + + for (i in 3:n) { + x[i] = x[i - 1] + ar * (x[i - 1] - x[i - 2]) + sd * z[i - 1]; + } + + return x; +} diff --git a/cfaforecastrenewalww/inst/stan/functions/convolve.stan b/cfaforecastrenewalww/inst/stan/functions/convolve.stan new file mode 100644 index 00000000..eb714f40 --- /dev/null +++ b/cfaforecastrenewalww/inst/stan/functions/convolve.stan @@ -0,0 +1,16 @@ +// This code was adapted from code written +// (under an MIT license) as part of the `EpiNow2` +// package (https://github.com/epiforecasts/EpiNow2) + +// convolve two vectors as a backwards dot product +// y vector shoud be reversed +// limited to the length of x and backwards looking for x indexes +// designed for use convolve a case vector and a delay pmf +vector convolve_dot_product(vector x, vector y, int len) { + int ylen = num_elements(y); + vector[len] z; + for (s in 1 : len) { + z[s] = dot_product(x[max(1, s - ylen + 1) : s], tail(y, min(ylen, s))); + } + return z; +} diff --git a/cfaforecastrenewalww/inst/stan/functions/expgamma_lpdf.stan b/cfaforecastrenewalww/inst/stan/functions/expgamma_lpdf.stan new file mode 100644 index 00000000..44ab18c7 --- /dev/null +++ b/cfaforecastrenewalww/inst/stan/functions/expgamma_lpdf.stan @@ -0,0 +1,25 @@ +real expgamma_lpdf(vector x, real shape_k, real scale_theta){ + + return(sum( + -shape_k * log(scale_theta) - + lgamma(shape_k) + + shape_k * x - (exp(x) / scale_theta))); +} + +real expgamma_lpdf(real x, real shape_k, real scale_theta){ + + return( + -shape_k * log(scale_theta) - + lgamma(shape_k) + + shape_k * x - (exp(x) / scale_theta)); +} + +real expgamma_lpdf(vector xs, + vector shapes_k, + vector scales_theta){ + + return(sum( + -shapes_k .* log(scales_theta) - + lgamma(shapes_k) + + shapes_k .* xs - (exp(xs) ./ scales_theta))); +} diff --git a/cfaforecastrenewalww/inst/stan/functions/hospitalization.stan b/cfaforecastrenewalww/inst/stan/functions/hospitalization.stan new file mode 100644 index 00000000..f0687a04 --- /dev/null +++ b/cfaforecastrenewalww/inst/stan/functions/hospitalization.stan @@ -0,0 +1,17 @@ +/** + * Assembles daily hospitalization probability vector from a weekly random walk. + * Uses non-centered, non-scaled differences, initial value, and SD for the walk. + * Multiplies by matrix to transform to daily. + * + * @param p_hosp_m matrix to handle conversion from weekly to daily + * @param p_hosp_int intercept/first value, on unconstrained scale + * @param p_hosp_w_sd, scaling factor for/SD of random walk + * @param p_hosp_w weekly deviations of the random walk, on unconstrained scale + * @return A vector, daily probabilities of hospitalization + */ +vector assemble_p_hosp(matrix p_hosp_m, real p_hosp_int, real p_hosp_w_sd, vector p_hosp_w) { + vector[dims(p_hosp_m)[1]] p_hosp; + p_hosp = p_hosp_m * append_row(p_hosp_int, p_hosp_w_sd * p_hosp_w); + p_hosp = inv_logit(p_hosp); + return p_hosp; +} diff --git a/cfaforecastrenewalww/inst/stan/functions/infections.stan b/cfaforecastrenewalww/inst/stan/functions/infections.stan new file mode 100644 index 00000000..29e24d20 --- /dev/null +++ b/cfaforecastrenewalww/inst/stan/functions/infections.stan @@ -0,0 +1,94 @@ +// This code was adapted from code written +// (under an MIT license) as part of the `EpiNow2` +// package (https://github.com/epiforecasts/EpiNow2) +// calculate infectiousness (weighted sum of the generation interval and incident infections) +real update_infectiousness(vector infections, vector gt_rev_pmf, + int seeding_time, int index) { + int gt_max = num_elements(gt_rev_pmf); + // work out where to start the convolution of past infections with the + // generation time distribution: (current_time - maximal generation time) if + // that is >= 1, otherwise 1 (how far back to add infectiousness from) + int inf_start = max(1, index + seeding_time - gt_max); + // work out where to end the convolution: (current_time - 1) + int inf_end = index + seeding_time - 1; + // number of indices of the generation time to sum over (inf_end - inf_start + 1) + // Either go all the way back or just go to where we start seeing infections + int pmf_accessed = min(gt_max, index + seeding_time - 1); + // calculate the elements of the convolution + real new_inf = dot_product(infections[inf_start : inf_end], + tail(gt_rev_pmf, pmf_accessed) + // Last elements of reversed generation interval = first elemenets of generation interval! + ); + return new_inf; +} + +/** + * Computes the number of infections over time by updating the reproduction + * number based on the effective infectiousness from previous days and + * feedback from incidence data. Adapted from the EpiNow2 package. + * + * @param obs_r A vector of length `ot` representing the observed reproduction + * numbers over a certain period. + * + * @param uot An integer representing the number of unobserved time steps + * prior to the first observed value in `obs_r`. + * + * @param gt_rev_pmf A vector representing the reversed generation time + * probability mass function. + * + * @param initial_infections An array of real numbers representing the initial + * number of infections (in log scale) at the start of the unobserved period. + * + * @param initial_growth A real number representing the initial + * growth rate of infections (in log scale) over the unobserved period. + * + * @param ht An integer representing the time horizon for the historical + * tracking of infections. + * + * @param infection_feedback An optional array of real numbers providing + * feedback to adjust the reproduction number based on recent incidence data. + * + * @param infection_feedback_pmf_rev A vector representing the + * reversed probability mass function for the infection feedback. + * + * @return A tuple containing a vector of length `t` representing the number + * of infections for each time step, combining both unobserved and observed + * periods and a vector the same length as the input obs_r representing the + * effective reproduction number at each time step. + * @author Sam Abbott + */ +tuple(vector, vector) generate_infections(vector obs_r, int uot, vector gt_rev_pmf, + real initial_infections, real initial_growth, + int ht, real infection_feedback, vector infection_feedback_pmf_rev +) { + // time indices and storage + int at = num_elements(obs_r); // all time with R(t), including horizon time + int t = at + uot; // uot + ot + Ht + vector[at] rt = obs_r; + vector[t] infections = rep_vector(0, t); + real infectiousness; + real infection_feedback_weighting; + tuple(vector[t], vector[at]) output; + + // Initialise infections using daily growth + infections[1] = initial_infections; + if (uot > 1) { + vector[uot-1] growth = rep_vector(initial_growth, uot-1); + infections[2:uot] = initial_infections + cumulative_sum(growth); + } + infections[1:uot] = exp(infections[1:uot]); + // iteratively update infections + for (s in 1:at) { + infectiousness = update_infectiousness(infections, gt_rev_pmf, uot, s); + infection_feedback_weighting = update_infectiousness( + infections, infection_feedback_pmf_rev, uot, s + ); + rt[s] = exp(log(rt[s]) - infection_feedback .* infection_feedback_weighting); + infections[s + uot] = rt[s] * infectiousness; + } + + // Assign tuple output + output.1 = infections; + output.2 = rt; + return(output); +} diff --git a/cfaforecastrenewalww/inst/stan/functions/observation_model.stan b/cfaforecastrenewalww/inst/stan/functions/observation_model.stan new file mode 100644 index 00000000..fb659881 --- /dev/null +++ b/cfaforecastrenewalww/inst/stan/functions/observation_model.stan @@ -0,0 +1,37 @@ +// This code was adapted from code written +// (under an MIT license) as part of the `EpiNow2` +// package (https://github.com/epiforecasts/EpiNow2) +vector day_of_week_effect(vector reports, array[] int day_of_week, + vector effect) { + int t = num_elements(reports); + int wl = num_elements(effect); + // scale day of week effect + vector[wl] scaled_effect = wl * effect; + vector[t] scaled_reports; + for (s in 1:t) { + // add reporting effects (adjust for simplex scale) + scaled_reports[s] = reports[s] * scaled_effect[day_of_week[s]]; + } + return scaled_reports; +} + +vector get_vl_trajectory(real tpeak, real viral_peak, + real duration_shedding, int n) { + vector[n] s; + real growth = viral_peak / tpeak; + real wane = viral_peak / (duration_shedding - tpeak); + + for (t in 1 : n) { + if (t <= tpeak) { + s[t] = pow(10, growth * t); + } else { + s[t] = viral_peak + wane * tpeak - wane * t; + if (s[t] < 0) { + s[t] = 0; + } + s[t] = pow(10, s[t]); + } + } + s = s / sum(s); + return s; +} diff --git a/cfaforecastrenewalww/inst/stan/functions/utils.stan b/cfaforecastrenewalww/inst/stan/functions/utils.stan new file mode 100644 index 00000000..e8409302 --- /dev/null +++ b/cfaforecastrenewalww/inst/stan/functions/utils.stan @@ -0,0 +1,12 @@ +// Functions to convert natural scale means to corresponding lognormal means +real convert_to_logmean(real mean, real sd) { + real logmean; + logmean = log(mean ^ 2 / sqrt(sd ^ 2 + mean ^ 2)); + return logmean; +} + +real convert_to_logsd(real mean, real sd) { + real logsd; + logsd = sqrt(log(1 + (sd ^ 2 / mean ^ 2))); + return logsd; +} diff --git a/cfaforecastrenewalww/inst/stan/renewal_ww_hosp.stan b/cfaforecastrenewalww/inst/stan/renewal_ww_hosp.stan new file mode 100644 index 00000000..9855f7f0 --- /dev/null +++ b/cfaforecastrenewalww/inst/stan/renewal_ww_hosp.stan @@ -0,0 +1,215 @@ +functions { +#include functions/ar1.stan +#include functions/biased_rw.stan +#include functions/convolve.stan +#include functions/infections.stan +#include functions/observation_model.stan +#include functions/utils.stan +} +// end functions + +// The fixed input data +data { + int gt_max; + int hosp_delay_max; + vector[hosp_delay_max] inf_to_hosp; + int dur_inf; // duration people are infectious (number of days) + real mwpd; // mL of WW produced per person per day + int if_l; // length of infection feedback pmf + vector[if_l] infection_feedback_pmf; // infection feedback pmf + int ot; // total time span where we have hospital admissions + int oht; // number of days with observed hospital admissions + int owt; // number of days of observed WW (should be roughly ot/7) + int uot; // unobserved time before we observe hospital admissions/ WW + int ht; // horizon time (nowcast + forecast time) + int n_weeks; // number of weeks for weekly random walk on R(t) + matrix[ot + ht, n_weeks] ind_m; // matrix needed to transform R(t) from weekly to daily + int tot_weeks; // number of weeks for the weekly random walk on IHR (includes unobserved time) + matrix[uot + ot + ht, tot_weeks] p_hosp_m ; // matrix needed to convert p_hosp RW from weekly to daily + vector[gt_max] generation_interval; // generation interval distribution + vector[gt_max] ts; // time series + real n; // population size + array[owt] int ww_sampled_times; // the days on which WW is sampled relative + // to the days with which hospital admissions observed + array[oht] int hosp_times; // the days on which hospital admissions are observed + array[oht] int hosp; // observed hospital admissions + array[ot + ht] int day_of_week; // integer vector with 1-7 corresponding to the weekday + vector[owt] log_conc; // log(genome copies/mL) + int compute_likelihood; // 1= use data to compute likelihood + int include_ww; // 1= include wastewater data in likelihood calculation + int include_hosp; // 1 = fit to hosp, 0 = only fit wastewater model + + // Priors + vector[6] viral_shedding_pars; // tpeak, viral peak, shedding duration mean and sd + real autoreg_rt_a; + real autoreg_rt_b; + real inv_sqrt_phi_prior_mean; + real inv_sqrt_phi_prior_sd; + real r_prior_mean; + real r_prior_sd; + real log10_g_prior_mean; + real log10_g_prior_sd; + real log_i0_prior_mean; + real log_i0_prior_sd; + real wday_effect_prior_mean; + real wday_effect_prior_sd; + real initial_growth_prior_mean; + real initial_growth_prior_sd; + real sigma_ww_prior_mean; + real eta_sd_sd; + real p_hosp_mean; + real p_hosp_sd_logit; + real p_hosp_w_sd_sd; + real infection_feedback_prior_mean; + real infection_feedback_prior_sd; +} + +transformed data { + // viral shedding parameters + real t_peak_mean = viral_shedding_pars[1]; + real t_peak_sd = viral_shedding_pars[2]; + real viral_peak_mean = viral_shedding_pars[3]; + real viral_peak_sd = viral_shedding_pars[4]; + real dur_shed_mean = viral_shedding_pars[5]; + real dur_shed_sd = viral_shedding_pars[6]; + // natural scale -> lognormal parameters + // https://en.wikipedia.org/wiki/Log-normal_distribution + real r_logmean = convert_to_logmean(r_prior_mean, r_prior_sd); + real r_logsd = convert_to_logsd(r_prior_mean, r_prior_sd); + // reversed generation interval + vector[gt_max] gt_rev_pmf = reverse(generation_interval); + vector[if_l] infection_feedback_rev_pmf = reverse(infection_feedback_pmf); +} + +// The parameters accepted by the model. +parameters { + vector[n_weeks-1] w; // weekly random walk + real eta_sd; // step size of random walk + real autoreg_rt;// coefficient on AR process in R(t) + real log_r; // baseline reproduction number estimate (log) + real log_i0_over_n; // log of number of incident infections /n on day -uot before first observation day + real initial_growth; // initial growth from I0 to first observed time + real inv_sqrt_phi_h; + real sigma_ww; + real p_hosp_int; // Estimated IHR + vector[tot_weeks -1] p_hosp_w; // weekly random walk for IHR + real p_hosp_w_sd; // Estimated IHR sd + real t_peak; // time to viral load peak in shedding + real viral_peak; // log10 peak viral load shed /mL + real dur_shed; // duration of detectable viral shedding + real log10_g; // log10 of number of genomes per infected individual + simplex[7] hosp_wday_effect; // day of week reporting effect, sums to 1 + real infection_feedback; // infection feedback + +} + +transformed parameters { + vector[ot + uot + ht] new_i; // daily incident infections /n + vector[ot + uot + ht] p_hosp; // probability of hospitalization + vector[ot + uot + ht] model_hosp; // model estimated hospital admissions + vector[oht] exp_obs_hosp; // expected observed hospital admissions + vector[ot] exp_obs_hosp_no_wday_effect; // expected observed hospital admissions before weekday effect + vector[gt_max] s; // viral kinetics trajectory (normalized) + vector[ot + uot + ht] model_log_v; // model estimated log viral genomes shed per person + vector[ot+ht] model_log_v_ot; // model estimated log viral genomes shed per person during ot + vector[owt] exp_obs_log_v; // model estimated log viral genomes shed per person at ww sampled times only + vector[ot + uot + ht] model_net_i; // number of net infected individuals shedding on each day (sum of individuals in dift stages of infection) + real phi_h = inv_square(inv_sqrt_phi_h); // previouslt inv_square(inv_sqrt_phi_h) + vector[ot + ht] unadj_r; // R(t) + vector[ot + ht] rt; // R(t) + real i0 = exp(log_i0_over_n) * n; // Initial infections + vector[n_weeks] log_rt_weeks; // log R(t) in weeks for autocorrelated RW + + + // AR + RW implementation: + // AR + RW implementation: + log_rt_weeks = biased_rw(log_r, autoreg_rt, eta_sd, w); + unadj_r = ind_m * log_rt_weeks; + unadj_r = exp(unadj_r); + + // Expected daily number of new infections (per capita), using EpiNow2 assumptions re pre and post observation time + // Using pop = 1 so that damping is normalized to per capita + (new_i, rt) = generate_infections( + unadj_r, uot, gt_rev_pmf, log_i0_over_n, initial_growth, ht, + infection_feedback, infection_feedback_rev_pmf + ); + + // Expected hospitalizations: + // generates all hospitalizations, across unobserved time, observed time, and forecast time + p_hosp = p_hosp_m * append_row(p_hosp_int, p_hosp_w_sd * p_hosp_w); + p_hosp = inv_logit(p_hosp); + + // generates all hospitalizations, across unobserved time, observed time, and forecast time + model_hosp = convolve_dot_product(p_hosp .* new_i, reverse(inf_to_hosp), + ot + uot + ht); + + // just get the expected observed hospitalizations + exp_obs_hosp_no_wday_effect = model_hosp[uot + 1 : uot + ot]; + // apply the weekday effect so these are distributed with fewer admits on Sat & Sun + // multiply by n because data must be integer so need this to be in actual numbers not proportions + exp_obs_hosp = n * day_of_week_effect(exp_obs_hosp_no_wday_effect[hosp_times], + day_of_week[hosp_times], hosp_wday_effect); + + // Expected shed viral genomes: + // Shedding kinetics trajectory + s = get_vl_trajectory(t_peak, viral_peak, dur_shed, gt_max); + + // This should also be a convolution of incident infections and shedding kinetics pmf times avg total virus shed + model_net_i = convolve_dot_product(new_i, reverse(s), uot + ot + ht); // net number of infected individuals + // log number of viral genomes shed on a given day = net infected individuals * amount shed per individual + model_log_v = log(10)*log10_g + log(model_net_i + 1e-8); // adding for numerical stability + // genome copies/mL = genome copies/(person * mL of WW per person day) + model_log_v_ot = model_log_v[(uot + 1) : (uot + ot + ht)] - log(mwpd); + exp_obs_log_v = model_log_v_ot[ww_sampled_times]; +} + +// Prior and sampling distribution +model { + // priors + vector[7] effect_mean = rep_vector(wday_effect_prior_mean, 7); + w ~ std_normal(); + eta_sd ~ normal(0, eta_sd_sd); + autoreg_rt ~ beta(autoreg_rt_a, autoreg_rt_b); + log_r ~ normal(r_logmean, r_logsd); + log_i0_over_n ~ normal(log_i0_prior_mean, log_i0_prior_sd); + initial_growth ~ normal(initial_growth_prior_mean, initial_growth_prior_sd); + inv_sqrt_phi_h ~ normal(inv_sqrt_phi_prior_mean, inv_sqrt_phi_prior_sd); + sigma_ww ~ normal(0, sigma_ww_prior_mean); + log10_g ~ normal(log10_g_prior_mean, log10_g_prior_sd); + hosp_wday_effect ~ normal(effect_mean, wday_effect_prior_sd); + p_hosp_int ~ normal(logit(p_hosp_mean), p_hosp_sd_logit); + p_hosp_w ~ std_normal(); + p_hosp_w_sd ~ normal(0, p_hosp_w_sd_sd); + t_peak ~ normal(t_peak_mean, t_peak_sd); + viral_peak ~ normal(viral_peak_mean, viral_peak_sd); + dur_shed ~ normal(dur_shed_mean, dur_shed_sd); + infection_feedback ~ normal(infection_feedback_prior_mean, infection_feedback_prior_sd); + + // Compute log likelihood + if (compute_likelihood == 1) { + if (include_ww == 1) { + log_conc ~ normal(exp_obs_log_v, sigma_ww); + } + + if (include_hosp == 1) { + hosp ~ neg_binomial_2(exp_obs_hosp, phi_h); + } + } // end if for computing log likelihood +} + +generated quantities { + array[ot + ht] real pred_hosp; + array[ot + ht] real pred_new_i; + array[ot + ht] real pred_conc; + vector[ot + ht] exp_state_ww_conc = exp(model_log_v_ot); // state mean wastewater concentration + real g = pow(10, log10_g); + + pred_hosp = neg_binomial_2_rng(n * day_of_week_effect(model_hosp[uot + 1 : + uot + ot + ht], + day_of_week, + hosp_wday_effect), + phi_h); + pred_new_i = neg_binomial_2_rng(n * new_i[uot + 1 : uot + ot + ht], phi_h); + + pred_conc = normal_rng(model_log_v_ot, sigma_ww); +} diff --git a/cfaforecastrenewalww/inst/stan/renewal_ww_hosp_site_level_inf_dynamics.stan b/cfaforecastrenewalww/inst/stan/renewal_ww_hosp_site_level_inf_dynamics.stan new file mode 100644 index 00000000..d227a6ed --- /dev/null +++ b/cfaforecastrenewalww/inst/stan/renewal_ww_hosp_site_level_inf_dynamics.stan @@ -0,0 +1,334 @@ +functions { +#include functions/ar1.stan +#include functions/biased_rw.stan +#include functions/convolve.stan +#include functions/hospitalization.stan +#include functions/infections.stan +#include functions/observation_model.stan +#include functions/utils.stan +} + +// The fixed input data +data { + int gt_max; + int hosp_delay_max; + vector[hosp_delay_max] inf_to_hosp; // delay distribution from infecion to hospital admission + int dur_inf; // duration people are infectious (number of days) + real mwpd; // mL of ww produced per person per day + int if_l; // length of infection feedback pmf + vector[if_l] infection_feedback_pmf; // infection feedback pmf + int ot; // number of days of observed hospital admissions + int oht; // number of days with observed hospital admissions + int n_ww_sites; // number of WW sites + int n_ww_lab_sites; // number of unique ww-lab combos + int n_censored; // numer of observed WW data points that are below the LOD + int n_uncensored; //number not below LOD + int owt; // number of days of observed WW (should be roughly ot/7) + int uot; // unobserved time before we observe hospital admissions/ WW + int ht; // horizon time (nowcast + forecast time) + int n_weeks; // number of weeks for weekly random walk on R(t) + matrix [ot+ht, n_weeks] ind_m; // matrix to convert R(t) from weekly to daily + int tot_weeks; // number of weeks for the weekly random walk on IHR (includes unobserved time) + matrix [uot+ot+ht, tot_weeks] p_hosp_m; // matrix to convert p_hosp from weekly to daily + vector[gt_max] generation_interval; // generation interval distribution + vector[gt_max] ts; // time series + real n; // population size + array[owt] int ww_sampled_times; // a list of all of the days on which WW is sampled + // will be mapped to the corresponding sites (ww_sampled_sites) + array[oht] int hosp_times; // the days on which hospital admissions are observed + array[owt] int ww_sampled_sites; // vector of unique sites in order of the sampled times + array[owt] int ww_sampled_lab_sites; // vector of unique lab-site combos in order of the sampled times + array[n_censored] int ww_censored; // times that the WW data is below the LOD + array[n_uncensored] int ww_uncensored; // time that WW data is above LOD + vector[owt] ww_log_lod; // The limit of detection in that site at that time point + array[n_ww_lab_sites] int lab_site_to_site_map; // which lab sites correspond to which sites + array[n_ww_sites] int ww_pops; // population size of each site as reporte dby NWSS + array[oht] int hosp; // observed hospital admissions + array[ot + ht] int day_of_week; // integer vector with 1-7 corresponding to the weekday + vector[owt] log_conc; // observed concentration of viral genomes in WW + int compute_likelihood; // 1= use data to compute likelihood + int include_ww; // 1= include wastewater data in likelihood calculation + int include_hosp; // 1 = fit to hosp, 0 = only fit wastewater model + + // Priors + vector[6] viral_shedding_pars;// tpeak, viral peak, shedding duration mean and sd + real autoreg_rt_a; + real autoreg_rt_b; + real inv_sqrt_phi_prior_mean; + real inv_sqrt_phi_prior_sd; + real r_prior_mean; + real r_prior_sd; + real log10_g_prior_mean; + real log10_g_prior_sd; + real log_i0_prior_mean; + real log_i0_prior_sd; + real wday_effect_prior_mean; + real wday_effect_prior_sd; + real initial_growth_prior_mean; + real initial_growth_prior_sd; + real sigma_ww_site_prior_mean_mean; + real sigma_ww_site_prior_mean_sd; + real sigma_ww_site_prior_sd_mean; + real sigma_ww_site_prior_sd_sd; + real eta_sd_sd; + real p_hosp_mean; + real p_hosp_sd_logit; + real p_hosp_w_sd_sd; + real ww_site_mod_sd_sd; + real sigma_rt_prior; + real log_phi_g_prior_mean; + real log_phi_g_prior_sd; + real infection_feedback_prior_mean; + real infection_feedback_prior_sd; +} + +// The transformed data +transformed data { + // viral shedding parameters + real t_peak_mean = viral_shedding_pars[1]; + real t_peak_sd = viral_shedding_pars[2]; + real viral_peak_mean = viral_shedding_pars[3]; + real viral_peak_sd = viral_shedding_pars[4]; + real dur_shed_mean = viral_shedding_pars[5]; + real dur_shed_sd = viral_shedding_pars[6]; + + // natural scale -> lognormal parameters + // https://en.wikipedia.org/wiki/Log-normal_distribution + real r_logmean = convert_to_logmean(r_prior_mean, r_prior_sd); + real r_logsd = convert_to_logsd(r_prior_mean, r_prior_sd); + // reversed generation interval + vector[gt_max] gt_rev_pmf = reverse(generation_interval); + vector[if_l] infection_feedback_rev_pmf = reverse(infection_feedback_pmf); +} + +// The parameters accepted by the model. +parameters { + vector[n_weeks-1] w; // weekly random walk of state-level mean baseline R(t) (log scale) + real eta_sd; + real autoreg_rt;// coefficient on AR process in R(t) + real log_r_mu_intercept; // state-level mean baseline reproduction number estimate (log) at t=0 + real sigma_rt; // magnitude of site level variation from state level + real autoreg_rt_site; + matrix[n_ww_sites, n_weeks] error_site; // matrix of w_sites + real log_i0_over_n; // log of number of incident infections /n on day -uot before first observation day + vector[n_ww_sites] eta_i0; + real sigma_i0; // stdev between state and site initial infections + vector[n_ww_sites] eta_growth; + real sigma_growth; + real initial_growth; // initial growth from I0 to first observed time + real inv_sqrt_phi_h; + real sigma_ww_site_mean; //mean of site level stdev + real sigma_ww_site_sd; // stdev of site level stdev + vector[n_ww_lab_sites]sigma_ww_site_raw; // let each lab-site combo have its own observation error + real p_hosp_int; // Estimated IHR + vector[tot_weeks -1] p_hosp_w; // weekly random walk for IHR + real p_hosp_w_sd; // Estimated IHR sd + real t_peak; // time to viral load peak in shedding + real viral_peak; // log10 peak viral load shed /mL + real dur_shed; // duration of detectable viral shedding + real log10_g; // mean log10 of number of genomes per infected individual + vector[n_ww_lab_sites] ww_site_mod_raw; // lab-site specific WW modifier on the observation error + real ww_site_mod_sd; // site specific WW modifier stdev + // for now assumes the same across sites, can change or throw into + // observation error + simplex[7] hosp_wday_effect; // day of week reporting effect, sums to 1 + real infection_feedback; // infection feedback + +} +// +transformed parameters { + vector[ot + uot + ht] new_i; // daily incident infections /n (state level average) + vector[ot + uot + ht] p_hosp; // probability of hospitalization + vector[ot + uot + ht] model_hosp; // model estimated hospital admissions + vector[oht] exp_obs_hosp; // expected observed hospital admissions + vector[ot] exp_obs_hosp_no_wday_effect; // expected observed hospital admissions before weekday effect + vector[gt_max] s; // viral kinetics trajectory (normalized) + vector[owt] exp_obs_log_v_true = rep_vector(0, owt); // expected observations at each site in log scale + vector[owt] exp_obs_log_v = rep_vector(0, owt); // expected observations at each site with modifier in log scale + vector[n_ww_lab_sites] ww_site_mod; // site specific WW mod + row_vector [ot + uot + ht] model_net_i; // number of net infected individuals shedding on each day (sum of individuals in dift stages of infection) + real phi_h = inv_square(inv_sqrt_phi_h); // previouslt inv_square(inv_sqrt_phi_h) + vector[n_ww_lab_sites] sigma_ww_site; + vector[n_weeks] log_r_mu_t_in_weeks; // log of state level mean R(t) in weeks + vector[n_weeks] log_r_site_t_in_weeks; // log of site level mean R(t) in weeks, used as a placeholder in loop + vector[ot + ht] rt; // state level R(t) + vector[ot + ht] unadj_r; // state level R(t) before damping + matrix[n_ww_sites, ot+ht] r_site_t; // site_level R(t) + row_vector[ot + ht] unadj_r_site_t; // site_level R(t) before damping + row_vector[ot + uot + ht] new_i_site; // site level incident infections + matrix[n_ww_sites, ot + ht] model_log_v_ot; // expected observed viral genomes/mL at all observed and forecasted times + real g = pow(log10_g, 10); // Estimated genomes shed per infected individual + real i0 = exp(log_i0_over_n) * n; // Initial infections + vector[n_ww_sites] log_i0_site_over_n; // site level initial infections + vector[n_ww_sites] growth_site; + + // AR + RW implementation: + // AR + RW implementation: + log_r_mu_t_in_weeks = biased_rw(log_r_mu_intercept, autoreg_rt, eta_sd, w); + unadj_r = ind_m*log_r_mu_t_in_weeks; + unadj_r = exp(unadj_r); + + // Expected daily number of new infections (per capita), using EpiNow2 assumptions re pre and post observation time + // Using pop = 1 so that damping is normalized to per capita + (new_i, rt) = generate_infections( + unadj_r, uot, gt_rev_pmf, log_i0_over_n, initial_growth, ht, + infection_feedback, infection_feedback_rev_pmf + ); + + // Assemble a daily vector of p_hosp from the initial value, random walk increments, and scaling SD + p_hosp = assemble_p_hosp(p_hosp_m, p_hosp_int, p_hosp_w_sd, p_hosp_w); + + // Expected hospitalizations: + // This is a convolution of incident infections and the hospital-admission delay distribution + // generates all hospitalizations, across unobserved time, observed time, and forecast time + model_hosp = convolve_dot_product(p_hosp .* new_i, reverse(inf_to_hosp), + ot + uot + ht); + + // just get the expected observed hospitalizations + exp_obs_hosp_no_wday_effect = model_hosp[uot + 1 : uot + ot]; + // apply the weekday effect so these are distributed with fewer admits on Sat & Sun + // multiply by n because data must be integer so need this to be in actual numbers not proportions + exp_obs_hosp = n * day_of_week_effect(exp_obs_hosp_no_wday_effect[hosp_times], + day_of_week[hosp_times], hosp_wday_effect); + + // Shedding kinetics trajectory + s = get_vl_trajectory(t_peak, viral_peak, dur_shed, gt_max); + + // Site level disease dynamic estimates! + log_i0_site_over_n = log_i0_over_n + eta_i0 * sigma_i0; // Get the site level I0/n + growth_site = initial_growth + eta_growth * sigma_growth; // site level growth rate + for (i in 1:n_ww_sites) { + // Let site-level R(t) vary around the hierarchical mean R(t) + // with a biased random walk towards the previous time + // steps deviation + // log(R(t)site) ~ log(R(t)state) + log(R(t)state-log(R(t)site)) + eta_site + log_r_site_t_in_weeks = ar1(log_r_mu_t_in_weeks, + autoreg_rt_site, sigma_rt, + to_vector(error_site[i])); + //convert from weekly to daily + unadj_r_site_t = exp(to_row_vector(ind_m*(log_r_site_t_in_weeks))); + + { + tuple(vector[num_elements(new_i)], vector[num_elements(unadj_r)]) output; + output = generate_infections( + to_vector(unadj_r_site_t), uot, gt_rev_pmf, log_i0_site_over_n[i], growth_site[i], ht, + infection_feedback, infection_feedback_rev_pmf + ); + new_i_site = to_row_vector(output.1); + r_site_t[i] = to_row_vector(output.2); + } + + model_net_i = to_row_vector(convolve_dot_product(to_vector(new_i_site), + reverse(s), (uot + ot + ht))); + + model_log_v_ot[i] = log(10) * log10_g + + log(model_net_i[(uot+1):(uot + ot + ht) ] + 1e-8) - + log(mwpd); + } + + // Observations at the site level (genomes/person/day) are: + // get a vector of genomes/person/day on the days WW was measured + // These are the true expected genomes at the site level before observation error + // (which is at the lab-site level) + for (i in 1:owt) { + exp_obs_log_v_true[i] = model_log_v_ot[ww_sampled_sites[i], ww_sampled_times[i]]; + } + + // modify by lab-site specific variation (multiplier!) + ww_site_mod = ww_site_mod_raw * ww_site_mod_sd; + // LHS log transformed obs genomes per person-day, RHS multiplies the expected observed + // genomes by the site-specific multiplier at that sampling time + exp_obs_log_v = exp_obs_log_v_true + ww_site_mod[ww_sampled_lab_sites]; + // Option to add a population offset here at some point log(model_V) + site_level_multiplier+ pop_ww[ww_sampled_sites] + + // Get the transformed lab-site level error (NCP for sigma_site ~ n(mean_sigma_site, sigma_sigma_ww_site)) + sigma_ww_site = sigma_ww_site_mean + sigma_ww_site_sd*sigma_ww_site_raw; +} + +// Prior and sampling distribution +model { + // priors + vector[7] effect_mean = rep_vector(wday_effect_prior_mean, 7); + w ~ std_normal(); + eta_sd ~ normal(0, eta_sd_sd); + autoreg_rt_site ~ beta(autoreg_rt_a, autoreg_rt_b); + autoreg_rt ~ beta(autoreg_rt_a, autoreg_rt_b); + log_r_mu_intercept ~ normal(r_logmean, r_logsd); + to_vector(error_site) ~ std_normal(); + sigma_rt ~ normal(0, sigma_rt_prior); + log_i0_over_n ~ normal(log_i0_prior_mean, log_i0_prior_sd); + sigma_i0 ~ normal(0, 0.5); + eta_i0 ~ std_normal(); + sigma_growth ~ normal(0, 0.05); + eta_growth ~ std_normal(); + initial_growth ~ normal(initial_growth_prior_mean, initial_growth_prior_sd); + inv_sqrt_phi_h ~ normal(inv_sqrt_phi_prior_mean, inv_sqrt_phi_prior_sd); + sigma_ww_site_mean ~ normal(sigma_ww_site_prior_mean_mean, sigma_ww_site_prior_mean_sd); + sigma_ww_site_sd ~ normal(sigma_ww_site_prior_sd_mean, sigma_ww_site_prior_sd_sd); + sigma_ww_site_raw ~ std_normal(); + log10_g ~ normal(log10_g_prior_mean, log10_g_prior_sd); + hosp_wday_effect ~ normal(effect_mean, wday_effect_prior_sd); + p_hosp_int ~ normal(logit(p_hosp_mean), p_hosp_sd_logit); // logit scale + p_hosp_w ~ std_normal(); + p_hosp_w_sd ~ normal(0, p_hosp_w_sd_sd); + t_peak ~ normal(t_peak_mean, t_peak_sd); + viral_peak ~ normal(viral_peak_mean, viral_peak_sd); + dur_shed ~ normal(dur_shed_mean, dur_shed_sd); + ww_site_mod_raw ~ std_normal(); + ww_site_mod_sd ~ normal(0, ww_site_mod_sd_sd); + infection_feedback ~ normal(infection_feedback_prior_mean, infection_feedback_prior_sd); + + //Compute log likelihood + if (compute_likelihood == 1) { + if (include_ww == 1) { + // Both genomes/person/day and observation error are now vectors + //log_conc ~ normal(exp_obs_log_v, sigma_ww_site[ww_sampled_lab_sites]); + // if non-censored: P(log_conc | expected log_conc) + log_conc[ww_uncensored] ~ normal(exp_obs_log_v[ww_uncensored], sigma_ww_site[ww_sampled_lab_sites[ww_uncensored]]); + // The stdev is at the lab-site-level + // if censored: P(expected_log_conc <= LOD) + target += normal_lcdf(ww_log_lod[ww_censored]| exp_obs_log_v[ww_censored], + sigma_ww_site[ww_sampled_lab_sites[ww_censored]]); + } + + if (include_hosp == 1) { + hosp ~ neg_binomial_2(exp_obs_hosp, phi_h); + } + } // end if for computing log likelihood +} + +generated quantities { + array[ot + ht] real pred_hosp; + array[ot + ht] real pred_new_i; + array[n_ww_lab_sites, ot + ht] real pred_ww; /// viral genome copies/person/day + vector[ot + ht] exp_state_ww_conc; + vector[ot + ht] state_log_c; + vector[uot + ot + ht] state_model_net_i; + vector [n_ww_sites] site_i0_over_n_start; + + for(i in 1:n_ww_sites) { + site_i0_over_n_start[i] = exp(log_i0_site_over_n[i]) * exp(growth_site[i] * uot); + } + + pred_hosp = neg_binomial_2_rng(n * day_of_week_effect(model_hosp[uot + 1 : + uot + ot + ht], + day_of_week, + hosp_wday_effect), + phi_h); + pred_new_i = neg_binomial_2_rng(n * new_i[uot + 1 : uot + ot + ht], phi_h); + + // Here need to iterate through each lab-site, find the corresponding site + // and apply the expected lab-site error + for(i in 1:n_ww_lab_sites) { + pred_ww[i] = normal_rng(model_log_v_ot[lab_site_to_site_map[i], 1 : ot + ht] + ww_site_mod[i], + sigma_ww_site[i]); + } + + state_model_net_i = convolve_dot_product(to_vector(new_i), + reverse(s), (uot + ot + ht)); + state_log_c = log(10) * log10_g + + log(state_model_net_i[(uot + 1): (uot + ot + ht)] + 1e-8) - + log(mwpd); + + exp_state_ww_conc = exp(state_log_c); +} diff --git a/cfaforecastrenewalww/inst/testdata/2023-11-06.csv b/cfaforecastrenewalww/inst/testdata/2023-11-06.csv new file mode 100644 index 00000000..fd8ed9dd --- /dev/null +++ b/cfaforecastrenewalww/inst/testdata/2023-11-06.csv @@ -0,0 +1,311 @@ +"date","location","daily_hosp_admits","pop","week" +2023-01-01,"CA",2369,39512223,2023-01-04 +2023-01-02,"CA",1177,39512223,2023-01-04 +2023-01-03,"CA",1098,39512223,2023-01-04 +2023-01-04,"CA",1252,39512223,2023-01-04 +2023-01-05,"CA",634,39512223,2023-01-04 +2023-01-06,"CA",2097,39512223,2023-01-04 +2023-01-07,"CA",1152,39512223,2023-01-04 +2023-01-08,"CA",1327,39512223,2023-01-11 +2023-01-09,"CA",2072,39512223,2023-01-11 +2023-01-10,"CA",356,39512223,2023-01-11 +2023-01-11,"CA",1625,39512223,2023-01-11 +2023-01-12,"CA",165,39512223,2023-01-11 +2023-01-13,"CA",2458,39512223,2023-01-11 +2023-01-14,"CA",1903,39512223,2023-01-11 +2023-01-15,"CA",899,39512223,2023-01-18 +2023-01-16,"CA",601,39512223,2023-01-18 +2023-01-17,"CA",1307,39512223,2023-01-18 +2023-01-18,"CA",932,39512223,2023-01-18 +2023-01-19,"CA",997,39512223,2023-01-18 +2023-01-20,"CA",2015,39512223,2023-01-18 +2023-01-21,"CA",621,39512223,2023-01-18 +2023-01-22,"CA",1541,39512223,2023-01-25 +2023-01-23,"CA",860,39512223,2023-01-25 +2023-01-24,"CA",259,39512223,2023-01-25 +2023-01-25,"CA",1338,39512223,2023-01-25 +2023-01-26,"CA",481,39512223,2023-01-25 +2023-01-27,"CA",1322,39512223,2023-01-25 +2023-01-28,"CA",2072,39512223,2023-01-25 +2023-01-29,"CA",299,39512223,2023-02-01 +2023-01-30,"CA",2454,39512223,2023-02-01 +2023-01-31,"CA",2362,39512223,2023-02-01 +2023-02-01,"CA",1316,39512223,2023-02-01 +2023-02-02,"CA",836,39512223,2023-02-01 +2023-02-03,"CA",982,39512223,2023-02-01 +2023-02-04,"CA",2194,39512223,2023-02-01 +2023-02-05,"CA",1372,39512223,2023-02-08 +2023-02-06,"CA",2245,39512223,2023-02-08 +2023-02-07,"CA",1540,39512223,2023-02-08 +2023-02-08,"CA",2274,39512223,2023-02-08 +2023-02-09,"CA",2552,39512223,2023-02-08 +2023-02-10,"CA",727,39512223,2023-02-08 +2023-02-11,"CA",945,39512223,2023-02-08 +2023-02-12,"CA",626,39512223,2023-02-15 +2023-02-13,"CA",262,39512223,2023-02-15 +2023-02-14,"CA",2438,39512223,2023-02-15 +2023-02-15,"CA",130,39512223,2023-02-15 +2023-02-16,"CA",1396,39512223,2023-02-15 +2023-02-17,"CA",1027,39512223,2023-02-15 +2023-02-18,"CA",374,39512223,2023-02-15 +2023-02-19,"CA",1015,39512223,2023-02-22 +2023-02-20,"CA",1894,39512223,2023-02-22 +2023-02-21,"CA",650,39512223,2023-02-22 +2023-02-22,"CA",2088,39512223,2023-02-22 +2023-02-23,"CA",517,39512223,2023-02-22 +2023-02-24,"CA",33,39512223,2023-02-22 +2023-02-25,"CA",945,39512223,2023-02-22 +2023-02-26,"CA",103,39512223,2023-03-01 +2023-02-27,"CA",1252,39512223,2023-03-01 +2023-02-28,"CA",2157,39512223,2023-03-01 +2023-03-01,"CA",1353,39512223,2023-03-01 +2023-03-02,"CA",1693,39512223,2023-03-01 +2023-03-03,"CA",76,39512223,2023-03-01 +2023-03-04,"CA",1801,39512223,2023-03-01 +2023-03-05,"CA",1515,39512223,2023-03-08 +2023-03-06,"CA",16,39512223,2023-03-08 +2023-03-07,"CA",1381,39512223,2023-03-08 +2023-03-08,"CA",1349,39512223,2023-03-08 +2023-03-09,"CA",988,39512223,2023-03-08 +2023-03-10,"CA",82,39512223,2023-03-08 +2023-03-11,"CA",1944,39512223,2023-03-08 +2023-03-12,"CA",1905,39512223,2023-03-15 +2023-03-13,"CA",914,39512223,2023-03-15 +2023-03-14,"CA",325,39512223,2023-03-15 +2023-03-15,"CA",1646,39512223,2023-03-15 +2023-03-16,"CA",2344,39512223,2023-03-15 +2023-03-17,"CA",149,39512223,2023-03-15 +2023-03-18,"CA",1593,39512223,2023-03-15 +2023-03-19,"CA",100,39512223,2023-03-22 +2023-03-20,"CA",999,39512223,2023-03-22 +2023-03-21,"CA",2346,39512223,2023-03-22 +2023-03-22,"CA",2450,39512223,2023-03-22 +2023-03-23,"CA",91,39512223,2023-03-22 +2023-03-24,"CA",1078,39512223,2023-03-22 +2023-03-25,"CA",2336,39512223,2023-03-22 +2023-03-26,"CA",720,39512223,2023-03-29 +2023-03-27,"CA",1782,39512223,2023-03-29 +2023-03-28,"CA",2108,39512223,2023-03-29 +2023-03-29,"CA",1309,39512223,2023-03-29 +2023-03-30,"CA",1644,39512223,2023-03-29 +2023-03-31,"CA",2425,39512223,2023-03-29 +2023-04-01,"CA",1877,39512223,2023-03-29 +2023-04-02,"CA",427,39512223,2023-04-05 +2023-04-03,"CA",2490,39512223,2023-04-05 +2023-04-04,"CA",1136,39512223,2023-04-05 +2023-04-05,"CA",584,39512223,2023-04-05 +2023-04-06,"CA",951,39512223,2023-04-05 +2023-04-07,"CA",1537,39512223,2023-04-05 +2023-04-08,"CA",1165,39512223,2023-04-05 +2023-04-09,"CA",1742,39512223,2023-04-12 +2023-04-10,"CA",1925,39512223,2023-04-12 +2023-04-11,"CA",311,39512223,2023-04-12 +2023-04-12,"CA",474,39512223,2023-04-12 +2023-04-13,"CA",1578,39512223,2023-04-12 +2023-04-14,"CA",2090,39512223,2023-04-12 +2023-04-15,"CA",760,39512223,2023-04-12 +2023-04-16,"CA",1889,39512223,2023-04-19 +2023-04-17,"CA",1275,39512223,2023-04-19 +2023-04-18,"CA",1693,39512223,2023-04-19 +2023-04-19,"CA",25,39512223,2023-04-19 +2023-04-20,"CA",1907,39512223,2023-04-19 +2023-04-21,"CA",703,39512223,2023-04-19 +2023-04-22,"CA",2574,39512223,2023-04-19 +2023-04-23,"CA",623,39512223,2023-04-26 +2023-04-24,"CA",2310,39512223,2023-04-26 +2023-04-25,"CA",943,39512223,2023-04-26 +2023-04-26,"CA",299,39512223,2023-04-26 +2023-04-27,"CA",2417,39512223,2023-04-26 +2023-04-28,"CA",2560,39512223,2023-04-26 +2023-04-29,"CA",754,39512223,2023-04-26 +2023-04-30,"CA",799,39512223,2023-05-03 +2023-05-01,"CA",1954,39512223,2023-05-03 +2023-05-02,"CA",1248,39512223,2023-05-03 +2023-05-03,"CA",294,39512223,2023-05-03 +2023-05-04,"CA",607,39512223,2023-05-03 +2023-05-05,"CA",546,39512223,2023-05-03 +2023-05-06,"CA",2474,39512223,2023-05-03 +2023-05-07,"CA",471,39512223,2023-05-10 +2023-05-08,"CA",2236,39512223,2023-05-10 +2023-05-09,"CA",254,39512223,2023-05-10 +2023-05-10,"CA",268,39512223,2023-05-10 +2023-05-11,"CA",640,39512223,2023-05-10 +2023-05-12,"CA",2089,39512223,2023-05-10 +2023-05-13,"CA",664,39512223,2023-05-10 +2023-05-14,"CA",1122,39512223,2023-05-17 +2023-05-15,"CA",348,39512223,2023-05-17 +2023-05-16,"CA",2155,39512223,2023-05-17 +2023-05-17,"CA",317,39512223,2023-05-17 +2023-05-18,"CA",1982,39512223,2023-05-17 +2023-05-19,"CA",162,39512223,2023-05-17 +2023-05-20,"CA",636,39512223,2023-05-17 +2023-05-21,"CA",1631,39512223,2023-05-24 +2023-05-22,"CA",1568,39512223,2023-05-24 +2023-05-23,"CA",906,39512223,2023-05-24 +2023-05-24,"CA",1721,39512223,2023-05-24 +2023-05-25,"CA",796,39512223,2023-05-24 +2023-05-26,"CA",1162,39512223,2023-05-24 +2023-05-27,"CA",1571,39512223,2023-05-24 +2023-05-28,"CA",78,39512223,2023-05-31 +2023-05-29,"CA",526,39512223,2023-05-31 +2023-05-30,"CA",2531,39512223,2023-05-31 +2023-05-31,"CA",2230,39512223,2023-05-31 +2023-06-01,"CA",1151,39512223,2023-05-31 +2023-06-02,"CA",1579,39512223,2023-05-31 +2023-06-03,"CA",337,39512223,2023-05-31 +2023-06-04,"CA",539,39512223,2023-06-07 +2023-06-05,"CA",1566,39512223,2023-06-07 +2023-06-06,"CA",2260,39512223,2023-06-07 +2023-06-07,"CA",1611,39512223,2023-06-07 +2023-06-08,"CA",201,39512223,2023-06-07 +2023-06-09,"CA",1425,39512223,2023-06-07 +2023-06-10,"CA",62,39512223,2023-06-07 +2023-06-11,"CA",1293,39512223,2023-06-14 +2023-06-12,"CA",2015,39512223,2023-06-14 +2023-06-13,"CA",1406,39512223,2023-06-14 +2023-06-14,"CA",573,39512223,2023-06-14 +2023-06-15,"CA",1793,39512223,2023-06-14 +2023-06-16,"CA",540,39512223,2023-06-14 +2023-06-17,"CA",2,39512223,2023-06-14 +2023-06-18,"CA",671,39512223,2023-06-21 +2023-06-19,"CA",1151,39512223,2023-06-21 +2023-06-20,"CA",771,39512223,2023-06-21 +2023-06-21,"CA",741,39512223,2023-06-21 +2023-06-22,"CA",2317,39512223,2023-06-21 +2023-06-23,"CA",1036,39512223,2023-06-21 +2023-06-24,"CA",705,39512223,2023-06-21 +2023-06-25,"CA",670,39512223,2023-06-28 +2023-06-26,"CA",1587,39512223,2023-06-28 +2023-06-27,"CA",444,39512223,2023-06-28 +2023-06-28,"CA",1887,39512223,2023-06-28 +2023-06-29,"CA",1848,39512223,2023-06-28 +2023-06-30,"CA",1034,39512223,2023-06-28 +2023-07-01,"CA",1225,39512223,2023-06-28 +2023-07-02,"CA",1769,39512223,2023-07-05 +2023-07-03,"CA",1945,39512223,2023-07-05 +2023-07-04,"CA",181,39512223,2023-07-05 +2023-07-05,"CA",751,39512223,2023-07-05 +2023-07-06,"CA",1308,39512223,2023-07-05 +2023-07-07,"CA",1788,39512223,2023-07-05 +2023-07-08,"CA",463,39512223,2023-07-05 +2023-07-09,"CA",1337,39512223,2023-07-12 +2023-07-10,"CA",2132,39512223,2023-07-12 +2023-07-11,"CA",464,39512223,2023-07-12 +2023-07-12,"CA",984,39512223,2023-07-12 +2023-07-13,"CA",225,39512223,2023-07-12 +2023-07-14,"CA",1126,39512223,2023-07-12 +2023-07-15,"CA",2219,39512223,2023-07-12 +2023-07-16,"CA",489,39512223,2023-07-19 +2023-07-17,"CA",2004,39512223,2023-07-19 +2023-07-18,"CA",1591,39512223,2023-07-19 +2023-07-19,"CA",1850,39512223,2023-07-19 +2023-07-20,"CA",1709,39512223,2023-07-19 +2023-07-21,"CA",1231,39512223,2023-07-19 +2023-07-22,"CA",1109,39512223,2023-07-19 +2023-07-23,"CA",1954,39512223,2023-07-26 +2023-07-24,"CA",153,39512223,2023-07-26 +2023-07-25,"CA",1934,39512223,2023-07-26 +2023-07-26,"CA",2288,39512223,2023-07-26 +2023-07-27,"CA",49,39512223,2023-07-26 +2023-07-28,"CA",156,39512223,2023-07-26 +2023-07-29,"CA",2322,39512223,2023-07-26 +2023-07-30,"CA",1591,39512223,2023-08-02 +2023-07-31,"CA",2218,39512223,2023-08-02 +2023-08-01,"CA",292,39512223,2023-08-02 +2023-08-02,"CA",148,39512223,2023-08-02 +2023-08-03,"CA",2237,39512223,2023-08-02 +2023-08-04,"CA",1863,39512223,2023-08-02 +2023-08-05,"CA",1110,39512223,2023-08-02 +2023-08-06,"CA",2298,39512223,2023-08-09 +2023-08-07,"CA",169,39512223,2023-08-09 +2023-08-08,"CA",907,39512223,2023-08-09 +2023-08-09,"CA",732,39512223,2023-08-09 +2023-08-10,"CA",2505,39512223,2023-08-09 +2023-08-11,"CA",919,39512223,2023-08-09 +2023-08-12,"CA",2163,39512223,2023-08-09 +2023-08-13,"CA",1803,39512223,2023-08-16 +2023-08-14,"CA",1939,39512223,2023-08-16 +2023-08-15,"CA",1237,39512223,2023-08-16 +2023-08-16,"CA",1316,39512223,2023-08-16 +2023-08-17,"CA",985,39512223,2023-08-16 +2023-08-18,"CA",2486,39512223,2023-08-16 +2023-08-19,"CA",1851,39512223,2023-08-16 +2023-08-20,"CA",625,39512223,2023-08-23 +2023-08-21,"CA",542,39512223,2023-08-23 +2023-08-22,"CA",1493,39512223,2023-08-23 +2023-08-23,"CA",1900,39512223,2023-08-23 +2023-08-24,"CA",917,39512223,2023-08-23 +2023-08-25,"CA",1129,39512223,2023-08-23 +2023-08-26,"CA",1226,39512223,2023-08-23 +2023-08-27,"CA",2136,39512223,2023-08-30 +2023-08-28,"CA",1975,39512223,2023-08-30 +2023-08-29,"CA",2439,39512223,2023-08-30 +2023-08-30,"CA",398,39512223,2023-08-30 +2023-08-31,"CA",2316,39512223,2023-08-30 +2023-09-01,"CA",1717,39512223,2023-08-30 +2023-09-02,"CA",1546,39512223,2023-08-30 +2023-09-03,"CA",1625,39512223,2023-09-06 +2023-09-04,"CA",2085,39512223,2023-09-06 +2023-09-05,"CA",2211,39512223,2023-09-06 +2023-09-06,"CA",1819,39512223,2023-09-06 +2023-09-07,"CA",2094,39512223,2023-09-06 +2023-09-08,"CA",859,39512223,2023-09-06 +2023-09-09,"CA",1488,39512223,2023-09-06 +2023-09-10,"CA",868,39512223,2023-09-13 +2023-09-11,"CA",376,39512223,2023-09-13 +2023-09-12,"CA",280,39512223,2023-09-13 +2023-09-13,"CA",981,39512223,2023-09-13 +2023-09-14,"CA",1428,39512223,2023-09-13 +2023-09-15,"CA",715,39512223,2023-09-13 +2023-09-16,"CA",1249,39512223,2023-09-13 +2023-09-17,"CA",2254,39512223,2023-09-20 +2023-09-18,"CA",1372,39512223,2023-09-20 +2023-09-19,"CA",1825,39512223,2023-09-20 +2023-09-20,"CA",605,39512223,2023-09-20 +2023-09-21,"CA",1828,39512223,2023-09-20 +2023-09-22,"CA",647,39512223,2023-09-20 +2023-09-23,"CA",1900,39512223,2023-09-20 +2023-09-24,"CA",1797,39512223,2023-09-27 +2023-09-25,"CA",159,39512223,2023-09-27 +2023-09-26,"CA",928,39512223,2023-09-27 +2023-09-27,"CA",978,39512223,2023-09-27 +2023-09-28,"CA",653,39512223,2023-09-27 +2023-09-29,"CA",1402,39512223,2023-09-27 +2023-09-30,"CA",1078,39512223,2023-09-27 +2023-10-01,"CA",2562,39512223,2023-10-04 +2023-10-02,"CA",2435,39512223,2023-10-04 +2023-10-03,"CA",1647,39512223,2023-10-04 +2023-10-04,"CA",1846,39512223,2023-10-04 +2023-10-05,"CA",1162,39512223,2023-10-04 +2023-10-06,"CA",1433,39512223,2023-10-04 +2023-10-07,"CA",620,39512223,2023-10-04 +2023-10-08,"CA",2250,39512223,2023-10-11 +2023-10-09,"CA",2121,39512223,2023-10-11 +2023-10-10,"CA",335,39512223,2023-10-11 +2023-10-11,"CA",1271,39512223,2023-10-11 +2023-10-12,"CA",2179,39512223,2023-10-11 +2023-10-13,"CA",1174,39512223,2023-10-11 +2023-10-14,"CA",1085,39512223,2023-10-11 +2023-10-15,"CA",1044,39512223,2023-10-18 +2023-10-16,"CA",682,39512223,2023-10-18 +2023-10-17,"CA",983,39512223,2023-10-18 +2023-10-18,"CA",529,39512223,2023-10-18 +2023-10-19,"CA",82,39512223,2023-10-18 +2023-10-20,"CA",1235,39512223,2023-10-18 +2023-10-21,"CA",2321,39512223,2023-10-18 +2023-10-22,"CA",94,39512223,2023-10-25 +2023-10-23,"CA",2378,39512223,2023-10-25 +2023-10-24,"CA",933,39512223,2023-10-25 +2023-10-25,"CA",1714,39512223,2023-10-25 +2023-10-26,"CA",2227,39512223,2023-10-25 +2023-10-27,"CA",2035,39512223,2023-10-25 +2023-10-28,"CA",2352,39512223,2023-10-25 +2023-10-29,"CA",954,39512223,2023-11-01 +2023-10-30,"CA",1860,39512223,2023-11-01 +2023-10-31,"CA",473,39512223,2023-11-01 +2023-11-01,"CA",1370,39512223,2023-11-01 +2023-11-02,"CA",829,39512223,2023-11-01 +2023-11-03,"CA",1255,39512223,2023-11-01 +2023-11-04,"CA",1390,39512223,2023-11-01 +2023-11-05,"CA",2156,39512223,2023-11-08 +2023-11-06,"CA",601,39512223,2023-11-08 diff --git a/cfaforecastrenewalww/inst/testdata/2024-01-29.csv b/cfaforecastrenewalww/inst/testdata/2024-01-29.csv new file mode 100644 index 00000000..8e8945a1 --- /dev/null +++ b/cfaforecastrenewalww/inst/testdata/2024-01-29.csv @@ -0,0 +1,20791 @@ +date,ABBR,daily_hosp_admits,pop +2022-12-31,AK,6,732673 +2023-01-01,AK,6,732673 +2023-01-02,AK,5,732673 +2023-01-03,AK,4,732673 +2023-01-04,AK,7,732673 +2023-01-05,AK,5,732673 +2023-01-06,AK,6,732673 +2023-01-07,AK,3,732673 +2023-01-08,AK,7,732673 +2023-01-09,AK,7,732673 +2023-01-10,AK,5,732673 +2023-01-11,AK,6,732673 +2023-01-12,AK,4,732673 +2023-01-13,AK,4,732673 +2023-01-14,AK,5,732673 +2023-01-15,AK,6,732673 +2023-01-16,AK,4,732673 +2023-01-17,AK,10,732673 +2023-01-18,AK,9,732673 +2023-01-19,AK,9,732673 +2023-01-20,AK,4,732673 +2023-01-21,AK,8,732673 +2023-01-22,AK,5,732673 +2023-01-23,AK,3,732673 +2023-01-24,AK,5,732673 +2023-01-25,AK,7,732673 +2023-01-26,AK,12,732673 +2023-01-27,AK,9,732673 +2023-01-28,AK,3,732673 +2023-01-29,AK,5,732673 +2023-01-30,AK,7,732673 +2023-01-31,AK,9,732673 +2023-02-01,AK,6,732673 +2023-02-02,AK,7,732673 +2023-02-03,AK,5,732673 +2023-02-04,AK,7,732673 +2023-02-05,AK,3,732673 +2023-02-06,AK,2,732673 +2023-02-07,AK,5,732673 +2023-02-08,AK,7,732673 +2023-02-09,AK,10,732673 +2023-02-10,AK,10,732673 +2023-02-11,AK,8,732673 +2023-02-12,AK,3,732673 +2023-02-13,AK,9,732673 +2023-02-14,AK,6,732673 +2023-02-15,AK,5,732673 +2023-02-16,AK,4,732673 +2023-02-17,AK,5,732673 +2023-02-18,AK,5,732673 +2023-02-19,AK,7,732673 +2023-02-20,AK,3,732673 +2023-02-21,AK,3,732673 +2023-02-22,AK,2,732673 +2023-02-23,AK,8,732673 +2023-02-24,AK,6,732673 +2023-02-25,AK,4,732673 +2023-02-26,AK,9,732673 +2023-02-27,AK,11,732673 +2023-02-28,AK,12,732673 +2023-03-01,AK,1,732673 +2023-03-02,AK,6,732673 +2023-03-03,AK,7,732673 +2023-03-04,AK,6,732673 +2023-03-05,AK,2,732673 +2023-03-06,AK,4,732673 +2023-03-07,AK,2,732673 +2023-03-08,AK,6,732673 +2023-03-09,AK,4,732673 +2023-03-10,AK,3,732673 +2023-03-11,AK,6,732673 +2023-03-12,AK,4,732673 +2023-03-13,AK,7,732673 +2023-03-14,AK,5,732673 +2023-03-15,AK,9,732673 +2023-03-16,AK,5,732673 +2023-03-17,AK,4,732673 +2023-03-18,AK,3,732673 +2023-03-19,AK,3,732673 +2023-03-20,AK,4,732673 +2023-03-21,AK,7,732673 +2023-03-22,AK,6,732673 +2023-03-23,AK,5,732673 +2023-03-24,AK,12,732673 +2023-03-25,AK,5,732673 +2023-03-26,AK,7,732673 +2023-03-27,AK,2,732673 +2023-03-28,AK,7,732673 +2023-03-29,AK,6,732673 +2023-03-30,AK,4,732673 +2023-03-31,AK,5,732673 +2023-04-01,AK,2,732673 +2023-04-02,AK,3,732673 +2023-04-03,AK,3,732673 +2023-04-04,AK,7,732673 +2023-04-05,AK,4,732673 +2023-04-06,AK,5,732673 +2023-04-07,AK,9,732673 +2023-04-08,AK,4,732673 +2023-04-09,AK,4,732673 +2023-04-10,AK,5,732673 +2023-04-11,AK,7,732673 +2023-04-12,AK,3,732673 +2023-04-13,AK,3,732673 +2023-04-14,AK,0,732673 +2023-04-15,AK,2,732673 +2023-04-16,AK,2,732673 +2023-04-17,AK,3,732673 +2023-04-18,AK,12,732673 +2023-04-19,AK,1,732673 +2023-04-20,AK,2,732673 +2023-04-21,AK,0,732673 +2023-04-22,AK,4,732673 +2023-04-23,AK,2,732673 +2023-04-24,AK,3,732673 +2023-04-25,AK,2,732673 +2023-04-26,AK,5,732673 +2023-04-27,AK,4,732673 +2023-04-28,AK,4,732673 +2023-04-29,AK,6,732673 +2023-04-30,AK,6,732673 +2023-05-01,AK,3,732673 +2023-05-02,AK,1,732673 +2023-05-03,AK,4,732673 +2023-05-04,AK,6,732673 +2023-05-05,AK,3,732673 +2023-05-06,AK,2,732673 +2023-05-07,AK,8,732673 +2023-05-08,AK,1,732673 +2023-05-09,AK,7,732673 +2023-05-10,AK,5,732673 +2023-05-11,AK,4,732673 +2023-05-12,AK,1,732673 +2023-05-13,AK,2,732673 +2023-05-14,AK,2,732673 +2023-05-15,AK,0,732673 +2023-05-16,AK,1,732673 +2023-05-17,AK,3,732673 +2023-05-18,AK,1,732673 +2023-05-19,AK,1,732673 +2023-05-20,AK,1,732673 +2023-05-21,AK,3,732673 +2023-05-22,AK,3,732673 +2023-05-23,AK,4,732673 +2023-05-24,AK,4,732673 +2023-05-25,AK,4,732673 +2023-05-26,AK,3,732673 +2023-05-27,AK,0,732673 +2023-05-28,AK,0,732673 +2023-05-29,AK,4,732673 +2023-05-30,AK,5,732673 +2023-05-31,AK,2,732673 +2023-06-01,AK,5,732673 +2023-06-02,AK,3,732673 +2023-06-03,AK,3,732673 +2023-06-04,AK,5,732673 +2023-06-05,AK,6,732673 +2023-06-06,AK,5,732673 +2023-06-07,AK,5,732673 +2023-06-08,AK,6,732673 +2023-06-09,AK,2,732673 +2023-06-10,AK,6,732673 +2023-06-11,AK,2,732673 +2023-06-12,AK,2,732673 +2023-06-13,AK,1,732673 +2023-06-14,AK,4,732673 +2023-06-15,AK,4,732673 +2023-06-16,AK,4,732673 +2023-06-17,AK,4,732673 +2023-06-18,AK,4,732673 +2023-06-19,AK,5,732673 +2023-06-20,AK,4,732673 +2023-06-21,AK,3,732673 +2023-06-22,AK,2,732673 +2023-06-23,AK,3,732673 +2023-06-24,AK,0,732673 +2023-06-25,AK,1,732673 +2023-06-26,AK,4,732673 +2023-06-27,AK,3,732673 +2023-06-28,AK,4,732673 +2023-06-29,AK,8,732673 +2023-06-30,AK,2,732673 +2023-07-01,AK,4,732673 +2023-07-02,AK,4,732673 +2023-07-03,AK,7,732673 +2023-07-04,AK,5,732673 +2023-07-05,AK,1,732673 +2023-07-06,AK,3,732673 +2023-07-07,AK,1,732673 +2023-07-08,AK,4,732673 +2023-07-09,AK,4,732673 +2023-07-10,AK,9,732673 +2023-07-11,AK,1,732673 +2023-07-12,AK,2,732673 +2023-07-13,AK,2,732673 +2023-07-14,AK,4,732673 +2023-07-15,AK,4,732673 +2023-07-16,AK,4,732673 +2023-07-17,AK,1,732673 +2023-07-18,AK,2,732673 +2023-07-19,AK,4,732673 +2023-07-20,AK,4,732673 +2023-07-21,AK,2,732673 +2023-07-22,AK,2,732673 +2023-07-23,AK,3,732673 +2023-07-24,AK,3,732673 +2023-07-25,AK,5,732673 +2023-07-26,AK,5,732673 +2023-07-27,AK,1,732673 +2023-07-28,AK,6,732673 +2023-07-29,AK,4,732673 +2023-07-30,AK,3,732673 +2023-07-31,AK,3,732673 +2023-08-01,AK,3,732673 +2023-08-02,AK,2,732673 +2023-08-03,AK,4,732673 +2023-08-04,AK,0,732673 +2023-08-05,AK,5,732673 +2023-08-06,AK,2,732673 +2023-08-07,AK,5,732673 +2023-08-08,AK,5,732673 +2023-08-09,AK,9,732673 +2023-08-10,AK,5,732673 +2023-08-11,AK,2,732673 +2023-08-12,AK,4,732673 +2023-08-13,AK,4,732673 +2023-08-14,AK,1,732673 +2023-08-15,AK,2,732673 +2023-08-16,AK,0,732673 +2023-08-17,AK,6,732673 +2023-08-18,AK,3,732673 +2023-08-19,AK,2,732673 +2023-08-20,AK,5,732673 +2023-08-21,AK,3,732673 +2023-08-22,AK,2,732673 +2023-08-23,AK,3,732673 +2023-08-24,AK,6,732673 +2023-08-25,AK,4,732673 +2023-08-26,AK,3,732673 +2023-08-27,AK,4,732673 +2023-08-28,AK,7,732673 +2023-08-29,AK,1,732673 +2023-08-30,AK,9,732673 +2023-08-31,AK,5,732673 +2023-09-01,AK,5,732673 +2023-09-02,AK,3,732673 +2023-09-03,AK,4,732673 +2023-09-04,AK,4,732673 +2023-09-05,AK,8,732673 +2023-09-06,AK,6,732673 +2023-09-07,AK,6,732673 +2023-09-08,AK,4,732673 +2023-09-09,AK,7,732673 +2023-09-10,AK,6,732673 +2023-09-11,AK,7,732673 +2023-09-12,AK,6,732673 +2023-09-13,AK,6,732673 +2023-09-14,AK,2,732673 +2023-09-15,AK,4,732673 +2023-09-16,AK,4,732673 +2023-09-17,AK,4,732673 +2023-09-18,AK,4,732673 +2023-09-19,AK,3,732673 +2023-09-20,AK,4,732673 +2023-09-21,AK,4,732673 +2023-09-22,AK,1,732673 +2023-09-23,AK,2,732673 +2023-09-24,AK,0,732673 +2023-09-25,AK,3,732673 +2023-09-26,AK,2,732673 +2023-09-27,AK,7,732673 +2023-09-28,AK,3,732673 +2023-09-29,AK,4,732673 +2023-09-30,AK,4,732673 +2023-10-01,AK,4,732673 +2023-10-02,AK,2,732673 +2023-10-03,AK,3,732673 +2023-10-04,AK,6,732673 +2023-10-05,AK,4,732673 +2023-10-06,AK,2,732673 +2023-10-07,AK,5,732673 +2023-10-08,AK,7,732673 +2023-10-09,AK,6,732673 +2023-10-10,AK,1,732673 +2023-10-11,AK,7,732673 +2023-10-12,AK,0,732673 +2023-10-13,AK,4,732673 +2023-10-14,AK,2,732673 +2023-10-15,AK,2,732673 +2023-10-16,AK,2,732673 +2023-10-17,AK,1,732673 +2023-10-18,AK,4,732673 +2023-10-19,AK,4,732673 +2023-10-20,AK,1,732673 +2023-10-21,AK,2,732673 +2023-10-22,AK,2,732673 +2023-10-23,AK,3,732673 +2023-10-24,AK,4,732673 +2023-10-25,AK,1,732673 +2023-10-26,AK,3,732673 +2023-10-27,AK,1,732673 +2023-10-28,AK,2,732673 +2023-10-29,AK,3,732673 +2023-10-30,AK,4,732673 +2023-10-31,AK,2,732673 +2023-11-01,AK,5,732673 +2023-11-02,AK,3,732673 +2023-11-03,AK,1,732673 +2023-11-04,AK,3,732673 +2023-11-05,AK,6,732673 +2023-11-06,AK,3,732673 +2023-11-07,AK,8,732673 +2023-11-08,AK,4,732673 +2023-11-09,AK,4,732673 +2023-11-10,AK,4,732673 +2023-11-11,AK,2,732673 +2023-11-12,AK,3,732673 +2023-11-13,AK,2,732673 +2023-11-14,AK,5,732673 +2023-11-15,AK,4,732673 +2023-11-16,AK,1,732673 +2023-11-17,AK,2,732673 +2023-11-18,AK,2,732673 +2023-11-19,AK,2,732673 +2023-11-20,AK,4,732673 +2023-11-21,AK,1,732673 +2023-11-22,AK,2,732673 +2023-11-23,AK,3,732673 +2023-11-24,AK,1,732673 +2023-11-25,AK,3,732673 +2023-11-26,AK,2,732673 +2023-11-27,AK,5,732673 +2023-11-28,AK,2,732673 +2023-11-29,AK,3,732673 +2023-11-30,AK,4,732673 +2023-12-01,AK,4,732673 +2023-12-02,AK,1,732673 +2023-12-03,AK,5,732673 +2023-12-04,AK,1,732673 +2023-12-05,AK,1,732673 +2023-12-06,AK,5,732673 +2023-12-07,AK,2,732673 +2023-12-08,AK,3,732673 +2023-12-09,AK,1,732673 +2023-12-10,AK,7,732673 +2023-12-11,AK,3,732673 +2023-12-12,AK,3,732673 +2023-12-13,AK,2,732673 +2023-12-14,AK,4,732673 +2023-12-15,AK,3,732673 +2023-12-16,AK,2,732673 +2023-12-17,AK,4,732673 +2023-12-18,AK,1,732673 +2023-12-19,AK,5,732673 +2023-12-20,AK,6,732673 +2023-12-21,AK,1,732673 +2023-12-22,AK,2,732673 +2023-12-23,AK,2,732673 +2023-12-24,AK,3,732673 +2023-12-25,AK,4,732673 +2023-12-26,AK,8,732673 +2023-12-27,AK,5,732673 +2023-12-28,AK,7,732673 +2023-12-29,AK,5,732673 +2023-12-30,AK,2,732673 +2023-12-31,AK,4,732673 +2024-01-01,AK,6,732673 +2024-01-02,AK,12,732673 +2024-01-03,AK,5,732673 +2024-01-04,AK,3,732673 +2024-01-05,AK,4,732673 +2024-01-06,AK,6,732673 +2024-01-07,AK,11,732673 +2024-01-08,AK,4,732673 +2024-01-09,AK,2,732673 +2024-01-10,AK,5,732673 +2024-01-11,AK,5,732673 +2024-01-12,AK,3,732673 +2024-01-13,AK,6,732673 +2024-01-14,AK,13,732673 +2024-01-15,AK,7,732673 +2024-01-16,AK,3,732673 +2024-01-17,AK,8,732673 +2024-01-18,AK,2,732673 +2024-01-19,AK,3,732673 +2022-12-31,AL,90,5039877 +2023-01-01,AL,92,5039877 +2023-01-02,AL,120,5039877 +2023-01-03,AL,146,5039877 +2023-01-04,AL,121,5039877 +2023-01-05,AL,111,5039877 +2023-01-06,AL,86,5039877 +2023-01-07,AL,68,5039877 +2023-01-08,AL,58,5039877 +2023-01-09,AL,97,5039877 +2023-01-10,AL,95,5039877 +2023-01-11,AL,84,5039877 +2023-01-12,AL,100,5039877 +2023-01-13,AL,67,5039877 +2023-01-14,AL,71,5039877 +2023-01-15,AL,60,5039877 +2023-01-16,AL,81,5039877 +2023-01-17,AL,81,5039877 +2023-01-18,AL,74,5039877 +2023-01-19,AL,69,5039877 +2023-01-20,AL,69,5039877 +2023-01-21,AL,65,5039877 +2023-01-22,AL,69,5039877 +2023-01-23,AL,96,5039877 +2023-01-24,AL,72,5039877 +2023-01-25,AL,68,5039877 +2023-01-26,AL,60,5039877 +2023-01-27,AL,53,5039877 +2023-01-28,AL,63,5039877 +2023-01-29,AL,61,5039877 +2023-01-30,AL,83,5039877 +2023-01-31,AL,67,5039877 +2023-02-01,AL,61,5039877 +2023-02-02,AL,79,5039877 +2023-02-03,AL,62,5039877 +2023-02-04,AL,49,5039877 +2023-02-05,AL,55,5039877 +2023-02-06,AL,73,5039877 +2023-02-07,AL,69,5039877 +2023-02-08,AL,82,5039877 +2023-02-09,AL,90,5039877 +2023-02-10,AL,72,5039877 +2023-02-11,AL,65,5039877 +2023-02-12,AL,68,5039877 +2023-02-13,AL,83,5039877 +2023-02-14,AL,59,5039877 +2023-02-15,AL,65,5039877 +2023-02-16,AL,54,5039877 +2023-02-17,AL,62,5039877 +2023-02-18,AL,53,5039877 +2023-02-19,AL,51,5039877 +2023-02-20,AL,60,5039877 +2023-02-21,AL,66,5039877 +2023-02-22,AL,60,5039877 +2023-02-23,AL,58,5039877 +2023-02-24,AL,54,5039877 +2023-02-25,AL,46,5039877 +2023-02-26,AL,51,5039877 +2023-02-27,AL,58,5039877 +2023-02-28,AL,46,5039877 +2023-03-01,AL,46,5039877 +2023-03-02,AL,50,5039877 +2023-03-03,AL,42,5039877 +2023-03-04,AL,36,5039877 +2023-03-05,AL,36,5039877 +2023-03-06,AL,34,5039877 +2023-03-07,AL,35,5039877 +2023-03-08,AL,30,5039877 +2023-03-09,AL,32,5039877 +2023-03-10,AL,41,5039877 +2023-03-11,AL,30,5039877 +2023-03-12,AL,32,5039877 +2023-03-13,AL,28,5039877 +2023-03-14,AL,36,5039877 +2023-03-15,AL,29,5039877 +2023-03-16,AL,39,5039877 +2023-03-17,AL,28,5039877 +2023-03-18,AL,30,5039877 +2023-03-19,AL,27,5039877 +2023-03-20,AL,34,5039877 +2023-03-21,AL,38,5039877 +2023-03-22,AL,43,5039877 +2023-03-23,AL,47,5039877 +2023-03-24,AL,41,5039877 +2023-03-25,AL,29,5039877 +2023-03-26,AL,32,5039877 +2023-03-27,AL,40,5039877 +2023-03-28,AL,28,5039877 +2023-03-29,AL,34,5039877 +2023-03-30,AL,27,5039877 +2023-03-31,AL,22,5039877 +2023-04-01,AL,22,5039877 +2023-04-02,AL,33,5039877 +2023-04-03,AL,25,5039877 +2023-04-04,AL,36,5039877 +2023-04-05,AL,27,5039877 +2023-04-06,AL,36,5039877 +2023-04-07,AL,34,5039877 +2023-04-08,AL,19,5039877 +2023-04-09,AL,25,5039877 +2023-04-10,AL,32,5039877 +2023-04-11,AL,31,5039877 +2023-04-12,AL,26,5039877 +2023-04-13,AL,29,5039877 +2023-04-14,AL,19,5039877 +2023-04-15,AL,26,5039877 +2023-04-16,AL,21,5039877 +2023-04-17,AL,25,5039877 +2023-04-18,AL,24,5039877 +2023-04-19,AL,24,5039877 +2023-04-20,AL,25,5039877 +2023-04-21,AL,20,5039877 +2023-04-22,AL,25,5039877 +2023-04-23,AL,30,5039877 +2023-04-24,AL,28,5039877 +2023-04-25,AL,29,5039877 +2023-04-26,AL,31,5039877 +2023-04-27,AL,33,5039877 +2023-04-28,AL,20,5039877 +2023-04-29,AL,24,5039877 +2023-04-30,AL,22,5039877 +2023-05-01,AL,35,5039877 +2023-05-02,AL,28,5039877 +2023-05-03,AL,21,5039877 +2023-05-04,AL,16,5039877 +2023-05-05,AL,22,5039877 +2023-05-06,AL,16,5039877 +2023-05-07,AL,14,5039877 +2023-05-08,AL,21,5039877 +2023-05-09,AL,10,5039877 +2023-05-10,AL,26,5039877 +2023-05-11,AL,20,5039877 +2023-05-12,AL,34,5039877 +2023-05-13,AL,12,5039877 +2023-05-14,AL,12,5039877 +2023-05-15,AL,11,5039877 +2023-05-16,AL,32,5039877 +2023-05-17,AL,33,5039877 +2023-05-18,AL,35,5039877 +2023-05-19,AL,16,5039877 +2023-05-20,AL,17,5039877 +2023-05-21,AL,22,5039877 +2023-05-22,AL,27,5039877 +2023-05-23,AL,17,5039877 +2023-05-24,AL,28,5039877 +2023-05-25,AL,15,5039877 +2023-05-26,AL,18,5039877 +2023-05-27,AL,9,5039877 +2023-05-28,AL,19,5039877 +2023-05-29,AL,27,5039877 +2023-05-30,AL,17,5039877 +2023-05-31,AL,24,5039877 +2023-06-01,AL,29,5039877 +2023-06-02,AL,15,5039877 +2023-06-03,AL,18,5039877 +2023-06-04,AL,19,5039877 +2023-06-05,AL,29,5039877 +2023-06-06,AL,20,5039877 +2023-06-07,AL,15,5039877 +2023-06-08,AL,20,5039877 +2023-06-09,AL,20,5039877 +2023-06-10,AL,37,5039877 +2023-06-11,AL,18,5039877 +2023-06-12,AL,22,5039877 +2023-06-13,AL,21,5039877 +2023-06-14,AL,20,5039877 +2023-06-15,AL,17,5039877 +2023-06-16,AL,12,5039877 +2023-06-17,AL,16,5039877 +2023-06-18,AL,17,5039877 +2023-06-19,AL,16,5039877 +2023-06-20,AL,16,5039877 +2023-06-21,AL,19,5039877 +2023-06-22,AL,22,5039877 +2023-06-23,AL,18,5039877 +2023-06-24,AL,17,5039877 +2023-06-25,AL,13,5039877 +2023-06-26,AL,13,5039877 +2023-06-27,AL,18,5039877 +2023-06-28,AL,12,5039877 +2023-06-29,AL,8,5039877 +2023-06-30,AL,12,5039877 +2023-07-01,AL,10,5039877 +2023-07-02,AL,14,5039877 +2023-07-03,AL,10,5039877 +2023-07-04,AL,21,5039877 +2023-07-05,AL,17,5039877 +2023-07-06,AL,13,5039877 +2023-07-07,AL,19,5039877 +2023-07-08,AL,24,5039877 +2023-07-09,AL,27,5039877 +2023-07-10,AL,18,5039877 +2023-07-11,AL,24,5039877 +2023-07-12,AL,23,5039877 +2023-07-13,AL,18,5039877 +2023-07-14,AL,20,5039877 +2023-07-15,AL,25,5039877 +2023-07-16,AL,20,5039877 +2023-07-17,AL,31,5039877 +2023-07-18,AL,23,5039877 +2023-07-19,AL,23,5039877 +2023-07-20,AL,21,5039877 +2023-07-21,AL,26,5039877 +2023-07-22,AL,24,5039877 +2023-07-23,AL,28,5039877 +2023-07-24,AL,37,5039877 +2023-07-25,AL,29,5039877 +2023-07-26,AL,24,5039877 +2023-07-27,AL,33,5039877 +2023-07-28,AL,25,5039877 +2023-07-29,AL,25,5039877 +2023-07-30,AL,36,5039877 +2023-07-31,AL,42,5039877 +2023-08-01,AL,34,5039877 +2023-08-02,AL,38,5039877 +2023-08-03,AL,43,5039877 +2023-08-04,AL,42,5039877 +2023-08-05,AL,29,5039877 +2023-08-06,AL,26,5039877 +2023-08-07,AL,40,5039877 +2023-08-08,AL,45,5039877 +2023-08-09,AL,48,5039877 +2023-08-10,AL,44,5039877 +2023-08-11,AL,34,5039877 +2023-08-12,AL,43,5039877 +2023-08-13,AL,51,5039877 +2023-08-14,AL,50,5039877 +2023-08-15,AL,71,5039877 +2023-08-16,AL,52,5039877 +2023-08-17,AL,58,5039877 +2023-08-18,AL,49,5039877 +2023-08-19,AL,49,5039877 +2023-08-20,AL,62,5039877 +2023-08-21,AL,66,5039877 +2023-08-22,AL,48,5039877 +2023-08-23,AL,76,5039877 +2023-08-24,AL,75,5039877 +2023-08-25,AL,65,5039877 +2023-08-26,AL,63,5039877 +2023-08-27,AL,84,5039877 +2023-08-28,AL,78,5039877 +2023-08-29,AL,77,5039877 +2023-08-30,AL,52,5039877 +2023-08-31,AL,67,5039877 +2023-09-01,AL,65,5039877 +2023-09-02,AL,55,5039877 +2023-09-03,AL,67,5039877 +2023-09-04,AL,64,5039877 +2023-09-05,AL,94,5039877 +2023-09-06,AL,75,5039877 +2023-09-07,AL,63,5039877 +2023-09-08,AL,56,5039877 +2023-09-09,AL,53,5039877 +2023-09-10,AL,63,5039877 +2023-09-11,AL,69,5039877 +2023-09-12,AL,52,5039877 +2023-09-13,AL,50,5039877 +2023-09-14,AL,44,5039877 +2023-09-15,AL,51,5039877 +2023-09-16,AL,45,5039877 +2023-09-17,AL,53,5039877 +2023-09-18,AL,53,5039877 +2023-09-19,AL,46,5039877 +2023-09-20,AL,54,5039877 +2023-09-21,AL,55,5039877 +2023-09-22,AL,49,5039877 +2023-09-23,AL,45,5039877 +2023-09-24,AL,40,5039877 +2023-09-25,AL,39,5039877 +2023-09-26,AL,47,5039877 +2023-09-27,AL,27,5039877 +2023-09-28,AL,38,5039877 +2023-09-29,AL,38,5039877 +2023-09-30,AL,33,5039877 +2023-10-01,AL,29,5039877 +2023-10-02,AL,43,5039877 +2023-10-03,AL,34,5039877 +2023-10-04,AL,35,5039877 +2023-10-05,AL,29,5039877 +2023-10-06,AL,20,5039877 +2023-10-07,AL,25,5039877 +2023-10-08,AL,29,5039877 +2023-10-09,AL,32,5039877 +2023-10-10,AL,30,5039877 +2023-10-11,AL,28,5039877 +2023-10-12,AL,27,5039877 +2023-10-13,AL,24,5039877 +2023-10-14,AL,33,5039877 +2023-10-15,AL,24,5039877 +2023-10-16,AL,29,5039877 +2023-10-17,AL,32,5039877 +2023-10-18,AL,40,5039877 +2023-10-19,AL,32,5039877 +2023-10-20,AL,33,5039877 +2023-10-21,AL,38,5039877 +2023-10-22,AL,33,5039877 +2023-10-23,AL,46,5039877 +2023-10-24,AL,31,5039877 +2023-10-25,AL,43,5039877 +2023-10-26,AL,46,5039877 +2023-10-27,AL,28,5039877 +2023-10-28,AL,23,5039877 +2023-10-29,AL,28,5039877 +2023-10-30,AL,23,5039877 +2023-10-31,AL,40,5039877 +2023-11-01,AL,33,5039877 +2023-11-02,AL,30,5039877 +2023-11-03,AL,25,5039877 +2023-11-04,AL,35,5039877 +2023-11-05,AL,46,5039877 +2023-11-06,AL,36,5039877 +2023-11-07,AL,34,5039877 +2023-11-08,AL,29,5039877 +2023-11-09,AL,33,5039877 +2023-11-10,AL,31,5039877 +2023-11-11,AL,36,5039877 +2023-11-12,AL,38,5039877 +2023-11-13,AL,32,5039877 +2023-11-14,AL,35,5039877 +2023-11-15,AL,35,5039877 +2023-11-16,AL,28,5039877 +2023-11-17,AL,26,5039877 +2023-11-18,AL,27,5039877 +2023-11-19,AL,31,5039877 +2023-11-20,AL,63,5039877 +2023-11-21,AL,40,5039877 +2023-11-22,AL,26,5039877 +2023-11-23,AL,26,5039877 +2023-11-24,AL,29,5039877 +2023-11-25,AL,36,5039877 +2023-11-26,AL,25,5039877 +2023-11-27,AL,50,5039877 +2023-11-28,AL,43,5039877 +2023-11-29,AL,43,5039877 +2023-11-30,AL,43,5039877 +2023-12-01,AL,43,5039877 +2023-12-02,AL,40,5039877 +2023-12-03,AL,33,5039877 +2023-12-04,AL,55,5039877 +2023-12-05,AL,37,5039877 +2023-12-06,AL,55,5039877 +2023-12-07,AL,55,5039877 +2023-12-08,AL,61,5039877 +2023-12-09,AL,49,5039877 +2023-12-10,AL,50,5039877 +2023-12-11,AL,65,5039877 +2023-12-12,AL,51,5039877 +2023-12-13,AL,54,5039877 +2023-12-14,AL,63,5039877 +2023-12-15,AL,57,5039877 +2023-12-16,AL,45,5039877 +2023-12-17,AL,57,5039877 +2023-12-18,AL,68,5039877 +2023-12-19,AL,65,5039877 +2023-12-20,AL,64,5039877 +2023-12-21,AL,62,5039877 +2023-12-22,AL,60,5039877 +2023-12-23,AL,71,5039877 +2023-12-24,AL,59,5039877 +2023-12-25,AL,57,5039877 +2023-12-26,AL,93,5039877 +2023-12-27,AL,72,5039877 +2023-12-28,AL,93,5039877 +2023-12-29,AL,81,5039877 +2023-12-30,AL,78,5039877 +2023-12-31,AL,78,5039877 +2024-01-01,AL,57,5039877 +2024-01-02,AL,78,5039877 +2024-01-03,AL,78,5039877 +2024-01-04,AL,89,5039877 +2024-01-05,AL,72,5039877 +2024-01-06,AL,59,5039877 +2024-01-07,AL,77,5039877 +2024-01-08,AL,72,5039877 +2024-01-09,AL,69,5039877 +2024-01-10,AL,71,5039877 +2024-01-11,AL,69,5039877 +2024-01-12,AL,61,5039877 +2024-01-13,AL,53,5039877 +2024-01-14,AL,64,5039877 +2024-01-15,AL,59,5039877 +2024-01-16,AL,50,5039877 +2024-01-17,AL,61,5039877 +2024-01-18,AL,65,5039877 +2024-01-19,AL,56,5039877 +2022-12-31,AR,51,3025891 +2023-01-01,AR,67,3025891 +2023-01-02,AR,81,3025891 +2023-01-03,AR,79,3025891 +2023-01-04,AR,82,3025891 +2023-01-05,AR,49,3025891 +2023-01-06,AR,53,3025891 +2023-01-07,AR,42,3025891 +2023-01-08,AR,50,3025891 +2023-01-09,AR,77,3025891 +2023-01-10,AR,63,3025891 +2023-01-11,AR,64,3025891 +2023-01-12,AR,51,3025891 +2023-01-13,AR,41,3025891 +2023-01-14,AR,31,3025891 +2023-01-15,AR,40,3025891 +2023-01-16,AR,55,3025891 +2023-01-17,AR,38,3025891 +2023-01-18,AR,49,3025891 +2023-01-19,AR,28,3025891 +2023-01-20,AR,36,3025891 +2023-01-21,AR,25,3025891 +2023-01-22,AR,26,3025891 +2023-01-23,AR,41,3025891 +2023-01-24,AR,40,3025891 +2023-01-25,AR,28,3025891 +2023-01-26,AR,22,3025891 +2023-01-27,AR,28,3025891 +2023-01-28,AR,24,3025891 +2023-01-29,AR,31,3025891 +2023-01-30,AR,34,3025891 +2023-01-31,AR,20,3025891 +2023-02-01,AR,18,3025891 +2023-02-02,AR,27,3025891 +2023-02-03,AR,24,3025891 +2023-02-04,AR,20,3025891 +2023-02-05,AR,18,3025891 +2023-02-06,AR,35,3025891 +2023-02-07,AR,23,3025891 +2023-02-08,AR,31,3025891 +2023-02-09,AR,23,3025891 +2023-02-10,AR,23,3025891 +2023-02-11,AR,16,3025891 +2023-02-12,AR,17,3025891 +2023-02-13,AR,37,3025891 +2023-02-14,AR,24,3025891 +2023-02-15,AR,30,3025891 +2023-02-16,AR,29,3025891 +2023-02-17,AR,27,3025891 +2023-02-18,AR,26,3025891 +2023-02-19,AR,19,3025891 +2023-02-20,AR,29,3025891 +2023-02-21,AR,28,3025891 +2023-02-22,AR,27,3025891 +2023-02-23,AR,22,3025891 +2023-02-24,AR,25,3025891 +2023-02-25,AR,20,3025891 +2023-02-26,AR,18,3025891 +2023-02-27,AR,32,3025891 +2023-02-28,AR,24,3025891 +2023-03-01,AR,26,3025891 +2023-03-02,AR,21,3025891 +2023-03-03,AR,21,3025891 +2023-03-04,AR,13,3025891 +2023-03-05,AR,24,3025891 +2023-03-06,AR,18,3025891 +2023-03-07,AR,24,3025891 +2023-03-08,AR,22,3025891 +2023-03-09,AR,15,3025891 +2023-03-10,AR,14,3025891 +2023-03-11,AR,12,3025891 +2023-03-12,AR,19,3025891 +2023-03-13,AR,20,3025891 +2023-03-14,AR,13,3025891 +2023-03-15,AR,11,3025891 +2023-03-16,AR,20,3025891 +2023-03-17,AR,18,3025891 +2023-03-18,AR,13,3025891 +2023-03-19,AR,13,3025891 +2023-03-20,AR,26,3025891 +2023-03-21,AR,17,3025891 +2023-03-22,AR,22,3025891 +2023-03-23,AR,27,3025891 +2023-03-24,AR,8,3025891 +2023-03-25,AR,17,3025891 +2023-03-26,AR,17,3025891 +2023-03-27,AR,11,3025891 +2023-03-28,AR,18,3025891 +2023-03-29,AR,13,3025891 +2023-03-30,AR,20,3025891 +2023-03-31,AR,15,3025891 +2023-04-01,AR,8,3025891 +2023-04-02,AR,16,3025891 +2023-04-03,AR,13,3025891 +2023-04-04,AR,12,3025891 +2023-04-05,AR,15,3025891 +2023-04-06,AR,15,3025891 +2023-04-07,AR,14,3025891 +2023-04-08,AR,11,3025891 +2023-04-09,AR,17,3025891 +2023-04-10,AR,20,3025891 +2023-04-11,AR,16,3025891 +2023-04-12,AR,14,3025891 +2023-04-13,AR,13,3025891 +2023-04-14,AR,21,3025891 +2023-04-15,AR,12,3025891 +2023-04-16,AR,15,3025891 +2023-04-17,AR,13,3025891 +2023-04-18,AR,10,3025891 +2023-04-19,AR,15,3025891 +2023-04-20,AR,24,3025891 +2023-04-21,AR,14,3025891 +2023-04-22,AR,8,3025891 +2023-04-23,AR,11,3025891 +2023-04-24,AR,6,3025891 +2023-04-25,AR,16,3025891 +2023-04-26,AR,20,3025891 +2023-04-27,AR,13,3025891 +2023-04-28,AR,15,3025891 +2023-04-29,AR,16,3025891 +2023-04-30,AR,19,3025891 +2023-05-01,AR,12,3025891 +2023-05-02,AR,11,3025891 +2023-05-03,AR,6,3025891 +2023-05-04,AR,10,3025891 +2023-05-05,AR,10,3025891 +2023-05-06,AR,13,3025891 +2023-05-07,AR,14,3025891 +2023-05-08,AR,26,3025891 +2023-05-09,AR,22,3025891 +2023-05-10,AR,20,3025891 +2023-05-11,AR,18,3025891 +2023-05-12,AR,15,3025891 +2023-05-13,AR,13,3025891 +2023-05-14,AR,8,3025891 +2023-05-15,AR,26,3025891 +2023-05-16,AR,16,3025891 +2023-05-17,AR,9,3025891 +2023-05-18,AR,18,3025891 +2023-05-19,AR,12,3025891 +2023-05-20,AR,10,3025891 +2023-05-21,AR,11,3025891 +2023-05-22,AR,11,3025891 +2023-05-23,AR,16,3025891 +2023-05-24,AR,11,3025891 +2023-05-25,AR,17,3025891 +2023-05-26,AR,13,3025891 +2023-05-27,AR,10,3025891 +2023-05-28,AR,7,3025891 +2023-05-29,AR,12,3025891 +2023-05-30,AR,7,3025891 +2023-05-31,AR,12,3025891 +2023-06-01,AR,10,3025891 +2023-06-02,AR,10,3025891 +2023-06-03,AR,10,3025891 +2023-06-04,AR,12,3025891 +2023-06-05,AR,8,3025891 +2023-06-06,AR,5,3025891 +2023-06-07,AR,13,3025891 +2023-06-08,AR,7,3025891 +2023-06-09,AR,5,3025891 +2023-06-10,AR,10,3025891 +2023-06-11,AR,12,3025891 +2023-06-12,AR,8,3025891 +2023-06-13,AR,11,3025891 +2023-06-14,AR,12,3025891 +2023-06-15,AR,15,3025891 +2023-06-16,AR,9,3025891 +2023-06-17,AR,6,3025891 +2023-06-18,AR,4,3025891 +2023-06-19,AR,11,3025891 +2023-06-20,AR,14,3025891 +2023-06-21,AR,7,3025891 +2023-06-22,AR,7,3025891 +2023-06-23,AR,4,3025891 +2023-06-24,AR,6,3025891 +2023-06-25,AR,0,3025891 +2023-06-26,AR,4,3025891 +2023-06-27,AR,8,3025891 +2023-06-28,AR,6,3025891 +2023-06-29,AR,6,3025891 +2023-06-30,AR,8,3025891 +2023-07-01,AR,5,3025891 +2023-07-02,AR,5,3025891 +2023-07-03,AR,4,3025891 +2023-07-04,AR,4,3025891 +2023-07-05,AR,3,3025891 +2023-07-06,AR,3,3025891 +2023-07-07,AR,5,3025891 +2023-07-08,AR,5,3025891 +2023-07-09,AR,4,3025891 +2023-07-10,AR,7,3025891 +2023-07-11,AR,12,3025891 +2023-07-12,AR,11,3025891 +2023-07-13,AR,2,3025891 +2023-07-14,AR,9,3025891 +2023-07-15,AR,5,3025891 +2023-07-16,AR,6,3025891 +2023-07-17,AR,8,3025891 +2023-07-18,AR,8,3025891 +2023-07-19,AR,6,3025891 +2023-07-20,AR,11,3025891 +2023-07-21,AR,8,3025891 +2023-07-22,AR,2,3025891 +2023-07-23,AR,11,3025891 +2023-07-24,AR,9,3025891 +2023-07-25,AR,13,3025891 +2023-07-26,AR,8,3025891 +2023-07-27,AR,8,3025891 +2023-07-28,AR,11,3025891 +2023-07-29,AR,12,3025891 +2023-07-30,AR,7,3025891 +2023-07-31,AR,9,3025891 +2023-08-01,AR,15,3025891 +2023-08-02,AR,16,3025891 +2023-08-03,AR,17,3025891 +2023-08-04,AR,9,3025891 +2023-08-05,AR,15,3025891 +2023-08-06,AR,11,3025891 +2023-08-07,AR,17,3025891 +2023-08-08,AR,15,3025891 +2023-08-09,AR,19,3025891 +2023-08-10,AR,17,3025891 +2023-08-11,AR,23,3025891 +2023-08-12,AR,12,3025891 +2023-08-13,AR,19,3025891 +2023-08-14,AR,32,3025891 +2023-08-15,AR,24,3025891 +2023-08-16,AR,24,3025891 +2023-08-17,AR,22,3025891 +2023-08-18,AR,26,3025891 +2023-08-19,AR,27,3025891 +2023-08-20,AR,22,3025891 +2023-08-21,AR,30,3025891 +2023-08-22,AR,37,3025891 +2023-08-23,AR,29,3025891 +2023-08-24,AR,33,3025891 +2023-08-25,AR,25,3025891 +2023-08-26,AR,24,3025891 +2023-08-27,AR,26,3025891 +2023-08-28,AR,38,3025891 +2023-08-29,AR,29,3025891 +2023-08-30,AR,43,3025891 +2023-08-31,AR,35,3025891 +2023-09-01,AR,27,3025891 +2023-09-02,AR,23,3025891 +2023-09-03,AR,42,3025891 +2023-09-04,AR,30,3025891 +2023-09-05,AR,44,3025891 +2023-09-06,AR,43,3025891 +2023-09-07,AR,55,3025891 +2023-09-08,AR,39,3025891 +2023-09-09,AR,35,3025891 +2023-09-10,AR,39,3025891 +2023-09-11,AR,38,3025891 +2023-09-12,AR,46,3025891 +2023-09-13,AR,33,3025891 +2023-09-14,AR,37,3025891 +2023-09-15,AR,31,3025891 +2023-09-16,AR,40,3025891 +2023-09-17,AR,28,3025891 +2023-09-18,AR,43,3025891 +2023-09-19,AR,32,3025891 +2023-09-20,AR,31,3025891 +2023-09-21,AR,32,3025891 +2023-09-22,AR,29,3025891 +2023-09-23,AR,26,3025891 +2023-09-24,AR,31,3025891 +2023-09-25,AR,39,3025891 +2023-09-26,AR,21,3025891 +2023-09-27,AR,22,3025891 +2023-09-28,AR,28,3025891 +2023-09-29,AR,20,3025891 +2023-09-30,AR,11,3025891 +2023-10-01,AR,27,3025891 +2023-10-02,AR,22,3025891 +2023-10-03,AR,30,3025891 +2023-10-04,AR,18,3025891 +2023-10-05,AR,23,3025891 +2023-10-06,AR,17,3025891 +2023-10-07,AR,12,3025891 +2023-10-08,AR,6,3025891 +2023-10-09,AR,27,3025891 +2023-10-10,AR,15,3025891 +2023-10-11,AR,19,3025891 +2023-10-12,AR,19,3025891 +2023-10-13,AR,16,3025891 +2023-10-14,AR,16,3025891 +2023-10-15,AR,13,3025891 +2023-10-16,AR,17,3025891 +2023-10-17,AR,13,3025891 +2023-10-18,AR,21,3025891 +2023-10-19,AR,17,3025891 +2023-10-20,AR,20,3025891 +2023-10-21,AR,20,3025891 +2023-10-22,AR,25,3025891 +2023-10-23,AR,18,3025891 +2023-10-24,AR,16,3025891 +2023-10-25,AR,14,3025891 +2023-10-26,AR,17,3025891 +2023-10-27,AR,19,3025891 +2023-10-28,AR,18,3025891 +2023-10-29,AR,18,3025891 +2023-10-30,AR,24,3025891 +2023-10-31,AR,23,3025891 +2023-11-01,AR,15,3025891 +2023-11-02,AR,14,3025891 +2023-11-03,AR,21,3025891 +2023-11-04,AR,19,3025891 +2023-11-05,AR,17,3025891 +2023-11-06,AR,27,3025891 +2023-11-07,AR,22,3025891 +2023-11-08,AR,31,3025891 +2023-11-09,AR,25,3025891 +2023-11-10,AR,15,3025891 +2023-11-11,AR,22,3025891 +2023-11-12,AR,15,3025891 +2023-11-13,AR,16,3025891 +2023-11-14,AR,29,3025891 +2023-11-15,AR,22,3025891 +2023-11-16,AR,25,3025891 +2023-11-17,AR,23,3025891 +2023-11-18,AR,23,3025891 +2023-11-19,AR,29,3025891 +2023-11-20,AR,22,3025891 +2023-11-21,AR,26,3025891 +2023-11-22,AR,22,3025891 +2023-11-23,AR,25,3025891 +2023-11-24,AR,11,3025891 +2023-11-25,AR,18,3025891 +2023-11-26,AR,22,3025891 +2023-11-27,AR,37,3025891 +2023-11-28,AR,28,3025891 +2023-11-29,AR,42,3025891 +2023-11-30,AR,23,3025891 +2023-12-01,AR,33,3025891 +2023-12-02,AR,31,3025891 +2023-12-03,AR,27,3025891 +2023-12-04,AR,33,3025891 +2023-12-05,AR,37,3025891 +2023-12-06,AR,30,3025891 +2023-12-07,AR,36,3025891 +2023-12-08,AR,47,3025891 +2023-12-09,AR,45,3025891 +2023-12-10,AR,39,3025891 +2023-12-11,AR,35,3025891 +2023-12-12,AR,26,3025891 +2023-12-13,AR,36,3025891 +2023-12-14,AR,34,3025891 +2023-12-15,AR,46,3025891 +2023-12-16,AR,44,3025891 +2023-12-17,AR,35,3025891 +2023-12-18,AR,40,3025891 +2023-12-19,AR,51,3025891 +2023-12-20,AR,42,3025891 +2023-12-21,AR,38,3025891 +2023-12-22,AR,42,3025891 +2023-12-23,AR,42,3025891 +2023-12-24,AR,45,3025891 +2023-12-25,AR,29,3025891 +2023-12-26,AR,48,3025891 +2023-12-27,AR,43,3025891 +2023-12-28,AR,53,3025891 +2023-12-29,AR,46,3025891 +2023-12-30,AR,35,3025891 +2023-12-31,AR,38,3025891 +2024-01-01,AR,50,3025891 +2024-01-02,AR,59,3025891 +2024-01-03,AR,70,3025891 +2024-01-04,AR,65,3025891 +2024-01-05,AR,42,3025891 +2024-01-06,AR,39,3025891 +2024-01-07,AR,49,3025891 +2024-01-08,AR,32,3025891 +2024-01-09,AR,33,3025891 +2024-01-10,AR,51,3025891 +2024-01-11,AR,45,3025891 +2024-01-12,AR,48,3025891 +2024-01-13,AR,39,3025891 +2024-01-14,AR,45,3025891 +2024-01-15,AR,44,3025891 +2024-01-16,AR,51,3025891 +2024-01-17,AR,48,3025891 +2024-01-18,AR,55,3025891 +2024-01-19,AR,36,3025891 +2022-12-31,AS,0,NA +2023-01-01,AS,0,NA +2023-01-02,AS,0,NA +2023-01-03,AS,0,NA +2023-01-04,AS,0,NA +2023-01-05,AS,0,NA +2023-01-06,AS,0,NA +2023-01-07,AS,0,NA +2023-01-08,AS,0,NA +2023-01-09,AS,0,NA +2023-01-10,AS,0,NA +2023-01-11,AS,0,NA +2023-01-12,AS,0,NA +2023-01-13,AS,0,NA +2023-01-14,AS,0,NA +2023-01-15,AS,0,NA +2023-01-16,AS,0,NA +2023-01-17,AS,0,NA +2023-01-18,AS,0,NA +2023-01-19,AS,0,NA +2023-01-20,AS,0,NA +2023-01-21,AS,0,NA +2023-01-22,AS,0,NA +2023-01-23,AS,0,NA +2023-01-24,AS,0,NA +2023-01-25,AS,0,NA +2023-01-26,AS,0,NA +2023-01-27,AS,0,NA +2023-01-28,AS,0,NA +2023-01-29,AS,0,NA +2023-01-30,AS,0,NA +2023-01-31,AS,0,NA +2023-02-01,AS,0,NA +2023-02-02,AS,0,NA +2023-02-03,AS,0,NA +2023-02-04,AS,0,NA +2023-02-05,AS,0,NA +2023-02-06,AS,0,NA +2023-02-07,AS,0,NA +2023-02-08,AS,0,NA +2023-02-09,AS,0,NA +2023-02-10,AS,0,NA +2023-02-11,AS,0,NA +2023-02-12,AS,0,NA +2023-02-13,AS,0,NA +2023-02-14,AS,0,NA +2023-02-15,AS,0,NA +2023-02-16,AS,0,NA +2023-02-17,AS,0,NA +2023-02-18,AS,0,NA +2023-02-19,AS,0,NA +2023-02-20,AS,0,NA +2023-02-21,AS,0,NA +2023-02-22,AS,0,NA +2023-02-23,AS,0,NA +2023-02-24,AS,0,NA +2023-02-25,AS,0,NA +2023-02-26,AS,0,NA +2023-02-27,AS,0,NA +2023-02-28,AS,0,NA +2023-03-01,AS,0,NA +2023-03-02,AS,0,NA +2023-03-03,AS,0,NA +2023-03-04,AS,0,NA +2023-03-05,AS,0,NA +2023-03-06,AS,0,NA +2023-03-07,AS,0,NA +2023-03-08,AS,0,NA +2023-03-09,AS,0,NA +2023-03-10,AS,0,NA +2023-03-11,AS,0,NA +2023-03-12,AS,0,NA +2023-03-13,AS,0,NA +2023-03-14,AS,0,NA +2023-03-15,AS,0,NA +2023-03-16,AS,0,NA +2023-03-17,AS,0,NA +2023-03-18,AS,0,NA +2023-03-19,AS,0,NA +2023-03-20,AS,0,NA +2023-03-21,AS,0,NA +2023-03-22,AS,0,NA +2023-03-23,AS,0,NA +2023-03-24,AS,0,NA +2023-03-25,AS,0,NA +2023-03-26,AS,0,NA +2023-03-27,AS,0,NA +2023-03-28,AS,0,NA +2023-03-29,AS,0,NA +2023-03-30,AS,0,NA +2023-03-31,AS,0,NA +2023-04-01,AS,0,NA +2023-04-02,AS,0,NA +2023-04-03,AS,0,NA +2023-04-04,AS,0,NA +2023-04-05,AS,0,NA +2023-04-06,AS,0,NA +2023-04-07,AS,0,NA +2023-04-08,AS,0,NA +2023-04-09,AS,0,NA +2023-04-10,AS,0,NA +2023-04-11,AS,0,NA +2023-04-12,AS,0,NA +2023-04-13,AS,0,NA +2023-04-14,AS,0,NA +2023-04-15,AS,0,NA +2023-04-16,AS,0,NA +2023-04-17,AS,0,NA +2023-04-18,AS,0,NA +2023-04-19,AS,0,NA +2023-04-20,AS,0,NA +2023-04-21,AS,0,NA +2023-04-22,AS,0,NA +2023-04-23,AS,0,NA +2023-04-24,AS,0,NA +2023-04-25,AS,0,NA +2023-04-26,AS,0,NA +2023-04-27,AS,0,NA +2023-04-28,AS,0,NA +2023-04-29,AS,0,NA +2023-04-30,AS,0,NA +2023-05-01,AS,0,NA +2023-05-02,AS,0,NA +2023-05-03,AS,0,NA +2023-05-04,AS,0,NA +2023-05-05,AS,0,NA +2023-05-06,AS,0,NA +2023-05-07,AS,0,NA +2023-05-08,AS,0,NA +2023-05-09,AS,0,NA +2023-05-10,AS,0,NA +2023-05-11,AS,0,NA +2023-05-12,AS,0,NA +2023-05-13,AS,0,NA +2023-05-14,AS,0,NA +2023-05-15,AS,0,NA +2023-05-16,AS,0,NA +2023-05-17,AS,0,NA +2023-05-18,AS,0,NA +2023-05-19,AS,0,NA +2023-05-20,AS,0,NA +2023-05-21,AS,0,NA +2023-05-22,AS,0,NA +2023-05-23,AS,0,NA +2023-05-24,AS,0,NA +2023-05-25,AS,0,NA +2023-05-26,AS,0,NA +2023-05-27,AS,0,NA +2023-05-28,AS,0,NA +2023-05-29,AS,0,NA +2023-05-30,AS,0,NA +2023-05-31,AS,0,NA +2023-06-01,AS,0,NA +2023-06-02,AS,0,NA +2023-06-03,AS,0,NA +2023-06-04,AS,0,NA +2023-06-05,AS,0,NA +2023-06-06,AS,0,NA +2023-06-07,AS,0,NA +2023-06-08,AS,0,NA +2023-06-09,AS,0,NA +2023-06-10,AS,0,NA +2023-06-11,AS,0,NA +2023-06-12,AS,0,NA +2023-06-13,AS,0,NA +2023-06-14,AS,0,NA +2023-06-15,AS,0,NA +2023-06-16,AS,0,NA +2023-06-17,AS,0,NA +2023-06-18,AS,0,NA +2023-06-19,AS,0,NA +2023-06-20,AS,0,NA +2023-06-21,AS,0,NA +2023-06-22,AS,0,NA +2023-06-23,AS,0,NA +2023-06-24,AS,0,NA +2023-06-25,AS,0,NA +2023-06-26,AS,0,NA +2023-06-27,AS,0,NA +2023-06-28,AS,0,NA +2023-06-29,AS,0,NA +2023-06-30,AS,0,NA +2023-07-01,AS,0,NA +2023-07-02,AS,0,NA +2023-07-03,AS,0,NA +2023-07-04,AS,0,NA +2023-07-05,AS,0,NA +2023-07-06,AS,0,NA +2023-07-07,AS,0,NA +2023-07-08,AS,0,NA +2023-07-09,AS,0,NA +2023-07-10,AS,0,NA +2023-07-11,AS,0,NA +2023-07-12,AS,0,NA +2023-07-13,AS,0,NA +2023-07-14,AS,0,NA +2023-07-15,AS,0,NA +2023-07-16,AS,0,NA +2023-07-17,AS,0,NA +2023-07-18,AS,0,NA +2023-07-19,AS,0,NA +2023-07-20,AS,0,NA +2023-07-21,AS,0,NA +2023-07-22,AS,0,NA +2023-07-23,AS,0,NA +2023-07-24,AS,0,NA +2023-07-25,AS,0,NA +2023-07-26,AS,0,NA +2023-07-27,AS,0,NA +2023-07-28,AS,0,NA +2023-07-29,AS,0,NA +2023-07-30,AS,0,NA +2023-07-31,AS,0,NA +2023-08-01,AS,0,NA +2023-08-02,AS,0,NA +2023-08-03,AS,0,NA +2023-08-04,AS,0,NA +2023-08-05,AS,0,NA +2023-08-06,AS,0,NA +2023-08-07,AS,0,NA +2023-08-08,AS,0,NA +2023-08-09,AS,0,NA +2023-08-10,AS,0,NA +2023-08-11,AS,0,NA +2023-08-12,AS,0,NA +2023-08-13,AS,0,NA +2023-08-14,AS,0,NA +2023-08-15,AS,0,NA +2023-08-16,AS,0,NA +2023-08-17,AS,0,NA +2023-08-18,AS,0,NA +2023-08-19,AS,0,NA +2023-08-20,AS,0,NA +2023-08-21,AS,0,NA +2023-08-22,AS,0,NA +2023-08-23,AS,0,NA +2023-08-24,AS,0,NA +2023-08-25,AS,0,NA +2023-08-26,AS,0,NA +2023-08-27,AS,0,NA +2023-08-28,AS,0,NA +2023-08-29,AS,0,NA +2023-08-30,AS,0,NA +2023-08-31,AS,0,NA +2023-09-01,AS,0,NA +2023-09-02,AS,0,NA +2023-09-03,AS,0,NA +2023-09-04,AS,0,NA +2023-09-05,AS,0,NA +2023-09-06,AS,0,NA +2023-09-07,AS,0,NA +2023-09-08,AS,0,NA +2023-09-09,AS,0,NA +2023-09-10,AS,0,NA +2023-09-11,AS,0,NA +2023-09-12,AS,0,NA +2023-09-13,AS,0,NA +2023-09-14,AS,0,NA +2023-09-15,AS,0,NA +2023-09-16,AS,0,NA +2023-09-17,AS,0,NA +2023-09-18,AS,0,NA +2023-09-19,AS,0,NA +2023-09-20,AS,0,NA +2023-09-21,AS,0,NA +2023-09-22,AS,0,NA +2023-09-23,AS,0,NA +2023-09-24,AS,0,NA +2023-09-25,AS,0,NA +2023-09-26,AS,0,NA +2023-09-27,AS,0,NA +2023-09-28,AS,0,NA +2023-09-29,AS,0,NA +2023-09-30,AS,0,NA +2023-10-01,AS,0,NA +2023-10-02,AS,0,NA +2023-10-03,AS,0,NA +2023-10-04,AS,0,NA +2023-10-05,AS,0,NA +2023-10-06,AS,0,NA +2023-10-07,AS,0,NA +2023-10-08,AS,0,NA +2023-10-09,AS,0,NA +2023-10-10,AS,0,NA +2023-10-11,AS,0,NA +2023-10-12,AS,0,NA +2023-10-13,AS,0,NA +2023-10-14,AS,0,NA +2023-10-15,AS,0,NA +2023-10-16,AS,0,NA +2023-10-17,AS,0,NA +2023-10-18,AS,0,NA +2023-10-19,AS,0,NA +2023-10-20,AS,0,NA +2023-10-21,AS,0,NA +2023-10-22,AS,0,NA +2023-10-23,AS,0,NA +2023-10-24,AS,0,NA +2023-10-25,AS,0,NA +2023-10-26,AS,0,NA +2023-10-27,AS,0,NA +2023-10-28,AS,0,NA +2023-10-29,AS,0,NA +2023-10-30,AS,0,NA +2023-10-31,AS,0,NA +2023-11-01,AS,0,NA +2023-11-02,AS,0,NA +2023-11-03,AS,0,NA +2023-11-04,AS,0,NA +2023-11-05,AS,0,NA +2023-11-06,AS,0,NA +2023-11-07,AS,0,NA +2023-11-08,AS,0,NA +2023-11-09,AS,0,NA +2023-11-10,AS,0,NA +2023-11-11,AS,0,NA +2023-11-12,AS,0,NA +2023-11-13,AS,0,NA +2023-11-14,AS,0,NA +2023-11-15,AS,0,NA +2023-11-16,AS,0,NA +2023-11-17,AS,0,NA +2023-11-18,AS,0,NA +2023-11-19,AS,0,NA +2023-11-20,AS,0,NA +2023-11-21,AS,0,NA +2023-11-22,AS,0,NA +2023-11-23,AS,0,NA +2023-11-24,AS,0,NA +2023-11-25,AS,0,NA +2023-11-26,AS,0,NA +2023-11-27,AS,0,NA +2023-11-28,AS,1,NA +2023-11-29,AS,0,NA +2023-11-30,AS,0,NA +2023-12-01,AS,0,NA +2023-12-02,AS,0,NA +2023-12-03,AS,0,NA +2023-12-04,AS,0,NA +2023-12-05,AS,0,NA +2023-12-06,AS,0,NA +2023-12-07,AS,0,NA +2023-12-08,AS,0,NA +2023-12-09,AS,0,NA +2023-12-10,AS,0,NA +2023-12-11,AS,0,NA +2023-12-12,AS,0,NA +2023-12-13,AS,0,NA +2023-12-14,AS,0,NA +2023-12-15,AS,0,NA +2023-12-16,AS,0,NA +2023-12-17,AS,0,NA +2023-12-18,AS,0,NA +2023-12-19,AS,0,NA +2023-12-20,AS,0,NA +2023-12-21,AS,0,NA +2023-12-22,AS,0,NA +2023-12-23,AS,0,NA +2023-12-24,AS,0,NA +2023-12-25,AS,0,NA +2023-12-26,AS,0,NA +2023-12-27,AS,0,NA +2023-12-28,AS,0,NA +2023-12-29,AS,0,NA +2023-12-30,AS,0,NA +2023-12-31,AS,0,NA +2024-01-01,AS,0,NA +2024-01-02,AS,0,NA +2024-01-03,AS,0,NA +2024-01-04,AS,0,NA +2024-01-05,AS,0,NA +2024-01-06,AS,0,NA +2024-01-07,AS,0,NA +2024-01-08,AS,0,NA +2024-01-09,AS,0,NA +2024-01-10,AS,0,NA +2024-01-11,AS,0,NA +2024-01-12,AS,0,NA +2024-01-13,AS,0,NA +2024-01-14,AS,0,NA +2024-01-15,AS,0,NA +2024-01-16,AS,0,NA +2024-01-17,AS,0,NA +2024-01-18,AS,0,NA +2024-01-19,AS,0,NA +2022-12-31,AZ,99,7276316 +2023-01-01,AZ,124,7276316 +2023-01-02,AZ,118,7276316 +2023-01-03,AZ,105,7276316 +2023-01-04,AZ,99,7276316 +2023-01-05,AZ,86,7276316 +2023-01-06,AZ,66,7276316 +2023-01-07,AZ,98,7276316 +2023-01-08,AZ,72,7276316 +2023-01-09,AZ,87,7276316 +2023-01-10,AZ,80,7276316 +2023-01-11,AZ,89,7276316 +2023-01-12,AZ,74,7276316 +2023-01-13,AZ,68,7276316 +2023-01-14,AZ,55,7276316 +2023-01-15,AZ,49,7276316 +2023-01-16,AZ,74,7276316 +2023-01-17,AZ,82,7276316 +2023-01-18,AZ,63,7276316 +2023-01-19,AZ,62,7276316 +2023-01-20,AZ,68,7276316 +2023-01-21,AZ,45,7276316 +2023-01-22,AZ,52,7276316 +2023-01-23,AZ,52,7276316 +2023-01-24,AZ,58,7276316 +2023-01-25,AZ,53,7276316 +2023-01-26,AZ,48,7276316 +2023-01-27,AZ,61,7276316 +2023-01-28,AZ,50,7276316 +2023-01-29,AZ,47,7276316 +2023-01-30,AZ,57,7276316 +2023-01-31,AZ,70,7276316 +2023-02-01,AZ,51,7276316 +2023-02-02,AZ,45,7276316 +2023-02-03,AZ,54,7276316 +2023-02-04,AZ,45,7276316 +2023-02-05,AZ,47,7276316 +2023-02-06,AZ,67,7276316 +2023-02-07,AZ,54,7276316 +2023-02-08,AZ,51,7276316 +2023-02-09,AZ,62,7276316 +2023-02-10,AZ,61,7276316 +2023-02-11,AZ,35,7276316 +2023-02-12,AZ,49,7276316 +2023-02-13,AZ,50,7276316 +2023-02-14,AZ,69,7276316 +2023-02-15,AZ,54,7276316 +2023-02-16,AZ,49,7276316 +2023-02-17,AZ,58,7276316 +2023-02-18,AZ,59,7276316 +2023-02-19,AZ,52,7276316 +2023-02-20,AZ,64,7276316 +2023-02-21,AZ,59,7276316 +2023-02-22,AZ,60,7276316 +2023-02-23,AZ,59,7276316 +2023-02-24,AZ,80,7276316 +2023-02-25,AZ,48,7276316 +2023-02-26,AZ,58,7276316 +2023-02-27,AZ,57,7276316 +2023-02-28,AZ,60,7276316 +2023-03-01,AZ,62,7276316 +2023-03-02,AZ,73,7276316 +2023-03-03,AZ,46,7276316 +2023-03-04,AZ,63,7276316 +2023-03-05,AZ,69,7276316 +2023-03-06,AZ,61,7276316 +2023-03-07,AZ,77,7276316 +2023-03-08,AZ,47,7276316 +2023-03-09,AZ,54,7276316 +2023-03-10,AZ,69,7276316 +2023-03-11,AZ,47,7276316 +2023-03-12,AZ,51,7276316 +2023-03-13,AZ,67,7276316 +2023-03-14,AZ,54,7276316 +2023-03-15,AZ,55,7276316 +2023-03-16,AZ,53,7276316 +2023-03-17,AZ,56,7276316 +2023-03-18,AZ,44,7276316 +2023-03-19,AZ,48,7276316 +2023-03-20,AZ,73,7276316 +2023-03-21,AZ,65,7276316 +2023-03-22,AZ,54,7276316 +2023-03-23,AZ,50,7276316 +2023-03-24,AZ,71,7276316 +2023-03-25,AZ,42,7276316 +2023-03-26,AZ,45,7276316 +2023-03-27,AZ,30,7276316 +2023-03-28,AZ,61,7276316 +2023-03-29,AZ,47,7276316 +2023-03-30,AZ,41,7276316 +2023-03-31,AZ,49,7276316 +2023-04-01,AZ,40,7276316 +2023-04-02,AZ,39,7276316 +2023-04-03,AZ,47,7276316 +2023-04-04,AZ,51,7276316 +2023-04-05,AZ,49,7276316 +2023-04-06,AZ,45,7276316 +2023-04-07,AZ,56,7276316 +2023-04-08,AZ,39,7276316 +2023-04-09,AZ,43,7276316 +2023-04-10,AZ,51,7276316 +2023-04-11,AZ,51,7276316 +2023-04-12,AZ,51,7276316 +2023-04-13,AZ,50,7276316 +2023-04-14,AZ,70,7276316 +2023-04-15,AZ,37,7276316 +2023-04-16,AZ,50,7276316 +2023-04-17,AZ,44,7276316 +2023-04-18,AZ,57,7276316 +2023-04-19,AZ,50,7276316 +2023-04-20,AZ,52,7276316 +2023-04-21,AZ,48,7276316 +2023-04-22,AZ,38,7276316 +2023-04-23,AZ,42,7276316 +2023-04-24,AZ,44,7276316 +2023-04-25,AZ,33,7276316 +2023-04-26,AZ,52,7276316 +2023-04-27,AZ,36,7276316 +2023-04-28,AZ,40,7276316 +2023-04-29,AZ,41,7276316 +2023-04-30,AZ,35,7276316 +2023-05-01,AZ,47,7276316 +2023-05-02,AZ,43,7276316 +2023-05-03,AZ,45,7276316 +2023-05-04,AZ,38,7276316 +2023-05-05,AZ,45,7276316 +2023-05-06,AZ,26,7276316 +2023-05-07,AZ,41,7276316 +2023-05-08,AZ,38,7276316 +2023-05-09,AZ,49,7276316 +2023-05-10,AZ,26,7276316 +2023-05-11,AZ,38,7276316 +2023-05-12,AZ,40,7276316 +2023-05-13,AZ,32,7276316 +2023-05-14,AZ,33,7276316 +2023-05-15,AZ,44,7276316 +2023-05-16,AZ,43,7276316 +2023-05-17,AZ,38,7276316 +2023-05-18,AZ,28,7276316 +2023-05-19,AZ,26,7276316 +2023-05-20,AZ,19,7276316 +2023-05-21,AZ,29,7276316 +2023-05-22,AZ,31,7276316 +2023-05-23,AZ,18,7276316 +2023-05-24,AZ,18,7276316 +2023-05-25,AZ,25,7276316 +2023-05-26,AZ,33,7276316 +2023-05-27,AZ,25,7276316 +2023-05-28,AZ,36,7276316 +2023-05-29,AZ,23,7276316 +2023-05-30,AZ,26,7276316 +2023-05-31,AZ,28,7276316 +2023-06-01,AZ,28,7276316 +2023-06-02,AZ,24,7276316 +2023-06-03,AZ,23,7276316 +2023-06-04,AZ,31,7276316 +2023-06-05,AZ,29,7276316 +2023-06-06,AZ,28,7276316 +2023-06-07,AZ,20,7276316 +2023-06-08,AZ,23,7276316 +2023-06-09,AZ,23,7276316 +2023-06-10,AZ,29,7276316 +2023-06-11,AZ,21,7276316 +2023-06-12,AZ,16,7276316 +2023-06-13,AZ,28,7276316 +2023-06-14,AZ,21,7276316 +2023-06-15,AZ,30,7276316 +2023-06-16,AZ,22,7276316 +2023-06-17,AZ,18,7276316 +2023-06-18,AZ,24,7276316 +2023-06-19,AZ,22,7276316 +2023-06-20,AZ,24,7276316 +2023-06-21,AZ,21,7276316 +2023-06-22,AZ,25,7276316 +2023-06-23,AZ,34,7276316 +2023-06-24,AZ,12,7276316 +2023-06-25,AZ,23,7276316 +2023-06-26,AZ,27,7276316 +2023-06-27,AZ,24,7276316 +2023-06-28,AZ,32,7276316 +2023-06-29,AZ,28,7276316 +2023-06-30,AZ,16,7276316 +2023-07-01,AZ,22,7276316 +2023-07-02,AZ,21,7276316 +2023-07-03,AZ,31,7276316 +2023-07-04,AZ,12,7276316 +2023-07-05,AZ,27,7276316 +2023-07-06,AZ,22,7276316 +2023-07-07,AZ,31,7276316 +2023-07-08,AZ,23,7276316 +2023-07-09,AZ,33,7276316 +2023-07-10,AZ,43,7276316 +2023-07-11,AZ,32,7276316 +2023-07-12,AZ,25,7276316 +2023-07-13,AZ,18,7276316 +2023-07-14,AZ,27,7276316 +2023-07-15,AZ,16,7276316 +2023-07-16,AZ,21,7276316 +2023-07-17,AZ,25,7276316 +2023-07-18,AZ,26,7276316 +2023-07-19,AZ,21,7276316 +2023-07-20,AZ,21,7276316 +2023-07-21,AZ,31,7276316 +2023-07-22,AZ,13,7276316 +2023-07-23,AZ,24,7276316 +2023-07-24,AZ,21,7276316 +2023-07-25,AZ,17,7276316 +2023-07-26,AZ,19,7276316 +2023-07-27,AZ,16,7276316 +2023-07-28,AZ,19,7276316 +2023-07-29,AZ,21,7276316 +2023-07-30,AZ,18,7276316 +2023-07-31,AZ,23,7276316 +2023-08-01,AZ,19,7276316 +2023-08-02,AZ,24,7276316 +2023-08-03,AZ,19,7276316 +2023-08-04,AZ,25,7276316 +2023-08-05,AZ,26,7276316 +2023-08-06,AZ,15,7276316 +2023-08-07,AZ,22,7276316 +2023-08-08,AZ,27,7276316 +2023-08-09,AZ,30,7276316 +2023-08-10,AZ,21,7276316 +2023-08-11,AZ,14,7276316 +2023-08-12,AZ,30,7276316 +2023-08-13,AZ,29,7276316 +2023-08-14,AZ,32,7276316 +2023-08-15,AZ,26,7276316 +2023-08-16,AZ,29,7276316 +2023-08-17,AZ,27,7276316 +2023-08-18,AZ,41,7276316 +2023-08-19,AZ,32,7276316 +2023-08-20,AZ,41,7276316 +2023-08-21,AZ,32,7276316 +2023-08-22,AZ,38,7276316 +2023-08-23,AZ,42,7276316 +2023-08-24,AZ,37,7276316 +2023-08-25,AZ,29,7276316 +2023-08-26,AZ,31,7276316 +2023-08-27,AZ,33,7276316 +2023-08-28,AZ,56,7276316 +2023-08-29,AZ,41,7276316 +2023-08-30,AZ,39,7276316 +2023-08-31,AZ,40,7276316 +2023-09-01,AZ,40,7276316 +2023-09-02,AZ,28,7276316 +2023-09-03,AZ,36,7276316 +2023-09-04,AZ,36,7276316 +2023-09-05,AZ,38,7276316 +2023-09-06,AZ,51,7276316 +2023-09-07,AZ,40,7276316 +2023-09-08,AZ,41,7276316 +2023-09-09,AZ,37,7276316 +2023-09-10,AZ,45,7276316 +2023-09-11,AZ,51,7276316 +2023-09-12,AZ,33,7276316 +2023-09-13,AZ,39,7276316 +2023-09-14,AZ,38,7276316 +2023-09-15,AZ,51,7276316 +2023-09-16,AZ,31,7276316 +2023-09-17,AZ,27,7276316 +2023-09-18,AZ,43,7276316 +2023-09-19,AZ,43,7276316 +2023-09-20,AZ,38,7276316 +2023-09-21,AZ,37,7276316 +2023-09-22,AZ,39,7276316 +2023-09-23,AZ,36,7276316 +2023-09-24,AZ,43,7276316 +2023-09-25,AZ,43,7276316 +2023-09-26,AZ,55,7276316 +2023-09-27,AZ,44,7276316 +2023-09-28,AZ,59,7276316 +2023-09-29,AZ,43,7276316 +2023-09-30,AZ,44,7276316 +2023-10-01,AZ,54,7276316 +2023-10-02,AZ,41,7276316 +2023-10-03,AZ,48,7276316 +2023-10-04,AZ,56,7276316 +2023-10-05,AZ,57,7276316 +2023-10-06,AZ,55,7276316 +2023-10-07,AZ,60,7276316 +2023-10-08,AZ,60,7276316 +2023-10-09,AZ,66,7276316 +2023-10-10,AZ,45,7276316 +2023-10-11,AZ,40,7276316 +2023-10-12,AZ,60,7276316 +2023-10-13,AZ,48,7276316 +2023-10-14,AZ,46,7276316 +2023-10-15,AZ,51,7276316 +2023-10-16,AZ,73,7276316 +2023-10-17,AZ,71,7276316 +2023-10-18,AZ,60,7276316 +2023-10-19,AZ,69,7276316 +2023-10-20,AZ,65,7276316 +2023-10-21,AZ,55,7276316 +2023-10-22,AZ,68,7276316 +2023-10-23,AZ,65,7276316 +2023-10-24,AZ,68,7276316 +2023-10-25,AZ,59,7276316 +2023-10-26,AZ,55,7276316 +2023-10-27,AZ,42,7276316 +2023-10-28,AZ,42,7276316 +2023-10-29,AZ,64,7276316 +2023-10-30,AZ,45,7276316 +2023-10-31,AZ,51,7276316 +2023-11-01,AZ,59,7276316 +2023-11-02,AZ,51,7276316 +2023-11-03,AZ,71,7276316 +2023-11-04,AZ,54,7276316 +2023-11-05,AZ,67,7276316 +2023-11-06,AZ,78,7276316 +2023-11-07,AZ,78,7276316 +2023-11-08,AZ,76,7276316 +2023-11-09,AZ,78,7276316 +2023-11-10,AZ,62,7276316 +2023-11-11,AZ,74,7276316 +2023-11-12,AZ,64,7276316 +2023-11-13,AZ,86,7276316 +2023-11-14,AZ,89,7276316 +2023-11-15,AZ,71,7276316 +2023-11-16,AZ,94,7276316 +2023-11-17,AZ,82,7276316 +2023-11-18,AZ,88,7276316 +2023-11-19,AZ,77,7276316 +2023-11-20,AZ,87,7276316 +2023-11-21,AZ,76,7276316 +2023-11-22,AZ,70,7276316 +2023-11-23,AZ,73,7276316 +2023-11-24,AZ,76,7276316 +2023-11-25,AZ,61,7276316 +2023-11-26,AZ,64,7276316 +2023-11-27,AZ,62,7276316 +2023-11-28,AZ,86,7276316 +2023-11-29,AZ,87,7276316 +2023-11-30,AZ,78,7276316 +2023-12-01,AZ,82,7276316 +2023-12-02,AZ,66,7276316 +2023-12-03,AZ,67,7276316 +2023-12-04,AZ,79,7276316 +2023-12-05,AZ,58,7276316 +2023-12-06,AZ,61,7276316 +2023-12-07,AZ,62,7276316 +2023-12-08,AZ,55,7276316 +2023-12-09,AZ,68,7276316 +2023-12-10,AZ,68,7276316 +2023-12-11,AZ,77,7276316 +2023-12-12,AZ,84,7276316 +2023-12-13,AZ,63,7276316 +2023-12-14,AZ,53,7276316 +2023-12-15,AZ,76,7276316 +2023-12-16,AZ,66,7276316 +2023-12-17,AZ,71,7276316 +2023-12-18,AZ,72,7276316 +2023-12-19,AZ,82,7276316 +2023-12-20,AZ,96,7276316 +2023-12-21,AZ,76,7276316 +2023-12-22,AZ,71,7276316 +2023-12-23,AZ,85,7276316 +2023-12-24,AZ,96,7276316 +2023-12-25,AZ,79,7276316 +2023-12-26,AZ,84,7276316 +2023-12-27,AZ,121,7276316 +2023-12-28,AZ,95,7276316 +2023-12-29,AZ,102,7276316 +2023-12-30,AZ,99,7276316 +2023-12-31,AZ,99,7276316 +2024-01-01,AZ,85,7276316 +2024-01-02,AZ,79,7276316 +2024-01-03,AZ,103,7276316 +2024-01-04,AZ,77,7276316 +2024-01-05,AZ,84,7276316 +2024-01-06,AZ,83,7276316 +2024-01-07,AZ,94,7276316 +2024-01-08,AZ,80,7276316 +2024-01-09,AZ,96,7276316 +2024-01-10,AZ,75,7276316 +2024-01-11,AZ,73,7276316 +2024-01-12,AZ,77,7276316 +2024-01-13,AZ,57,7276316 +2024-01-14,AZ,73,7276316 +2024-01-15,AZ,82,7276316 +2024-01-16,AZ,89,7276316 +2024-01-17,AZ,71,7276316 +2024-01-18,AZ,61,7276316 +2024-01-19,AZ,62,7276316 +2022-12-31,CA,700,39237836 +2023-01-01,CA,676,39237836 +2023-01-02,CA,685,39237836 +2023-01-03,CA,754,39237836 +2023-01-04,CA,696,39237836 +2023-01-05,CA,704,39237836 +2023-01-06,CA,572,39237836 +2023-01-07,CA,626,39237836 +2023-01-08,CA,545,39237836 +2023-01-09,CA,600,39237836 +2023-01-10,CA,615,39237836 +2023-01-11,CA,574,39237836 +2023-01-12,CA,600,39237836 +2023-01-13,CA,543,39237836 +2023-01-14,CA,435,39237836 +2023-01-15,CA,464,39237836 +2023-01-16,CA,516,39237836 +2023-01-17,CA,480,39237836 +2023-01-18,CA,445,39237836 +2023-01-19,CA,446,39237836 +2023-01-20,CA,395,39237836 +2023-01-21,CA,334,39237836 +2023-01-22,CA,338,39237836 +2023-01-23,CA,438,39237836 +2023-01-24,CA,441,39237836 +2023-01-25,CA,428,39237836 +2023-01-26,CA,414,39237836 +2023-01-27,CA,409,39237836 +2023-01-28,CA,353,39237836 +2023-01-29,CA,345,39237836 +2023-01-30,CA,426,39237836 +2023-01-31,CA,425,39237836 +2023-02-01,CA,441,39237836 +2023-02-02,CA,392,39237836 +2023-02-03,CA,423,39237836 +2023-02-04,CA,383,39237836 +2023-02-05,CA,396,39237836 +2023-02-06,CA,435,39237836 +2023-02-07,CA,460,39237836 +2023-02-08,CA,480,39237836 +2023-02-09,CA,490,39237836 +2023-02-10,CA,417,39237836 +2023-02-11,CA,392,39237836 +2023-02-12,CA,371,39237836 +2023-02-13,CA,427,39237836 +2023-02-14,CA,490,39237836 +2023-02-15,CA,449,39237836 +2023-02-16,CA,423,39237836 +2023-02-17,CA,426,39237836 +2023-02-18,CA,395,39237836 +2023-02-19,CA,419,39237836 +2023-02-20,CA,490,39237836 +2023-02-21,CA,477,39237836 +2023-02-22,CA,436,39237836 +2023-02-23,CA,422,39237836 +2023-02-24,CA,449,39237836 +2023-02-25,CA,391,39237836 +2023-02-26,CA,358,39237836 +2023-02-27,CA,485,39237836 +2023-02-28,CA,410,39237836 +2023-03-01,CA,449,39237836 +2023-03-02,CA,449,39237836 +2023-03-03,CA,396,39237836 +2023-03-04,CA,371,39237836 +2023-03-05,CA,351,39237836 +2023-03-06,CA,415,39237836 +2023-03-07,CA,399,39237836 +2023-03-08,CA,372,39237836 +2023-03-09,CA,381,39237836 +2023-03-10,CA,381,39237836 +2023-03-11,CA,304,39237836 +2023-03-12,CA,305,39237836 +2023-03-13,CA,402,39237836 +2023-03-14,CA,343,39237836 +2023-03-15,CA,340,39237836 +2023-03-16,CA,317,39237836 +2023-03-17,CA,306,39237836 +2023-03-18,CA,284,39237836 +2023-03-19,CA,244,39237836 +2023-03-20,CA,322,39237836 +2023-03-21,CA,312,39237836 +2023-03-22,CA,294,39237836 +2023-03-23,CA,281,39237836 +2023-03-24,CA,280,39237836 +2023-03-25,CA,237,39237836 +2023-03-26,CA,217,39237836 +2023-03-27,CA,289,39237836 +2023-03-28,CA,310,39237836 +2023-03-29,CA,293,39237836 +2023-03-30,CA,266,39237836 +2023-03-31,CA,283,39237836 +2023-04-01,CA,240,39237836 +2023-04-02,CA,249,39237836 +2023-04-03,CA,303,39237836 +2023-04-04,CA,281,39237836 +2023-04-05,CA,270,39237836 +2023-04-06,CA,260,39237836 +2023-04-07,CA,216,39237836 +2023-04-08,CA,220,39237836 +2023-04-09,CA,240,39237836 +2023-04-10,CA,289,39237836 +2023-04-11,CA,249,39237836 +2023-04-12,CA,262,39237836 +2023-04-13,CA,260,39237836 +2023-04-14,CA,251,39237836 +2023-04-15,CA,200,39237836 +2023-04-16,CA,221,39237836 +2023-04-17,CA,268,39237836 +2023-04-18,CA,231,39237836 +2023-04-19,CA,265,39237836 +2023-04-20,CA,236,39237836 +2023-04-21,CA,235,39237836 +2023-04-22,CA,203,39237836 +2023-04-23,CA,209,39237836 +2023-04-24,CA,259,39237836 +2023-04-25,CA,211,39237836 +2023-04-26,CA,250,39237836 +2023-04-27,CA,201,39237836 +2023-04-28,CA,241,39237836 +2023-04-29,CA,181,39237836 +2023-04-30,CA,183,39237836 +2023-05-01,CA,190,39237836 +2023-05-02,CA,198,39237836 +2023-05-03,CA,184,39237836 +2023-05-04,CA,186,39237836 +2023-05-05,CA,188,39237836 +2023-05-06,CA,173,39237836 +2023-05-07,CA,173,39237836 +2023-05-08,CA,205,39237836 +2023-05-09,CA,219,39237836 +2023-05-10,CA,209,39237836 +2023-05-11,CA,201,39237836 +2023-05-12,CA,192,39237836 +2023-05-13,CA,176,39237836 +2023-05-14,CA,187,39237836 +2023-05-15,CA,222,39237836 +2023-05-16,CA,193,39237836 +2023-05-17,CA,176,39237836 +2023-05-18,CA,223,39237836 +2023-05-19,CA,197,39237836 +2023-05-20,CA,169,39237836 +2023-05-21,CA,198,39237836 +2023-05-22,CA,187,39237836 +2023-05-23,CA,200,39237836 +2023-05-24,CA,209,39237836 +2023-05-25,CA,194,39237836 +2023-05-26,CA,210,39237836 +2023-05-27,CA,166,39237836 +2023-05-28,CA,175,39237836 +2023-05-29,CA,163,39237836 +2023-05-30,CA,197,39237836 +2023-05-31,CA,187,39237836 +2023-06-01,CA,167,39237836 +2023-06-02,CA,166,39237836 +2023-06-03,CA,174,39237836 +2023-06-04,CA,155,39237836 +2023-06-05,CA,199,39237836 +2023-06-06,CA,167,39237836 +2023-06-07,CA,200,39237836 +2023-06-08,CA,171,39237836 +2023-06-09,CA,150,39237836 +2023-06-10,CA,155,39237836 +2023-06-11,CA,159,39237836 +2023-06-12,CA,193,39237836 +2023-06-13,CA,191,39237836 +2023-06-14,CA,201,39237836 +2023-06-15,CA,191,39237836 +2023-06-16,CA,178,39237836 +2023-06-17,CA,155,39237836 +2023-06-18,CA,140,39237836 +2023-06-19,CA,175,39237836 +2023-06-20,CA,160,39237836 +2023-06-21,CA,200,39237836 +2023-06-22,CA,187,39237836 +2023-06-23,CA,168,39237836 +2023-06-24,CA,152,39237836 +2023-06-25,CA,165,39237836 +2023-06-26,CA,169,39237836 +2023-06-27,CA,218,39237836 +2023-06-28,CA,152,39237836 +2023-06-29,CA,152,39237836 +2023-06-30,CA,155,39237836 +2023-07-01,CA,158,39237836 +2023-07-02,CA,162,39237836 +2023-07-03,CA,184,39237836 +2023-07-04,CA,156,39237836 +2023-07-05,CA,171,39237836 +2023-07-06,CA,182,39237836 +2023-07-07,CA,159,39237836 +2023-07-08,CA,165,39237836 +2023-07-09,CA,174,39237836 +2023-07-10,CA,188,39237836 +2023-07-11,CA,196,39237836 +2023-07-12,CA,147,39237836 +2023-07-13,CA,189,39237836 +2023-07-14,CA,167,39237836 +2023-07-15,CA,189,39237836 +2023-07-16,CA,163,39237836 +2023-07-17,CA,225,39237836 +2023-07-18,CA,217,39237836 +2023-07-19,CA,184,39237836 +2023-07-20,CA,200,39237836 +2023-07-21,CA,189,39237836 +2023-07-22,CA,172,39237836 +2023-07-23,CA,183,39237836 +2023-07-24,CA,231,39237836 +2023-07-25,CA,186,39237836 +2023-07-26,CA,202,39237836 +2023-07-27,CA,227,39237836 +2023-07-28,CA,218,39237836 +2023-07-29,CA,210,39237836 +2023-07-30,CA,185,39237836 +2023-07-31,CA,245,39237836 +2023-08-01,CA,235,39237836 +2023-08-02,CA,246,39237836 +2023-08-03,CA,250,39237836 +2023-08-04,CA,247,39237836 +2023-08-05,CA,243,39237836 +2023-08-06,CA,250,39237836 +2023-08-07,CA,244,39237836 +2023-08-08,CA,310,39237836 +2023-08-09,CA,285,39237836 +2023-08-10,CA,270,39237836 +2023-08-11,CA,355,39237836 +2023-08-12,CA,290,39237836 +2023-08-13,CA,323,39237836 +2023-08-14,CA,336,39237836 +2023-08-15,CA,365,39237836 +2023-08-16,CA,350,39237836 +2023-08-17,CA,328,39237836 +2023-08-18,CA,326,39237836 +2023-08-19,CA,341,39237836 +2023-08-20,CA,301,39237836 +2023-08-21,CA,378,39237836 +2023-08-22,CA,391,39237836 +2023-08-23,CA,391,39237836 +2023-08-24,CA,401,39237836 +2023-08-25,CA,376,39237836 +2023-08-26,CA,327,39237836 +2023-08-27,CA,324,39237836 +2023-08-28,CA,409,39237836 +2023-08-29,CA,434,39237836 +2023-08-30,CA,421,39237836 +2023-08-31,CA,392,39237836 +2023-09-01,CA,392,39237836 +2023-09-02,CA,371,39237836 +2023-09-03,CA,367,39237836 +2023-09-04,CA,375,39237836 +2023-09-05,CA,434,39237836 +2023-09-06,CA,436,39237836 +2023-09-07,CA,389,39237836 +2023-09-08,CA,425,39237836 +2023-09-09,CA,357,39237836 +2023-09-10,CA,333,39237836 +2023-09-11,CA,413,39237836 +2023-09-12,CA,398,39237836 +2023-09-13,CA,420,39237836 +2023-09-14,CA,406,39237836 +2023-09-15,CA,350,39237836 +2023-09-16,CA,375,39237836 +2023-09-17,CA,358,39237836 +2023-09-18,CA,401,39237836 +2023-09-19,CA,378,39237836 +2023-09-20,CA,352,39237836 +2023-09-21,CA,389,39237836 +2023-09-22,CA,342,39237836 +2023-09-23,CA,303,39237836 +2023-09-24,CA,310,39237836 +2023-09-25,CA,325,39237836 +2023-09-26,CA,340,39237836 +2023-09-27,CA,305,39237836 +2023-09-28,CA,297,39237836 +2023-09-29,CA,299,39237836 +2023-09-30,CA,251,39237836 +2023-10-01,CA,223,39237836 +2023-10-02,CA,319,39237836 +2023-10-03,CA,276,39237836 +2023-10-04,CA,281,39237836 +2023-10-05,CA,303,39237836 +2023-10-06,CA,261,39237836 +2023-10-07,CA,287,39237836 +2023-10-08,CA,222,39237836 +2023-10-09,CA,267,39237836 +2023-10-10,CA,247,39237836 +2023-10-11,CA,283,39237836 +2023-10-12,CA,248,39237836 +2023-10-13,CA,239,39237836 +2023-10-14,CA,229,39237836 +2023-10-15,CA,246,39237836 +2023-10-16,CA,265,39237836 +2023-10-17,CA,299,39237836 +2023-10-18,CA,256,39237836 +2023-10-19,CA,274,39237836 +2023-10-20,CA,248,39237836 +2023-10-21,CA,235,39237836 +2023-10-22,CA,237,39237836 +2023-10-23,CA,237,39237836 +2023-10-24,CA,219,39237836 +2023-10-25,CA,227,39237836 +2023-10-26,CA,203,39237836 +2023-10-27,CA,231,39237836 +2023-10-28,CA,199,39237836 +2023-10-29,CA,226,39237836 +2023-10-30,CA,248,39237836 +2023-10-31,CA,240,39237836 +2023-11-01,CA,242,39237836 +2023-11-02,CA,248,39237836 +2023-11-03,CA,251,39237836 +2023-11-04,CA,224,39237836 +2023-11-05,CA,221,39237836 +2023-11-06,CA,259,39237836 +2023-11-07,CA,246,39237836 +2023-11-08,CA,243,39237836 +2023-11-09,CA,292,39237836 +2023-11-10,CA,275,39237836 +2023-11-11,CA,277,39237836 +2023-11-12,CA,250,39237836 +2023-11-13,CA,299,39237836 +2023-11-14,CA,307,39237836 +2023-11-15,CA,290,39237836 +2023-11-16,CA,294,39237836 +2023-11-17,CA,296,39237836 +2023-11-18,CA,281,39237836 +2023-11-19,CA,277,39237836 +2023-11-20,CA,217,39237836 +2023-11-21,CA,291,39237836 +2023-11-22,CA,315,39237836 +2023-11-23,CA,292,39237836 +2023-11-24,CA,358,39237836 +2023-11-25,CA,339,39237836 +2023-11-26,CA,340,39237836 +2023-11-27,CA,400,39237836 +2023-11-28,CA,357,39237836 +2023-11-29,CA,383,39237836 +2023-11-30,CA,370,39237836 +2023-12-01,CA,401,39237836 +2023-12-02,CA,360,39237836 +2023-12-03,CA,322,39237836 +2023-12-04,CA,399,39237836 +2023-12-05,CA,411,39237836 +2023-12-06,CA,346,39237836 +2023-12-07,CA,349,39237836 +2023-12-08,CA,364,39237836 +2023-12-09,CA,386,39237836 +2023-12-10,CA,362,39237836 +2023-12-11,CA,436,39237836 +2023-12-12,CA,405,39237836 +2023-12-13,CA,445,39237836 +2023-12-14,CA,417,39237836 +2023-12-15,CA,435,39237836 +2023-12-16,CA,391,39237836 +2023-12-17,CA,411,39237836 +2023-12-18,CA,443,39237836 +2023-12-19,CA,564,39237836 +2023-12-20,CA,538,39237836 +2023-12-21,CA,518,39237836 +2023-12-22,CA,476,39237836 +2023-12-23,CA,460,39237836 +2023-12-24,CA,483,39237836 +2023-12-25,CA,482,39237836 +2023-12-26,CA,570,39237836 +2023-12-27,CA,555,39237836 +2023-12-28,CA,587,39237836 +2023-12-29,CA,619,39237836 +2023-12-30,CA,523,39237836 +2023-12-31,CA,525,39237836 +2024-01-01,CA,500,39237836 +2024-01-02,CA,565,39237836 +2024-01-03,CA,528,39237836 +2024-01-04,CA,565,39237836 +2024-01-05,CA,465,39237836 +2024-01-06,CA,416,39237836 +2024-01-07,CA,439,39237836 +2024-01-08,CA,457,39237836 +2024-01-09,CA,478,39237836 +2024-01-10,CA,541,39237836 +2024-01-11,CA,507,39237836 +2024-01-12,CA,471,39237836 +2024-01-13,CA,408,39237836 +2024-01-14,CA,434,39237836 +2024-01-15,CA,423,39237836 +2024-01-16,CA,450,39237836 +2024-01-17,CA,476,39237836 +2024-01-18,CA,431,39237836 +2024-01-19,CA,455,39237836 +2022-12-31,CO,62,5812069 +2023-01-01,CO,64,5812069 +2023-01-02,CO,72,5812069 +2023-01-03,CO,65,5812069 +2023-01-04,CO,56,5812069 +2023-01-05,CO,66,5812069 +2023-01-06,CO,57,5812069 +2023-01-07,CO,40,5812069 +2023-01-08,CO,52,5812069 +2023-01-09,CO,45,5812069 +2023-01-10,CO,48,5812069 +2023-01-11,CO,48,5812069 +2023-01-12,CO,45,5812069 +2023-01-13,CO,37,5812069 +2023-01-14,CO,42,5812069 +2023-01-15,CO,29,5812069 +2023-01-16,CO,39,5812069 +2023-01-17,CO,32,5812069 +2023-01-18,CO,62,5812069 +2023-01-19,CO,41,5812069 +2023-01-20,CO,40,5812069 +2023-01-21,CO,33,5812069 +2023-01-22,CO,32,5812069 +2023-01-23,CO,45,5812069 +2023-01-24,CO,42,5812069 +2023-01-25,CO,34,5812069 +2023-01-26,CO,49,5812069 +2023-01-27,CO,37,5812069 +2023-01-28,CO,29,5812069 +2023-01-29,CO,36,5812069 +2023-01-30,CO,50,5812069 +2023-01-31,CO,47,5812069 +2023-02-01,CO,47,5812069 +2023-02-02,CO,46,5812069 +2023-02-03,CO,29,5812069 +2023-02-04,CO,27,5812069 +2023-02-05,CO,44,5812069 +2023-02-06,CO,44,5812069 +2023-02-07,CO,51,5812069 +2023-02-08,CO,48,5812069 +2023-02-09,CO,57,5812069 +2023-02-10,CO,41,5812069 +2023-02-11,CO,35,5812069 +2023-02-12,CO,40,5812069 +2023-02-13,CO,56,5812069 +2023-02-14,CO,40,5812069 +2023-02-15,CO,37,5812069 +2023-02-16,CO,69,5812069 +2023-02-17,CO,55,5812069 +2023-02-18,CO,55,5812069 +2023-02-19,CO,49,5812069 +2023-02-20,CO,39,5812069 +2023-02-21,CO,59,5812069 +2023-02-22,CO,43,5812069 +2023-02-23,CO,45,5812069 +2023-02-24,CO,62,5812069 +2023-02-25,CO,47,5812069 +2023-02-26,CO,52,5812069 +2023-02-27,CO,40,5812069 +2023-02-28,CO,52,5812069 +2023-03-01,CO,44,5812069 +2023-03-02,CO,48,5812069 +2023-03-03,CO,58,5812069 +2023-03-04,CO,35,5812069 +2023-03-05,CO,47,5812069 +2023-03-06,CO,58,5812069 +2023-03-07,CO,33,5812069 +2023-03-08,CO,53,5812069 +2023-03-09,CO,38,5812069 +2023-03-10,CO,43,5812069 +2023-03-11,CO,35,5812069 +2023-03-12,CO,39,5812069 +2023-03-13,CO,45,5812069 +2023-03-14,CO,60,5812069 +2023-03-15,CO,57,5812069 +2023-03-16,CO,24,5812069 +2023-03-17,CO,53,5812069 +2023-03-18,CO,33,5812069 +2023-03-19,CO,35,5812069 +2023-03-20,CO,44,5812069 +2023-03-21,CO,49,5812069 +2023-03-22,CO,51,5812069 +2023-03-23,CO,47,5812069 +2023-03-24,CO,42,5812069 +2023-03-25,CO,35,5812069 +2023-03-26,CO,28,5812069 +2023-03-27,CO,48,5812069 +2023-03-28,CO,43,5812069 +2023-03-29,CO,43,5812069 +2023-03-30,CO,42,5812069 +2023-03-31,CO,31,5812069 +2023-04-01,CO,30,5812069 +2023-04-02,CO,46,5812069 +2023-04-03,CO,44,5812069 +2023-04-04,CO,37,5812069 +2023-04-05,CO,22,5812069 +2023-04-06,CO,33,5812069 +2023-04-07,CO,35,5812069 +2023-04-08,CO,34,5812069 +2023-04-09,CO,36,5812069 +2023-04-10,CO,37,5812069 +2023-04-11,CO,35,5812069 +2023-04-12,CO,50,5812069 +2023-04-13,CO,40,5812069 +2023-04-14,CO,41,5812069 +2023-04-15,CO,38,5812069 +2023-04-16,CO,17,5812069 +2023-04-17,CO,29,5812069 +2023-04-18,CO,35,5812069 +2023-04-19,CO,36,5812069 +2023-04-20,CO,27,5812069 +2023-04-21,CO,20,5812069 +2023-04-22,CO,17,5812069 +2023-04-23,CO,22,5812069 +2023-04-24,CO,23,5812069 +2023-04-25,CO,28,5812069 +2023-04-26,CO,20,5812069 +2023-04-27,CO,23,5812069 +2023-04-28,CO,17,5812069 +2023-04-29,CO,14,5812069 +2023-04-30,CO,27,5812069 +2023-05-01,CO,26,5812069 +2023-05-02,CO,27,5812069 +2023-05-03,CO,28,5812069 +2023-05-04,CO,20,5812069 +2023-05-05,CO,28,5812069 +2023-05-06,CO,14,5812069 +2023-05-07,CO,20,5812069 +2023-05-08,CO,20,5812069 +2023-05-09,CO,19,5812069 +2023-05-10,CO,24,5812069 +2023-05-11,CO,29,5812069 +2023-05-12,CO,14,5812069 +2023-05-13,CO,20,5812069 +2023-05-14,CO,16,5812069 +2023-05-15,CO,18,5812069 +2023-05-16,CO,26,5812069 +2023-05-17,CO,20,5812069 +2023-05-18,CO,30,5812069 +2023-05-19,CO,13,5812069 +2023-05-20,CO,13,5812069 +2023-05-21,CO,17,5812069 +2023-05-22,CO,23,5812069 +2023-05-23,CO,26,5812069 +2023-05-24,CO,20,5812069 +2023-05-25,CO,13,5812069 +2023-05-26,CO,17,5812069 +2023-05-27,CO,15,5812069 +2023-05-28,CO,13,5812069 +2023-05-29,CO,11,5812069 +2023-05-30,CO,19,5812069 +2023-05-31,CO,10,5812069 +2023-06-01,CO,23,5812069 +2023-06-02,CO,14,5812069 +2023-06-03,CO,16,5812069 +2023-06-04,CO,12,5812069 +2023-06-05,CO,12,5812069 +2023-06-06,CO,14,5812069 +2023-06-07,CO,14,5812069 +2023-06-08,CO,14,5812069 +2023-06-09,CO,16,5812069 +2023-06-10,CO,6,5812069 +2023-06-11,CO,7,5812069 +2023-06-12,CO,13,5812069 +2023-06-13,CO,11,5812069 +2023-06-14,CO,16,5812069 +2023-06-15,CO,16,5812069 +2023-06-16,CO,11,5812069 +2023-06-17,CO,12,5812069 +2023-06-18,CO,13,5812069 +2023-06-19,CO,13,5812069 +2023-06-20,CO,20,5812069 +2023-06-21,CO,17,5812069 +2023-06-22,CO,11,5812069 +2023-06-23,CO,12,5812069 +2023-06-24,CO,12,5812069 +2023-06-25,CO,11,5812069 +2023-06-26,CO,11,5812069 +2023-06-27,CO,14,5812069 +2023-06-28,CO,11,5812069 +2023-06-29,CO,11,5812069 +2023-06-30,CO,13,5812069 +2023-07-01,CO,3,5812069 +2023-07-02,CO,7,5812069 +2023-07-03,CO,10,5812069 +2023-07-04,CO,8,5812069 +2023-07-05,CO,10,5812069 +2023-07-06,CO,13,5812069 +2023-07-07,CO,10,5812069 +2023-07-08,CO,11,5812069 +2023-07-09,CO,7,5812069 +2023-07-10,CO,12,5812069 +2023-07-11,CO,10,5812069 +2023-07-12,CO,16,5812069 +2023-07-13,CO,18,5812069 +2023-07-14,CO,10,5812069 +2023-07-15,CO,3,5812069 +2023-07-16,CO,16,5812069 +2023-07-17,CO,14,5812069 +2023-07-18,CO,11,5812069 +2023-07-19,CO,19,5812069 +2023-07-20,CO,17,5812069 +2023-07-21,CO,12,5812069 +2023-07-22,CO,12,5812069 +2023-07-23,CO,14,5812069 +2023-07-24,CO,7,5812069 +2023-07-25,CO,9,5812069 +2023-07-26,CO,11,5812069 +2023-07-27,CO,16,5812069 +2023-07-28,CO,14,5812069 +2023-07-29,CO,15,5812069 +2023-07-30,CO,9,5812069 +2023-07-31,CO,17,5812069 +2023-08-01,CO,11,5812069 +2023-08-02,CO,24,5812069 +2023-08-03,CO,23,5812069 +2023-08-04,CO,14,5812069 +2023-08-05,CO,14,5812069 +2023-08-06,CO,12,5812069 +2023-08-07,CO,21,5812069 +2023-08-08,CO,21,5812069 +2023-08-09,CO,20,5812069 +2023-08-10,CO,26,5812069 +2023-08-11,CO,20,5812069 +2023-08-12,CO,16,5812069 +2023-08-13,CO,17,5812069 +2023-08-14,CO,24,5812069 +2023-08-15,CO,23,5812069 +2023-08-16,CO,20,5812069 +2023-08-17,CO,20,5812069 +2023-08-18,CO,25,5812069 +2023-08-19,CO,18,5812069 +2023-08-20,CO,24,5812069 +2023-08-21,CO,26,5812069 +2023-08-22,CO,19,5812069 +2023-08-23,CO,35,5812069 +2023-08-24,CO,38,5812069 +2023-08-25,CO,32,5812069 +2023-08-26,CO,23,5812069 +2023-08-27,CO,31,5812069 +2023-08-28,CO,39,5812069 +2023-08-29,CO,34,5812069 +2023-08-30,CO,46,5812069 +2023-08-31,CO,34,5812069 +2023-09-01,CO,32,5812069 +2023-09-02,CO,32,5812069 +2023-09-03,CO,32,5812069 +2023-09-04,CO,38,5812069 +2023-09-05,CO,39,5812069 +2023-09-06,CO,44,5812069 +2023-09-07,CO,42,5812069 +2023-09-08,CO,32,5812069 +2023-09-09,CO,40,5812069 +2023-09-10,CO,51,5812069 +2023-09-11,CO,41,5812069 +2023-09-12,CO,44,5812069 +2023-09-13,CO,42,5812069 +2023-09-14,CO,38,5812069 +2023-09-15,CO,43,5812069 +2023-09-16,CO,34,5812069 +2023-09-17,CO,32,5812069 +2023-09-18,CO,55,5812069 +2023-09-19,CO,37,5812069 +2023-09-20,CO,45,5812069 +2023-09-21,CO,44,5812069 +2023-09-22,CO,40,5812069 +2023-09-23,CO,48,5812069 +2023-09-24,CO,53,5812069 +2023-09-25,CO,37,5812069 +2023-09-26,CO,42,5812069 +2023-09-27,CO,46,5812069 +2023-09-28,CO,48,5812069 +2023-09-29,CO,49,5812069 +2023-09-30,CO,32,5812069 +2023-10-01,CO,34,5812069 +2023-10-02,CO,69,5812069 +2023-10-03,CO,37,5812069 +2023-10-04,CO,48,5812069 +2023-10-05,CO,55,5812069 +2023-10-06,CO,50,5812069 +2023-10-07,CO,64,5812069 +2023-10-08,CO,54,5812069 +2023-10-09,CO,71,5812069 +2023-10-10,CO,44,5812069 +2023-10-11,CO,66,5812069 +2023-10-12,CO,68,5812069 +2023-10-13,CO,50,5812069 +2023-10-14,CO,57,5812069 +2023-10-15,CO,44,5812069 +2023-10-16,CO,45,5812069 +2023-10-17,CO,69,5812069 +2023-10-18,CO,78,5812069 +2023-10-19,CO,67,5812069 +2023-10-20,CO,61,5812069 +2023-10-21,CO,61,5812069 +2023-10-22,CO,61,5812069 +2023-10-23,CO,75,5812069 +2023-10-24,CO,69,5812069 +2023-10-25,CO,69,5812069 +2023-10-26,CO,64,5812069 +2023-10-27,CO,67,5812069 +2023-10-28,CO,59,5812069 +2023-10-29,CO,60,5812069 +2023-10-30,CO,84,5812069 +2023-10-31,CO,50,5812069 +2023-11-01,CO,51,5812069 +2023-11-02,CO,71,5812069 +2023-11-03,CO,65,5812069 +2023-11-04,CO,54,5812069 +2023-11-05,CO,59,5812069 +2023-11-06,CO,75,5812069 +2023-11-07,CO,57,5812069 +2023-11-08,CO,70,5812069 +2023-11-09,CO,63,5812069 +2023-11-10,CO,78,5812069 +2023-11-11,CO,66,5812069 +2023-11-12,CO,67,5812069 +2023-11-13,CO,78,5812069 +2023-11-14,CO,71,5812069 +2023-11-15,CO,72,5812069 +2023-11-16,CO,85,5812069 +2023-11-17,CO,71,5812069 +2023-11-18,CO,66,5812069 +2023-11-19,CO,77,5812069 +2023-11-20,CO,69,5812069 +2023-11-21,CO,75,5812069 +2023-11-22,CO,65,5812069 +2023-11-23,CO,75,5812069 +2023-11-24,CO,66,5812069 +2023-11-25,CO,63,5812069 +2023-11-26,CO,58,5812069 +2023-11-27,CO,90,5812069 +2023-11-28,CO,69,5812069 +2023-11-29,CO,76,5812069 +2023-11-30,CO,78,5812069 +2023-12-01,CO,74,5812069 +2023-12-02,CO,71,5812069 +2023-12-03,CO,74,5812069 +2023-12-04,CO,71,5812069 +2023-12-05,CO,80,5812069 +2023-12-06,CO,60,5812069 +2023-12-07,CO,46,5812069 +2023-12-08,CO,65,5812069 +2023-12-09,CO,54,5812069 +2023-12-10,CO,61,5812069 +2023-12-11,CO,74,5812069 +2023-12-12,CO,42,5812069 +2023-12-13,CO,56,5812069 +2023-12-14,CO,65,5812069 +2023-12-15,CO,57,5812069 +2023-12-16,CO,46,5812069 +2023-12-17,CO,58,5812069 +2023-12-18,CO,59,5812069 +2023-12-19,CO,79,5812069 +2023-12-20,CO,59,5812069 +2023-12-21,CO,63,5812069 +2023-12-22,CO,71,5812069 +2023-12-23,CO,68,5812069 +2023-12-24,CO,57,5812069 +2023-12-25,CO,63,5812069 +2023-12-26,CO,70,5812069 +2023-12-27,CO,56,5812069 +2023-12-28,CO,82,5812069 +2023-12-29,CO,62,5812069 +2023-12-30,CO,62,5812069 +2023-12-31,CO,66,5812069 +2024-01-01,CO,66,5812069 +2024-01-02,CO,72,5812069 +2024-01-03,CO,77,5812069 +2024-01-04,CO,70,5812069 +2024-01-05,CO,58,5812069 +2024-01-06,CO,63,5812069 +2024-01-07,CO,55,5812069 +2024-01-08,CO,61,5812069 +2024-01-09,CO,72,5812069 +2024-01-10,CO,57,5812069 +2024-01-11,CO,73,5812069 +2024-01-12,CO,59,5812069 +2024-01-13,CO,37,5812069 +2024-01-14,CO,42,5812069 +2024-01-15,CO,53,5812069 +2024-01-16,CO,54,5812069 +2024-01-17,CO,46,5812069 +2024-01-18,CO,63,5812069 +2024-01-19,CO,48,5812069 +2022-12-31,CT,99,3605597 +2023-01-01,CT,98,3605597 +2023-01-02,CT,126,3605597 +2023-01-03,CT,83,3605597 +2023-01-04,CT,156,3605597 +2023-01-05,CT,147,3605597 +2023-01-06,CT,92,3605597 +2023-01-07,CT,85,3605597 +2023-01-08,CT,98,3605597 +2023-01-09,CT,140,3605597 +2023-01-10,CT,109,3605597 +2023-01-11,CT,129,3605597 +2023-01-12,CT,123,3605597 +2023-01-13,CT,114,3605597 +2023-01-14,CT,104,3605597 +2023-01-15,CT,71,3605597 +2023-01-16,CT,87,3605597 +2023-01-17,CT,94,3605597 +2023-01-18,CT,104,3605597 +2023-01-19,CT,101,3605597 +2023-01-20,CT,94,3605597 +2023-01-21,CT,70,3605597 +2023-01-22,CT,66,3605597 +2023-01-23,CT,71,3605597 +2023-01-24,CT,84,3605597 +2023-01-25,CT,82,3605597 +2023-01-26,CT,88,3605597 +2023-01-27,CT,74,3605597 +2023-01-28,CT,75,3605597 +2023-01-29,CT,57,3605597 +2023-01-30,CT,74,3605597 +2023-01-31,CT,73,3605597 +2023-02-01,CT,74,3605597 +2023-02-02,CT,81,3605597 +2023-02-03,CT,72,3605597 +2023-02-04,CT,45,3605597 +2023-02-05,CT,48,3605597 +2023-02-06,CT,45,3605597 +2023-02-07,CT,68,3605597 +2023-02-08,CT,62,3605597 +2023-02-09,CT,65,3605597 +2023-02-10,CT,62,3605597 +2023-02-11,CT,53,3605597 +2023-02-12,CT,46,3605597 +2023-02-13,CT,53,3605597 +2023-02-14,CT,71,3605597 +2023-02-15,CT,63,3605597 +2023-02-16,CT,62,3605597 +2023-02-17,CT,51,3605597 +2023-02-18,CT,41,3605597 +2023-02-19,CT,52,3605597 +2023-02-20,CT,72,3605597 +2023-02-21,CT,58,3605597 +2023-02-22,CT,60,3605597 +2023-02-23,CT,58,3605597 +2023-02-24,CT,41,3605597 +2023-02-25,CT,34,3605597 +2023-02-26,CT,49,3605597 +2023-02-27,CT,56,3605597 +2023-02-28,CT,46,3605597 +2023-03-01,CT,53,3605597 +2023-03-02,CT,56,3605597 +2023-03-03,CT,34,3605597 +2023-03-04,CT,36,3605597 +2023-03-05,CT,39,3605597 +2023-03-06,CT,39,3605597 +2023-03-07,CT,37,3605597 +2023-03-08,CT,33,3605597 +2023-03-09,CT,48,3605597 +2023-03-10,CT,40,3605597 +2023-03-11,CT,26,3605597 +2023-03-12,CT,27,3605597 +2023-03-13,CT,32,3605597 +2023-03-14,CT,33,3605597 +2023-03-15,CT,39,3605597 +2023-03-16,CT,31,3605597 +2023-03-17,CT,24,3605597 +2023-03-18,CT,16,3605597 +2023-03-19,CT,30,3605597 +2023-03-20,CT,33,3605597 +2023-03-21,CT,24,3605597 +2023-03-22,CT,19,3605597 +2023-03-23,CT,30,3605597 +2023-03-24,CT,22,3605597 +2023-03-25,CT,22,3605597 +2023-03-26,CT,23,3605597 +2023-03-27,CT,39,3605597 +2023-03-28,CT,16,3605597 +2023-03-29,CT,30,3605597 +2023-03-30,CT,18,3605597 +2023-03-31,CT,25,3605597 +2023-04-01,CT,18,3605597 +2023-04-02,CT,17,3605597 +2023-04-03,CT,27,3605597 +2023-04-04,CT,35,3605597 +2023-04-05,CT,29,3605597 +2023-04-06,CT,21,3605597 +2023-04-07,CT,16,3605597 +2023-04-08,CT,19,3605597 +2023-04-09,CT,12,3605597 +2023-04-10,CT,17,3605597 +2023-04-11,CT,19,3605597 +2023-04-12,CT,13,3605597 +2023-04-13,CT,25,3605597 +2023-04-14,CT,29,3605597 +2023-04-15,CT,17,3605597 +2023-04-16,CT,21,3605597 +2023-04-17,CT,18,3605597 +2023-04-18,CT,20,3605597 +2023-04-19,CT,16,3605597 +2023-04-20,CT,15,3605597 +2023-04-21,CT,31,3605597 +2023-04-22,CT,20,3605597 +2023-04-23,CT,13,3605597 +2023-04-24,CT,18,3605597 +2023-04-25,CT,17,3605597 +2023-04-26,CT,20,3605597 +2023-04-27,CT,14,3605597 +2023-04-28,CT,18,3605597 +2023-04-29,CT,15,3605597 +2023-04-30,CT,19,3605597 +2023-05-01,CT,16,3605597 +2023-05-02,CT,17,3605597 +2023-05-03,CT,15,3605597 +2023-05-04,CT,10,3605597 +2023-05-05,CT,10,3605597 +2023-05-06,CT,17,3605597 +2023-05-07,CT,9,3605597 +2023-05-08,CT,17,3605597 +2023-05-09,CT,16,3605597 +2023-05-10,CT,12,3605597 +2023-05-11,CT,9,3605597 +2023-05-12,CT,10,3605597 +2023-05-13,CT,13,3605597 +2023-05-14,CT,7,3605597 +2023-05-15,CT,9,3605597 +2023-05-16,CT,20,3605597 +2023-05-17,CT,13,3605597 +2023-05-18,CT,13,3605597 +2023-05-19,CT,13,3605597 +2023-05-20,CT,7,3605597 +2023-05-21,CT,12,3605597 +2023-05-22,CT,12,3605597 +2023-05-23,CT,18,3605597 +2023-05-24,CT,8,3605597 +2023-05-25,CT,15,3605597 +2023-05-26,CT,11,3605597 +2023-05-27,CT,9,3605597 +2023-05-28,CT,11,3605597 +2023-05-29,CT,13,3605597 +2023-05-30,CT,16,3605597 +2023-05-31,CT,19,3605597 +2023-06-01,CT,16,3605597 +2023-06-02,CT,12,3605597 +2023-06-03,CT,12,3605597 +2023-06-04,CT,11,3605597 +2023-06-05,CT,11,3605597 +2023-06-06,CT,11,3605597 +2023-06-07,CT,18,3605597 +2023-06-08,CT,11,3605597 +2023-06-09,CT,13,3605597 +2023-06-10,CT,13,3605597 +2023-06-11,CT,13,3605597 +2023-06-12,CT,11,3605597 +2023-06-13,CT,8,3605597 +2023-06-14,CT,15,3605597 +2023-06-15,CT,13,3605597 +2023-06-16,CT,10,3605597 +2023-06-17,CT,9,3605597 +2023-06-18,CT,11,3605597 +2023-06-19,CT,10,3605597 +2023-06-20,CT,14,3605597 +2023-06-21,CT,14,3605597 +2023-06-22,CT,7,3605597 +2023-06-23,CT,5,3605597 +2023-06-24,CT,7,3605597 +2023-06-25,CT,14,3605597 +2023-06-26,CT,12,3605597 +2023-06-27,CT,13,3605597 +2023-06-28,CT,9,3605597 +2023-06-29,CT,9,3605597 +2023-06-30,CT,16,3605597 +2023-07-01,CT,10,3605597 +2023-07-02,CT,10,3605597 +2023-07-03,CT,8,3605597 +2023-07-04,CT,6,3605597 +2023-07-05,CT,13,3605597 +2023-07-06,CT,10,3605597 +2023-07-07,CT,9,3605597 +2023-07-08,CT,14,3605597 +2023-07-09,CT,12,3605597 +2023-07-10,CT,8,3605597 +2023-07-11,CT,17,3605597 +2023-07-12,CT,4,3605597 +2023-07-13,CT,13,3605597 +2023-07-14,CT,11,3605597 +2023-07-15,CT,4,3605597 +2023-07-16,CT,10,3605597 +2023-07-17,CT,17,3605597 +2023-07-18,CT,12,3605597 +2023-07-19,CT,22,3605597 +2023-07-20,CT,16,3605597 +2023-07-21,CT,18,3605597 +2023-07-22,CT,19,3605597 +2023-07-23,CT,8,3605597 +2023-07-24,CT,19,3605597 +2023-07-25,CT,8,3605597 +2023-07-26,CT,17,3605597 +2023-07-27,CT,15,3605597 +2023-07-28,CT,17,3605597 +2023-07-29,CT,19,3605597 +2023-07-30,CT,18,3605597 +2023-07-31,CT,13,3605597 +2023-08-01,CT,11,3605597 +2023-08-02,CT,22,3605597 +2023-08-03,CT,16,3605597 +2023-08-04,CT,24,3605597 +2023-08-05,CT,22,3605597 +2023-08-06,CT,18,3605597 +2023-08-07,CT,28,3605597 +2023-08-08,CT,26,3605597 +2023-08-09,CT,23,3605597 +2023-08-10,CT,16,3605597 +2023-08-11,CT,28,3605597 +2023-08-12,CT,23,3605597 +2023-08-13,CT,29,3605597 +2023-08-14,CT,30,3605597 +2023-08-15,CT,18,3605597 +2023-08-16,CT,22,3605597 +2023-08-17,CT,35,3605597 +2023-08-18,CT,28,3605597 +2023-08-19,CT,15,3605597 +2023-08-20,CT,20,3605597 +2023-08-21,CT,33,3605597 +2023-08-22,CT,36,3605597 +2023-08-23,CT,27,3605597 +2023-08-24,CT,32,3605597 +2023-08-25,CT,21,3605597 +2023-08-26,CT,27,3605597 +2023-08-27,CT,22,3605597 +2023-08-28,CT,24,3605597 +2023-08-29,CT,35,3605597 +2023-08-30,CT,33,3605597 +2023-08-31,CT,25,3605597 +2023-09-01,CT,29,3605597 +2023-09-02,CT,31,3605597 +2023-09-03,CT,19,3605597 +2023-09-04,CT,30,3605597 +2023-09-05,CT,30,3605597 +2023-09-06,CT,33,3605597 +2023-09-07,CT,31,3605597 +2023-09-08,CT,30,3605597 +2023-09-09,CT,23,3605597 +2023-09-10,CT,28,3605597 +2023-09-11,CT,36,3605597 +2023-09-12,CT,30,3605597 +2023-09-13,CT,29,3605597 +2023-09-14,CT,37,3605597 +2023-09-15,CT,28,3605597 +2023-09-16,CT,27,3605597 +2023-09-17,CT,39,3605597 +2023-09-18,CT,40,3605597 +2023-09-19,CT,57,3605597 +2023-09-20,CT,42,3605597 +2023-09-21,CT,40,3605597 +2023-09-22,CT,42,3605597 +2023-09-23,CT,15,3605597 +2023-09-24,CT,46,3605597 +2023-09-25,CT,47,3605597 +2023-09-26,CT,33,3605597 +2023-09-27,CT,41,3605597 +2023-09-28,CT,45,3605597 +2023-09-29,CT,34,3605597 +2023-09-30,CT,27,3605597 +2023-10-01,CT,38,3605597 +2023-10-02,CT,21,3605597 +2023-10-03,CT,43,3605597 +2023-10-04,CT,36,3605597 +2023-10-05,CT,36,3605597 +2023-10-06,CT,32,3605597 +2023-10-07,CT,26,3605597 +2023-10-08,CT,40,3605597 +2023-10-09,CT,38,3605597 +2023-10-10,CT,33,3605597 +2023-10-11,CT,32,3605597 +2023-10-12,CT,34,3605597 +2023-10-13,CT,41,3605597 +2023-10-14,CT,22,3605597 +2023-10-15,CT,39,3605597 +2023-10-16,CT,41,3605597 +2023-10-17,CT,30,3605597 +2023-10-18,CT,39,3605597 +2023-10-19,CT,27,3605597 +2023-10-20,CT,18,3605597 +2023-10-21,CT,16,3605597 +2023-10-22,CT,26,3605597 +2023-10-23,CT,47,3605597 +2023-10-24,CT,32,3605597 +2023-10-25,CT,21,3605597 +2023-10-26,CT,32,3605597 +2023-10-27,CT,30,3605597 +2023-10-28,CT,33,3605597 +2023-10-29,CT,21,3605597 +2023-10-30,CT,24,3605597 +2023-10-31,CT,21,3605597 +2023-11-01,CT,22,3605597 +2023-11-02,CT,27,3605597 +2023-11-03,CT,34,3605597 +2023-11-04,CT,28,3605597 +2023-11-05,CT,25,3605597 +2023-11-06,CT,23,3605597 +2023-11-07,CT,42,3605597 +2023-11-08,CT,35,3605597 +2023-11-09,CT,27,3605597 +2023-11-10,CT,20,3605597 +2023-11-11,CT,22,3605597 +2023-11-12,CT,20,3605597 +2023-11-13,CT,51,3605597 +2023-11-14,CT,38,3605597 +2023-11-15,CT,42,3605597 +2023-11-16,CT,46,3605597 +2023-11-17,CT,39,3605597 +2023-11-18,CT,63,3605597 +2023-11-19,CT,40,3605597 +2023-11-20,CT,41,3605597 +2023-11-21,CT,32,3605597 +2023-11-22,CT,31,3605597 +2023-11-23,CT,38,3605597 +2023-11-24,CT,51,3605597 +2023-11-25,CT,30,3605597 +2023-11-26,CT,47,3605597 +2023-11-27,CT,64,3605597 +2023-11-28,CT,54,3605597 +2023-11-29,CT,30,3605597 +2023-11-30,CT,48,3605597 +2023-12-01,CT,49,3605597 +2023-12-02,CT,39,3605597 +2023-12-03,CT,35,3605597 +2023-12-04,CT,50,3605597 +2023-12-05,CT,62,3605597 +2023-12-06,CT,46,3605597 +2023-12-07,CT,43,3605597 +2023-12-08,CT,55,3605597 +2023-12-09,CT,39,3605597 +2023-12-10,CT,36,3605597 +2023-12-11,CT,51,3605597 +2023-12-12,CT,42,3605597 +2023-12-13,CT,56,3605597 +2023-12-14,CT,58,3605597 +2023-12-15,CT,55,3605597 +2023-12-16,CT,32,3605597 +2023-12-17,CT,68,3605597 +2023-12-18,CT,68,3605597 +2023-12-19,CT,61,3605597 +2023-12-20,CT,57,3605597 +2023-12-21,CT,40,3605597 +2023-12-22,CT,38,3605597 +2023-12-23,CT,66,3605597 +2023-12-24,CT,57,3605597 +2023-12-25,CT,52,3605597 +2023-12-26,CT,45,3605597 +2023-12-27,CT,103,3605597 +2023-12-28,CT,74,3605597 +2023-12-29,CT,75,3605597 +2023-12-30,CT,62,3605597 +2023-12-31,CT,70,3605597 +2024-01-01,CT,35,3605597 +2024-01-02,CT,44,3605597 +2024-01-03,CT,42,3605597 +2024-01-04,CT,88,3605597 +2024-01-05,CT,68,3605597 +2024-01-06,CT,61,3605597 +2024-01-07,CT,57,3605597 +2024-01-08,CT,64,3605597 +2024-01-09,CT,85,3605597 +2024-01-10,CT,68,3605597 +2024-01-11,CT,76,3605597 +2024-01-12,CT,73,3605597 +2024-01-13,CT,68,3605597 +2024-01-14,CT,45,3605597 +2024-01-15,CT,70,3605597 +2024-01-16,CT,52,3605597 +2024-01-17,CT,55,3605597 +2024-01-18,CT,54,3605597 +2024-01-19,CT,38,3605597 +2022-12-31,DC,29,670050 +2023-01-01,DC,27,670050 +2023-01-02,DC,28,670050 +2023-01-03,DC,26,670050 +2023-01-04,DC,31,670050 +2023-01-05,DC,29,670050 +2023-01-06,DC,25,670050 +2023-01-07,DC,20,670050 +2023-01-08,DC,17,670050 +2023-01-09,DC,31,670050 +2023-01-10,DC,29,670050 +2023-01-11,DC,17,670050 +2023-01-12,DC,31,670050 +2023-01-13,DC,23,670050 +2023-01-14,DC,20,670050 +2023-01-15,DC,22,670050 +2023-01-16,DC,28,670050 +2023-01-17,DC,23,670050 +2023-01-18,DC,30,670050 +2023-01-19,DC,19,670050 +2023-01-20,DC,17,670050 +2023-01-21,DC,8,670050 +2023-01-22,DC,22,670050 +2023-01-23,DC,19,670050 +2023-01-24,DC,21,670050 +2023-01-25,DC,13,670050 +2023-01-26,DC,10,670050 +2023-01-27,DC,11,670050 +2023-01-28,DC,14,670050 +2023-01-29,DC,17,670050 +2023-01-30,DC,14,670050 +2023-01-31,DC,16,670050 +2023-02-01,DC,15,670050 +2023-02-02,DC,19,670050 +2023-02-03,DC,15,670050 +2023-02-04,DC,7,670050 +2023-02-05,DC,4,670050 +2023-02-06,DC,23,670050 +2023-02-07,DC,16,670050 +2023-02-08,DC,20,670050 +2023-02-09,DC,19,670050 +2023-02-10,DC,17,670050 +2023-02-11,DC,16,670050 +2023-02-12,DC,5,670050 +2023-02-13,DC,9,670050 +2023-02-14,DC,6,670050 +2023-02-15,DC,16,670050 +2023-02-16,DC,9,670050 +2023-02-17,DC,5,670050 +2023-02-18,DC,10,670050 +2023-02-19,DC,12,670050 +2023-02-20,DC,14,670050 +2023-02-21,DC,9,670050 +2023-02-22,DC,11,670050 +2023-02-23,DC,9,670050 +2023-02-24,DC,7,670050 +2023-02-25,DC,7,670050 +2023-02-26,DC,8,670050 +2023-02-27,DC,14,670050 +2023-02-28,DC,10,670050 +2023-03-01,DC,12,670050 +2023-03-02,DC,14,670050 +2023-03-03,DC,8,670050 +2023-03-04,DC,5,670050 +2023-03-05,DC,3,670050 +2023-03-06,DC,8,670050 +2023-03-07,DC,11,670050 +2023-03-08,DC,4,670050 +2023-03-09,DC,3,670050 +2023-03-10,DC,9,670050 +2023-03-11,DC,6,670050 +2023-03-12,DC,7,670050 +2023-03-13,DC,11,670050 +2023-03-14,DC,6,670050 +2023-03-15,DC,7,670050 +2023-03-16,DC,9,670050 +2023-03-17,DC,6,670050 +2023-03-18,DC,4,670050 +2023-03-19,DC,4,670050 +2023-03-20,DC,12,670050 +2023-03-21,DC,3,670050 +2023-03-22,DC,10,670050 +2023-03-23,DC,5,670050 +2023-03-24,DC,8,670050 +2023-03-25,DC,6,670050 +2023-03-26,DC,5,670050 +2023-03-27,DC,5,670050 +2023-03-28,DC,9,670050 +2023-03-29,DC,9,670050 +2023-03-30,DC,7,670050 +2023-03-31,DC,10,670050 +2023-04-01,DC,0,670050 +2023-04-02,DC,2,670050 +2023-04-03,DC,8,670050 +2023-04-04,DC,8,670050 +2023-04-05,DC,4,670050 +2023-04-06,DC,4,670050 +2023-04-07,DC,5,670050 +2023-04-08,DC,7,670050 +2023-04-09,DC,6,670050 +2023-04-10,DC,6,670050 +2023-04-11,DC,9,670050 +2023-04-12,DC,7,670050 +2023-04-13,DC,7,670050 +2023-04-14,DC,2,670050 +2023-04-15,DC,5,670050 +2023-04-16,DC,4,670050 +2023-04-17,DC,5,670050 +2023-04-18,DC,4,670050 +2023-04-19,DC,5,670050 +2023-04-20,DC,2,670050 +2023-04-21,DC,2,670050 +2023-04-22,DC,2,670050 +2023-04-23,DC,1,670050 +2023-04-24,DC,6,670050 +2023-04-25,DC,1,670050 +2023-04-26,DC,2,670050 +2023-04-27,DC,0,670050 +2023-04-28,DC,1,670050 +2023-04-29,DC,2,670050 +2023-04-30,DC,0,670050 +2023-05-01,DC,3,670050 +2023-05-02,DC,2,670050 +2023-05-03,DC,3,670050 +2023-05-04,DC,7,670050 +2023-05-05,DC,2,670050 +2023-05-06,DC,3,670050 +2023-05-07,DC,1,670050 +2023-05-08,DC,1,670050 +2023-05-09,DC,2,670050 +2023-05-10,DC,4,670050 +2023-05-11,DC,6,670050 +2023-05-12,DC,4,670050 +2023-05-13,DC,4,670050 +2023-05-14,DC,3,670050 +2023-05-15,DC,4,670050 +2023-05-16,DC,1,670050 +2023-05-17,DC,6,670050 +2023-05-18,DC,2,670050 +2023-05-19,DC,2,670050 +2023-05-20,DC,1,670050 +2023-05-21,DC,1,670050 +2023-05-22,DC,1,670050 +2023-05-23,DC,1,670050 +2023-05-24,DC,3,670050 +2023-05-25,DC,4,670050 +2023-05-26,DC,5,670050 +2023-05-27,DC,1,670050 +2023-05-28,DC,1,670050 +2023-05-29,DC,5,670050 +2023-05-30,DC,2,670050 +2023-05-31,DC,3,670050 +2023-06-01,DC,1,670050 +2023-06-02,DC,2,670050 +2023-06-03,DC,2,670050 +2023-06-04,DC,3,670050 +2023-06-05,DC,3,670050 +2023-06-06,DC,3,670050 +2023-06-07,DC,4,670050 +2023-06-08,DC,3,670050 +2023-06-09,DC,1,670050 +2023-06-10,DC,1,670050 +2023-06-11,DC,1,670050 +2023-06-12,DC,0,670050 +2023-06-13,DC,5,670050 +2023-06-14,DC,3,670050 +2023-06-15,DC,6,670050 +2023-06-16,DC,0,670050 +2023-06-17,DC,0,670050 +2023-06-18,DC,2,670050 +2023-06-19,DC,2,670050 +2023-06-20,DC,2,670050 +2023-06-21,DC,3,670050 +2023-06-22,DC,3,670050 +2023-06-23,DC,3,670050 +2023-06-24,DC,3,670050 +2023-06-25,DC,4,670050 +2023-06-26,DC,1,670050 +2023-06-27,DC,4,670050 +2023-06-28,DC,1,670050 +2023-06-29,DC,2,670050 +2023-06-30,DC,3,670050 +2023-07-01,DC,1,670050 +2023-07-02,DC,4,670050 +2023-07-03,DC,5,670050 +2023-07-04,DC,0,670050 +2023-07-05,DC,1,670050 +2023-07-06,DC,1,670050 +2023-07-07,DC,2,670050 +2023-07-08,DC,7,670050 +2023-07-09,DC,0,670050 +2023-07-10,DC,4,670050 +2023-07-11,DC,7,670050 +2023-07-12,DC,4,670050 +2023-07-13,DC,3,670050 +2023-07-14,DC,7,670050 +2023-07-15,DC,4,670050 +2023-07-16,DC,8,670050 +2023-07-17,DC,3,670050 +2023-07-18,DC,3,670050 +2023-07-19,DC,4,670050 +2023-07-20,DC,3,670050 +2023-07-21,DC,3,670050 +2023-07-22,DC,0,670050 +2023-07-23,DC,0,670050 +2023-07-24,DC,2,670050 +2023-07-25,DC,2,670050 +2023-07-26,DC,4,670050 +2023-07-27,DC,6,670050 +2023-07-28,DC,2,670050 +2023-07-29,DC,3,670050 +2023-07-30,DC,1,670050 +2023-07-31,DC,3,670050 +2023-08-01,DC,4,670050 +2023-08-02,DC,4,670050 +2023-08-03,DC,7,670050 +2023-08-04,DC,7,670050 +2023-08-05,DC,8,670050 +2023-08-06,DC,2,670050 +2023-08-07,DC,4,670050 +2023-08-08,DC,5,670050 +2023-08-09,DC,11,670050 +2023-08-10,DC,5,670050 +2023-08-11,DC,6,670050 +2023-08-12,DC,5,670050 +2023-08-13,DC,5,670050 +2023-08-14,DC,4,670050 +2023-08-15,DC,4,670050 +2023-08-16,DC,4,670050 +2023-08-17,DC,7,670050 +2023-08-18,DC,6,670050 +2023-08-19,DC,2,670050 +2023-08-20,DC,6,670050 +2023-08-21,DC,4,670050 +2023-08-22,DC,10,670050 +2023-08-23,DC,6,670050 +2023-08-24,DC,4,670050 +2023-08-25,DC,9,670050 +2023-08-26,DC,14,670050 +2023-08-27,DC,17,670050 +2023-08-28,DC,9,670050 +2023-08-29,DC,9,670050 +2023-08-30,DC,15,670050 +2023-08-31,DC,6,670050 +2023-09-01,DC,12,670050 +2023-09-02,DC,13,670050 +2023-09-03,DC,6,670050 +2023-09-04,DC,10,670050 +2023-09-05,DC,9,670050 +2023-09-06,DC,16,670050 +2023-09-07,DC,10,670050 +2023-09-08,DC,7,670050 +2023-09-09,DC,12,670050 +2023-09-10,DC,8,670050 +2023-09-11,DC,11,670050 +2023-09-12,DC,10,670050 +2023-09-13,DC,9,670050 +2023-09-14,DC,12,670050 +2023-09-15,DC,8,670050 +2023-09-16,DC,7,670050 +2023-09-17,DC,11,670050 +2023-09-18,DC,11,670050 +2023-09-19,DC,11,670050 +2023-09-20,DC,16,670050 +2023-09-21,DC,8,670050 +2023-09-22,DC,15,670050 +2023-09-23,DC,7,670050 +2023-09-24,DC,5,670050 +2023-09-25,DC,9,670050 +2023-09-26,DC,7,670050 +2023-09-27,DC,9,670050 +2023-09-28,DC,9,670050 +2023-09-29,DC,15,670050 +2023-09-30,DC,9,670050 +2023-10-01,DC,8,670050 +2023-10-02,DC,4,670050 +2023-10-03,DC,8,670050 +2023-10-04,DC,7,670050 +2023-10-05,DC,8,670050 +2023-10-06,DC,6,670050 +2023-10-07,DC,8,670050 +2023-10-08,DC,8,670050 +2023-10-09,DC,6,670050 +2023-10-10,DC,7,670050 +2023-10-11,DC,7,670050 +2023-10-12,DC,8,670050 +2023-10-13,DC,22,670050 +2023-10-14,DC,22,670050 +2023-10-15,DC,20,670050 +2023-10-16,DC,18,670050 +2023-10-17,DC,9,670050 +2023-10-18,DC,13,670050 +2023-10-19,DC,9,670050 +2023-10-20,DC,4,670050 +2023-10-21,DC,7,670050 +2023-10-22,DC,7,670050 +2023-10-23,DC,6,670050 +2023-10-24,DC,5,670050 +2023-10-25,DC,7,670050 +2023-10-26,DC,9,670050 +2023-10-27,DC,7,670050 +2023-10-28,DC,8,670050 +2023-10-29,DC,3,670050 +2023-10-30,DC,9,670050 +2023-10-31,DC,3,670050 +2023-11-01,DC,5,670050 +2023-11-02,DC,9,670050 +2023-11-03,DC,2,670050 +2023-11-04,DC,0,670050 +2023-11-05,DC,11,670050 +2023-11-06,DC,12,670050 +2023-11-07,DC,11,670050 +2023-11-08,DC,8,670050 +2023-11-09,DC,6,670050 +2023-11-10,DC,3,670050 +2023-11-11,DC,5,670050 +2023-11-12,DC,3,670050 +2023-11-13,DC,9,670050 +2023-11-14,DC,4,670050 +2023-11-15,DC,4,670050 +2023-11-16,DC,4,670050 +2023-11-17,DC,5,670050 +2023-11-18,DC,6,670050 +2023-11-19,DC,9,670050 +2023-11-20,DC,6,670050 +2023-11-21,DC,2,670050 +2023-11-22,DC,7,670050 +2023-11-23,DC,5,670050 +2023-11-24,DC,5,670050 +2023-11-25,DC,6,670050 +2023-11-26,DC,4,670050 +2023-11-27,DC,8,670050 +2023-11-28,DC,6,670050 +2023-11-29,DC,7,670050 +2023-11-30,DC,8,670050 +2023-12-01,DC,7,670050 +2023-12-02,DC,9,670050 +2023-12-03,DC,3,670050 +2023-12-04,DC,10,670050 +2023-12-05,DC,7,670050 +2023-12-06,DC,5,670050 +2023-12-07,DC,7,670050 +2023-12-08,DC,6,670050 +2023-12-09,DC,2,670050 +2023-12-10,DC,3,670050 +2023-12-11,DC,9,670050 +2023-12-12,DC,7,670050 +2023-12-13,DC,11,670050 +2023-12-14,DC,10,670050 +2023-12-15,DC,7,670050 +2023-12-16,DC,7,670050 +2023-12-17,DC,13,670050 +2023-12-18,DC,14,670050 +2023-12-19,DC,12,670050 +2023-12-20,DC,13,670050 +2023-12-21,DC,12,670050 +2023-12-22,DC,11,670050 +2023-12-23,DC,9,670050 +2023-12-24,DC,8,670050 +2023-12-25,DC,11,670050 +2023-12-26,DC,11,670050 +2023-12-27,DC,11,670050 +2023-12-28,DC,14,670050 +2023-12-29,DC,12,670050 +2023-12-30,DC,15,670050 +2023-12-31,DC,13,670050 +2024-01-01,DC,10,670050 +2024-01-02,DC,17,670050 +2024-01-03,DC,14,670050 +2024-01-04,DC,11,670050 +2024-01-05,DC,9,670050 +2024-01-06,DC,10,670050 +2024-01-07,DC,11,670050 +2024-01-08,DC,15,670050 +2024-01-09,DC,19,670050 +2024-01-10,DC,21,670050 +2024-01-11,DC,14,670050 +2024-01-12,DC,16,670050 +2024-01-13,DC,17,670050 +2024-01-14,DC,22,670050 +2024-01-15,DC,9,670050 +2024-01-16,DC,7,670050 +2024-01-17,DC,13,670050 +2024-01-18,DC,12,670050 +2024-01-19,DC,8,670050 +2022-12-31,DE,25,1003384 +2023-01-01,DE,18,1003384 +2023-01-02,DE,21,1003384 +2023-01-03,DE,21,1003384 +2023-01-04,DE,28,1003384 +2023-01-05,DE,25,1003384 +2023-01-06,DE,33,1003384 +2023-01-07,DE,30,1003384 +2023-01-08,DE,21,1003384 +2023-01-09,DE,17,1003384 +2023-01-10,DE,17,1003384 +2023-01-11,DE,15,1003384 +2023-01-12,DE,23,1003384 +2023-01-13,DE,22,1003384 +2023-01-14,DE,19,1003384 +2023-01-15,DE,13,1003384 +2023-01-16,DE,18,1003384 +2023-01-17,DE,17,1003384 +2023-01-18,DE,21,1003384 +2023-01-19,DE,10,1003384 +2023-01-20,DE,16,1003384 +2023-01-21,DE,14,1003384 +2023-01-22,DE,16,1003384 +2023-01-23,DE,19,1003384 +2023-01-24,DE,17,1003384 +2023-01-25,DE,13,1003384 +2023-01-26,DE,12,1003384 +2023-01-27,DE,12,1003384 +2023-01-28,DE,16,1003384 +2023-01-29,DE,24,1003384 +2023-01-30,DE,26,1003384 +2023-01-31,DE,18,1003384 +2023-02-01,DE,17,1003384 +2023-02-02,DE,14,1003384 +2023-02-03,DE,20,1003384 +2023-02-04,DE,19,1003384 +2023-02-05,DE,18,1003384 +2023-02-06,DE,16,1003384 +2023-02-07,DE,17,1003384 +2023-02-08,DE,14,1003384 +2023-02-09,DE,17,1003384 +2023-02-10,DE,12,1003384 +2023-02-11,DE,11,1003384 +2023-02-12,DE,15,1003384 +2023-02-13,DE,15,1003384 +2023-02-14,DE,18,1003384 +2023-02-15,DE,20,1003384 +2023-02-16,DE,24,1003384 +2023-02-17,DE,25,1003384 +2023-02-18,DE,21,1003384 +2023-02-19,DE,13,1003384 +2023-02-20,DE,16,1003384 +2023-02-21,DE,18,1003384 +2023-02-22,DE,25,1003384 +2023-02-23,DE,13,1003384 +2023-02-24,DE,13,1003384 +2023-02-25,DE,10,1003384 +2023-02-26,DE,8,1003384 +2023-02-27,DE,8,1003384 +2023-02-28,DE,11,1003384 +2023-03-01,DE,7,1003384 +2023-03-02,DE,13,1003384 +2023-03-03,DE,9,1003384 +2023-03-04,DE,12,1003384 +2023-03-05,DE,12,1003384 +2023-03-06,DE,9,1003384 +2023-03-07,DE,8,1003384 +2023-03-08,DE,10,1003384 +2023-03-09,DE,8,1003384 +2023-03-10,DE,6,1003384 +2023-03-11,DE,9,1003384 +2023-03-12,DE,7,1003384 +2023-03-13,DE,8,1003384 +2023-03-14,DE,20,1003384 +2023-03-15,DE,21,1003384 +2023-03-16,DE,15,1003384 +2023-03-17,DE,9,1003384 +2023-03-18,DE,5,1003384 +2023-03-19,DE,9,1003384 +2023-03-20,DE,10,1003384 +2023-03-21,DE,9,1003384 +2023-03-22,DE,7,1003384 +2023-03-23,DE,7,1003384 +2023-03-24,DE,10,1003384 +2023-03-25,DE,7,1003384 +2023-03-26,DE,3,1003384 +2023-03-27,DE,9,1003384 +2023-03-28,DE,11,1003384 +2023-03-29,DE,10,1003384 +2023-03-30,DE,11,1003384 +2023-03-31,DE,11,1003384 +2023-04-01,DE,6,1003384 +2023-04-02,DE,11,1003384 +2023-04-03,DE,13,1003384 +2023-04-04,DE,6,1003384 +2023-04-05,DE,10,1003384 +2023-04-06,DE,7,1003384 +2023-04-07,DE,10,1003384 +2023-04-08,DE,3,1003384 +2023-04-09,DE,12,1003384 +2023-04-10,DE,7,1003384 +2023-04-11,DE,7,1003384 +2023-04-12,DE,7,1003384 +2023-04-13,DE,9,1003384 +2023-04-14,DE,9,1003384 +2023-04-15,DE,4,1003384 +2023-04-16,DE,7,1003384 +2023-04-17,DE,3,1003384 +2023-04-18,DE,3,1003384 +2023-04-19,DE,8,1003384 +2023-04-20,DE,6,1003384 +2023-04-21,DE,9,1003384 +2023-04-22,DE,5,1003384 +2023-04-23,DE,5,1003384 +2023-04-24,DE,3,1003384 +2023-04-25,DE,6,1003384 +2023-04-26,DE,1,1003384 +2023-04-27,DE,2,1003384 +2023-04-28,DE,9,1003384 +2023-04-29,DE,0,1003384 +2023-04-30,DE,3,1003384 +2023-05-01,DE,1,1003384 +2023-05-02,DE,8,1003384 +2023-05-03,DE,5,1003384 +2023-05-04,DE,3,1003384 +2023-05-05,DE,0,1003384 +2023-05-06,DE,3,1003384 +2023-05-07,DE,3,1003384 +2023-05-08,DE,1,1003384 +2023-05-09,DE,3,1003384 +2023-05-10,DE,2,1003384 +2023-05-11,DE,0,1003384 +2023-05-12,DE,2,1003384 +2023-05-13,DE,3,1003384 +2023-05-14,DE,1,1003384 +2023-05-15,DE,4,1003384 +2023-05-16,DE,5,1003384 +2023-05-17,DE,1,1003384 +2023-05-18,DE,2,1003384 +2023-05-19,DE,2,1003384 +2023-05-20,DE,2,1003384 +2023-05-21,DE,1,1003384 +2023-05-22,DE,3,1003384 +2023-05-23,DE,2,1003384 +2023-05-24,DE,4,1003384 +2023-05-25,DE,4,1003384 +2023-05-26,DE,3,1003384 +2023-05-27,DE,1,1003384 +2023-05-28,DE,2,1003384 +2023-05-29,DE,0,1003384 +2023-05-30,DE,2,1003384 +2023-05-31,DE,2,1003384 +2023-06-01,DE,2,1003384 +2023-06-02,DE,3,1003384 +2023-06-03,DE,1,1003384 +2023-06-04,DE,1,1003384 +2023-06-05,DE,1,1003384 +2023-06-06,DE,2,1003384 +2023-06-07,DE,3,1003384 +2023-06-08,DE,1,1003384 +2023-06-09,DE,3,1003384 +2023-06-10,DE,3,1003384 +2023-06-11,DE,1,1003384 +2023-06-12,DE,6,1003384 +2023-06-13,DE,5,1003384 +2023-06-14,DE,4,1003384 +2023-06-15,DE,3,1003384 +2023-06-16,DE,4,1003384 +2023-06-17,DE,2,1003384 +2023-06-18,DE,1,1003384 +2023-06-19,DE,1,1003384 +2023-06-20,DE,1,1003384 +2023-06-21,DE,2,1003384 +2023-06-22,DE,2,1003384 +2023-06-23,DE,1,1003384 +2023-06-24,DE,2,1003384 +2023-06-25,DE,1,1003384 +2023-06-26,DE,1,1003384 +2023-06-27,DE,1,1003384 +2023-06-28,DE,3,1003384 +2023-06-29,DE,4,1003384 +2023-06-30,DE,3,1003384 +2023-07-01,DE,1,1003384 +2023-07-02,DE,2,1003384 +2023-07-03,DE,2,1003384 +2023-07-04,DE,2,1003384 +2023-07-05,DE,5,1003384 +2023-07-06,DE,5,1003384 +2023-07-07,DE,4,1003384 +2023-07-08,DE,2,1003384 +2023-07-09,DE,3,1003384 +2023-07-10,DE,3,1003384 +2023-07-11,DE,3,1003384 +2023-07-12,DE,3,1003384 +2023-07-13,DE,4,1003384 +2023-07-14,DE,4,1003384 +2023-07-15,DE,1,1003384 +2023-07-16,DE,0,1003384 +2023-07-17,DE,3,1003384 +2023-07-18,DE,3,1003384 +2023-07-19,DE,0,1003384 +2023-07-20,DE,5,1003384 +2023-07-21,DE,4,1003384 +2023-07-22,DE,3,1003384 +2023-07-23,DE,2,1003384 +2023-07-24,DE,2,1003384 +2023-07-25,DE,4,1003384 +2023-07-26,DE,1,1003384 +2023-07-27,DE,3,1003384 +2023-07-28,DE,1,1003384 +2023-07-29,DE,2,1003384 +2023-07-30,DE,4,1003384 +2023-07-31,DE,5,1003384 +2023-08-01,DE,3,1003384 +2023-08-02,DE,1,1003384 +2023-08-03,DE,2,1003384 +2023-08-04,DE,7,1003384 +2023-08-05,DE,7,1003384 +2023-08-06,DE,2,1003384 +2023-08-07,DE,5,1003384 +2023-08-08,DE,5,1003384 +2023-08-09,DE,4,1003384 +2023-08-10,DE,6,1003384 +2023-08-11,DE,1,1003384 +2023-08-12,DE,5,1003384 +2023-08-13,DE,2,1003384 +2023-08-14,DE,7,1003384 +2023-08-15,DE,7,1003384 +2023-08-16,DE,3,1003384 +2023-08-17,DE,3,1003384 +2023-08-18,DE,4,1003384 +2023-08-19,DE,7,1003384 +2023-08-20,DE,4,1003384 +2023-08-21,DE,7,1003384 +2023-08-22,DE,3,1003384 +2023-08-23,DE,4,1003384 +2023-08-24,DE,4,1003384 +2023-08-25,DE,7,1003384 +2023-08-26,DE,2,1003384 +2023-08-27,DE,2,1003384 +2023-08-28,DE,3,1003384 +2023-08-29,DE,5,1003384 +2023-08-30,DE,4,1003384 +2023-08-31,DE,5,1003384 +2023-09-01,DE,6,1003384 +2023-09-02,DE,4,1003384 +2023-09-03,DE,4,1003384 +2023-09-04,DE,8,1003384 +2023-09-05,DE,10,1003384 +2023-09-06,DE,4,1003384 +2023-09-07,DE,6,1003384 +2023-09-08,DE,8,1003384 +2023-09-09,DE,5,1003384 +2023-09-10,DE,6,1003384 +2023-09-11,DE,5,1003384 +2023-09-12,DE,11,1003384 +2023-09-13,DE,8,1003384 +2023-09-14,DE,4,1003384 +2023-09-15,DE,5,1003384 +2023-09-16,DE,6,1003384 +2023-09-17,DE,10,1003384 +2023-09-18,DE,10,1003384 +2023-09-19,DE,7,1003384 +2023-09-20,DE,9,1003384 +2023-09-21,DE,10,1003384 +2023-09-22,DE,14,1003384 +2023-09-23,DE,9,1003384 +2023-09-24,DE,6,1003384 +2023-09-25,DE,5,1003384 +2023-09-26,DE,11,1003384 +2023-09-27,DE,11,1003384 +2023-09-28,DE,14,1003384 +2023-09-29,DE,16,1003384 +2023-09-30,DE,4,1003384 +2023-10-01,DE,9,1003384 +2023-10-02,DE,6,1003384 +2023-10-03,DE,5,1003384 +2023-10-04,DE,5,1003384 +2023-10-05,DE,14,1003384 +2023-10-06,DE,14,1003384 +2023-10-07,DE,9,1003384 +2023-10-08,DE,6,1003384 +2023-10-09,DE,13,1003384 +2023-10-10,DE,6,1003384 +2023-10-11,DE,6,1003384 +2023-10-12,DE,8,1003384 +2023-10-13,DE,15,1003384 +2023-10-14,DE,6,1003384 +2023-10-15,DE,10,1003384 +2023-10-16,DE,6,1003384 +2023-10-17,DE,5,1003384 +2023-10-18,DE,3,1003384 +2023-10-19,DE,9,1003384 +2023-10-20,DE,7,1003384 +2023-10-21,DE,5,1003384 +2023-10-22,DE,4,1003384 +2023-10-23,DE,3,1003384 +2023-10-24,DE,4,1003384 +2023-10-25,DE,11,1003384 +2023-10-26,DE,5,1003384 +2023-10-27,DE,6,1003384 +2023-10-28,DE,4,1003384 +2023-10-29,DE,5,1003384 +2023-10-30,DE,10,1003384 +2023-10-31,DE,8,1003384 +2023-11-01,DE,3,1003384 +2023-11-02,DE,9,1003384 +2023-11-03,DE,9,1003384 +2023-11-04,DE,6,1003384 +2023-11-05,DE,5,1003384 +2023-11-06,DE,5,1003384 +2023-11-07,DE,9,1003384 +2023-11-08,DE,7,1003384 +2023-11-09,DE,6,1003384 +2023-11-10,DE,6,1003384 +2023-11-11,DE,6,1003384 +2023-11-12,DE,5,1003384 +2023-11-13,DE,6,1003384 +2023-11-14,DE,8,1003384 +2023-11-15,DE,8,1003384 +2023-11-16,DE,8,1003384 +2023-11-17,DE,7,1003384 +2023-11-18,DE,8,1003384 +2023-11-19,DE,10,1003384 +2023-11-20,DE,12,1003384 +2023-11-21,DE,8,1003384 +2023-11-22,DE,8,1003384 +2023-11-23,DE,7,1003384 +2023-11-24,DE,8,1003384 +2023-11-25,DE,8,1003384 +2023-11-26,DE,9,1003384 +2023-11-27,DE,12,1003384 +2023-11-28,DE,17,1003384 +2023-11-29,DE,8,1003384 +2023-11-30,DE,17,1003384 +2023-12-01,DE,5,1003384 +2023-12-02,DE,7,1003384 +2023-12-03,DE,9,1003384 +2023-12-04,DE,9,1003384 +2023-12-05,DE,10,1003384 +2023-12-06,DE,8,1003384 +2023-12-07,DE,9,1003384 +2023-12-08,DE,13,1003384 +2023-12-09,DE,16,1003384 +2023-12-10,DE,9,1003384 +2023-12-11,DE,5,1003384 +2023-12-12,DE,11,1003384 +2023-12-13,DE,6,1003384 +2023-12-14,DE,9,1003384 +2023-12-15,DE,7,1003384 +2023-12-16,DE,15,1003384 +2023-12-17,DE,11,1003384 +2023-12-18,DE,16,1003384 +2023-12-19,DE,12,1003384 +2023-12-20,DE,14,1003384 +2023-12-21,DE,16,1003384 +2023-12-22,DE,18,1003384 +2023-12-23,DE,17,1003384 +2023-12-24,DE,13,1003384 +2023-12-25,DE,10,1003384 +2023-12-26,DE,17,1003384 +2023-12-27,DE,13,1003384 +2023-12-28,DE,15,1003384 +2023-12-29,DE,22,1003384 +2023-12-30,DE,15,1003384 +2023-12-31,DE,12,1003384 +2024-01-01,DE,10,1003384 +2024-01-02,DE,24,1003384 +2024-01-03,DE,20,1003384 +2024-01-04,DE,14,1003384 +2024-01-05,DE,15,1003384 +2024-01-06,DE,21,1003384 +2024-01-07,DE,12,1003384 +2024-01-08,DE,14,1003384 +2024-01-09,DE,20,1003384 +2024-01-10,DE,21,1003384 +2024-01-11,DE,12,1003384 +2024-01-12,DE,9,1003384 +2024-01-13,DE,9,1003384 +2024-01-14,DE,13,1003384 +2024-01-15,DE,11,1003384 +2024-01-16,DE,8,1003384 +2024-01-17,DE,18,1003384 +2024-01-18,DE,13,1003384 +2024-01-19,DE,7,1003384 +2022-12-31,FL,480,21781128 +2023-01-01,FL,507,21781128 +2023-01-02,FL,517,21781128 +2023-01-03,FL,560,21781128 +2023-01-04,FL,526,21781128 +2023-01-05,FL,541,21781128 +2023-01-06,FL,492,21781128 +2023-01-07,FL,403,21781128 +2023-01-08,FL,408,21781128 +2023-01-09,FL,511,21781128 +2023-01-10,FL,473,21781128 +2023-01-11,FL,463,21781128 +2023-01-12,FL,449,21781128 +2023-01-13,FL,414,21781128 +2023-01-14,FL,347,21781128 +2023-01-15,FL,348,21781128 +2023-01-16,FL,417,21781128 +2023-01-17,FL,395,21781128 +2023-01-18,FL,419,21781128 +2023-01-19,FL,440,21781128 +2023-01-20,FL,418,21781128 +2023-01-21,FL,316,21781128 +2023-01-22,FL,336,21781128 +2023-01-23,FL,404,21781128 +2023-01-24,FL,395,21781128 +2023-01-25,FL,355,21781128 +2023-01-26,FL,367,21781128 +2023-01-27,FL,335,21781128 +2023-01-28,FL,303,21781128 +2023-01-29,FL,318,21781128 +2023-01-30,FL,341,21781128 +2023-01-31,FL,340,21781128 +2023-02-01,FL,319,21781128 +2023-02-02,FL,344,21781128 +2023-02-03,FL,308,21781128 +2023-02-04,FL,291,21781128 +2023-02-05,FL,249,21781128 +2023-02-06,FL,311,21781128 +2023-02-07,FL,310,21781128 +2023-02-08,FL,328,21781128 +2023-02-09,FL,274,21781128 +2023-02-10,FL,299,21781128 +2023-02-11,FL,231,21781128 +2023-02-12,FL,268,21781128 +2023-02-13,FL,283,21781128 +2023-02-14,FL,236,21781128 +2023-02-15,FL,253,21781128 +2023-02-16,FL,236,21781128 +2023-02-17,FL,256,21781128 +2023-02-18,FL,230,21781128 +2023-02-19,FL,215,21781128 +2023-02-20,FL,278,21781128 +2023-02-21,FL,263,21781128 +2023-02-22,FL,240,21781128 +2023-02-23,FL,269,21781128 +2023-02-24,FL,222,21781128 +2023-02-25,FL,224,21781128 +2023-02-26,FL,214,21781128 +2023-02-27,FL,204,21781128 +2023-02-28,FL,240,21781128 +2023-03-01,FL,232,21781128 +2023-03-02,FL,200,21781128 +2023-03-03,FL,238,21781128 +2023-03-04,FL,197,21781128 +2023-03-05,FL,212,21781128 +2023-03-06,FL,218,21781128 +2023-03-07,FL,205,21781128 +2023-03-08,FL,221,21781128 +2023-03-09,FL,210,21781128 +2023-03-10,FL,190,21781128 +2023-03-11,FL,176,21781128 +2023-03-12,FL,186,21781128 +2023-03-13,FL,182,21781128 +2023-03-14,FL,187,21781128 +2023-03-15,FL,196,21781128 +2023-03-16,FL,164,21781128 +2023-03-17,FL,174,21781128 +2023-03-18,FL,185,21781128 +2023-03-19,FL,154,21781128 +2023-03-20,FL,199,21781128 +2023-03-21,FL,189,21781128 +2023-03-22,FL,189,21781128 +2023-03-23,FL,199,21781128 +2023-03-24,FL,169,21781128 +2023-03-25,FL,177,21781128 +2023-03-26,FL,175,21781128 +2023-03-27,FL,217,21781128 +2023-03-28,FL,188,21781128 +2023-03-29,FL,151,21781128 +2023-03-30,FL,195,21781128 +2023-03-31,FL,163,21781128 +2023-04-01,FL,163,21781128 +2023-04-02,FL,169,21781128 +2023-04-03,FL,210,21781128 +2023-04-04,FL,170,21781128 +2023-04-05,FL,163,21781128 +2023-04-06,FL,178,21781128 +2023-04-07,FL,160,21781128 +2023-04-08,FL,150,21781128 +2023-04-09,FL,130,21781128 +2023-04-10,FL,155,21781128 +2023-04-11,FL,165,21781128 +2023-04-12,FL,165,21781128 +2023-04-13,FL,163,21781128 +2023-04-14,FL,176,21781128 +2023-04-15,FL,139,21781128 +2023-04-16,FL,142,21781128 +2023-04-17,FL,168,21781128 +2023-04-18,FL,133,21781128 +2023-04-19,FL,155,21781128 +2023-04-20,FL,130,21781128 +2023-04-21,FL,130,21781128 +2023-04-22,FL,135,21781128 +2023-04-23,FL,118,21781128 +2023-04-24,FL,125,21781128 +2023-04-25,FL,145,21781128 +2023-04-26,FL,122,21781128 +2023-04-27,FL,130,21781128 +2023-04-28,FL,126,21781128 +2023-04-29,FL,105,21781128 +2023-04-30,FL,105,21781128 +2023-05-01,FL,153,21781128 +2023-05-02,FL,137,21781128 +2023-05-03,FL,135,21781128 +2023-05-04,FL,141,21781128 +2023-05-05,FL,117,21781128 +2023-05-06,FL,129,21781128 +2023-05-07,FL,126,21781128 +2023-05-08,FL,133,21781128 +2023-05-09,FL,101,21781128 +2023-05-10,FL,132,21781128 +2023-05-11,FL,110,21781128 +2023-05-12,FL,122,21781128 +2023-05-13,FL,87,21781128 +2023-05-14,FL,102,21781128 +2023-05-15,FL,123,21781128 +2023-05-16,FL,128,21781128 +2023-05-17,FL,120,21781128 +2023-05-18,FL,121,21781128 +2023-05-19,FL,100,21781128 +2023-05-20,FL,99,21781128 +2023-05-21,FL,104,21781128 +2023-05-22,FL,111,21781128 +2023-05-23,FL,120,21781128 +2023-05-24,FL,121,21781128 +2023-05-25,FL,108,21781128 +2023-05-26,FL,138,21781128 +2023-05-27,FL,96,21781128 +2023-05-28,FL,126,21781128 +2023-05-29,FL,124,21781128 +2023-05-30,FL,131,21781128 +2023-05-31,FL,126,21781128 +2023-06-01,FL,118,21781128 +2023-06-02,FL,112,21781128 +2023-06-03,FL,123,21781128 +2023-06-04,FL,113,21781128 +2023-06-05,FL,131,21781128 +2023-06-06,FL,124,21781128 +2023-06-07,FL,126,21781128 +2023-06-08,FL,115,21781128 +2023-06-09,FL,143,21781128 +2023-06-10,FL,111,21781128 +2023-06-11,FL,102,21781128 +2023-06-12,FL,115,21781128 +2023-06-13,FL,115,21781128 +2023-06-14,FL,136,21781128 +2023-06-15,FL,125,21781128 +2023-06-16,FL,120,21781128 +2023-06-17,FL,120,21781128 +2023-06-18,FL,122,21781128 +2023-06-19,FL,140,21781128 +2023-06-20,FL,115,21781128 +2023-06-21,FL,131,21781128 +2023-06-22,FL,118,21781128 +2023-06-23,FL,129,21781128 +2023-06-24,FL,134,21781128 +2023-06-25,FL,119,21781128 +2023-06-26,FL,137,21781128 +2023-06-27,FL,164,21781128 +2023-06-28,FL,144,21781128 +2023-06-29,FL,133,21781128 +2023-06-30,FL,120,21781128 +2023-07-01,FL,124,21781128 +2023-07-02,FL,133,21781128 +2023-07-03,FL,159,21781128 +2023-07-04,FL,142,21781128 +2023-07-05,FL,158,21781128 +2023-07-06,FL,156,21781128 +2023-07-07,FL,134,21781128 +2023-07-08,FL,146,21781128 +2023-07-09,FL,151,21781128 +2023-07-10,FL,188,21781128 +2023-07-11,FL,156,21781128 +2023-07-12,FL,158,21781128 +2023-07-13,FL,153,21781128 +2023-07-14,FL,176,21781128 +2023-07-15,FL,146,21781128 +2023-07-16,FL,158,21781128 +2023-07-17,FL,175,21781128 +2023-07-18,FL,198,21781128 +2023-07-19,FL,148,21781128 +2023-07-20,FL,203,21781128 +2023-07-21,FL,191,21781128 +2023-07-22,FL,199,21781128 +2023-07-23,FL,214,21781128 +2023-07-24,FL,220,21781128 +2023-07-25,FL,222,21781128 +2023-07-26,FL,217,21781128 +2023-07-27,FL,215,21781128 +2023-07-28,FL,245,21781128 +2023-07-29,FL,231,21781128 +2023-07-30,FL,201,21781128 +2023-07-31,FL,251,21781128 +2023-08-01,FL,268,21781128 +2023-08-02,FL,262,21781128 +2023-08-03,FL,283,21781128 +2023-08-04,FL,266,21781128 +2023-08-05,FL,275,21781128 +2023-08-06,FL,284,21781128 +2023-08-07,FL,295,21781128 +2023-08-08,FL,326,21781128 +2023-08-09,FL,292,21781128 +2023-08-10,FL,251,21781128 +2023-08-11,FL,231,21781128 +2023-08-12,FL,273,21781128 +2023-08-13,FL,305,21781128 +2023-08-14,FL,316,21781128 +2023-08-15,FL,310,21781128 +2023-08-16,FL,300,21781128 +2023-08-17,FL,299,21781128 +2023-08-18,FL,315,21781128 +2023-08-19,FL,301,21781128 +2023-08-20,FL,300,21781128 +2023-08-21,FL,394,21781128 +2023-08-22,FL,381,21781128 +2023-08-23,FL,380,21781128 +2023-08-24,FL,333,21781128 +2023-08-25,FL,398,21781128 +2023-08-26,FL,365,21781128 +2023-08-27,FL,393,21781128 +2023-08-28,FL,404,21781128 +2023-08-29,FL,357,21781128 +2023-08-30,FL,345,21781128 +2023-08-31,FL,397,21781128 +2023-09-01,FL,350,21781128 +2023-09-02,FL,341,21781128 +2023-09-03,FL,357,21781128 +2023-09-04,FL,333,21781128 +2023-09-05,FL,379,21781128 +2023-09-06,FL,332,21781128 +2023-09-07,FL,330,21781128 +2023-09-08,FL,294,21781128 +2023-09-09,FL,261,21781128 +2023-09-10,FL,301,21781128 +2023-09-11,FL,285,21781128 +2023-09-12,FL,340,21781128 +2023-09-13,FL,304,21781128 +2023-09-14,FL,290,21781128 +2023-09-15,FL,294,21781128 +2023-09-16,FL,224,21781128 +2023-09-17,FL,239,21781128 +2023-09-18,FL,274,21781128 +2023-09-19,FL,255,21781128 +2023-09-20,FL,217,21781128 +2023-09-21,FL,226,21781128 +2023-09-22,FL,228,21781128 +2023-09-23,FL,181,21781128 +2023-09-24,FL,174,21781128 +2023-09-25,FL,222,21781128 +2023-09-26,FL,198,21781128 +2023-09-27,FL,198,21781128 +2023-09-28,FL,186,21781128 +2023-09-29,FL,193,21781128 +2023-09-30,FL,168,21781128 +2023-10-01,FL,156,21781128 +2023-10-02,FL,164,21781128 +2023-10-03,FL,166,21781128 +2023-10-04,FL,153,21781128 +2023-10-05,FL,179,21781128 +2023-10-06,FL,153,21781128 +2023-10-07,FL,143,21781128 +2023-10-08,FL,132,21781128 +2023-10-09,FL,163,21781128 +2023-10-10,FL,160,21781128 +2023-10-11,FL,163,21781128 +2023-10-12,FL,147,21781128 +2023-10-13,FL,132,21781128 +2023-10-14,FL,138,21781128 +2023-10-15,FL,125,21781128 +2023-10-16,FL,152,21781128 +2023-10-17,FL,132,21781128 +2023-10-18,FL,150,21781128 +2023-10-19,FL,113,21781128 +2023-10-20,FL,131,21781128 +2023-10-21,FL,122,21781128 +2023-10-22,FL,125,21781128 +2023-10-23,FL,113,21781128 +2023-10-24,FL,118,21781128 +2023-10-25,FL,140,21781128 +2023-10-26,FL,106,21781128 +2023-10-27,FL,106,21781128 +2023-10-28,FL,109,21781128 +2023-10-29,FL,114,21781128 +2023-10-30,FL,158,21781128 +2023-10-31,FL,127,21781128 +2023-11-01,FL,107,21781128 +2023-11-02,FL,123,21781128 +2023-11-03,FL,111,21781128 +2023-11-04,FL,88,21781128 +2023-11-05,FL,109,21781128 +2023-11-06,FL,102,21781128 +2023-11-07,FL,103,21781128 +2023-11-08,FL,117,21781128 +2023-11-09,FL,103,21781128 +2023-11-10,FL,111,21781128 +2023-11-11,FL,117,21781128 +2023-11-12,FL,112,21781128 +2023-11-13,FL,101,21781128 +2023-11-14,FL,111,21781128 +2023-11-15,FL,108,21781128 +2023-11-16,FL,91,21781128 +2023-11-17,FL,99,21781128 +2023-11-18,FL,102,21781128 +2023-11-19,FL,113,21781128 +2023-11-20,FL,106,21781128 +2023-11-21,FL,103,21781128 +2023-11-22,FL,99,21781128 +2023-11-23,FL,80,21781128 +2023-11-24,FL,124,21781128 +2023-11-25,FL,112,21781128 +2023-11-26,FL,114,21781128 +2023-11-27,FL,117,21781128 +2023-11-28,FL,124,21781128 +2023-11-29,FL,105,21781128 +2023-11-30,FL,113,21781128 +2023-12-01,FL,125,21781128 +2023-12-02,FL,133,21781128 +2023-12-03,FL,139,21781128 +2023-12-04,FL,123,21781128 +2023-12-05,FL,127,21781128 +2023-12-06,FL,122,21781128 +2023-12-07,FL,119,21781128 +2023-12-08,FL,135,21781128 +2023-12-09,FL,149,21781128 +2023-12-10,FL,136,21781128 +2023-12-11,FL,166,21781128 +2023-12-12,FL,189,21781128 +2023-12-13,FL,171,21781128 +2023-12-14,FL,194,21781128 +2023-12-15,FL,161,21781128 +2023-12-16,FL,182,21781128 +2023-12-17,FL,189,21781128 +2023-12-18,FL,253,21781128 +2023-12-19,FL,221,21781128 +2023-12-20,FL,173,21781128 +2023-12-21,FL,201,21781128 +2023-12-22,FL,223,21781128 +2023-12-23,FL,179,21781128 +2023-12-24,FL,232,21781128 +2023-12-25,FL,243,21781128 +2023-12-26,FL,287,21781128 +2023-12-27,FL,276,21781128 +2023-12-28,FL,273,21781128 +2023-12-29,FL,287,21781128 +2023-12-30,FL,255,21781128 +2023-12-31,FL,275,21781128 +2024-01-01,FL,293,21781128 +2024-01-02,FL,330,21781128 +2024-01-03,FL,346,21781128 +2024-01-04,FL,297,21781128 +2024-01-05,FL,310,21781128 +2024-01-06,FL,319,21781128 +2024-01-07,FL,296,21781128 +2024-01-08,FL,234,21781128 +2024-01-09,FL,291,21781128 +2024-01-10,FL,296,21781128 +2024-01-11,FL,327,21781128 +2024-01-12,FL,297,21781128 +2024-01-13,FL,270,21781128 +2024-01-14,FL,259,21781128 +2024-01-15,FL,298,21781128 +2024-01-16,FL,330,21781128 +2024-01-17,FL,295,21781128 +2024-01-18,FL,276,21781128 +2024-01-19,FL,301,21781128 +2022-12-31,GA,202,10799566 +2023-01-01,GA,241,10799566 +2023-01-02,GA,258,10799566 +2023-01-03,GA,255,10799566 +2023-01-04,GA,238,10799566 +2023-01-05,GA,210,10799566 +2023-01-06,GA,201,10799566 +2023-01-07,GA,199,10799566 +2023-01-08,GA,199,10799566 +2023-01-09,GA,198,10799566 +2023-01-10,GA,184,10799566 +2023-01-11,GA,181,10799566 +2023-01-12,GA,152,10799566 +2023-01-13,GA,162,10799566 +2023-01-14,GA,125,10799566 +2023-01-15,GA,155,10799566 +2023-01-16,GA,157,10799566 +2023-01-17,GA,170,10799566 +2023-01-18,GA,129,10799566 +2023-01-19,GA,166,10799566 +2023-01-20,GA,134,10799566 +2023-01-21,GA,131,10799566 +2023-01-22,GA,109,10799566 +2023-01-23,GA,129,10799566 +2023-01-24,GA,159,10799566 +2023-01-25,GA,137,10799566 +2023-01-26,GA,137,10799566 +2023-01-27,GA,127,10799566 +2023-01-28,GA,119,10799566 +2023-01-29,GA,107,10799566 +2023-01-30,GA,115,10799566 +2023-01-31,GA,172,10799566 +2023-02-01,GA,174,10799566 +2023-02-02,GA,148,10799566 +2023-02-03,GA,154,10799566 +2023-02-04,GA,137,10799566 +2023-02-05,GA,119,10799566 +2023-02-06,GA,145,10799566 +2023-02-07,GA,118,10799566 +2023-02-08,GA,142,10799566 +2023-02-09,GA,128,10799566 +2023-02-10,GA,129,10799566 +2023-02-11,GA,98,10799566 +2023-02-12,GA,121,10799566 +2023-02-13,GA,116,10799566 +2023-02-14,GA,138,10799566 +2023-02-15,GA,114,10799566 +2023-02-16,GA,113,10799566 +2023-02-17,GA,88,10799566 +2023-02-18,GA,68,10799566 +2023-02-19,GA,101,10799566 +2023-02-20,GA,113,10799566 +2023-02-21,GA,90,10799566 +2023-02-22,GA,87,10799566 +2023-02-23,GA,75,10799566 +2023-02-24,GA,97,10799566 +2023-02-25,GA,78,10799566 +2023-02-26,GA,75,10799566 +2023-02-27,GA,87,10799566 +2023-02-28,GA,73,10799566 +2023-03-01,GA,71,10799566 +2023-03-02,GA,64,10799566 +2023-03-03,GA,83,10799566 +2023-03-04,GA,59,10799566 +2023-03-05,GA,46,10799566 +2023-03-06,GA,85,10799566 +2023-03-07,GA,54,10799566 +2023-03-08,GA,66,10799566 +2023-03-09,GA,48,10799566 +2023-03-10,GA,58,10799566 +2023-03-11,GA,48,10799566 +2023-03-12,GA,62,10799566 +2023-03-13,GA,67,10799566 +2023-03-14,GA,56,10799566 +2023-03-15,GA,72,10799566 +2023-03-16,GA,78,10799566 +2023-03-17,GA,46,10799566 +2023-03-18,GA,51,10799566 +2023-03-19,GA,61,10799566 +2023-03-20,GA,67,10799566 +2023-03-21,GA,72,10799566 +2023-03-22,GA,49,10799566 +2023-03-23,GA,47,10799566 +2023-03-24,GA,79,10799566 +2023-03-25,GA,104,10799566 +2023-03-26,GA,64,10799566 +2023-03-27,GA,69,10799566 +2023-03-28,GA,53,10799566 +2023-03-29,GA,69,10799566 +2023-03-30,GA,44,10799566 +2023-03-31,GA,47,10799566 +2023-04-01,GA,38,10799566 +2023-04-02,GA,40,10799566 +2023-04-03,GA,41,10799566 +2023-04-04,GA,41,10799566 +2023-04-05,GA,45,10799566 +2023-04-06,GA,41,10799566 +2023-04-07,GA,43,10799566 +2023-04-08,GA,48,10799566 +2023-04-09,GA,33,10799566 +2023-04-10,GA,35,10799566 +2023-04-11,GA,49,10799566 +2023-04-12,GA,35,10799566 +2023-04-13,GA,38,10799566 +2023-04-14,GA,40,10799566 +2023-04-15,GA,37,10799566 +2023-04-16,GA,31,10799566 +2023-04-17,GA,39,10799566 +2023-04-18,GA,38,10799566 +2023-04-19,GA,38,10799566 +2023-04-20,GA,47,10799566 +2023-04-21,GA,38,10799566 +2023-04-22,GA,44,10799566 +2023-04-23,GA,31,10799566 +2023-04-24,GA,45,10799566 +2023-04-25,GA,33,10799566 +2023-04-26,GA,30,10799566 +2023-04-27,GA,27,10799566 +2023-04-28,GA,42,10799566 +2023-04-29,GA,28,10799566 +2023-04-30,GA,26,10799566 +2023-05-01,GA,31,10799566 +2023-05-02,GA,29,10799566 +2023-05-03,GA,38,10799566 +2023-05-04,GA,38,10799566 +2023-05-05,GA,67,10799566 +2023-05-06,GA,58,10799566 +2023-05-07,GA,25,10799566 +2023-05-08,GA,39,10799566 +2023-05-09,GA,32,10799566 +2023-05-10,GA,38,10799566 +2023-05-11,GA,31,10799566 +2023-05-12,GA,23,10799566 +2023-05-13,GA,29,10799566 +2023-05-14,GA,22,10799566 +2023-05-15,GA,37,10799566 +2023-05-16,GA,19,10799566 +2023-05-17,GA,24,10799566 +2023-05-18,GA,36,10799566 +2023-05-19,GA,25,10799566 +2023-05-20,GA,25,10799566 +2023-05-21,GA,30,10799566 +2023-05-22,GA,29,10799566 +2023-05-23,GA,19,10799566 +2023-05-24,GA,21,10799566 +2023-05-25,GA,30,10799566 +2023-05-26,GA,26,10799566 +2023-05-27,GA,21,10799566 +2023-05-28,GA,22,10799566 +2023-05-29,GA,18,10799566 +2023-05-30,GA,23,10799566 +2023-05-31,GA,21,10799566 +2023-06-01,GA,36,10799566 +2023-06-02,GA,22,10799566 +2023-06-03,GA,25,10799566 +2023-06-04,GA,26,10799566 +2023-06-05,GA,44,10799566 +2023-06-06,GA,25,10799566 +2023-06-07,GA,33,10799566 +2023-06-08,GA,25,10799566 +2023-06-09,GA,25,10799566 +2023-06-10,GA,24,10799566 +2023-06-11,GA,23,10799566 +2023-06-12,GA,16,10799566 +2023-06-13,GA,31,10799566 +2023-06-14,GA,28,10799566 +2023-06-15,GA,23,10799566 +2023-06-16,GA,21,10799566 +2023-06-17,GA,20,10799566 +2023-06-18,GA,20,10799566 +2023-06-19,GA,31,10799566 +2023-06-20,GA,28,10799566 +2023-06-21,GA,25,10799566 +2023-06-22,GA,23,10799566 +2023-06-23,GA,31,10799566 +2023-06-24,GA,28,10799566 +2023-06-25,GA,28,10799566 +2023-06-26,GA,18,10799566 +2023-06-27,GA,24,10799566 +2023-06-28,GA,27,10799566 +2023-06-29,GA,29,10799566 +2023-06-30,GA,26,10799566 +2023-07-01,GA,29,10799566 +2023-07-02,GA,20,10799566 +2023-07-03,GA,30,10799566 +2023-07-04,GA,20,10799566 +2023-07-05,GA,26,10799566 +2023-07-06,GA,27,10799566 +2023-07-07,GA,33,10799566 +2023-07-08,GA,25,10799566 +2023-07-09,GA,19,10799566 +2023-07-10,GA,31,10799566 +2023-07-11,GA,43,10799566 +2023-07-12,GA,29,10799566 +2023-07-13,GA,34,10799566 +2023-07-14,GA,36,10799566 +2023-07-15,GA,32,10799566 +2023-07-16,GA,33,10799566 +2023-07-17,GA,38,10799566 +2023-07-18,GA,49,10799566 +2023-07-19,GA,30,10799566 +2023-07-20,GA,39,10799566 +2023-07-21,GA,33,10799566 +2023-07-22,GA,27,10799566 +2023-07-23,GA,47,10799566 +2023-07-24,GA,67,10799566 +2023-07-25,GA,62,10799566 +2023-07-26,GA,62,10799566 +2023-07-27,GA,53,10799566 +2023-07-28,GA,56,10799566 +2023-07-29,GA,49,10799566 +2023-07-30,GA,65,10799566 +2023-07-31,GA,89,10799566 +2023-08-01,GA,80,10799566 +2023-08-02,GA,79,10799566 +2023-08-03,GA,84,10799566 +2023-08-04,GA,50,10799566 +2023-08-05,GA,63,10799566 +2023-08-06,GA,81,10799566 +2023-08-07,GA,101,10799566 +2023-08-08,GA,85,10799566 +2023-08-09,GA,100,10799566 +2023-08-10,GA,99,10799566 +2023-08-11,GA,66,10799566 +2023-08-12,GA,67,10799566 +2023-08-13,GA,88,10799566 +2023-08-14,GA,112,10799566 +2023-08-15,GA,126,10799566 +2023-08-16,GA,141,10799566 +2023-08-17,GA,117,10799566 +2023-08-18,GA,90,10799566 +2023-08-19,GA,96,10799566 +2023-08-20,GA,142,10799566 +2023-08-21,GA,163,10799566 +2023-08-22,GA,157,10799566 +2023-08-23,GA,159,10799566 +2023-08-24,GA,162,10799566 +2023-08-25,GA,128,10799566 +2023-08-26,GA,114,10799566 +2023-08-27,GA,154,10799566 +2023-08-28,GA,148,10799566 +2023-08-29,GA,140,10799566 +2023-08-30,GA,146,10799566 +2023-08-31,GA,142,10799566 +2023-09-01,GA,88,10799566 +2023-09-02,GA,108,10799566 +2023-09-03,GA,143,10799566 +2023-09-04,GA,143,10799566 +2023-09-05,GA,125,10799566 +2023-09-06,GA,159,10799566 +2023-09-07,GA,138,10799566 +2023-09-08,GA,85,10799566 +2023-09-09,GA,84,10799566 +2023-09-10,GA,136,10799566 +2023-09-11,GA,165,10799566 +2023-09-12,GA,160,10799566 +2023-09-13,GA,160,10799566 +2023-09-14,GA,140,10799566 +2023-09-15,GA,92,10799566 +2023-09-16,GA,88,10799566 +2023-09-17,GA,91,10799566 +2023-09-18,GA,105,10799566 +2023-09-19,GA,107,10799566 +2023-09-20,GA,102,10799566 +2023-09-21,GA,105,10799566 +2023-09-22,GA,62,10799566 +2023-09-23,GA,59,10799566 +2023-09-24,GA,85,10799566 +2023-09-25,GA,89,10799566 +2023-09-26,GA,94,10799566 +2023-09-27,GA,73,10799566 +2023-09-28,GA,79,10799566 +2023-09-29,GA,57,10799566 +2023-09-30,GA,62,10799566 +2023-10-01,GA,46,10799566 +2023-10-02,GA,60,10799566 +2023-10-03,GA,59,10799566 +2023-10-04,GA,54,10799566 +2023-10-05,GA,60,10799566 +2023-10-06,GA,62,10799566 +2023-10-07,GA,38,10799566 +2023-10-08,GA,58,10799566 +2023-10-09,GA,65,10799566 +2023-10-10,GA,58,10799566 +2023-10-11,GA,64,10799566 +2023-10-12,GA,70,10799566 +2023-10-13,GA,59,10799566 +2023-10-14,GA,45,10799566 +2023-10-15,GA,59,10799566 +2023-10-16,GA,69,10799566 +2023-10-17,GA,73,10799566 +2023-10-18,GA,61,10799566 +2023-10-19,GA,71,10799566 +2023-10-20,GA,53,10799566 +2023-10-21,GA,33,10799566 +2023-10-22,GA,64,10799566 +2023-10-23,GA,51,10799566 +2023-10-24,GA,45,10799566 +2023-10-25,GA,49,10799566 +2023-10-26,GA,52,10799566 +2023-10-27,GA,66,10799566 +2023-10-28,GA,36,10799566 +2023-10-29,GA,59,10799566 +2023-10-30,GA,62,10799566 +2023-10-31,GA,55,10799566 +2023-11-01,GA,50,10799566 +2023-11-02,GA,52,10799566 +2023-11-03,GA,53,10799566 +2023-11-04,GA,41,10799566 +2023-11-05,GA,31,10799566 +2023-11-06,GA,68,10799566 +2023-11-07,GA,57,10799566 +2023-11-08,GA,75,10799566 +2023-11-09,GA,57,10799566 +2023-11-10,GA,58,10799566 +2023-11-11,GA,54,10799566 +2023-11-12,GA,53,10799566 +2023-11-13,GA,52,10799566 +2023-11-14,GA,54,10799566 +2023-11-15,GA,61,10799566 +2023-11-16,GA,65,10799566 +2023-11-17,GA,53,10799566 +2023-11-18,GA,43,10799566 +2023-11-19,GA,48,10799566 +2023-11-20,GA,54,10799566 +2023-11-21,GA,61,10799566 +2023-11-22,GA,58,10799566 +2023-11-23,GA,42,10799566 +2023-11-24,GA,49,10799566 +2023-11-25,GA,41,10799566 +2023-11-26,GA,55,10799566 +2023-11-27,GA,63,10799566 +2023-11-28,GA,56,10799566 +2023-11-29,GA,61,10799566 +2023-11-30,GA,58,10799566 +2023-12-01,GA,56,10799566 +2023-12-02,GA,55,10799566 +2023-12-03,GA,61,10799566 +2023-12-04,GA,81,10799566 +2023-12-05,GA,53,10799566 +2023-12-06,GA,74,10799566 +2023-12-07,GA,66,10799566 +2023-12-08,GA,56,10799566 +2023-12-09,GA,64,10799566 +2023-12-10,GA,53,10799566 +2023-12-11,GA,63,10799566 +2023-12-12,GA,74,10799566 +2023-12-13,GA,86,10799566 +2023-12-14,GA,79,10799566 +2023-12-15,GA,101,10799566 +2023-12-16,GA,71,10799566 +2023-12-17,GA,99,10799566 +2023-12-18,GA,113,10799566 +2023-12-19,GA,110,10799566 +2023-12-20,GA,119,10799566 +2023-12-21,GA,123,10799566 +2023-12-22,GA,124,10799566 +2023-12-23,GA,122,10799566 +2023-12-24,GA,106,10799566 +2023-12-25,GA,132,10799566 +2023-12-26,GA,147,10799566 +2023-12-27,GA,166,10799566 +2023-12-28,GA,151,10799566 +2023-12-29,GA,146,10799566 +2023-12-30,GA,121,10799566 +2023-12-31,GA,119,10799566 +2024-01-01,GA,131,10799566 +2024-01-02,GA,170,10799566 +2024-01-03,GA,159,10799566 +2024-01-04,GA,156,10799566 +2024-01-05,GA,126,10799566 +2024-01-06,GA,140,10799566 +2024-01-07,GA,131,10799566 +2024-01-08,GA,142,10799566 +2024-01-09,GA,143,10799566 +2024-01-10,GA,138,10799566 +2024-01-11,GA,130,10799566 +2024-01-12,GA,154,10799566 +2024-01-13,GA,150,10799566 +2024-01-14,GA,131,10799566 +2024-01-15,GA,143,10799566 +2024-01-16,GA,168,10799566 +2024-01-17,GA,150,10799566 +2024-01-18,GA,121,10799566 +2024-01-19,GA,130,10799566 +2022-12-31,HI,13,1441553 +2023-01-01,HI,17,1441553 +2023-01-02,HI,17,1441553 +2023-01-03,HI,16,1441553 +2023-01-04,HI,21,1441553 +2023-01-05,HI,14,1441553 +2023-01-06,HI,21,1441553 +2023-01-07,HI,14,1441553 +2023-01-08,HI,15,1441553 +2023-01-09,HI,13,1441553 +2023-01-10,HI,16,1441553 +2023-01-11,HI,16,1441553 +2023-01-12,HI,21,1441553 +2023-01-13,HI,19,1441553 +2023-01-14,HI,21,1441553 +2023-01-15,HI,21,1441553 +2023-01-16,HI,20,1441553 +2023-01-17,HI,19,1441553 +2023-01-18,HI,25,1441553 +2023-01-19,HI,23,1441553 +2023-01-20,HI,22,1441553 +2023-01-21,HI,20,1441553 +2023-01-22,HI,12,1441553 +2023-01-23,HI,18,1441553 +2023-01-24,HI,12,1441553 +2023-01-25,HI,15,1441553 +2023-01-26,HI,7,1441553 +2023-01-27,HI,13,1441553 +2023-01-28,HI,14,1441553 +2023-01-29,HI,20,1441553 +2023-01-30,HI,12,1441553 +2023-01-31,HI,17,1441553 +2023-02-01,HI,8,1441553 +2023-02-02,HI,12,1441553 +2023-02-03,HI,14,1441553 +2023-02-04,HI,9,1441553 +2023-02-05,HI,14,1441553 +2023-02-06,HI,16,1441553 +2023-02-07,HI,13,1441553 +2023-02-08,HI,14,1441553 +2023-02-09,HI,10,1441553 +2023-02-10,HI,11,1441553 +2023-02-11,HI,12,1441553 +2023-02-12,HI,13,1441553 +2023-02-13,HI,17,1441553 +2023-02-14,HI,14,1441553 +2023-02-15,HI,20,1441553 +2023-02-16,HI,17,1441553 +2023-02-17,HI,21,1441553 +2023-02-18,HI,20,1441553 +2023-02-19,HI,20,1441553 +2023-02-20,HI,13,1441553 +2023-02-21,HI,15,1441553 +2023-02-22,HI,12,1441553 +2023-02-23,HI,14,1441553 +2023-02-24,HI,13,1441553 +2023-02-25,HI,8,1441553 +2023-02-26,HI,11,1441553 +2023-02-27,HI,11,1441553 +2023-02-28,HI,8,1441553 +2023-03-01,HI,13,1441553 +2023-03-02,HI,9,1441553 +2023-03-03,HI,9,1441553 +2023-03-04,HI,11,1441553 +2023-03-05,HI,13,1441553 +2023-03-06,HI,18,1441553 +2023-03-07,HI,21,1441553 +2023-03-08,HI,13,1441553 +2023-03-09,HI,20,1441553 +2023-03-10,HI,18,1441553 +2023-03-11,HI,20,1441553 +2023-03-12,HI,14,1441553 +2023-03-13,HI,9,1441553 +2023-03-14,HI,16,1441553 +2023-03-15,HI,14,1441553 +2023-03-16,HI,7,1441553 +2023-03-17,HI,10,1441553 +2023-03-18,HI,18,1441553 +2023-03-19,HI,10,1441553 +2023-03-20,HI,17,1441553 +2023-03-21,HI,16,1441553 +2023-03-22,HI,19,1441553 +2023-03-23,HI,13,1441553 +2023-03-24,HI,14,1441553 +2023-03-25,HI,20,1441553 +2023-03-26,HI,14,1441553 +2023-03-27,HI,25,1441553 +2023-03-28,HI,10,1441553 +2023-03-29,HI,20,1441553 +2023-03-30,HI,25,1441553 +2023-03-31,HI,22,1441553 +2023-04-01,HI,15,1441553 +2023-04-02,HI,14,1441553 +2023-04-03,HI,15,1441553 +2023-04-04,HI,13,1441553 +2023-04-05,HI,16,1441553 +2023-04-06,HI,10,1441553 +2023-04-07,HI,16,1441553 +2023-04-08,HI,12,1441553 +2023-04-09,HI,12,1441553 +2023-04-10,HI,16,1441553 +2023-04-11,HI,16,1441553 +2023-04-12,HI,20,1441553 +2023-04-13,HI,19,1441553 +2023-04-14,HI,20,1441553 +2023-04-15,HI,25,1441553 +2023-04-16,HI,20,1441553 +2023-04-17,HI,11,1441553 +2023-04-18,HI,10,1441553 +2023-04-19,HI,19,1441553 +2023-04-20,HI,15,1441553 +2023-04-21,HI,9,1441553 +2023-04-22,HI,16,1441553 +2023-04-23,HI,15,1441553 +2023-04-24,HI,13,1441553 +2023-04-25,HI,18,1441553 +2023-04-26,HI,12,1441553 +2023-04-27,HI,21,1441553 +2023-04-28,HI,17,1441553 +2023-04-29,HI,12,1441553 +2023-04-30,HI,15,1441553 +2023-05-01,HI,16,1441553 +2023-05-02,HI,17,1441553 +2023-05-03,HI,20,1441553 +2023-05-04,HI,16,1441553 +2023-05-05,HI,10,1441553 +2023-05-06,HI,19,1441553 +2023-05-07,HI,10,1441553 +2023-05-08,HI,14,1441553 +2023-05-09,HI,13,1441553 +2023-05-10,HI,17,1441553 +2023-05-11,HI,10,1441553 +2023-05-12,HI,15,1441553 +2023-05-13,HI,10,1441553 +2023-05-14,HI,17,1441553 +2023-05-15,HI,14,1441553 +2023-05-16,HI,11,1441553 +2023-05-17,HI,15,1441553 +2023-05-18,HI,8,1441553 +2023-05-19,HI,14,1441553 +2023-05-20,HI,17,1441553 +2023-05-21,HI,11,1441553 +2023-05-22,HI,19,1441553 +2023-05-23,HI,12,1441553 +2023-05-24,HI,14,1441553 +2023-05-25,HI,8,1441553 +2023-05-26,HI,15,1441553 +2023-05-27,HI,13,1441553 +2023-05-28,HI,16,1441553 +2023-05-29,HI,13,1441553 +2023-05-30,HI,9,1441553 +2023-05-31,HI,16,1441553 +2023-06-01,HI,15,1441553 +2023-06-02,HI,9,1441553 +2023-06-03,HI,14,1441553 +2023-06-04,HI,14,1441553 +2023-06-05,HI,9,1441553 +2023-06-06,HI,11,1441553 +2023-06-07,HI,13,1441553 +2023-06-08,HI,15,1441553 +2023-06-09,HI,12,1441553 +2023-06-10,HI,11,1441553 +2023-06-11,HI,14,1441553 +2023-06-12,HI,13,1441553 +2023-06-13,HI,13,1441553 +2023-06-14,HI,15,1441553 +2023-06-15,HI,12,1441553 +2023-06-16,HI,13,1441553 +2023-06-17,HI,14,1441553 +2023-06-18,HI,8,1441553 +2023-06-19,HI,13,1441553 +2023-06-20,HI,16,1441553 +2023-06-21,HI,13,1441553 +2023-06-22,HI,14,1441553 +2023-06-23,HI,9,1441553 +2023-06-24,HI,13,1441553 +2023-06-25,HI,19,1441553 +2023-06-26,HI,22,1441553 +2023-06-27,HI,13,1441553 +2023-06-28,HI,13,1441553 +2023-06-29,HI,14,1441553 +2023-06-30,HI,15,1441553 +2023-07-01,HI,11,1441553 +2023-07-02,HI,11,1441553 +2023-07-03,HI,18,1441553 +2023-07-04,HI,12,1441553 +2023-07-05,HI,10,1441553 +2023-07-06,HI,11,1441553 +2023-07-07,HI,13,1441553 +2023-07-08,HI,10,1441553 +2023-07-09,HI,13,1441553 +2023-07-10,HI,19,1441553 +2023-07-11,HI,18,1441553 +2023-07-12,HI,15,1441553 +2023-07-13,HI,21,1441553 +2023-07-14,HI,18,1441553 +2023-07-15,HI,18,1441553 +2023-07-16,HI,18,1441553 +2023-07-17,HI,16,1441553 +2023-07-18,HI,17,1441553 +2023-07-19,HI,23,1441553 +2023-07-20,HI,17,1441553 +2023-07-21,HI,22,1441553 +2023-07-22,HI,19,1441553 +2023-07-23,HI,22,1441553 +2023-07-24,HI,25,1441553 +2023-07-25,HI,15,1441553 +2023-07-26,HI,22,1441553 +2023-07-27,HI,19,1441553 +2023-07-28,HI,16,1441553 +2023-07-29,HI,21,1441553 +2023-07-30,HI,18,1441553 +2023-07-31,HI,22,1441553 +2023-08-01,HI,21,1441553 +2023-08-02,HI,20,1441553 +2023-08-03,HI,18,1441553 +2023-08-04,HI,14,1441553 +2023-08-05,HI,20,1441553 +2023-08-06,HI,15,1441553 +2023-08-07,HI,24,1441553 +2023-08-08,HI,18,1441553 +2023-08-09,HI,17,1441553 +2023-08-10,HI,20,1441553 +2023-08-11,HI,16,1441553 +2023-08-12,HI,25,1441553 +2023-08-13,HI,15,1441553 +2023-08-14,HI,27,1441553 +2023-08-15,HI,17,1441553 +2023-08-16,HI,21,1441553 +2023-08-17,HI,19,1441553 +2023-08-18,HI,18,1441553 +2023-08-19,HI,16,1441553 +2023-08-20,HI,18,1441553 +2023-08-21,HI,20,1441553 +2023-08-22,HI,30,1441553 +2023-08-23,HI,21,1441553 +2023-08-24,HI,21,1441553 +2023-08-25,HI,20,1441553 +2023-08-26,HI,11,1441553 +2023-08-27,HI,22,1441553 +2023-08-28,HI,13,1441553 +2023-08-29,HI,20,1441553 +2023-08-30,HI,16,1441553 +2023-08-31,HI,22,1441553 +2023-09-01,HI,18,1441553 +2023-09-02,HI,14,1441553 +2023-09-03,HI,17,1441553 +2023-09-04,HI,22,1441553 +2023-09-05,HI,13,1441553 +2023-09-06,HI,17,1441553 +2023-09-07,HI,15,1441553 +2023-09-08,HI,16,1441553 +2023-09-09,HI,15,1441553 +2023-09-10,HI,16,1441553 +2023-09-11,HI,15,1441553 +2023-09-12,HI,14,1441553 +2023-09-13,HI,18,1441553 +2023-09-14,HI,19,1441553 +2023-09-15,HI,10,1441553 +2023-09-16,HI,15,1441553 +2023-09-17,HI,14,1441553 +2023-09-18,HI,19,1441553 +2023-09-19,HI,18,1441553 +2023-09-20,HI,15,1441553 +2023-09-21,HI,20,1441553 +2023-09-22,HI,21,1441553 +2023-09-23,HI,11,1441553 +2023-09-24,HI,14,1441553 +2023-09-25,HI,12,1441553 +2023-09-26,HI,12,1441553 +2023-09-27,HI,14,1441553 +2023-09-28,HI,17,1441553 +2023-09-29,HI,11,1441553 +2023-09-30,HI,17,1441553 +2023-10-01,HI,12,1441553 +2023-10-02,HI,15,1441553 +2023-10-03,HI,14,1441553 +2023-10-04,HI,17,1441553 +2023-10-05,HI,15,1441553 +2023-10-06,HI,11,1441553 +2023-10-07,HI,13,1441553 +2023-10-08,HI,16,1441553 +2023-10-09,HI,20,1441553 +2023-10-10,HI,17,1441553 +2023-10-11,HI,16,1441553 +2023-10-12,HI,12,1441553 +2023-10-13,HI,12,1441553 +2023-10-14,HI,16,1441553 +2023-10-15,HI,15,1441553 +2023-10-16,HI,13,1441553 +2023-10-17,HI,15,1441553 +2023-10-18,HI,18,1441553 +2023-10-19,HI,15,1441553 +2023-10-20,HI,10,1441553 +2023-10-21,HI,17,1441553 +2023-10-22,HI,18,1441553 +2023-10-23,HI,14,1441553 +2023-10-24,HI,19,1441553 +2023-10-25,HI,13,1441553 +2023-10-26,HI,12,1441553 +2023-10-27,HI,14,1441553 +2023-10-28,HI,16,1441553 +2023-10-29,HI,21,1441553 +2023-10-30,HI,17,1441553 +2023-10-31,HI,15,1441553 +2023-11-01,HI,16,1441553 +2023-11-02,HI,17,1441553 +2023-11-03,HI,16,1441553 +2023-11-04,HI,15,1441553 +2023-11-05,HI,14,1441553 +2023-11-06,HI,16,1441553 +2023-11-07,HI,13,1441553 +2023-11-08,HI,15,1441553 +2023-11-09,HI,16,1441553 +2023-11-10,HI,13,1441553 +2023-11-11,HI,10,1441553 +2023-11-12,HI,11,1441553 +2023-11-13,HI,9,1441553 +2023-11-14,HI,14,1441553 +2023-11-15,HI,14,1441553 +2023-11-16,HI,12,1441553 +2023-11-17,HI,10,1441553 +2023-11-18,HI,14,1441553 +2023-11-19,HI,7,1441553 +2023-11-20,HI,14,1441553 +2023-11-21,HI,8,1441553 +2023-11-22,HI,7,1441553 +2023-11-23,HI,12,1441553 +2023-11-24,HI,10,1441553 +2023-11-25,HI,10,1441553 +2023-11-26,HI,12,1441553 +2023-11-27,HI,10,1441553 +2023-11-28,HI,11,1441553 +2023-11-29,HI,10,1441553 +2023-11-30,HI,11,1441553 +2023-12-01,HI,13,1441553 +2023-12-02,HI,11,1441553 +2023-12-03,HI,15,1441553 +2023-12-04,HI,14,1441553 +2023-12-05,HI,16,1441553 +2023-12-06,HI,13,1441553 +2023-12-07,HI,10,1441553 +2023-12-08,HI,9,1441553 +2023-12-09,HI,10,1441553 +2023-12-10,HI,8,1441553 +2023-12-11,HI,13,1441553 +2023-12-12,HI,15,1441553 +2023-12-13,HI,11,1441553 +2023-12-14,HI,9,1441553 +2023-12-15,HI,8,1441553 +2023-12-16,HI,11,1441553 +2023-12-17,HI,12,1441553 +2023-12-18,HI,15,1441553 +2023-12-19,HI,12,1441553 +2023-12-20,HI,11,1441553 +2023-12-21,HI,13,1441553 +2023-12-22,HI,10,1441553 +2023-12-23,HI,9,1441553 +2023-12-24,HI,10,1441553 +2023-12-25,HI,13,1441553 +2023-12-26,HI,11,1441553 +2023-12-27,HI,10,1441553 +2023-12-28,HI,15,1441553 +2023-12-29,HI,13,1441553 +2023-12-30,HI,17,1441553 +2023-12-31,HI,19,1441553 +2024-01-01,HI,14,1441553 +2024-01-02,HI,19,1441553 +2024-01-03,HI,14,1441553 +2024-01-04,HI,12,1441553 +2024-01-05,HI,13,1441553 +2024-01-06,HI,13,1441553 +2024-01-07,HI,21,1441553 +2024-01-08,HI,14,1441553 +2024-01-09,HI,15,1441553 +2024-01-10,HI,13,1441553 +2024-01-11,HI,15,1441553 +2024-01-12,HI,17,1441553 +2024-01-13,HI,18,1441553 +2024-01-14,HI,23,1441553 +2024-01-15,HI,17,1441553 +2024-01-16,HI,18,1441553 +2024-01-17,HI,17,1441553 +2024-01-18,HI,15,1441553 +2024-01-19,HI,16,1441553 +2022-12-31,IA,36,3193079 +2023-01-01,IA,36,3193079 +2023-01-02,IA,53,3193079 +2023-01-03,IA,49,3193079 +2023-01-04,IA,41,3193079 +2023-01-05,IA,33,3193079 +2023-01-06,IA,40,3193079 +2023-01-07,IA,39,3193079 +2023-01-08,IA,25,3193079 +2023-01-09,IA,46,3193079 +2023-01-10,IA,41,3193079 +2023-01-11,IA,46,3193079 +2023-01-12,IA,26,3193079 +2023-01-13,IA,19,3193079 +2023-01-14,IA,27,3193079 +2023-01-15,IA,23,3193079 +2023-01-16,IA,41,3193079 +2023-01-17,IA,33,3193079 +2023-01-18,IA,32,3193079 +2023-01-19,IA,37,3193079 +2023-01-20,IA,21,3193079 +2023-01-21,IA,21,3193079 +2023-01-22,IA,28,3193079 +2023-01-23,IA,28,3193079 +2023-01-24,IA,25,3193079 +2023-01-25,IA,24,3193079 +2023-01-26,IA,24,3193079 +2023-01-27,IA,24,3193079 +2023-01-28,IA,20,3193079 +2023-01-29,IA,17,3193079 +2023-01-30,IA,24,3193079 +2023-01-31,IA,29,3193079 +2023-02-01,IA,32,3193079 +2023-02-02,IA,21,3193079 +2023-02-03,IA,22,3193079 +2023-02-04,IA,16,3193079 +2023-02-05,IA,17,3193079 +2023-02-06,IA,25,3193079 +2023-02-07,IA,26,3193079 +2023-02-08,IA,28,3193079 +2023-02-09,IA,24,3193079 +2023-02-10,IA,25,3193079 +2023-02-11,IA,19,3193079 +2023-02-12,IA,24,3193079 +2023-02-13,IA,20,3193079 +2023-02-14,IA,36,3193079 +2023-02-15,IA,33,3193079 +2023-02-16,IA,27,3193079 +2023-02-17,IA,28,3193079 +2023-02-18,IA,27,3193079 +2023-02-19,IA,31,3193079 +2023-02-20,IA,34,3193079 +2023-02-21,IA,32,3193079 +2023-02-22,IA,15,3193079 +2023-02-23,IA,20,3193079 +2023-02-24,IA,27,3193079 +2023-02-25,IA,28,3193079 +2023-02-26,IA,28,3193079 +2023-02-27,IA,43,3193079 +2023-02-28,IA,32,3193079 +2023-03-01,IA,35,3193079 +2023-03-02,IA,35,3193079 +2023-03-03,IA,24,3193079 +2023-03-04,IA,40,3193079 +2023-03-05,IA,34,3193079 +2023-03-06,IA,39,3193079 +2023-03-07,IA,37,3193079 +2023-03-08,IA,45,3193079 +2023-03-09,IA,44,3193079 +2023-03-10,IA,36,3193079 +2023-03-11,IA,35,3193079 +2023-03-12,IA,21,3193079 +2023-03-13,IA,33,3193079 +2023-03-14,IA,29,3193079 +2023-03-15,IA,37,3193079 +2023-03-16,IA,29,3193079 +2023-03-17,IA,34,3193079 +2023-03-18,IA,28,3193079 +2023-03-19,IA,22,3193079 +2023-03-20,IA,31,3193079 +2023-03-21,IA,28,3193079 +2023-03-22,IA,28,3193079 +2023-03-23,IA,35,3193079 +2023-03-24,IA,27,3193079 +2023-03-25,IA,20,3193079 +2023-03-26,IA,29,3193079 +2023-03-27,IA,38,3193079 +2023-03-28,IA,36,3193079 +2023-03-29,IA,35,3193079 +2023-03-30,IA,34,3193079 +2023-03-31,IA,26,3193079 +2023-04-01,IA,11,3193079 +2023-04-02,IA,32,3193079 +2023-04-03,IA,34,3193079 +2023-04-04,IA,30,3193079 +2023-04-05,IA,28,3193079 +2023-04-06,IA,25,3193079 +2023-04-07,IA,30,3193079 +2023-04-08,IA,16,3193079 +2023-04-09,IA,19,3193079 +2023-04-10,IA,34,3193079 +2023-04-11,IA,28,3193079 +2023-04-12,IA,20,3193079 +2023-04-13,IA,18,3193079 +2023-04-14,IA,20,3193079 +2023-04-15,IA,6,3193079 +2023-04-16,IA,27,3193079 +2023-04-17,IA,21,3193079 +2023-04-18,IA,12,3193079 +2023-04-19,IA,18,3193079 +2023-04-20,IA,17,3193079 +2023-04-21,IA,13,3193079 +2023-04-22,IA,8,3193079 +2023-04-23,IA,11,3193079 +2023-04-24,IA,15,3193079 +2023-04-25,IA,11,3193079 +2023-04-26,IA,15,3193079 +2023-04-27,IA,14,3193079 +2023-04-28,IA,17,3193079 +2023-04-29,IA,13,3193079 +2023-04-30,IA,11,3193079 +2023-05-01,IA,12,3193079 +2023-05-02,IA,14,3193079 +2023-05-03,IA,17,3193079 +2023-05-04,IA,9,3193079 +2023-05-05,IA,3,3193079 +2023-05-06,IA,5,3193079 +2023-05-07,IA,12,3193079 +2023-05-08,IA,13,3193079 +2023-05-09,IA,5,3193079 +2023-05-10,IA,14,3193079 +2023-05-11,IA,11,3193079 +2023-05-12,IA,12,3193079 +2023-05-13,IA,9,3193079 +2023-05-14,IA,6,3193079 +2023-05-15,IA,6,3193079 +2023-05-16,IA,5,3193079 +2023-05-17,IA,12,3193079 +2023-05-18,IA,12,3193079 +2023-05-19,IA,2,3193079 +2023-05-20,IA,2,3193079 +2023-05-21,IA,10,3193079 +2023-05-22,IA,1,3193079 +2023-05-23,IA,2,3193079 +2023-05-24,IA,4,3193079 +2023-05-25,IA,7,3193079 +2023-05-26,IA,5,3193079 +2023-05-27,IA,9,3193079 +2023-05-28,IA,2,3193079 +2023-05-29,IA,2,3193079 +2023-05-30,IA,1,3193079 +2023-05-31,IA,3,3193079 +2023-06-01,IA,9,3193079 +2023-06-02,IA,4,3193079 +2023-06-03,IA,6,3193079 +2023-06-04,IA,4,3193079 +2023-06-05,IA,5,3193079 +2023-06-06,IA,6,3193079 +2023-06-07,IA,4,3193079 +2023-06-08,IA,5,3193079 +2023-06-09,IA,5,3193079 +2023-06-10,IA,2,3193079 +2023-06-11,IA,4,3193079 +2023-06-12,IA,6,3193079 +2023-06-13,IA,6,3193079 +2023-06-14,IA,5,3193079 +2023-06-15,IA,3,3193079 +2023-06-16,IA,6,3193079 +2023-06-17,IA,7,3193079 +2023-06-18,IA,1,3193079 +2023-06-19,IA,7,3193079 +2023-06-20,IA,4,3193079 +2023-06-21,IA,5,3193079 +2023-06-22,IA,1,3193079 +2023-06-23,IA,4,3193079 +2023-06-24,IA,4,3193079 +2023-06-25,IA,3,3193079 +2023-06-26,IA,5,3193079 +2023-06-27,IA,1,3193079 +2023-06-28,IA,4,3193079 +2023-06-29,IA,1,3193079 +2023-06-30,IA,7,3193079 +2023-07-01,IA,0,3193079 +2023-07-02,IA,2,3193079 +2023-07-03,IA,1,3193079 +2023-07-04,IA,1,3193079 +2023-07-05,IA,3,3193079 +2023-07-06,IA,1,3193079 +2023-07-07,IA,2,3193079 +2023-07-08,IA,3,3193079 +2023-07-09,IA,2,3193079 +2023-07-10,IA,11,3193079 +2023-07-11,IA,11,3193079 +2023-07-12,IA,6,3193079 +2023-07-13,IA,4,3193079 +2023-07-14,IA,7,3193079 +2023-07-15,IA,2,3193079 +2023-07-16,IA,4,3193079 +2023-07-17,IA,2,3193079 +2023-07-18,IA,5,3193079 +2023-07-19,IA,10,3193079 +2023-07-20,IA,5,3193079 +2023-07-21,IA,4,3193079 +2023-07-22,IA,5,3193079 +2023-07-23,IA,1,3193079 +2023-07-24,IA,6,3193079 +2023-07-25,IA,7,3193079 +2023-07-26,IA,7,3193079 +2023-07-27,IA,10,3193079 +2023-07-28,IA,5,3193079 +2023-07-29,IA,2,3193079 +2023-07-30,IA,11,3193079 +2023-07-31,IA,7,3193079 +2023-08-01,IA,6,3193079 +2023-08-02,IA,6,3193079 +2023-08-03,IA,11,3193079 +2023-08-04,IA,10,3193079 +2023-08-05,IA,5,3193079 +2023-08-06,IA,8,3193079 +2023-08-07,IA,10,3193079 +2023-08-08,IA,18,3193079 +2023-08-09,IA,8,3193079 +2023-08-10,IA,10,3193079 +2023-08-11,IA,13,3193079 +2023-08-12,IA,11,3193079 +2023-08-13,IA,17,3193079 +2023-08-14,IA,13,3193079 +2023-08-15,IA,19,3193079 +2023-08-16,IA,14,3193079 +2023-08-17,IA,18,3193079 +2023-08-18,IA,17,3193079 +2023-08-19,IA,11,3193079 +2023-08-20,IA,20,3193079 +2023-08-21,IA,17,3193079 +2023-08-22,IA,15,3193079 +2023-08-23,IA,20,3193079 +2023-08-24,IA,24,3193079 +2023-08-25,IA,13,3193079 +2023-08-26,IA,23,3193079 +2023-08-27,IA,21,3193079 +2023-08-28,IA,16,3193079 +2023-08-29,IA,27,3193079 +2023-08-30,IA,13,3193079 +2023-08-31,IA,21,3193079 +2023-09-01,IA,25,3193079 +2023-09-02,IA,14,3193079 +2023-09-03,IA,12,3193079 +2023-09-04,IA,24,3193079 +2023-09-05,IA,27,3193079 +2023-09-06,IA,25,3193079 +2023-09-07,IA,16,3193079 +2023-09-08,IA,19,3193079 +2023-09-09,IA,12,3193079 +2023-09-10,IA,23,3193079 +2023-09-11,IA,17,3193079 +2023-09-12,IA,26,3193079 +2023-09-13,IA,27,3193079 +2023-09-14,IA,34,3193079 +2023-09-15,IA,18,3193079 +2023-09-16,IA,19,3193079 +2023-09-17,IA,16,3193079 +2023-09-18,IA,19,3193079 +2023-09-19,IA,33,3193079 +2023-09-20,IA,15,3193079 +2023-09-21,IA,25,3193079 +2023-09-22,IA,20,3193079 +2023-09-23,IA,19,3193079 +2023-09-24,IA,16,3193079 +2023-09-25,IA,29,3193079 +2023-09-26,IA,23,3193079 +2023-09-27,IA,22,3193079 +2023-09-28,IA,18,3193079 +2023-09-29,IA,19,3193079 +2023-09-30,IA,14,3193079 +2023-10-01,IA,21,3193079 +2023-10-02,IA,17,3193079 +2023-10-03,IA,21,3193079 +2023-10-04,IA,16,3193079 +2023-10-05,IA,15,3193079 +2023-10-06,IA,17,3193079 +2023-10-07,IA,10,3193079 +2023-10-08,IA,14,3193079 +2023-10-09,IA,18,3193079 +2023-10-10,IA,20,3193079 +2023-10-11,IA,26,3193079 +2023-10-12,IA,18,3193079 +2023-10-13,IA,22,3193079 +2023-10-14,IA,24,3193079 +2023-10-15,IA,15,3193079 +2023-10-16,IA,28,3193079 +2023-10-17,IA,31,3193079 +2023-10-18,IA,25,3193079 +2023-10-19,IA,34,3193079 +2023-10-20,IA,14,3193079 +2023-10-21,IA,16,3193079 +2023-10-22,IA,31,3193079 +2023-10-23,IA,20,3193079 +2023-10-24,IA,26,3193079 +2023-10-25,IA,20,3193079 +2023-10-26,IA,23,3193079 +2023-10-27,IA,19,3193079 +2023-10-28,IA,17,3193079 +2023-10-29,IA,14,3193079 +2023-10-30,IA,14,3193079 +2023-10-31,IA,17,3193079 +2023-11-01,IA,17,3193079 +2023-11-02,IA,11,3193079 +2023-11-03,IA,20,3193079 +2023-11-04,IA,29,3193079 +2023-11-05,IA,21,3193079 +2023-11-06,IA,23,3193079 +2023-11-07,IA,27,3193079 +2023-11-08,IA,31,3193079 +2023-11-09,IA,26,3193079 +2023-11-10,IA,24,3193079 +2023-11-11,IA,16,3193079 +2023-11-12,IA,20,3193079 +2023-11-13,IA,27,3193079 +2023-11-14,IA,39,3193079 +2023-11-15,IA,24,3193079 +2023-11-16,IA,29,3193079 +2023-11-17,IA,29,3193079 +2023-11-18,IA,24,3193079 +2023-11-19,IA,21,3193079 +2023-11-20,IA,33,3193079 +2023-11-21,IA,34,3193079 +2023-11-22,IA,28,3193079 +2023-11-23,IA,25,3193079 +2023-11-24,IA,46,3193079 +2023-11-25,IA,33,3193079 +2023-11-26,IA,40,3193079 +2023-11-27,IA,50,3193079 +2023-11-28,IA,46,3193079 +2023-11-29,IA,49,3193079 +2023-11-30,IA,56,3193079 +2023-12-01,IA,44,3193079 +2023-12-02,IA,42,3193079 +2023-12-03,IA,51,3193079 +2023-12-04,IA,42,3193079 +2023-12-05,IA,44,3193079 +2023-12-06,IA,55,3193079 +2023-12-07,IA,54,3193079 +2023-12-08,IA,58,3193079 +2023-12-09,IA,54,3193079 +2023-12-10,IA,53,3193079 +2023-12-11,IA,59,3193079 +2023-12-12,IA,57,3193079 +2023-12-13,IA,69,3193079 +2023-12-14,IA,51,3193079 +2023-12-15,IA,53,3193079 +2023-12-16,IA,56,3193079 +2023-12-17,IA,54,3193079 +2023-12-18,IA,65,3193079 +2023-12-19,IA,56,3193079 +2023-12-20,IA,58,3193079 +2023-12-21,IA,73,3193079 +2023-12-22,IA,49,3193079 +2023-12-23,IA,48,3193079 +2023-12-24,IA,38,3193079 +2023-12-25,IA,66,3193079 +2023-12-26,IA,56,3193079 +2023-12-27,IA,79,3193079 +2023-12-28,IA,58,3193079 +2023-12-29,IA,61,3193079 +2023-12-30,IA,47,3193079 +2023-12-31,IA,49,3193079 +2024-01-01,IA,37,3193079 +2024-01-02,IA,55,3193079 +2024-01-03,IA,65,3193079 +2024-01-04,IA,61,3193079 +2024-01-05,IA,57,3193079 +2024-01-06,IA,38,3193079 +2024-01-07,IA,45,3193079 +2024-01-08,IA,57,3193079 +2024-01-09,IA,36,3193079 +2024-01-10,IA,32,3193079 +2024-01-11,IA,47,3193079 +2024-01-12,IA,21,3193079 +2024-01-13,IA,26,3193079 +2024-01-14,IA,34,3193079 +2024-01-15,IA,42,3193079 +2024-01-16,IA,50,3193079 +2024-01-17,IA,29,3193079 +2024-01-18,IA,29,3193079 +2024-01-19,IA,23,3193079 +2022-12-31,ID,15,1900923 +2023-01-01,ID,11,1900923 +2023-01-02,ID,19,1900923 +2023-01-03,ID,13,1900923 +2023-01-04,ID,23,1900923 +2023-01-05,ID,18,1900923 +2023-01-06,ID,13,1900923 +2023-01-07,ID,14,1900923 +2023-01-08,ID,16,1900923 +2023-01-09,ID,26,1900923 +2023-01-10,ID,14,1900923 +2023-01-11,ID,20,1900923 +2023-01-12,ID,21,1900923 +2023-01-13,ID,11,1900923 +2023-01-14,ID,9,1900923 +2023-01-15,ID,14,1900923 +2023-01-16,ID,18,1900923 +2023-01-17,ID,10,1900923 +2023-01-18,ID,20,1900923 +2023-01-19,ID,14,1900923 +2023-01-20,ID,9,1900923 +2023-01-21,ID,16,1900923 +2023-01-22,ID,3,1900923 +2023-01-23,ID,10,1900923 +2023-01-24,ID,18,1900923 +2023-01-25,ID,19,1900923 +2023-01-26,ID,7,1900923 +2023-01-27,ID,18,1900923 +2023-01-28,ID,14,1900923 +2023-01-29,ID,6,1900923 +2023-01-30,ID,11,1900923 +2023-01-31,ID,14,1900923 +2023-02-01,ID,19,1900923 +2023-02-02,ID,10,1900923 +2023-02-03,ID,12,1900923 +2023-02-04,ID,12,1900923 +2023-02-05,ID,12,1900923 +2023-02-06,ID,12,1900923 +2023-02-07,ID,19,1900923 +2023-02-08,ID,11,1900923 +2023-02-09,ID,21,1900923 +2023-02-10,ID,13,1900923 +2023-02-11,ID,15,1900923 +2023-02-12,ID,12,1900923 +2023-02-13,ID,15,1900923 +2023-02-14,ID,15,1900923 +2023-02-15,ID,19,1900923 +2023-02-16,ID,21,1900923 +2023-02-17,ID,20,1900923 +2023-02-18,ID,13,1900923 +2023-02-19,ID,21,1900923 +2023-02-20,ID,18,1900923 +2023-02-21,ID,17,1900923 +2023-02-22,ID,21,1900923 +2023-02-23,ID,8,1900923 +2023-02-24,ID,12,1900923 +2023-02-25,ID,11,1900923 +2023-02-26,ID,15,1900923 +2023-02-27,ID,15,1900923 +2023-02-28,ID,13,1900923 +2023-03-01,ID,8,1900923 +2023-03-02,ID,18,1900923 +2023-03-03,ID,19,1900923 +2023-03-04,ID,25,1900923 +2023-03-05,ID,12,1900923 +2023-03-06,ID,22,1900923 +2023-03-07,ID,21,1900923 +2023-03-08,ID,8,1900923 +2023-03-09,ID,18,1900923 +2023-03-10,ID,15,1900923 +2023-03-11,ID,22,1900923 +2023-03-12,ID,10,1900923 +2023-03-13,ID,15,1900923 +2023-03-14,ID,22,1900923 +2023-03-15,ID,17,1900923 +2023-03-16,ID,11,1900923 +2023-03-17,ID,11,1900923 +2023-03-18,ID,13,1900923 +2023-03-19,ID,10,1900923 +2023-03-20,ID,11,1900923 +2023-03-21,ID,20,1900923 +2023-03-22,ID,12,1900923 +2023-03-23,ID,13,1900923 +2023-03-24,ID,8,1900923 +2023-03-25,ID,17,1900923 +2023-03-26,ID,12,1900923 +2023-03-27,ID,17,1900923 +2023-03-28,ID,21,1900923 +2023-03-29,ID,12,1900923 +2023-03-30,ID,21,1900923 +2023-03-31,ID,11,1900923 +2023-04-01,ID,17,1900923 +2023-04-02,ID,13,1900923 +2023-04-03,ID,10,1900923 +2023-04-04,ID,14,1900923 +2023-04-05,ID,20,1900923 +2023-04-06,ID,8,1900923 +2023-04-07,ID,13,1900923 +2023-04-08,ID,9,1900923 +2023-04-09,ID,11,1900923 +2023-04-10,ID,14,1900923 +2023-04-11,ID,11,1900923 +2023-04-12,ID,14,1900923 +2023-04-13,ID,4,1900923 +2023-04-14,ID,13,1900923 +2023-04-15,ID,9,1900923 +2023-04-16,ID,7,1900923 +2023-04-17,ID,8,1900923 +2023-04-18,ID,14,1900923 +2023-04-19,ID,9,1900923 +2023-04-20,ID,10,1900923 +2023-04-21,ID,5,1900923 +2023-04-22,ID,6,1900923 +2023-04-23,ID,5,1900923 +2023-04-24,ID,13,1900923 +2023-04-25,ID,12,1900923 +2023-04-26,ID,10,1900923 +2023-04-27,ID,5,1900923 +2023-04-28,ID,6,1900923 +2023-04-29,ID,11,1900923 +2023-04-30,ID,6,1900923 +2023-05-01,ID,12,1900923 +2023-05-02,ID,6,1900923 +2023-05-03,ID,5,1900923 +2023-05-04,ID,13,1900923 +2023-05-05,ID,2,1900923 +2023-05-06,ID,1,1900923 +2023-05-07,ID,8,1900923 +2023-05-08,ID,9,1900923 +2023-05-09,ID,6,1900923 +2023-05-10,ID,6,1900923 +2023-05-11,ID,7,1900923 +2023-05-12,ID,3,1900923 +2023-05-13,ID,1,1900923 +2023-05-14,ID,5,1900923 +2023-05-15,ID,3,1900923 +2023-05-16,ID,5,1900923 +2023-05-17,ID,8,1900923 +2023-05-18,ID,6,1900923 +2023-05-19,ID,3,1900923 +2023-05-20,ID,2,1900923 +2023-05-21,ID,6,1900923 +2023-05-22,ID,6,1900923 +2023-05-23,ID,5,1900923 +2023-05-24,ID,2,1900923 +2023-05-25,ID,7,1900923 +2023-05-26,ID,7,1900923 +2023-05-27,ID,1,1900923 +2023-05-28,ID,8,1900923 +2023-05-29,ID,1,1900923 +2023-05-30,ID,2,1900923 +2023-05-31,ID,4,1900923 +2023-06-01,ID,3,1900923 +2023-06-02,ID,8,1900923 +2023-06-03,ID,4,1900923 +2023-06-04,ID,5,1900923 +2023-06-05,ID,6,1900923 +2023-06-06,ID,3,1900923 +2023-06-07,ID,3,1900923 +2023-06-08,ID,7,1900923 +2023-06-09,ID,3,1900923 +2023-06-10,ID,6,1900923 +2023-06-11,ID,3,1900923 +2023-06-12,ID,6,1900923 +2023-06-13,ID,2,1900923 +2023-06-14,ID,4,1900923 +2023-06-15,ID,4,1900923 +2023-06-16,ID,3,1900923 +2023-06-17,ID,0,1900923 +2023-06-18,ID,6,1900923 +2023-06-19,ID,4,1900923 +2023-06-20,ID,3,1900923 +2023-06-21,ID,3,1900923 +2023-06-22,ID,4,1900923 +2023-06-23,ID,2,1900923 +2023-06-24,ID,5,1900923 +2023-06-25,ID,3,1900923 +2023-06-26,ID,5,1900923 +2023-06-27,ID,1,1900923 +2023-06-28,ID,6,1900923 +2023-06-29,ID,4,1900923 +2023-06-30,ID,6,1900923 +2023-07-01,ID,4,1900923 +2023-07-02,ID,4,1900923 +2023-07-03,ID,1,1900923 +2023-07-04,ID,3,1900923 +2023-07-05,ID,7,1900923 +2023-07-06,ID,3,1900923 +2023-07-07,ID,5,1900923 +2023-07-08,ID,3,1900923 +2023-07-09,ID,2,1900923 +2023-07-10,ID,6,1900923 +2023-07-11,ID,3,1900923 +2023-07-12,ID,1,1900923 +2023-07-13,ID,3,1900923 +2023-07-14,ID,4,1900923 +2023-07-15,ID,3,1900923 +2023-07-16,ID,5,1900923 +2023-07-17,ID,4,1900923 +2023-07-18,ID,2,1900923 +2023-07-19,ID,4,1900923 +2023-07-20,ID,7,1900923 +2023-07-21,ID,2,1900923 +2023-07-22,ID,3,1900923 +2023-07-23,ID,4,1900923 +2023-07-24,ID,4,1900923 +2023-07-25,ID,2,1900923 +2023-07-26,ID,6,1900923 +2023-07-27,ID,4,1900923 +2023-07-28,ID,2,1900923 +2023-07-29,ID,4,1900923 +2023-07-30,ID,3,1900923 +2023-07-31,ID,5,1900923 +2023-08-01,ID,2,1900923 +2023-08-02,ID,9,1900923 +2023-08-03,ID,10,1900923 +2023-08-04,ID,8,1900923 +2023-08-05,ID,10,1900923 +2023-08-06,ID,6,1900923 +2023-08-07,ID,5,1900923 +2023-08-08,ID,9,1900923 +2023-08-09,ID,3,1900923 +2023-08-10,ID,4,1900923 +2023-08-11,ID,4,1900923 +2023-08-12,ID,4,1900923 +2023-08-13,ID,8,1900923 +2023-08-14,ID,8,1900923 +2023-08-15,ID,6,1900923 +2023-08-16,ID,8,1900923 +2023-08-17,ID,9,1900923 +2023-08-18,ID,12,1900923 +2023-08-19,ID,8,1900923 +2023-08-20,ID,7,1900923 +2023-08-21,ID,13,1900923 +2023-08-22,ID,3,1900923 +2023-08-23,ID,12,1900923 +2023-08-24,ID,10,1900923 +2023-08-25,ID,11,1900923 +2023-08-26,ID,12,1900923 +2023-08-27,ID,7,1900923 +2023-08-28,ID,8,1900923 +2023-08-29,ID,13,1900923 +2023-08-30,ID,15,1900923 +2023-08-31,ID,13,1900923 +2023-09-01,ID,11,1900923 +2023-09-02,ID,11,1900923 +2023-09-03,ID,9,1900923 +2023-09-04,ID,9,1900923 +2023-09-05,ID,7,1900923 +2023-09-06,ID,11,1900923 +2023-09-07,ID,14,1900923 +2023-09-08,ID,16,1900923 +2023-09-09,ID,17,1900923 +2023-09-10,ID,10,1900923 +2023-09-11,ID,14,1900923 +2023-09-12,ID,10,1900923 +2023-09-13,ID,8,1900923 +2023-09-14,ID,13,1900923 +2023-09-15,ID,8,1900923 +2023-09-16,ID,8,1900923 +2023-09-17,ID,11,1900923 +2023-09-18,ID,20,1900923 +2023-09-19,ID,12,1900923 +2023-09-20,ID,18,1900923 +2023-09-21,ID,19,1900923 +2023-09-22,ID,11,1900923 +2023-09-23,ID,18,1900923 +2023-09-24,ID,19,1900923 +2023-09-25,ID,24,1900923 +2023-09-26,ID,14,1900923 +2023-09-27,ID,15,1900923 +2023-09-28,ID,23,1900923 +2023-09-29,ID,11,1900923 +2023-09-30,ID,19,1900923 +2023-10-01,ID,17,1900923 +2023-10-02,ID,26,1900923 +2023-10-03,ID,15,1900923 +2023-10-04,ID,22,1900923 +2023-10-05,ID,21,1900923 +2023-10-06,ID,14,1900923 +2023-10-07,ID,10,1900923 +2023-10-08,ID,17,1900923 +2023-10-09,ID,13,1900923 +2023-10-10,ID,15,1900923 +2023-10-11,ID,20,1900923 +2023-10-12,ID,25,1900923 +2023-10-13,ID,12,1900923 +2023-10-14,ID,9,1900923 +2023-10-15,ID,15,1900923 +2023-10-16,ID,15,1900923 +2023-10-17,ID,20,1900923 +2023-10-18,ID,15,1900923 +2023-10-19,ID,17,1900923 +2023-10-20,ID,21,1900923 +2023-10-21,ID,5,1900923 +2023-10-22,ID,12,1900923 +2023-10-23,ID,18,1900923 +2023-10-24,ID,6,1900923 +2023-10-25,ID,13,1900923 +2023-10-26,ID,16,1900923 +2023-10-27,ID,18,1900923 +2023-10-28,ID,9,1900923 +2023-10-29,ID,19,1900923 +2023-10-30,ID,16,1900923 +2023-10-31,ID,12,1900923 +2023-11-01,ID,11,1900923 +2023-11-02,ID,13,1900923 +2023-11-03,ID,14,1900923 +2023-11-04,ID,18,1900923 +2023-11-05,ID,17,1900923 +2023-11-06,ID,15,1900923 +2023-11-07,ID,6,1900923 +2023-11-08,ID,18,1900923 +2023-11-09,ID,13,1900923 +2023-11-10,ID,13,1900923 +2023-11-11,ID,17,1900923 +2023-11-12,ID,17,1900923 +2023-11-13,ID,5,1900923 +2023-11-14,ID,13,1900923 +2023-11-15,ID,11,1900923 +2023-11-16,ID,6,1900923 +2023-11-17,ID,20,1900923 +2023-11-18,ID,8,1900923 +2023-11-19,ID,21,1900923 +2023-11-20,ID,17,1900923 +2023-11-21,ID,14,1900923 +2023-11-22,ID,19,1900923 +2023-11-23,ID,16,1900923 +2023-11-24,ID,21,1900923 +2023-11-25,ID,17,1900923 +2023-11-26,ID,20,1900923 +2023-11-27,ID,28,1900923 +2023-11-28,ID,35,1900923 +2023-11-29,ID,18,1900923 +2023-11-30,ID,29,1900923 +2023-12-01,ID,10,1900923 +2023-12-02,ID,15,1900923 +2023-12-03,ID,28,1900923 +2023-12-04,ID,31,1900923 +2023-12-05,ID,24,1900923 +2023-12-06,ID,26,1900923 +2023-12-07,ID,19,1900923 +2023-12-08,ID,24,1900923 +2023-12-09,ID,18,1900923 +2023-12-10,ID,25,1900923 +2023-12-11,ID,29,1900923 +2023-12-12,ID,27,1900923 +2023-12-13,ID,24,1900923 +2023-12-14,ID,24,1900923 +2023-12-15,ID,16,1900923 +2023-12-16,ID,22,1900923 +2023-12-17,ID,24,1900923 +2023-12-18,ID,29,1900923 +2023-12-19,ID,24,1900923 +2023-12-20,ID,19,1900923 +2023-12-21,ID,28,1900923 +2023-12-22,ID,23,1900923 +2023-12-23,ID,23,1900923 +2023-12-24,ID,25,1900923 +2023-12-25,ID,21,1900923 +2023-12-26,ID,34,1900923 +2023-12-27,ID,33,1900923 +2023-12-28,ID,26,1900923 +2023-12-29,ID,29,1900923 +2023-12-30,ID,31,1900923 +2023-12-31,ID,22,1900923 +2024-01-01,ID,38,1900923 +2024-01-02,ID,35,1900923 +2024-01-03,ID,32,1900923 +2024-01-04,ID,21,1900923 +2024-01-05,ID,23,1900923 +2024-01-06,ID,27,1900923 +2024-01-07,ID,22,1900923 +2024-01-08,ID,23,1900923 +2024-01-09,ID,29,1900923 +2024-01-10,ID,29,1900923 +2024-01-11,ID,20,1900923 +2024-01-12,ID,17,1900923 +2024-01-13,ID,20,1900923 +2024-01-14,ID,14,1900923 +2024-01-15,ID,15,1900923 +2024-01-16,ID,15,1900923 +2024-01-17,ID,7,1900923 +2024-01-18,ID,14,1900923 +2024-01-19,ID,20,1900923 +2022-12-31,IL,253,12671469 +2023-01-01,IL,238,12671469 +2023-01-02,IL,285,12671469 +2023-01-03,IL,303,12671469 +2023-01-04,IL,294,12671469 +2023-01-05,IL,248,12671469 +2023-01-06,IL,229,12671469 +2023-01-07,IL,216,12671469 +2023-01-08,IL,202,12671469 +2023-01-09,IL,242,12671469 +2023-01-10,IL,214,12671469 +2023-01-11,IL,223,12671469 +2023-01-12,IL,191,12671469 +2023-01-13,IL,197,12671469 +2023-01-14,IL,211,12671469 +2023-01-15,IL,167,12671469 +2023-01-16,IL,186,12671469 +2023-01-17,IL,180,12671469 +2023-01-18,IL,198,12671469 +2023-01-19,IL,189,12671469 +2023-01-20,IL,151,12671469 +2023-01-21,IL,157,12671469 +2023-01-22,IL,139,12671469 +2023-01-23,IL,183,12671469 +2023-01-24,IL,155,12671469 +2023-01-25,IL,182,12671469 +2023-01-26,IL,154,12671469 +2023-01-27,IL,147,12671469 +2023-01-28,IL,101,12671469 +2023-01-29,IL,116,12671469 +2023-01-30,IL,144,12671469 +2023-01-31,IL,130,12671469 +2023-02-01,IL,168,12671469 +2023-02-02,IL,159,12671469 +2023-02-03,IL,134,12671469 +2023-02-04,IL,114,12671469 +2023-02-05,IL,124,12671469 +2023-02-06,IL,162,12671469 +2023-02-07,IL,143,12671469 +2023-02-08,IL,147,12671469 +2023-02-09,IL,149,12671469 +2023-02-10,IL,159,12671469 +2023-02-11,IL,145,12671469 +2023-02-12,IL,134,12671469 +2023-02-13,IL,155,12671469 +2023-02-14,IL,173,12671469 +2023-02-15,IL,168,12671469 +2023-02-16,IL,149,12671469 +2023-02-17,IL,151,12671469 +2023-02-18,IL,137,12671469 +2023-02-19,IL,154,12671469 +2023-02-20,IL,175,12671469 +2023-02-21,IL,166,12671469 +2023-02-22,IL,140,12671469 +2023-02-23,IL,149,12671469 +2023-02-24,IL,141,12671469 +2023-02-25,IL,119,12671469 +2023-02-26,IL,143,12671469 +2023-02-27,IL,161,12671469 +2023-02-28,IL,195,12671469 +2023-03-01,IL,161,12671469 +2023-03-02,IL,139,12671469 +2023-03-03,IL,145,12671469 +2023-03-04,IL,136,12671469 +2023-03-05,IL,133,12671469 +2023-03-06,IL,168,12671469 +2023-03-07,IL,141,12671469 +2023-03-08,IL,139,12671469 +2023-03-09,IL,149,12671469 +2023-03-10,IL,117,12671469 +2023-03-11,IL,120,12671469 +2023-03-12,IL,113,12671469 +2023-03-13,IL,133,12671469 +2023-03-14,IL,144,12671469 +2023-03-15,IL,162,12671469 +2023-03-16,IL,154,12671469 +2023-03-17,IL,141,12671469 +2023-03-18,IL,93,12671469 +2023-03-19,IL,125,12671469 +2023-03-20,IL,147,12671469 +2023-03-21,IL,145,12671469 +2023-03-22,IL,140,12671469 +2023-03-23,IL,134,12671469 +2023-03-24,IL,143,12671469 +2023-03-25,IL,124,12671469 +2023-03-26,IL,94,12671469 +2023-03-27,IL,149,12671469 +2023-03-28,IL,147,12671469 +2023-03-29,IL,135,12671469 +2023-03-30,IL,136,12671469 +2023-03-31,IL,143,12671469 +2023-04-01,IL,107,12671469 +2023-04-02,IL,103,12671469 +2023-04-03,IL,117,12671469 +2023-04-04,IL,91,12671469 +2023-04-05,IL,107,12671469 +2023-04-06,IL,121,12671469 +2023-04-07,IL,112,12671469 +2023-04-08,IL,78,12671469 +2023-04-09,IL,82,12671469 +2023-04-10,IL,105,12671469 +2023-04-11,IL,88,12671469 +2023-04-12,IL,105,12671469 +2023-04-13,IL,102,12671469 +2023-04-14,IL,107,12671469 +2023-04-15,IL,86,12671469 +2023-04-16,IL,73,12671469 +2023-04-17,IL,82,12671469 +2023-04-18,IL,106,12671469 +2023-04-19,IL,86,12671469 +2023-04-20,IL,83,12671469 +2023-04-21,IL,69,12671469 +2023-04-22,IL,60,12671469 +2023-04-23,IL,67,12671469 +2023-04-24,IL,85,12671469 +2023-04-25,IL,59,12671469 +2023-04-26,IL,65,12671469 +2023-04-27,IL,70,12671469 +2023-04-28,IL,52,12671469 +2023-04-29,IL,62,12671469 +2023-04-30,IL,56,12671469 +2023-05-01,IL,51,12671469 +2023-05-02,IL,75,12671469 +2023-05-03,IL,53,12671469 +2023-05-04,IL,64,12671469 +2023-05-05,IL,79,12671469 +2023-05-06,IL,51,12671469 +2023-05-07,IL,58,12671469 +2023-05-08,IL,68,12671469 +2023-05-09,IL,77,12671469 +2023-05-10,IL,66,12671469 +2023-05-11,IL,68,12671469 +2023-05-12,IL,51,12671469 +2023-05-13,IL,45,12671469 +2023-05-14,IL,26,12671469 +2023-05-15,IL,56,12671469 +2023-05-16,IL,50,12671469 +2023-05-17,IL,61,12671469 +2023-05-18,IL,59,12671469 +2023-05-19,IL,56,12671469 +2023-05-20,IL,37,12671469 +2023-05-21,IL,37,12671469 +2023-05-22,IL,47,12671469 +2023-05-23,IL,43,12671469 +2023-05-24,IL,33,12671469 +2023-05-25,IL,37,12671469 +2023-05-26,IL,39,12671469 +2023-05-27,IL,32,12671469 +2023-05-28,IL,40,12671469 +2023-05-29,IL,43,12671469 +2023-05-30,IL,49,12671469 +2023-05-31,IL,42,12671469 +2023-06-01,IL,39,12671469 +2023-06-02,IL,40,12671469 +2023-06-03,IL,23,12671469 +2023-06-04,IL,25,12671469 +2023-06-05,IL,30,12671469 +2023-06-06,IL,30,12671469 +2023-06-07,IL,32,12671469 +2023-06-08,IL,30,12671469 +2023-06-09,IL,22,12671469 +2023-06-10,IL,25,12671469 +2023-06-11,IL,34,12671469 +2023-06-12,IL,28,12671469 +2023-06-13,IL,30,12671469 +2023-06-14,IL,26,12671469 +2023-06-15,IL,42,12671469 +2023-06-16,IL,39,12671469 +2023-06-17,IL,37,12671469 +2023-06-18,IL,14,12671469 +2023-06-19,IL,35,12671469 +2023-06-20,IL,28,12671469 +2023-06-21,IL,31,12671469 +2023-06-22,IL,40,12671469 +2023-06-23,IL,30,12671469 +2023-06-24,IL,24,12671469 +2023-06-25,IL,22,12671469 +2023-06-26,IL,35,12671469 +2023-06-27,IL,32,12671469 +2023-06-28,IL,26,12671469 +2023-06-29,IL,27,12671469 +2023-06-30,IL,22,12671469 +2023-07-01,IL,21,12671469 +2023-07-02,IL,28,12671469 +2023-07-03,IL,33,12671469 +2023-07-04,IL,23,12671469 +2023-07-05,IL,29,12671469 +2023-07-06,IL,39,12671469 +2023-07-07,IL,42,12671469 +2023-07-08,IL,32,12671469 +2023-07-09,IL,26,12671469 +2023-07-10,IL,24,12671469 +2023-07-11,IL,27,12671469 +2023-07-12,IL,26,12671469 +2023-07-13,IL,16,12671469 +2023-07-14,IL,17,12671469 +2023-07-15,IL,20,12671469 +2023-07-16,IL,27,12671469 +2023-07-17,IL,27,12671469 +2023-07-18,IL,39,12671469 +2023-07-19,IL,35,12671469 +2023-07-20,IL,30,12671469 +2023-07-21,IL,33,12671469 +2023-07-22,IL,38,12671469 +2023-07-23,IL,26,12671469 +2023-07-24,IL,42,12671469 +2023-07-25,IL,39,12671469 +2023-07-26,IL,33,12671469 +2023-07-27,IL,40,12671469 +2023-07-28,IL,38,12671469 +2023-07-29,IL,25,12671469 +2023-07-30,IL,40,12671469 +2023-07-31,IL,36,12671469 +2023-08-01,IL,38,12671469 +2023-08-02,IL,53,12671469 +2023-08-03,IL,66,12671469 +2023-08-04,IL,48,12671469 +2023-08-05,IL,48,12671469 +2023-08-06,IL,39,12671469 +2023-08-07,IL,53,12671469 +2023-08-08,IL,39,12671469 +2023-08-09,IL,50,12671469 +2023-08-10,IL,67,12671469 +2023-08-11,IL,58,12671469 +2023-08-12,IL,44,12671469 +2023-08-13,IL,53,12671469 +2023-08-14,IL,75,12671469 +2023-08-15,IL,65,12671469 +2023-08-16,IL,62,12671469 +2023-08-17,IL,65,12671469 +2023-08-18,IL,86,12671469 +2023-08-19,IL,79,12671469 +2023-08-20,IL,73,12671469 +2023-08-21,IL,70,12671469 +2023-08-22,IL,71,12671469 +2023-08-23,IL,86,12671469 +2023-08-24,IL,87,12671469 +2023-08-25,IL,101,12671469 +2023-08-26,IL,70,12671469 +2023-08-27,IL,76,12671469 +2023-08-28,IL,82,12671469 +2023-08-29,IL,91,12671469 +2023-08-30,IL,90,12671469 +2023-08-31,IL,88,12671469 +2023-09-01,IL,111,12671469 +2023-09-02,IL,74,12671469 +2023-09-03,IL,74,12671469 +2023-09-04,IL,94,12671469 +2023-09-05,IL,98,12671469 +2023-09-06,IL,95,12671469 +2023-09-07,IL,114,12671469 +2023-09-08,IL,104,12671469 +2023-09-09,IL,93,12671469 +2023-09-10,IL,89,12671469 +2023-09-11,IL,103,12671469 +2023-09-12,IL,121,12671469 +2023-09-13,IL,90,12671469 +2023-09-14,IL,99,12671469 +2023-09-15,IL,91,12671469 +2023-09-16,IL,68,12671469 +2023-09-17,IL,92,12671469 +2023-09-18,IL,94,12671469 +2023-09-19,IL,117,12671469 +2023-09-20,IL,101,12671469 +2023-09-21,IL,100,12671469 +2023-09-22,IL,109,12671469 +2023-09-23,IL,77,12671469 +2023-09-24,IL,87,12671469 +2023-09-25,IL,97,12671469 +2023-09-26,IL,85,12671469 +2023-09-27,IL,98,12671469 +2023-09-28,IL,78,12671469 +2023-09-29,IL,68,12671469 +2023-09-30,IL,78,12671469 +2023-10-01,IL,71,12671469 +2023-10-02,IL,94,12671469 +2023-10-03,IL,75,12671469 +2023-10-04,IL,75,12671469 +2023-10-05,IL,85,12671469 +2023-10-06,IL,70,12671469 +2023-10-07,IL,48,12671469 +2023-10-08,IL,56,12671469 +2023-10-09,IL,90,12671469 +2023-10-10,IL,83,12671469 +2023-10-11,IL,67,12671469 +2023-10-12,IL,76,12671469 +2023-10-13,IL,69,12671469 +2023-10-14,IL,65,12671469 +2023-10-15,IL,84,12671469 +2023-10-16,IL,89,12671469 +2023-10-17,IL,76,12671469 +2023-10-18,IL,103,12671469 +2023-10-19,IL,85,12671469 +2023-10-20,IL,77,12671469 +2023-10-21,IL,86,12671469 +2023-10-22,IL,93,12671469 +2023-10-23,IL,77,12671469 +2023-10-24,IL,121,12671469 +2023-10-25,IL,107,12671469 +2023-10-26,IL,116,12671469 +2023-10-27,IL,118,12671469 +2023-10-28,IL,92,12671469 +2023-10-29,IL,80,12671469 +2023-10-30,IL,88,12671469 +2023-10-31,IL,92,12671469 +2023-11-01,IL,107,12671469 +2023-11-02,IL,90,12671469 +2023-11-03,IL,100,12671469 +2023-11-04,IL,108,12671469 +2023-11-05,IL,106,12671469 +2023-11-06,IL,87,12671469 +2023-11-07,IL,129,12671469 +2023-11-08,IL,104,12671469 +2023-11-09,IL,99,12671469 +2023-11-10,IL,117,12671469 +2023-11-11,IL,115,12671469 +2023-11-12,IL,115,12671469 +2023-11-13,IL,121,12671469 +2023-11-14,IL,130,12671469 +2023-11-15,IL,138,12671469 +2023-11-16,IL,140,12671469 +2023-11-17,IL,118,12671469 +2023-11-18,IL,130,12671469 +2023-11-19,IL,109,12671469 +2023-11-20,IL,150,12671469 +2023-11-21,IL,165,12671469 +2023-11-22,IL,160,12671469 +2023-11-23,IL,144,12671469 +2023-11-24,IL,151,12671469 +2023-11-25,IL,146,12671469 +2023-11-26,IL,182,12671469 +2023-11-27,IL,189,12671469 +2023-11-28,IL,194,12671469 +2023-11-29,IL,186,12671469 +2023-11-30,IL,186,12671469 +2023-12-01,IL,187,12671469 +2023-12-02,IL,178,12671469 +2023-12-03,IL,163,12671469 +2023-12-04,IL,197,12671469 +2023-12-05,IL,163,12671469 +2023-12-06,IL,180,12671469 +2023-12-07,IL,180,12671469 +2023-12-08,IL,193,12671469 +2023-12-09,IL,185,12671469 +2023-12-10,IL,167,12671469 +2023-12-11,IL,193,12671469 +2023-12-12,IL,233,12671469 +2023-12-13,IL,217,12671469 +2023-12-14,IL,182,12671469 +2023-12-15,IL,197,12671469 +2023-12-16,IL,203,12671469 +2023-12-17,IL,182,12671469 +2023-12-18,IL,241,12671469 +2023-12-19,IL,216,12671469 +2023-12-20,IL,227,12671469 +2023-12-21,IL,250,12671469 +2023-12-22,IL,201,12671469 +2023-12-23,IL,202,12671469 +2023-12-24,IL,203,12671469 +2023-12-25,IL,236,12671469 +2023-12-26,IL,277,12671469 +2023-12-27,IL,273,12671469 +2023-12-28,IL,314,12671469 +2023-12-29,IL,271,12671469 +2023-12-30,IL,229,12671469 +2023-12-31,IL,194,12671469 +2024-01-01,IL,204,12671469 +2024-01-02,IL,219,12671469 +2024-01-03,IL,216,12671469 +2024-01-04,IL,219,12671469 +2024-01-05,IL,213,12671469 +2024-01-06,IL,147,12671469 +2024-01-07,IL,169,12671469 +2024-01-08,IL,212,12671469 +2024-01-09,IL,189,12671469 +2024-01-10,IL,207,12671469 +2024-01-11,IL,177,12671469 +2024-01-12,IL,158,12671469 +2024-01-13,IL,124,12671469 +2024-01-14,IL,127,12671469 +2024-01-15,IL,180,12671469 +2024-01-16,IL,184,12671469 +2024-01-17,IL,184,12671469 +2024-01-18,IL,162,12671469 +2024-01-19,IL,158,12671469 +2022-12-31,IN,124,6805985 +2023-01-01,IN,104,6805985 +2023-01-02,IN,121,6805985 +2023-01-03,IN,107,6805985 +2023-01-04,IN,106,6805985 +2023-01-05,IN,116,6805985 +2023-01-06,IN,102,6805985 +2023-01-07,IN,76,6805985 +2023-01-08,IN,79,6805985 +2023-01-09,IN,93,6805985 +2023-01-10,IN,100,6805985 +2023-01-11,IN,92,6805985 +2023-01-12,IN,79,6805985 +2023-01-13,IN,69,6805985 +2023-01-14,IN,56,6805985 +2023-01-15,IN,64,6805985 +2023-01-16,IN,76,6805985 +2023-01-17,IN,73,6805985 +2023-01-18,IN,89,6805985 +2023-01-19,IN,87,6805985 +2023-01-20,IN,64,6805985 +2023-01-21,IN,49,6805985 +2023-01-22,IN,54,6805985 +2023-01-23,IN,59,6805985 +2023-01-24,IN,86,6805985 +2023-01-25,IN,69,6805985 +2023-01-26,IN,72,6805985 +2023-01-27,IN,59,6805985 +2023-01-28,IN,58,6805985 +2023-01-29,IN,57,6805985 +2023-01-30,IN,60,6805985 +2023-01-31,IN,52,6805985 +2023-02-01,IN,71,6805985 +2023-02-02,IN,55,6805985 +2023-02-03,IN,49,6805985 +2023-02-04,IN,47,6805985 +2023-02-05,IN,52,6805985 +2023-02-06,IN,67,6805985 +2023-02-07,IN,89,6805985 +2023-02-08,IN,76,6805985 +2023-02-09,IN,67,6805985 +2023-02-10,IN,56,6805985 +2023-02-11,IN,52,6805985 +2023-02-12,IN,49,6805985 +2023-02-13,IN,69,6805985 +2023-02-14,IN,85,6805985 +2023-02-15,IN,85,6805985 +2023-02-16,IN,76,6805985 +2023-02-17,IN,64,6805985 +2023-02-18,IN,60,6805985 +2023-02-19,IN,70,6805985 +2023-02-20,IN,62,6805985 +2023-02-21,IN,62,6805985 +2023-02-22,IN,62,6805985 +2023-02-23,IN,55,6805985 +2023-02-24,IN,77,6805985 +2023-02-25,IN,57,6805985 +2023-02-26,IN,71,6805985 +2023-02-27,IN,58,6805985 +2023-02-28,IN,56,6805985 +2023-03-01,IN,58,6805985 +2023-03-02,IN,65,6805985 +2023-03-03,IN,54,6805985 +2023-03-04,IN,52,6805985 +2023-03-05,IN,60,6805985 +2023-03-06,IN,65,6805985 +2023-03-07,IN,68,6805985 +2023-03-08,IN,51,6805985 +2023-03-09,IN,54,6805985 +2023-03-10,IN,48,6805985 +2023-03-11,IN,41,6805985 +2023-03-12,IN,42,6805985 +2023-03-13,IN,45,6805985 +2023-03-14,IN,54,6805985 +2023-03-15,IN,41,6805985 +2023-03-16,IN,51,6805985 +2023-03-17,IN,40,6805985 +2023-03-18,IN,31,6805985 +2023-03-19,IN,58,6805985 +2023-03-20,IN,48,6805985 +2023-03-21,IN,40,6805985 +2023-03-22,IN,41,6805985 +2023-03-23,IN,48,6805985 +2023-03-24,IN,49,6805985 +2023-03-25,IN,35,6805985 +2023-03-26,IN,43,6805985 +2023-03-27,IN,36,6805985 +2023-03-28,IN,39,6805985 +2023-03-29,IN,46,6805985 +2023-03-30,IN,46,6805985 +2023-03-31,IN,36,6805985 +2023-04-01,IN,29,6805985 +2023-04-02,IN,45,6805985 +2023-04-03,IN,50,6805985 +2023-04-04,IN,34,6805985 +2023-04-05,IN,38,6805985 +2023-04-06,IN,36,6805985 +2023-04-07,IN,36,6805985 +2023-04-08,IN,27,6805985 +2023-04-09,IN,27,6805985 +2023-04-10,IN,45,6805985 +2023-04-11,IN,36,6805985 +2023-04-12,IN,35,6805985 +2023-04-13,IN,48,6805985 +2023-04-14,IN,28,6805985 +2023-04-15,IN,30,6805985 +2023-04-16,IN,25,6805985 +2023-04-17,IN,31,6805985 +2023-04-18,IN,30,6805985 +2023-04-19,IN,40,6805985 +2023-04-20,IN,26,6805985 +2023-04-21,IN,21,6805985 +2023-04-22,IN,14,6805985 +2023-04-23,IN,26,6805985 +2023-04-24,IN,19,6805985 +2023-04-25,IN,28,6805985 +2023-04-26,IN,25,6805985 +2023-04-27,IN,27,6805985 +2023-04-28,IN,18,6805985 +2023-04-29,IN,22,6805985 +2023-04-30,IN,29,6805985 +2023-05-01,IN,33,6805985 +2023-05-02,IN,25,6805985 +2023-05-03,IN,18,6805985 +2023-05-04,IN,35,6805985 +2023-05-05,IN,19,6805985 +2023-05-06,IN,32,6805985 +2023-05-07,IN,33,6805985 +2023-05-08,IN,36,6805985 +2023-05-09,IN,19,6805985 +2023-05-10,IN,20,6805985 +2023-05-11,IN,21,6805985 +2023-05-12,IN,17,6805985 +2023-05-13,IN,16,6805985 +2023-05-14,IN,15,6805985 +2023-05-15,IN,18,6805985 +2023-05-16,IN,16,6805985 +2023-05-17,IN,15,6805985 +2023-05-18,IN,21,6805985 +2023-05-19,IN,13,6805985 +2023-05-20,IN,17,6805985 +2023-05-21,IN,14,6805985 +2023-05-22,IN,19,6805985 +2023-05-23,IN,18,6805985 +2023-05-24,IN,14,6805985 +2023-05-25,IN,13,6805985 +2023-05-26,IN,24,6805985 +2023-05-27,IN,16,6805985 +2023-05-28,IN,4,6805985 +2023-05-29,IN,15,6805985 +2023-05-30,IN,8,6805985 +2023-05-31,IN,10,6805985 +2023-06-01,IN,10,6805985 +2023-06-02,IN,15,6805985 +2023-06-03,IN,8,6805985 +2023-06-04,IN,9,6805985 +2023-06-05,IN,11,6805985 +2023-06-06,IN,12,6805985 +2023-06-07,IN,16,6805985 +2023-06-08,IN,7,6805985 +2023-06-09,IN,14,6805985 +2023-06-10,IN,11,6805985 +2023-06-11,IN,5,6805985 +2023-06-12,IN,9,6805985 +2023-06-13,IN,12,6805985 +2023-06-14,IN,8,6805985 +2023-06-15,IN,5,6805985 +2023-06-16,IN,7,6805985 +2023-06-17,IN,7,6805985 +2023-06-18,IN,4,6805985 +2023-06-19,IN,12,6805985 +2023-06-20,IN,14,6805985 +2023-06-21,IN,6,6805985 +2023-06-22,IN,3,6805985 +2023-06-23,IN,8,6805985 +2023-06-24,IN,6,6805985 +2023-06-25,IN,7,6805985 +2023-06-26,IN,6,6805985 +2023-06-27,IN,12,6805985 +2023-06-28,IN,7,6805985 +2023-06-29,IN,8,6805985 +2023-06-30,IN,5,6805985 +2023-07-01,IN,12,6805985 +2023-07-02,IN,8,6805985 +2023-07-03,IN,7,6805985 +2023-07-04,IN,8,6805985 +2023-07-05,IN,8,6805985 +2023-07-06,IN,10,6805985 +2023-07-07,IN,12,6805985 +2023-07-08,IN,7,6805985 +2023-07-09,IN,13,6805985 +2023-07-10,IN,4,6805985 +2023-07-11,IN,6,6805985 +2023-07-12,IN,8,6805985 +2023-07-13,IN,11,6805985 +2023-07-14,IN,14,6805985 +2023-07-15,IN,11,6805985 +2023-07-16,IN,16,6805985 +2023-07-17,IN,12,6805985 +2023-07-18,IN,13,6805985 +2023-07-19,IN,16,6805985 +2023-07-20,IN,10,6805985 +2023-07-21,IN,17,6805985 +2023-07-22,IN,15,6805985 +2023-07-23,IN,14,6805985 +2023-07-24,IN,15,6805985 +2023-07-25,IN,15,6805985 +2023-07-26,IN,15,6805985 +2023-07-27,IN,15,6805985 +2023-07-28,IN,20,6805985 +2023-07-29,IN,16,6805985 +2023-07-30,IN,11,6805985 +2023-07-31,IN,15,6805985 +2023-08-01,IN,16,6805985 +2023-08-02,IN,17,6805985 +2023-08-03,IN,31,6805985 +2023-08-04,IN,22,6805985 +2023-08-05,IN,13,6805985 +2023-08-06,IN,26,6805985 +2023-08-07,IN,20,6805985 +2023-08-08,IN,18,6805985 +2023-08-09,IN,24,6805985 +2023-08-10,IN,27,6805985 +2023-08-11,IN,20,6805985 +2023-08-12,IN,13,6805985 +2023-08-13,IN,25,6805985 +2023-08-14,IN,38,6805985 +2023-08-15,IN,36,6805985 +2023-08-16,IN,30,6805985 +2023-08-17,IN,31,6805985 +2023-08-18,IN,21,6805985 +2023-08-19,IN,36,6805985 +2023-08-20,IN,37,6805985 +2023-08-21,IN,34,6805985 +2023-08-22,IN,42,6805985 +2023-08-23,IN,48,6805985 +2023-08-24,IN,34,6805985 +2023-08-25,IN,39,6805985 +2023-08-26,IN,31,6805985 +2023-08-27,IN,34,6805985 +2023-08-28,IN,40,6805985 +2023-08-29,IN,50,6805985 +2023-08-30,IN,49,6805985 +2023-08-31,IN,49,6805985 +2023-09-01,IN,43,6805985 +2023-09-02,IN,38,6805985 +2023-09-03,IN,55,6805985 +2023-09-04,IN,49,6805985 +2023-09-05,IN,48,6805985 +2023-09-06,IN,53,6805985 +2023-09-07,IN,54,6805985 +2023-09-08,IN,39,6805985 +2023-09-09,IN,40,6805985 +2023-09-10,IN,32,6805985 +2023-09-11,IN,37,6805985 +2023-09-12,IN,59,6805985 +2023-09-13,IN,49,6805985 +2023-09-14,IN,55,6805985 +2023-09-15,IN,44,6805985 +2023-09-16,IN,35,6805985 +2023-09-17,IN,38,6805985 +2023-09-18,IN,42,6805985 +2023-09-19,IN,78,6805985 +2023-09-20,IN,79,6805985 +2023-09-21,IN,90,6805985 +2023-09-22,IN,74,6805985 +2023-09-23,IN,82,6805985 +2023-09-24,IN,80,6805985 +2023-09-25,IN,61,6805985 +2023-09-26,IN,53,6805985 +2023-09-27,IN,30,6805985 +2023-09-28,IN,41,6805985 +2023-09-29,IN,35,6805985 +2023-09-30,IN,32,6805985 +2023-10-01,IN,37,6805985 +2023-10-02,IN,33,6805985 +2023-10-03,IN,35,6805985 +2023-10-04,IN,32,6805985 +2023-10-05,IN,35,6805985 +2023-10-06,IN,24,6805985 +2023-10-07,IN,21,6805985 +2023-10-08,IN,33,6805985 +2023-10-09,IN,33,6805985 +2023-10-10,IN,53,6805985 +2023-10-11,IN,35,6805985 +2023-10-12,IN,36,6805985 +2023-10-13,IN,38,6805985 +2023-10-14,IN,42,6805985 +2023-10-15,IN,29,6805985 +2023-10-16,IN,48,6805985 +2023-10-17,IN,74,6805985 +2023-10-18,IN,53,6805985 +2023-10-19,IN,51,6805985 +2023-10-20,IN,52,6805985 +2023-10-21,IN,36,6805985 +2023-10-22,IN,38,6805985 +2023-10-23,IN,47,6805985 +2023-10-24,IN,56,6805985 +2023-10-25,IN,46,6805985 +2023-10-26,IN,59,6805985 +2023-10-27,IN,52,6805985 +2023-10-28,IN,39,6805985 +2023-10-29,IN,54,6805985 +2023-10-30,IN,44,6805985 +2023-10-31,IN,37,6805985 +2023-11-01,IN,49,6805985 +2023-11-02,IN,38,6805985 +2023-11-03,IN,35,6805985 +2023-11-04,IN,35,6805985 +2023-11-05,IN,50,6805985 +2023-11-06,IN,61,6805985 +2023-11-07,IN,54,6805985 +2023-11-08,IN,52,6805985 +2023-11-09,IN,62,6805985 +2023-11-10,IN,31,6805985 +2023-11-11,IN,40,6805985 +2023-11-12,IN,64,6805985 +2023-11-13,IN,70,6805985 +2023-11-14,IN,65,6805985 +2023-11-15,IN,67,6805985 +2023-11-16,IN,53,6805985 +2023-11-17,IN,39,6805985 +2023-11-18,IN,56,6805985 +2023-11-19,IN,63,6805985 +2023-11-20,IN,77,6805985 +2023-11-21,IN,80,6805985 +2023-11-22,IN,72,6805985 +2023-11-23,IN,59,6805985 +2023-11-24,IN,79,6805985 +2023-11-25,IN,79,6805985 +2023-11-26,IN,77,6805985 +2023-11-27,IN,114,6805985 +2023-11-28,IN,117,6805985 +2023-11-29,IN,106,6805985 +2023-11-30,IN,116,6805985 +2023-12-01,IN,96,6805985 +2023-12-02,IN,68,6805985 +2023-12-03,IN,92,6805985 +2023-12-04,IN,117,6805985 +2023-12-05,IN,131,6805985 +2023-12-06,IN,103,6805985 +2023-12-07,IN,118,6805985 +2023-12-08,IN,99,6805985 +2023-12-09,IN,92,6805985 +2023-12-10,IN,123,6805985 +2023-12-11,IN,118,6805985 +2023-12-12,IN,98,6805985 +2023-12-13,IN,96,6805985 +2023-12-14,IN,125,6805985 +2023-12-15,IN,85,6805985 +2023-12-16,IN,83,6805985 +2023-12-17,IN,100,6805985 +2023-12-18,IN,113,6805985 +2023-12-19,IN,112,6805985 +2023-12-20,IN,147,6805985 +2023-12-21,IN,146,6805985 +2023-12-22,IN,117,6805985 +2023-12-23,IN,115,6805985 +2023-12-24,IN,109,6805985 +2023-12-25,IN,129,6805985 +2023-12-26,IN,153,6805985 +2023-12-27,IN,157,6805985 +2023-12-28,IN,130,6805985 +2023-12-29,IN,107,6805985 +2023-12-30,IN,81,6805985 +2023-12-31,IN,130,6805985 +2024-01-01,IN,119,6805985 +2024-01-02,IN,129,6805985 +2024-01-03,IN,110,6805985 +2024-01-04,IN,116,6805985 +2024-01-05,IN,110,6805985 +2024-01-06,IN,95,6805985 +2024-01-07,IN,96,6805985 +2024-01-08,IN,113,6805985 +2024-01-09,IN,113,6805985 +2024-01-10,IN,97,6805985 +2024-01-11,IN,89,6805985 +2024-01-12,IN,66,6805985 +2024-01-13,IN,70,6805985 +2024-01-14,IN,71,6805985 +2024-01-15,IN,72,6805985 +2024-01-16,IN,122,6805985 +2024-01-17,IN,80,6805985 +2024-01-18,IN,84,6805985 +2024-01-19,IN,72,6805985 +2022-12-31,KS,34,2934582 +2023-01-01,KS,46,2934582 +2023-01-02,KS,55,2934582 +2023-01-03,KS,37,2934582 +2023-01-04,KS,35,2934582 +2023-01-05,KS,43,2934582 +2023-01-06,KS,37,2934582 +2023-01-07,KS,28,2934582 +2023-01-08,KS,37,2934582 +2023-01-09,KS,42,2934582 +2023-01-10,KS,23,2934582 +2023-01-11,KS,20,2934582 +2023-01-12,KS,35,2934582 +2023-01-13,KS,27,2934582 +2023-01-14,KS,19,2934582 +2023-01-15,KS,31,2934582 +2023-01-16,KS,31,2934582 +2023-01-17,KS,36,2934582 +2023-01-18,KS,31,2934582 +2023-01-19,KS,35,2934582 +2023-01-20,KS,26,2934582 +2023-01-21,KS,26,2934582 +2023-01-22,KS,22,2934582 +2023-01-23,KS,25,2934582 +2023-01-24,KS,44,2934582 +2023-01-25,KS,24,2934582 +2023-01-26,KS,22,2934582 +2023-01-27,KS,28,2934582 +2023-01-28,KS,18,2934582 +2023-01-29,KS,23,2934582 +2023-01-30,KS,21,2934582 +2023-01-31,KS,36,2934582 +2023-02-01,KS,33,2934582 +2023-02-02,KS,34,2934582 +2023-02-03,KS,31,2934582 +2023-02-04,KS,36,2934582 +2023-02-05,KS,25,2934582 +2023-02-06,KS,39,2934582 +2023-02-07,KS,41,2934582 +2023-02-08,KS,46,2934582 +2023-02-09,KS,28,2934582 +2023-02-10,KS,32,2934582 +2023-02-11,KS,32,2934582 +2023-02-12,KS,35,2934582 +2023-02-13,KS,33,2934582 +2023-02-14,KS,43,2934582 +2023-02-15,KS,40,2934582 +2023-02-16,KS,25,2934582 +2023-02-17,KS,32,2934582 +2023-02-18,KS,30,2934582 +2023-02-19,KS,27,2934582 +2023-02-20,KS,33,2934582 +2023-02-21,KS,32,2934582 +2023-02-22,KS,39,2934582 +2023-02-23,KS,21,2934582 +2023-02-24,KS,28,2934582 +2023-02-25,KS,28,2934582 +2023-02-26,KS,41,2934582 +2023-02-27,KS,35,2934582 +2023-02-28,KS,38,2934582 +2023-03-01,KS,32,2934582 +2023-03-02,KS,41,2934582 +2023-03-03,KS,37,2934582 +2023-03-04,KS,22,2934582 +2023-03-05,KS,37,2934582 +2023-03-06,KS,18,2934582 +2023-03-07,KS,35,2934582 +2023-03-08,KS,41,2934582 +2023-03-09,KS,25,2934582 +2023-03-10,KS,27,2934582 +2023-03-11,KS,20,2934582 +2023-03-12,KS,25,2934582 +2023-03-13,KS,32,2934582 +2023-03-14,KS,25,2934582 +2023-03-15,KS,29,2934582 +2023-03-16,KS,29,2934582 +2023-03-17,KS,23,2934582 +2023-03-18,KS,32,2934582 +2023-03-19,KS,24,2934582 +2023-03-20,KS,29,2934582 +2023-03-21,KS,28,2934582 +2023-03-22,KS,28,2934582 +2023-03-23,KS,28,2934582 +2023-03-24,KS,24,2934582 +2023-03-25,KS,25,2934582 +2023-03-26,KS,26,2934582 +2023-03-27,KS,22,2934582 +2023-03-28,KS,27,2934582 +2023-03-29,KS,11,2934582 +2023-03-30,KS,17,2934582 +2023-03-31,KS,21,2934582 +2023-04-01,KS,15,2934582 +2023-04-02,KS,16,2934582 +2023-04-03,KS,14,2934582 +2023-04-04,KS,16,2934582 +2023-04-05,KS,16,2934582 +2023-04-06,KS,16,2934582 +2023-04-07,KS,18,2934582 +2023-04-08,KS,7,2934582 +2023-04-09,KS,16,2934582 +2023-04-10,KS,20,2934582 +2023-04-11,KS,11,2934582 +2023-04-12,KS,28,2934582 +2023-04-13,KS,28,2934582 +2023-04-14,KS,23,2934582 +2023-04-15,KS,13,2934582 +2023-04-16,KS,17,2934582 +2023-04-17,KS,11,2934582 +2023-04-18,KS,13,2934582 +2023-04-19,KS,11,2934582 +2023-04-20,KS,4,2934582 +2023-04-21,KS,12,2934582 +2023-04-22,KS,7,2934582 +2023-04-23,KS,7,2934582 +2023-04-24,KS,9,2934582 +2023-04-25,KS,12,2934582 +2023-04-26,KS,11,2934582 +2023-04-27,KS,7,2934582 +2023-04-28,KS,16,2934582 +2023-04-29,KS,11,2934582 +2023-04-30,KS,11,2934582 +2023-05-01,KS,9,2934582 +2023-05-02,KS,8,2934582 +2023-05-03,KS,8,2934582 +2023-05-04,KS,9,2934582 +2023-05-05,KS,14,2934582 +2023-05-06,KS,13,2934582 +2023-05-07,KS,8,2934582 +2023-05-08,KS,12,2934582 +2023-05-09,KS,14,2934582 +2023-05-10,KS,9,2934582 +2023-05-11,KS,13,2934582 +2023-05-12,KS,8,2934582 +2023-05-13,KS,5,2934582 +2023-05-14,KS,7,2934582 +2023-05-15,KS,6,2934582 +2023-05-16,KS,10,2934582 +2023-05-17,KS,6,2934582 +2023-05-18,KS,11,2934582 +2023-05-19,KS,6,2934582 +2023-05-20,KS,4,2934582 +2023-05-21,KS,4,2934582 +2023-05-22,KS,3,2934582 +2023-05-23,KS,3,2934582 +2023-05-24,KS,5,2934582 +2023-05-25,KS,12,2934582 +2023-05-26,KS,4,2934582 +2023-05-27,KS,5,2934582 +2023-05-28,KS,5,2934582 +2023-05-29,KS,3,2934582 +2023-05-30,KS,5,2934582 +2023-05-31,KS,13,2934582 +2023-06-01,KS,7,2934582 +2023-06-02,KS,2,2934582 +2023-06-03,KS,4,2934582 +2023-06-04,KS,5,2934582 +2023-06-05,KS,8,2934582 +2023-06-06,KS,9,2934582 +2023-06-07,KS,5,2934582 +2023-06-08,KS,4,2934582 +2023-06-09,KS,8,2934582 +2023-06-10,KS,3,2934582 +2023-06-11,KS,5,2934582 +2023-06-12,KS,7,2934582 +2023-06-13,KS,3,2934582 +2023-06-14,KS,2,2934582 +2023-06-15,KS,5,2934582 +2023-06-16,KS,0,2934582 +2023-06-17,KS,2,2934582 +2023-06-18,KS,4,2934582 +2023-06-19,KS,4,2934582 +2023-06-20,KS,2,2934582 +2023-06-21,KS,5,2934582 +2023-06-22,KS,2,2934582 +2023-06-23,KS,2,2934582 +2023-06-24,KS,5,2934582 +2023-06-25,KS,2,2934582 +2023-06-26,KS,5,2934582 +2023-06-27,KS,8,2934582 +2023-06-28,KS,4,2934582 +2023-06-29,KS,7,2934582 +2023-06-30,KS,4,2934582 +2023-07-01,KS,2,2934582 +2023-07-02,KS,4,2934582 +2023-07-03,KS,5,2934582 +2023-07-04,KS,4,2934582 +2023-07-05,KS,1,2934582 +2023-07-06,KS,6,2934582 +2023-07-07,KS,5,2934582 +2023-07-08,KS,6,2934582 +2023-07-09,KS,5,2934582 +2023-07-10,KS,9,2934582 +2023-07-11,KS,5,2934582 +2023-07-12,KS,6,2934582 +2023-07-13,KS,4,2934582 +2023-07-14,KS,6,2934582 +2023-07-15,KS,3,2934582 +2023-07-16,KS,2,2934582 +2023-07-17,KS,3,2934582 +2023-07-18,KS,4,2934582 +2023-07-19,KS,2,2934582 +2023-07-20,KS,4,2934582 +2023-07-21,KS,6,2934582 +2023-07-22,KS,5,2934582 +2023-07-23,KS,4,2934582 +2023-07-24,KS,5,2934582 +2023-07-25,KS,5,2934582 +2023-07-26,KS,3,2934582 +2023-07-27,KS,10,2934582 +2023-07-28,KS,7,2934582 +2023-07-29,KS,2,2934582 +2023-07-30,KS,10,2934582 +2023-07-31,KS,6,2934582 +2023-08-01,KS,9,2934582 +2023-08-02,KS,7,2934582 +2023-08-03,KS,12,2934582 +2023-08-04,KS,6,2934582 +2023-08-05,KS,5,2934582 +2023-08-06,KS,6,2934582 +2023-08-07,KS,5,2934582 +2023-08-08,KS,7,2934582 +2023-08-09,KS,9,2934582 +2023-08-10,KS,11,2934582 +2023-08-11,KS,10,2934582 +2023-08-12,KS,7,2934582 +2023-08-13,KS,9,2934582 +2023-08-14,KS,10,2934582 +2023-08-15,KS,12,2934582 +2023-08-16,KS,10,2934582 +2023-08-17,KS,6,2934582 +2023-08-18,KS,8,2934582 +2023-08-19,KS,9,2934582 +2023-08-20,KS,16,2934582 +2023-08-21,KS,13,2934582 +2023-08-22,KS,18,2934582 +2023-08-23,KS,20,2934582 +2023-08-24,KS,16,2934582 +2023-08-25,KS,17,2934582 +2023-08-26,KS,12,2934582 +2023-08-27,KS,16,2934582 +2023-08-28,KS,20,2934582 +2023-08-29,KS,17,2934582 +2023-08-30,KS,16,2934582 +2023-08-31,KS,17,2934582 +2023-09-01,KS,14,2934582 +2023-09-02,KS,16,2934582 +2023-09-03,KS,17,2934582 +2023-09-04,KS,25,2934582 +2023-09-05,KS,30,2934582 +2023-09-06,KS,13,2934582 +2023-09-07,KS,22,2934582 +2023-09-08,KS,24,2934582 +2023-09-09,KS,19,2934582 +2023-09-10,KS,19,2934582 +2023-09-11,KS,27,2934582 +2023-09-12,KS,26,2934582 +2023-09-13,KS,37,2934582 +2023-09-14,KS,22,2934582 +2023-09-15,KS,22,2934582 +2023-09-16,KS,15,2934582 +2023-09-17,KS,21,2934582 +2023-09-18,KS,31,2934582 +2023-09-19,KS,22,2934582 +2023-09-20,KS,21,2934582 +2023-09-21,KS,20,2934582 +2023-09-22,KS,20,2934582 +2023-09-23,KS,17,2934582 +2023-09-24,KS,15,2934582 +2023-09-25,KS,21,2934582 +2023-09-26,KS,18,2934582 +2023-09-27,KS,12,2934582 +2023-09-28,KS,18,2934582 +2023-09-29,KS,13,2934582 +2023-09-30,KS,19,2934582 +2023-10-01,KS,15,2934582 +2023-10-02,KS,20,2934582 +2023-10-03,KS,17,2934582 +2023-10-04,KS,17,2934582 +2023-10-05,KS,22,2934582 +2023-10-06,KS,13,2934582 +2023-10-07,KS,6,2934582 +2023-10-08,KS,13,2934582 +2023-10-09,KS,19,2934582 +2023-10-10,KS,21,2934582 +2023-10-11,KS,28,2934582 +2023-10-12,KS,17,2934582 +2023-10-13,KS,18,2934582 +2023-10-14,KS,20,2934582 +2023-10-15,KS,20,2934582 +2023-10-16,KS,26,2934582 +2023-10-17,KS,27,2934582 +2023-10-18,KS,31,2934582 +2023-10-19,KS,30,2934582 +2023-10-20,KS,30,2934582 +2023-10-21,KS,22,2934582 +2023-10-22,KS,39,2934582 +2023-10-23,KS,46,2934582 +2023-10-24,KS,37,2934582 +2023-10-25,KS,47,2934582 +2023-10-26,KS,35,2934582 +2023-10-27,KS,35,2934582 +2023-10-28,KS,29,2934582 +2023-10-29,KS,38,2934582 +2023-10-30,KS,31,2934582 +2023-10-31,KS,34,2934582 +2023-11-01,KS,35,2934582 +2023-11-02,KS,38,2934582 +2023-11-03,KS,32,2934582 +2023-11-04,KS,32,2934582 +2023-11-05,KS,43,2934582 +2023-11-06,KS,29,2934582 +2023-11-07,KS,27,2934582 +2023-11-08,KS,31,2934582 +2023-11-09,KS,16,2934582 +2023-11-10,KS,36,2934582 +2023-11-11,KS,29,2934582 +2023-11-12,KS,31,2934582 +2023-11-13,KS,27,2934582 +2023-11-14,KS,35,2934582 +2023-11-15,KS,33,2934582 +2023-11-16,KS,44,2934582 +2023-11-17,KS,34,2934582 +2023-11-18,KS,26,2934582 +2023-11-19,KS,26,2934582 +2023-11-20,KS,31,2934582 +2023-11-21,KS,41,2934582 +2023-11-22,KS,31,2934582 +2023-11-23,KS,21,2934582 +2023-11-24,KS,25,2934582 +2023-11-25,KS,26,2934582 +2023-11-26,KS,25,2934582 +2023-11-27,KS,43,2934582 +2023-11-28,KS,36,2934582 +2023-11-29,KS,34,2934582 +2023-11-30,KS,35,2934582 +2023-12-01,KS,25,2934582 +2023-12-02,KS,30,2934582 +2023-12-03,KS,42,2934582 +2023-12-04,KS,50,2934582 +2023-12-05,KS,41,2934582 +2023-12-06,KS,31,2934582 +2023-12-07,KS,36,2934582 +2023-12-08,KS,41,2934582 +2023-12-09,KS,40,2934582 +2023-12-10,KS,44,2934582 +2023-12-11,KS,57,2934582 +2023-12-12,KS,33,2934582 +2023-12-13,KS,53,2934582 +2023-12-14,KS,47,2934582 +2023-12-15,KS,41,2934582 +2023-12-16,KS,36,2934582 +2023-12-17,KS,25,2934582 +2023-12-18,KS,45,2934582 +2023-12-19,KS,34,2934582 +2023-12-20,KS,59,2934582 +2023-12-21,KS,45,2934582 +2023-12-22,KS,48,2934582 +2023-12-23,KS,38,2934582 +2023-12-24,KS,35,2934582 +2023-12-25,KS,44,2934582 +2023-12-26,KS,69,2934582 +2023-12-27,KS,67,2934582 +2023-12-28,KS,52,2934582 +2023-12-29,KS,50,2934582 +2023-12-30,KS,51,2934582 +2023-12-31,KS,47,2934582 +2024-01-01,KS,65,2934582 +2024-01-02,KS,54,2934582 +2024-01-03,KS,64,2934582 +2024-01-04,KS,54,2934582 +2024-01-05,KS,43,2934582 +2024-01-06,KS,32,2934582 +2024-01-07,KS,38,2934582 +2024-01-08,KS,46,2934582 +2024-01-09,KS,54,2934582 +2024-01-10,KS,40,2934582 +2024-01-11,KS,34,2934582 +2024-01-12,KS,44,2934582 +2024-01-13,KS,30,2934582 +2024-01-14,KS,20,2934582 +2024-01-15,KS,27,2934582 +2024-01-16,KS,35,2934582 +2024-01-17,KS,38,2934582 +2024-01-18,KS,27,2934582 +2024-01-19,KS,32,2934582 +2022-12-31,KY,80,4509394 +2023-01-01,KY,75,4509394 +2023-01-02,KY,87,4509394 +2023-01-03,KY,90,4509394 +2023-01-04,KY,95,4509394 +2023-01-05,KY,74,4509394 +2023-01-06,KY,65,4509394 +2023-01-07,KY,57,4509394 +2023-01-08,KY,68,4509394 +2023-01-09,KY,67,4509394 +2023-01-10,KY,75,4509394 +2023-01-11,KY,75,4509394 +2023-01-12,KY,71,4509394 +2023-01-13,KY,49,4509394 +2023-01-14,KY,43,4509394 +2023-01-15,KY,55,4509394 +2023-01-16,KY,81,4509394 +2023-01-17,KY,63,4509394 +2023-01-18,KY,50,4509394 +2023-01-19,KY,66,4509394 +2023-01-20,KY,51,4509394 +2023-01-21,KY,47,4509394 +2023-01-22,KY,51,4509394 +2023-01-23,KY,57,4509394 +2023-01-24,KY,68,4509394 +2023-01-25,KY,52,4509394 +2023-01-26,KY,63,4509394 +2023-01-27,KY,53,4509394 +2023-01-28,KY,54,4509394 +2023-01-29,KY,54,4509394 +2023-01-30,KY,58,4509394 +2023-01-31,KY,56,4509394 +2023-02-01,KY,89,4509394 +2023-02-02,KY,62,4509394 +2023-02-03,KY,51,4509394 +2023-02-04,KY,48,4509394 +2023-02-05,KY,48,4509394 +2023-02-06,KY,60,4509394 +2023-02-07,KY,57,4509394 +2023-02-08,KY,67,4509394 +2023-02-09,KY,67,4509394 +2023-02-10,KY,76,4509394 +2023-02-11,KY,56,4509394 +2023-02-12,KY,51,4509394 +2023-02-13,KY,76,4509394 +2023-02-14,KY,73,4509394 +2023-02-15,KY,60,4509394 +2023-02-16,KY,61,4509394 +2023-02-17,KY,60,4509394 +2023-02-18,KY,39,4509394 +2023-02-19,KY,47,4509394 +2023-02-20,KY,50,4509394 +2023-02-21,KY,40,4509394 +2023-02-22,KY,68,4509394 +2023-02-23,KY,53,4509394 +2023-02-24,KY,44,4509394 +2023-02-25,KY,47,4509394 +2023-02-26,KY,52,4509394 +2023-02-27,KY,42,4509394 +2023-02-28,KY,42,4509394 +2023-03-01,KY,54,4509394 +2023-03-02,KY,47,4509394 +2023-03-03,KY,41,4509394 +2023-03-04,KY,27,4509394 +2023-03-05,KY,46,4509394 +2023-03-06,KY,41,4509394 +2023-03-07,KY,31,4509394 +2023-03-08,KY,44,4509394 +2023-03-09,KY,23,4509394 +2023-03-10,KY,22,4509394 +2023-03-11,KY,34,4509394 +2023-03-12,KY,38,4509394 +2023-03-13,KY,35,4509394 +2023-03-14,KY,27,4509394 +2023-03-15,KY,26,4509394 +2023-03-16,KY,29,4509394 +2023-03-17,KY,36,4509394 +2023-03-18,KY,29,4509394 +2023-03-19,KY,23,4509394 +2023-03-20,KY,28,4509394 +2023-03-21,KY,30,4509394 +2023-03-22,KY,34,4509394 +2023-03-23,KY,29,4509394 +2023-03-24,KY,26,4509394 +2023-03-25,KY,29,4509394 +2023-03-26,KY,16,4509394 +2023-03-27,KY,33,4509394 +2023-03-28,KY,31,4509394 +2023-03-29,KY,38,4509394 +2023-03-30,KY,16,4509394 +2023-03-31,KY,22,4509394 +2023-04-01,KY,16,4509394 +2023-04-02,KY,28,4509394 +2023-04-03,KY,32,4509394 +2023-04-04,KY,33,4509394 +2023-04-05,KY,33,4509394 +2023-04-06,KY,32,4509394 +2023-04-07,KY,19,4509394 +2023-04-08,KY,24,4509394 +2023-04-09,KY,21,4509394 +2023-04-10,KY,30,4509394 +2023-04-11,KY,26,4509394 +2023-04-12,KY,19,4509394 +2023-04-13,KY,24,4509394 +2023-04-14,KY,33,4509394 +2023-04-15,KY,20,4509394 +2023-04-16,KY,14,4509394 +2023-04-17,KY,24,4509394 +2023-04-18,KY,23,4509394 +2023-04-19,KY,20,4509394 +2023-04-20,KY,29,4509394 +2023-04-21,KY,29,4509394 +2023-04-22,KY,16,4509394 +2023-04-23,KY,19,4509394 +2023-04-24,KY,27,4509394 +2023-04-25,KY,21,4509394 +2023-04-26,KY,16,4509394 +2023-04-27,KY,21,4509394 +2023-04-28,KY,12,4509394 +2023-04-29,KY,17,4509394 +2023-04-30,KY,13,4509394 +2023-05-01,KY,19,4509394 +2023-05-02,KY,17,4509394 +2023-05-03,KY,16,4509394 +2023-05-04,KY,11,4509394 +2023-05-05,KY,18,4509394 +2023-05-06,KY,15,4509394 +2023-05-07,KY,15,4509394 +2023-05-08,KY,15,4509394 +2023-05-09,KY,26,4509394 +2023-05-10,KY,23,4509394 +2023-05-11,KY,15,4509394 +2023-05-12,KY,10,4509394 +2023-05-13,KY,17,4509394 +2023-05-14,KY,16,4509394 +2023-05-15,KY,22,4509394 +2023-05-16,KY,14,4509394 +2023-05-17,KY,17,4509394 +2023-05-18,KY,12,4509394 +2023-05-19,KY,15,4509394 +2023-05-20,KY,22,4509394 +2023-05-21,KY,14,4509394 +2023-05-22,KY,18,4509394 +2023-05-23,KY,11,4509394 +2023-05-24,KY,16,4509394 +2023-05-25,KY,12,4509394 +2023-05-26,KY,11,4509394 +2023-05-27,KY,12,4509394 +2023-05-28,KY,6,4509394 +2023-05-29,KY,13,4509394 +2023-05-30,KY,12,4509394 +2023-05-31,KY,8,4509394 +2023-06-01,KY,10,4509394 +2023-06-02,KY,13,4509394 +2023-06-03,KY,9,4509394 +2023-06-04,KY,9,4509394 +2023-06-05,KY,11,4509394 +2023-06-06,KY,8,4509394 +2023-06-07,KY,6,4509394 +2023-06-08,KY,6,4509394 +2023-06-09,KY,5,4509394 +2023-06-10,KY,7,4509394 +2023-06-11,KY,8,4509394 +2023-06-12,KY,6,4509394 +2023-06-13,KY,6,4509394 +2023-06-14,KY,4,4509394 +2023-06-15,KY,4,4509394 +2023-06-16,KY,5,4509394 +2023-06-17,KY,12,4509394 +2023-06-18,KY,8,4509394 +2023-06-19,KY,8,4509394 +2023-06-20,KY,5,4509394 +2023-06-21,KY,4,4509394 +2023-06-22,KY,5,4509394 +2023-06-23,KY,9,4509394 +2023-06-24,KY,11,4509394 +2023-06-25,KY,11,4509394 +2023-06-26,KY,8,4509394 +2023-06-27,KY,6,4509394 +2023-06-28,KY,9,4509394 +2023-06-29,KY,5,4509394 +2023-06-30,KY,7,4509394 +2023-07-01,KY,5,4509394 +2023-07-02,KY,5,4509394 +2023-07-03,KY,3,4509394 +2023-07-04,KY,6,4509394 +2023-07-05,KY,3,4509394 +2023-07-06,KY,11,4509394 +2023-07-07,KY,9,4509394 +2023-07-08,KY,12,4509394 +2023-07-09,KY,10,4509394 +2023-07-10,KY,5,4509394 +2023-07-11,KY,13,4509394 +2023-07-12,KY,8,4509394 +2023-07-13,KY,5,4509394 +2023-07-14,KY,11,4509394 +2023-07-15,KY,7,4509394 +2023-07-16,KY,4,4509394 +2023-07-17,KY,10,4509394 +2023-07-18,KY,15,4509394 +2023-07-19,KY,12,4509394 +2023-07-20,KY,18,4509394 +2023-07-21,KY,9,4509394 +2023-07-22,KY,11,4509394 +2023-07-23,KY,9,4509394 +2023-07-24,KY,9,4509394 +2023-07-25,KY,17,4509394 +2023-07-26,KY,16,4509394 +2023-07-27,KY,10,4509394 +2023-07-28,KY,15,4509394 +2023-07-29,KY,13,4509394 +2023-07-30,KY,4,4509394 +2023-07-31,KY,17,4509394 +2023-08-01,KY,17,4509394 +2023-08-02,KY,7,4509394 +2023-08-03,KY,9,4509394 +2023-08-04,KY,19,4509394 +2023-08-05,KY,20,4509394 +2023-08-06,KY,20,4509394 +2023-08-07,KY,29,4509394 +2023-08-08,KY,23,4509394 +2023-08-09,KY,20,4509394 +2023-08-10,KY,28,4509394 +2023-08-11,KY,29,4509394 +2023-08-12,KY,22,4509394 +2023-08-13,KY,17,4509394 +2023-08-14,KY,29,4509394 +2023-08-15,KY,26,4509394 +2023-08-16,KY,27,4509394 +2023-08-17,KY,35,4509394 +2023-08-18,KY,35,4509394 +2023-08-19,KY,23,4509394 +2023-08-20,KY,21,4509394 +2023-08-21,KY,35,4509394 +2023-08-22,KY,32,4509394 +2023-08-23,KY,41,4509394 +2023-08-24,KY,30,4509394 +2023-08-25,KY,42,4509394 +2023-08-26,KY,31,4509394 +2023-08-27,KY,49,4509394 +2023-08-28,KY,45,4509394 +2023-08-29,KY,37,4509394 +2023-08-30,KY,55,4509394 +2023-08-31,KY,40,4509394 +2023-09-01,KY,30,4509394 +2023-09-02,KY,37,4509394 +2023-09-03,KY,47,4509394 +2023-09-04,KY,47,4509394 +2023-09-05,KY,61,4509394 +2023-09-06,KY,59,4509394 +2023-09-07,KY,59,4509394 +2023-09-08,KY,47,4509394 +2023-09-09,KY,42,4509394 +2023-09-10,KY,35,4509394 +2023-09-11,KY,52,4509394 +2023-09-12,KY,67,4509394 +2023-09-13,KY,38,4509394 +2023-09-14,KY,53,4509394 +2023-09-15,KY,41,4509394 +2023-09-16,KY,36,4509394 +2023-09-17,KY,28,4509394 +2023-09-18,KY,37,4509394 +2023-09-19,KY,56,4509394 +2023-09-20,KY,30,4509394 +2023-09-21,KY,41,4509394 +2023-09-22,KY,36,4509394 +2023-09-23,KY,31,4509394 +2023-09-24,KY,33,4509394 +2023-09-25,KY,46,4509394 +2023-09-26,KY,55,4509394 +2023-09-27,KY,34,4509394 +2023-09-28,KY,33,4509394 +2023-09-29,KY,46,4509394 +2023-09-30,KY,35,4509394 +2023-10-01,KY,27,4509394 +2023-10-02,KY,30,4509394 +2023-10-03,KY,38,4509394 +2023-10-04,KY,46,4509394 +2023-10-05,KY,37,4509394 +2023-10-06,KY,37,4509394 +2023-10-07,KY,25,4509394 +2023-10-08,KY,25,4509394 +2023-10-09,KY,37,4509394 +2023-10-10,KY,49,4509394 +2023-10-11,KY,45,4509394 +2023-10-12,KY,29,4509394 +2023-10-13,KY,30,4509394 +2023-10-14,KY,27,4509394 +2023-10-15,KY,28,4509394 +2023-10-16,KY,43,4509394 +2023-10-17,KY,37,4509394 +2023-10-18,KY,39,4509394 +2023-10-19,KY,41,4509394 +2023-10-20,KY,33,4509394 +2023-10-21,KY,32,4509394 +2023-10-22,KY,32,4509394 +2023-10-23,KY,37,4509394 +2023-10-24,KY,44,4509394 +2023-10-25,KY,35,4509394 +2023-10-26,KY,40,4509394 +2023-10-27,KY,33,4509394 +2023-10-28,KY,63,4509394 +2023-10-29,KY,35,4509394 +2023-10-30,KY,52,4509394 +2023-10-31,KY,35,4509394 +2023-11-01,KY,40,4509394 +2023-11-02,KY,44,4509394 +2023-11-03,KY,43,4509394 +2023-11-04,KY,33,4509394 +2023-11-05,KY,59,4509394 +2023-11-06,KY,48,4509394 +2023-11-07,KY,63,4509394 +2023-11-08,KY,64,4509394 +2023-11-09,KY,60,4509394 +2023-11-10,KY,41,4509394 +2023-11-11,KY,40,4509394 +2023-11-12,KY,40,4509394 +2023-11-13,KY,58,4509394 +2023-11-14,KY,62,4509394 +2023-11-15,KY,52,4509394 +2023-11-16,KY,63,4509394 +2023-11-17,KY,51,4509394 +2023-11-18,KY,55,4509394 +2023-11-19,KY,60,4509394 +2023-11-20,KY,68,4509394 +2023-11-21,KY,73,4509394 +2023-11-22,KY,51,4509394 +2023-11-23,KY,50,4509394 +2023-11-24,KY,61,4509394 +2023-11-25,KY,56,4509394 +2023-11-26,KY,54,4509394 +2023-11-27,KY,71,4509394 +2023-11-28,KY,70,4509394 +2023-11-29,KY,67,4509394 +2023-11-30,KY,64,4509394 +2023-12-01,KY,55,4509394 +2023-12-02,KY,71,4509394 +2023-12-03,KY,66,4509394 +2023-12-04,KY,87,4509394 +2023-12-05,KY,70,4509394 +2023-12-06,KY,65,4509394 +2023-12-07,KY,65,4509394 +2023-12-08,KY,61,4509394 +2023-12-09,KY,57,4509394 +2023-12-10,KY,63,4509394 +2023-12-11,KY,61,4509394 +2023-12-12,KY,71,4509394 +2023-12-13,KY,73,4509394 +2023-12-14,KY,72,4509394 +2023-12-15,KY,74,4509394 +2023-12-16,KY,69,4509394 +2023-12-17,KY,63,4509394 +2023-12-18,KY,79,4509394 +2023-12-19,KY,87,4509394 +2023-12-20,KY,84,4509394 +2023-12-21,KY,89,4509394 +2023-12-22,KY,69,4509394 +2023-12-23,KY,81,4509394 +2023-12-24,KY,71,4509394 +2023-12-25,KY,77,4509394 +2023-12-26,KY,89,4509394 +2023-12-27,KY,103,4509394 +2023-12-28,KY,102,4509394 +2023-12-29,KY,87,4509394 +2023-12-30,KY,81,4509394 +2023-12-31,KY,65,4509394 +2024-01-01,KY,67,4509394 +2024-01-02,KY,81,4509394 +2024-01-03,KY,86,4509394 +2024-01-04,KY,94,4509394 +2024-01-05,KY,69,4509394 +2024-01-06,KY,64,4509394 +2024-01-07,KY,62,4509394 +2024-01-08,KY,73,4509394 +2024-01-09,KY,78,4509394 +2024-01-10,KY,82,4509394 +2024-01-11,KY,73,4509394 +2024-01-12,KY,66,4509394 +2024-01-13,KY,58,4509394 +2024-01-14,KY,64,4509394 +2024-01-15,KY,51,4509394 +2024-01-16,KY,51,4509394 +2024-01-17,KY,53,4509394 +2024-01-18,KY,61,4509394 +2024-01-19,KY,34,4509394 +2022-12-31,LA,76,4624047 +2023-01-01,LA,102,4624047 +2023-01-02,LA,95,4624047 +2023-01-03,LA,112,4624047 +2023-01-04,LA,90,4624047 +2023-01-05,LA,121,4624047 +2023-01-06,LA,90,4624047 +2023-01-07,LA,91,4624047 +2023-01-08,LA,91,4624047 +2023-01-09,LA,85,4624047 +2023-01-10,LA,101,4624047 +2023-01-11,LA,123,4624047 +2023-01-12,LA,94,4624047 +2023-01-13,LA,90,4624047 +2023-01-14,LA,76,4624047 +2023-01-15,LA,74,4624047 +2023-01-16,LA,74,4624047 +2023-01-17,LA,90,4624047 +2023-01-18,LA,95,4624047 +2023-01-19,LA,70,4624047 +2023-01-20,LA,68,4624047 +2023-01-21,LA,43,4624047 +2023-01-22,LA,59,4624047 +2023-01-23,LA,49,4624047 +2023-01-24,LA,71,4624047 +2023-01-25,LA,68,4624047 +2023-01-26,LA,59,4624047 +2023-01-27,LA,73,4624047 +2023-01-28,LA,46,4624047 +2023-01-29,LA,61,4624047 +2023-01-30,LA,71,4624047 +2023-01-31,LA,42,4624047 +2023-02-01,LA,49,4624047 +2023-02-02,LA,68,4624047 +2023-02-03,LA,69,4624047 +2023-02-04,LA,67,4624047 +2023-02-05,LA,65,4624047 +2023-02-06,LA,66,4624047 +2023-02-07,LA,80,4624047 +2023-02-08,LA,79,4624047 +2023-02-09,LA,74,4624047 +2023-02-10,LA,66,4624047 +2023-02-11,LA,62,4624047 +2023-02-12,LA,61,4624047 +2023-02-13,LA,68,4624047 +2023-02-14,LA,62,4624047 +2023-02-15,LA,60,4624047 +2023-02-16,LA,60,4624047 +2023-02-17,LA,52,4624047 +2023-02-18,LA,53,4624047 +2023-02-19,LA,55,4624047 +2023-02-20,LA,62,4624047 +2023-02-21,LA,58,4624047 +2023-02-22,LA,31,4624047 +2023-02-23,LA,58,4624047 +2023-02-24,LA,47,4624047 +2023-02-25,LA,40,4624047 +2023-02-26,LA,51,4624047 +2023-02-27,LA,59,4624047 +2023-02-28,LA,49,4624047 +2023-03-01,LA,55,4624047 +2023-03-02,LA,51,4624047 +2023-03-03,LA,43,4624047 +2023-03-04,LA,38,4624047 +2023-03-05,LA,40,4624047 +2023-03-06,LA,48,4624047 +2023-03-07,LA,37,4624047 +2023-03-08,LA,48,4624047 +2023-03-09,LA,29,4624047 +2023-03-10,LA,31,4624047 +2023-03-11,LA,20,4624047 +2023-03-12,LA,25,4624047 +2023-03-13,LA,42,4624047 +2023-03-14,LA,33,4624047 +2023-03-15,LA,26,4624047 +2023-03-16,LA,26,4624047 +2023-03-17,LA,27,4624047 +2023-03-18,LA,27,4624047 +2023-03-19,LA,28,4624047 +2023-03-20,LA,19,4624047 +2023-03-21,LA,30,4624047 +2023-03-22,LA,43,4624047 +2023-03-23,LA,27,4624047 +2023-03-24,LA,33,4624047 +2023-03-25,LA,21,4624047 +2023-03-26,LA,23,4624047 +2023-03-27,LA,34,4624047 +2023-03-28,LA,25,4624047 +2023-03-29,LA,32,4624047 +2023-03-30,LA,26,4624047 +2023-03-31,LA,28,4624047 +2023-04-01,LA,21,4624047 +2023-04-02,LA,18,4624047 +2023-04-03,LA,29,4624047 +2023-04-04,LA,34,4624047 +2023-04-05,LA,27,4624047 +2023-04-06,LA,30,4624047 +2023-04-07,LA,13,4624047 +2023-04-08,LA,15,4624047 +2023-04-09,LA,26,4624047 +2023-04-10,LA,25,4624047 +2023-04-11,LA,28,4624047 +2023-04-12,LA,26,4624047 +2023-04-13,LA,27,4624047 +2023-04-14,LA,17,4624047 +2023-04-15,LA,17,4624047 +2023-04-16,LA,15,4624047 +2023-04-17,LA,21,4624047 +2023-04-18,LA,20,4624047 +2023-04-19,LA,21,4624047 +2023-04-20,LA,23,4624047 +2023-04-21,LA,22,4624047 +2023-04-22,LA,16,4624047 +2023-04-23,LA,19,4624047 +2023-04-24,LA,24,4624047 +2023-04-25,LA,26,4624047 +2023-04-26,LA,25,4624047 +2023-04-27,LA,15,4624047 +2023-04-28,LA,13,4624047 +2023-04-29,LA,9,4624047 +2023-04-30,LA,13,4624047 +2023-05-01,LA,31,4624047 +2023-05-02,LA,21,4624047 +2023-05-03,LA,16,4624047 +2023-05-04,LA,18,4624047 +2023-05-05,LA,14,4624047 +2023-05-06,LA,12,4624047 +2023-05-07,LA,24,4624047 +2023-05-08,LA,22,4624047 +2023-05-09,LA,16,4624047 +2023-05-10,LA,10,4624047 +2023-05-11,LA,9,4624047 +2023-05-12,LA,15,4624047 +2023-05-13,LA,14,4624047 +2023-05-14,LA,11,4624047 +2023-05-15,LA,25,4624047 +2023-05-16,LA,17,4624047 +2023-05-17,LA,19,4624047 +2023-05-18,LA,16,4624047 +2023-05-19,LA,8,4624047 +2023-05-20,LA,16,4624047 +2023-05-21,LA,8,4624047 +2023-05-22,LA,19,4624047 +2023-05-23,LA,7,4624047 +2023-05-24,LA,16,4624047 +2023-05-25,LA,11,4624047 +2023-05-26,LA,11,4624047 +2023-05-27,LA,4,4624047 +2023-05-28,LA,11,4624047 +2023-05-29,LA,28,4624047 +2023-05-30,LA,19,4624047 +2023-05-31,LA,17,4624047 +2023-06-01,LA,16,4624047 +2023-06-02,LA,18,4624047 +2023-06-03,LA,15,4624047 +2023-06-04,LA,18,4624047 +2023-06-05,LA,17,4624047 +2023-06-06,LA,13,4624047 +2023-06-07,LA,15,4624047 +2023-06-08,LA,10,4624047 +2023-06-09,LA,12,4624047 +2023-06-10,LA,11,4624047 +2023-06-11,LA,15,4624047 +2023-06-12,LA,6,4624047 +2023-06-13,LA,16,4624047 +2023-06-14,LA,17,4624047 +2023-06-15,LA,11,4624047 +2023-06-16,LA,12,4624047 +2023-06-17,LA,10,4624047 +2023-06-18,LA,11,4624047 +2023-06-19,LA,12,4624047 +2023-06-20,LA,11,4624047 +2023-06-21,LA,7,4624047 +2023-06-22,LA,13,4624047 +2023-06-23,LA,18,4624047 +2023-06-24,LA,14,4624047 +2023-06-25,LA,9,4624047 +2023-06-26,LA,13,4624047 +2023-06-27,LA,19,4624047 +2023-06-28,LA,12,4624047 +2023-06-29,LA,9,4624047 +2023-06-30,LA,10,4624047 +2023-07-01,LA,10,4624047 +2023-07-02,LA,10,4624047 +2023-07-03,LA,18,4624047 +2023-07-04,LA,14,4624047 +2023-07-05,LA,18,4624047 +2023-07-06,LA,14,4624047 +2023-07-07,LA,14,4624047 +2023-07-08,LA,14,4624047 +2023-07-09,LA,21,4624047 +2023-07-10,LA,15,4624047 +2023-07-11,LA,20,4624047 +2023-07-12,LA,15,4624047 +2023-07-13,LA,21,4624047 +2023-07-14,LA,17,4624047 +2023-07-15,LA,21,4624047 +2023-07-16,LA,20,4624047 +2023-07-17,LA,28,4624047 +2023-07-18,LA,29,4624047 +2023-07-19,LA,28,4624047 +2023-07-20,LA,32,4624047 +2023-07-21,LA,24,4624047 +2023-07-22,LA,27,4624047 +2023-07-23,LA,22,4624047 +2023-07-24,LA,24,4624047 +2023-07-25,LA,32,4624047 +2023-07-26,LA,42,4624047 +2023-07-27,LA,42,4624047 +2023-07-28,LA,28,4624047 +2023-07-29,LA,35,4624047 +2023-07-30,LA,28,4624047 +2023-07-31,LA,29,4624047 +2023-08-01,LA,34,4624047 +2023-08-02,LA,22,4624047 +2023-08-03,LA,28,4624047 +2023-08-04,LA,33,4624047 +2023-08-05,LA,36,4624047 +2023-08-06,LA,41,4624047 +2023-08-07,LA,32,4624047 +2023-08-08,LA,40,4624047 +2023-08-09,LA,44,4624047 +2023-08-10,LA,35,4624047 +2023-08-11,LA,31,4624047 +2023-08-12,LA,38,4624047 +2023-08-13,LA,33,4624047 +2023-08-14,LA,51,4624047 +2023-08-15,LA,44,4624047 +2023-08-16,LA,44,4624047 +2023-08-17,LA,49,4624047 +2023-08-18,LA,44,4624047 +2023-08-19,LA,41,4624047 +2023-08-20,LA,41,4624047 +2023-08-21,LA,54,4624047 +2023-08-22,LA,55,4624047 +2023-08-23,LA,54,4624047 +2023-08-24,LA,53,4624047 +2023-08-25,LA,48,4624047 +2023-08-26,LA,51,4624047 +2023-08-27,LA,45,4624047 +2023-08-28,LA,50,4624047 +2023-08-29,LA,48,4624047 +2023-08-30,LA,62,4624047 +2023-08-31,LA,57,4624047 +2023-09-01,LA,41,4624047 +2023-09-02,LA,56,4624047 +2023-09-03,LA,53,4624047 +2023-09-04,LA,66,4624047 +2023-09-05,LA,68,4624047 +2023-09-06,LA,48,4624047 +2023-09-07,LA,57,4624047 +2023-09-08,LA,47,4624047 +2023-09-09,LA,38,4624047 +2023-09-10,LA,38,4624047 +2023-09-11,LA,45,4624047 +2023-09-12,LA,45,4624047 +2023-09-13,LA,36,4624047 +2023-09-14,LA,41,4624047 +2023-09-15,LA,41,4624047 +2023-09-16,LA,29,4624047 +2023-09-17,LA,31,4624047 +2023-09-18,LA,37,4624047 +2023-09-19,LA,38,4624047 +2023-09-20,LA,28,4624047 +2023-09-21,LA,34,4624047 +2023-09-22,LA,32,4624047 +2023-09-23,LA,27,4624047 +2023-09-24,LA,23,4624047 +2023-09-25,LA,24,4624047 +2023-09-26,LA,29,4624047 +2023-09-27,LA,34,4624047 +2023-09-28,LA,28,4624047 +2023-09-29,LA,21,4624047 +2023-09-30,LA,23,4624047 +2023-10-01,LA,12,4624047 +2023-10-02,LA,27,4624047 +2023-10-03,LA,29,4624047 +2023-10-04,LA,21,4624047 +2023-10-05,LA,27,4624047 +2023-10-06,LA,20,4624047 +2023-10-07,LA,17,4624047 +2023-10-08,LA,25,4624047 +2023-10-09,LA,18,4624047 +2023-10-10,LA,32,4624047 +2023-10-11,LA,34,4624047 +2023-10-12,LA,27,4624047 +2023-10-13,LA,18,4624047 +2023-10-14,LA,19,4624047 +2023-10-15,LA,16,4624047 +2023-10-16,LA,20,4624047 +2023-10-17,LA,20,4624047 +2023-10-18,LA,25,4624047 +2023-10-19,LA,20,4624047 +2023-10-20,LA,14,4624047 +2023-10-21,LA,12,4624047 +2023-10-22,LA,21,4624047 +2023-10-23,LA,16,4624047 +2023-10-24,LA,23,4624047 +2023-10-25,LA,26,4624047 +2023-10-26,LA,26,4624047 +2023-10-27,LA,16,4624047 +2023-10-28,LA,22,4624047 +2023-10-29,LA,20,4624047 +2023-10-30,LA,23,4624047 +2023-10-31,LA,22,4624047 +2023-11-01,LA,17,4624047 +2023-11-02,LA,22,4624047 +2023-11-03,LA,16,4624047 +2023-11-04,LA,17,4624047 +2023-11-05,LA,17,4624047 +2023-11-06,LA,26,4624047 +2023-11-07,LA,22,4624047 +2023-11-08,LA,17,4624047 +2023-11-09,LA,25,4624047 +2023-11-10,LA,18,4624047 +2023-11-11,LA,21,4624047 +2023-11-12,LA,14,4624047 +2023-11-13,LA,20,4624047 +2023-11-14,LA,17,4624047 +2023-11-15,LA,28,4624047 +2023-11-16,LA,23,4624047 +2023-11-17,LA,30,4624047 +2023-11-18,LA,22,4624047 +2023-11-19,LA,16,4624047 +2023-11-20,LA,28,4624047 +2023-11-21,LA,21,4624047 +2023-11-22,LA,23,4624047 +2023-11-23,LA,30,4624047 +2023-11-24,LA,22,4624047 +2023-11-25,LA,16,4624047 +2023-11-26,LA,22,4624047 +2023-11-27,LA,27,4624047 +2023-11-28,LA,34,4624047 +2023-11-29,LA,36,4624047 +2023-11-30,LA,34,4624047 +2023-12-01,LA,32,4624047 +2023-12-02,LA,32,4624047 +2023-12-03,LA,31,4624047 +2023-12-04,LA,25,4624047 +2023-12-05,LA,26,4624047 +2023-12-06,LA,25,4624047 +2023-12-07,LA,31,4624047 +2023-12-08,LA,25,4624047 +2023-12-09,LA,29,4624047 +2023-12-10,LA,28,4624047 +2023-12-11,LA,23,4624047 +2023-12-12,LA,28,4624047 +2023-12-13,LA,33,4624047 +2023-12-14,LA,37,4624047 +2023-12-15,LA,22,4624047 +2023-12-16,LA,33,4624047 +2023-12-17,LA,39,4624047 +2023-12-18,LA,54,4624047 +2023-12-19,LA,52,4624047 +2023-12-20,LA,53,4624047 +2023-12-21,LA,48,4624047 +2023-12-22,LA,31,4624047 +2023-12-23,LA,40,4624047 +2023-12-24,LA,42,4624047 +2023-12-25,LA,48,4624047 +2023-12-26,LA,48,4624047 +2023-12-27,LA,66,4624047 +2023-12-28,LA,67,4624047 +2023-12-29,LA,68,4624047 +2023-12-30,LA,49,4624047 +2023-12-31,LA,55,4624047 +2024-01-01,LA,50,4624047 +2024-01-02,LA,81,4624047 +2024-01-03,LA,68,4624047 +2024-01-04,LA,53,4624047 +2024-01-05,LA,58,4624047 +2024-01-06,LA,54,4624047 +2024-01-07,LA,45,4624047 +2024-01-08,LA,65,4624047 +2024-01-09,LA,61,4624047 +2024-01-10,LA,42,4624047 +2024-01-11,LA,77,4624047 +2024-01-12,LA,49,4624047 +2024-01-13,LA,49,4624047 +2024-01-14,LA,43,4624047 +2024-01-15,LA,48,4624047 +2024-01-16,LA,52,4624047 +2024-01-17,LA,43,4624047 +2024-01-18,LA,60,4624047 +2024-01-19,LA,50,4624047 +2022-12-31,MA,217,6984723 +2023-01-01,MA,183,6984723 +2023-01-02,MA,220,6984723 +2023-01-03,MA,207,6984723 +2023-01-04,MA,214,6984723 +2023-01-05,MA,190,6984723 +2023-01-06,MA,197,6984723 +2023-01-07,MA,178,6984723 +2023-01-08,MA,166,6984723 +2023-01-09,MA,187,6984723 +2023-01-10,MA,193,6984723 +2023-01-11,MA,171,6984723 +2023-01-12,MA,184,6984723 +2023-01-13,MA,184,6984723 +2023-01-14,MA,183,6984723 +2023-01-15,MA,143,6984723 +2023-01-16,MA,131,6984723 +2023-01-17,MA,157,6984723 +2023-01-18,MA,173,6984723 +2023-01-19,MA,131,6984723 +2023-01-20,MA,132,6984723 +2023-01-21,MA,113,6984723 +2023-01-22,MA,125,6984723 +2023-01-23,MA,137,6984723 +2023-01-24,MA,117,6984723 +2023-01-25,MA,110,6984723 +2023-01-26,MA,130,6984723 +2023-01-27,MA,118,6984723 +2023-01-28,MA,120,6984723 +2023-01-29,MA,109,6984723 +2023-01-30,MA,129,6984723 +2023-01-31,MA,122,6984723 +2023-02-01,MA,105,6984723 +2023-02-02,MA,108,6984723 +2023-02-03,MA,115,6984723 +2023-02-04,MA,83,6984723 +2023-02-05,MA,118,6984723 +2023-02-06,MA,118,6984723 +2023-02-07,MA,122,6984723 +2023-02-08,MA,105,6984723 +2023-02-09,MA,113,6984723 +2023-02-10,MA,89,6984723 +2023-02-11,MA,85,6984723 +2023-02-12,MA,79,6984723 +2023-02-13,MA,110,6984723 +2023-02-14,MA,129,6984723 +2023-02-15,MA,103,6984723 +2023-02-16,MA,109,6984723 +2023-02-17,MA,76,6984723 +2023-02-18,MA,84,6984723 +2023-02-19,MA,74,6984723 +2023-02-20,MA,80,6984723 +2023-02-21,MA,93,6984723 +2023-02-22,MA,108,6984723 +2023-02-23,MA,113,6984723 +2023-02-24,MA,87,6984723 +2023-02-25,MA,82,6984723 +2023-02-26,MA,84,6984723 +2023-02-27,MA,114,6984723 +2023-02-28,MA,86,6984723 +2023-03-01,MA,99,6984723 +2023-03-02,MA,82,6984723 +2023-03-03,MA,93,6984723 +2023-03-04,MA,70,6984723 +2023-03-05,MA,71,6984723 +2023-03-06,MA,66,6984723 +2023-03-07,MA,74,6984723 +2023-03-08,MA,58,6984723 +2023-03-09,MA,65,6984723 +2023-03-10,MA,73,6984723 +2023-03-11,MA,56,6984723 +2023-03-12,MA,48,6984723 +2023-03-13,MA,69,6984723 +2023-03-14,MA,66,6984723 +2023-03-15,MA,57,6984723 +2023-03-16,MA,92,6984723 +2023-03-17,MA,65,6984723 +2023-03-18,MA,73,6984723 +2023-03-19,MA,54,6984723 +2023-03-20,MA,74,6984723 +2023-03-21,MA,60,6984723 +2023-03-22,MA,66,6984723 +2023-03-23,MA,75,6984723 +2023-03-24,MA,53,6984723 +2023-03-25,MA,47,6984723 +2023-03-26,MA,45,6984723 +2023-03-27,MA,52,6984723 +2023-03-28,MA,57,6984723 +2023-03-29,MA,49,6984723 +2023-03-30,MA,66,6984723 +2023-03-31,MA,46,6984723 +2023-04-01,MA,40,6984723 +2023-04-02,MA,61,6984723 +2023-04-03,MA,58,6984723 +2023-04-04,MA,57,6984723 +2023-04-05,MA,54,6984723 +2023-04-06,MA,52,6984723 +2023-04-07,MA,40,6984723 +2023-04-08,MA,41,6984723 +2023-04-09,MA,42,6984723 +2023-04-10,MA,60,6984723 +2023-04-11,MA,51,6984723 +2023-04-12,MA,40,6984723 +2023-04-13,MA,56,6984723 +2023-04-14,MA,47,6984723 +2023-04-15,MA,49,6984723 +2023-04-16,MA,47,6984723 +2023-04-17,MA,31,6984723 +2023-04-18,MA,32,6984723 +2023-04-19,MA,36,6984723 +2023-04-20,MA,38,6984723 +2023-04-21,MA,42,6984723 +2023-04-22,MA,32,6984723 +2023-04-23,MA,30,6984723 +2023-04-24,MA,37,6984723 +2023-04-25,MA,32,6984723 +2023-04-26,MA,30,6984723 +2023-04-27,MA,26,6984723 +2023-04-28,MA,18,6984723 +2023-04-29,MA,34,6984723 +2023-04-30,MA,29,6984723 +2023-05-01,MA,32,6984723 +2023-05-02,MA,33,6984723 +2023-05-03,MA,30,6984723 +2023-05-04,MA,40,6984723 +2023-05-05,MA,31,6984723 +2023-05-06,MA,42,6984723 +2023-05-07,MA,33,6984723 +2023-05-08,MA,48,6984723 +2023-05-09,MA,29,6984723 +2023-05-10,MA,20,6984723 +2023-05-11,MA,33,6984723 +2023-05-12,MA,27,6984723 +2023-05-13,MA,22,6984723 +2023-05-14,MA,34,6984723 +2023-05-15,MA,30,6984723 +2023-05-16,MA,34,6984723 +2023-05-17,MA,33,6984723 +2023-05-18,MA,35,6984723 +2023-05-19,MA,24,6984723 +2023-05-20,MA,41,6984723 +2023-05-21,MA,32,6984723 +2023-05-22,MA,37,6984723 +2023-05-23,MA,36,6984723 +2023-05-24,MA,36,6984723 +2023-05-25,MA,25,6984723 +2023-05-26,MA,19,6984723 +2023-05-27,MA,15,6984723 +2023-05-28,MA,29,6984723 +2023-05-29,MA,28,6984723 +2023-05-30,MA,30,6984723 +2023-05-31,MA,30,6984723 +2023-06-01,MA,28,6984723 +2023-06-02,MA,31,6984723 +2023-06-03,MA,31,6984723 +2023-06-04,MA,18,6984723 +2023-06-05,MA,35,6984723 +2023-06-06,MA,25,6984723 +2023-06-07,MA,36,6984723 +2023-06-08,MA,28,6984723 +2023-06-09,MA,29,6984723 +2023-06-10,MA,25,6984723 +2023-06-11,MA,28,6984723 +2023-06-12,MA,26,6984723 +2023-06-13,MA,32,6984723 +2023-06-14,MA,23,6984723 +2023-06-15,MA,27,6984723 +2023-06-16,MA,27,6984723 +2023-06-17,MA,25,6984723 +2023-06-18,MA,17,6984723 +2023-06-19,MA,38,6984723 +2023-06-20,MA,22,6984723 +2023-06-21,MA,22,6984723 +2023-06-22,MA,13,6984723 +2023-06-23,MA,28,6984723 +2023-06-24,MA,20,6984723 +2023-06-25,MA,17,6984723 +2023-06-26,MA,18,6984723 +2023-06-27,MA,24,6984723 +2023-06-28,MA,20,6984723 +2023-06-29,MA,25,6984723 +2023-06-30,MA,17,6984723 +2023-07-01,MA,13,6984723 +2023-07-02,MA,20,6984723 +2023-07-03,MA,21,6984723 +2023-07-04,MA,19,6984723 +2023-07-05,MA,16,6984723 +2023-07-06,MA,24,6984723 +2023-07-07,MA,22,6984723 +2023-07-08,MA,18,6984723 +2023-07-09,MA,14,6984723 +2023-07-10,MA,20,6984723 +2023-07-11,MA,26,6984723 +2023-07-12,MA,21,6984723 +2023-07-13,MA,28,6984723 +2023-07-14,MA,21,6984723 +2023-07-15,MA,14,6984723 +2023-07-16,MA,27,6984723 +2023-07-17,MA,25,6984723 +2023-07-18,MA,28,6984723 +2023-07-19,MA,29,6984723 +2023-07-20,MA,31,6984723 +2023-07-21,MA,27,6984723 +2023-07-22,MA,16,6984723 +2023-07-23,MA,22,6984723 +2023-07-24,MA,23,6984723 +2023-07-25,MA,36,6984723 +2023-07-26,MA,40,6984723 +2023-07-27,MA,30,6984723 +2023-07-28,MA,33,6984723 +2023-07-29,MA,26,6984723 +2023-07-30,MA,26,6984723 +2023-07-31,MA,37,6984723 +2023-08-01,MA,30,6984723 +2023-08-02,MA,33,6984723 +2023-08-03,MA,30,6984723 +2023-08-04,MA,34,6984723 +2023-08-05,MA,29,6984723 +2023-08-06,MA,52,6984723 +2023-08-07,MA,31,6984723 +2023-08-08,MA,50,6984723 +2023-08-09,MA,52,6984723 +2023-08-10,MA,58,6984723 +2023-08-11,MA,55,6984723 +2023-08-12,MA,49,6984723 +2023-08-13,MA,44,6984723 +2023-08-14,MA,44,6984723 +2023-08-15,MA,48,6984723 +2023-08-16,MA,53,6984723 +2023-08-17,MA,56,6984723 +2023-08-18,MA,44,6984723 +2023-08-19,MA,60,6984723 +2023-08-20,MA,42,6984723 +2023-08-21,MA,56,6984723 +2023-08-22,MA,45,6984723 +2023-08-23,MA,47,6984723 +2023-08-24,MA,53,6984723 +2023-08-25,MA,52,6984723 +2023-08-26,MA,70,6984723 +2023-08-27,MA,61,6984723 +2023-08-28,MA,65,6984723 +2023-08-29,MA,64,6984723 +2023-08-30,MA,62,6984723 +2023-08-31,MA,62,6984723 +2023-09-01,MA,70,6984723 +2023-09-02,MA,66,6984723 +2023-09-03,MA,67,6984723 +2023-09-04,MA,67,6984723 +2023-09-05,MA,57,6984723 +2023-09-06,MA,81,6984723 +2023-09-07,MA,60,6984723 +2023-09-08,MA,52,6984723 +2023-09-09,MA,60,6984723 +2023-09-10,MA,74,6984723 +2023-09-11,MA,62,6984723 +2023-09-12,MA,62,6984723 +2023-09-13,MA,74,6984723 +2023-09-14,MA,70,6984723 +2023-09-15,MA,61,6984723 +2023-09-16,MA,55,6984723 +2023-09-17,MA,58,6984723 +2023-09-18,MA,74,6984723 +2023-09-19,MA,74,6984723 +2023-09-20,MA,70,6984723 +2023-09-21,MA,62,6984723 +2023-09-22,MA,75,6984723 +2023-09-23,MA,79,6984723 +2023-09-24,MA,72,6984723 +2023-09-25,MA,74,6984723 +2023-09-26,MA,81,6984723 +2023-09-27,MA,74,6984723 +2023-09-28,MA,82,6984723 +2023-09-29,MA,84,6984723 +2023-09-30,MA,64,6984723 +2023-10-01,MA,70,6984723 +2023-10-02,MA,72,6984723 +2023-10-03,MA,73,6984723 +2023-10-04,MA,73,6984723 +2023-10-05,MA,78,6984723 +2023-10-06,MA,62,6984723 +2023-10-07,MA,73,6984723 +2023-10-08,MA,78,6984723 +2023-10-09,MA,93,6984723 +2023-10-10,MA,82,6984723 +2023-10-11,MA,73,6984723 +2023-10-12,MA,76,6984723 +2023-10-13,MA,62,6984723 +2023-10-14,MA,62,6984723 +2023-10-15,MA,71,6984723 +2023-10-16,MA,65,6984723 +2023-10-17,MA,60,6984723 +2023-10-18,MA,65,6984723 +2023-10-19,MA,60,6984723 +2023-10-20,MA,72,6984723 +2023-10-21,MA,60,6984723 +2023-10-22,MA,55,6984723 +2023-10-23,MA,77,6984723 +2023-10-24,MA,55,6984723 +2023-10-25,MA,54,6984723 +2023-10-26,MA,76,6984723 +2023-10-27,MA,72,6984723 +2023-10-28,MA,57,6984723 +2023-10-29,MA,58,6984723 +2023-10-30,MA,60,6984723 +2023-10-31,MA,63,6984723 +2023-11-01,MA,53,6984723 +2023-11-02,MA,56,6984723 +2023-11-03,MA,63,6984723 +2023-11-04,MA,51,6984723 +2023-11-05,MA,45,6984723 +2023-11-06,MA,49,6984723 +2023-11-07,MA,55,6984723 +2023-11-08,MA,46,6984723 +2023-11-09,MA,56,6984723 +2023-11-10,MA,52,6984723 +2023-11-11,MA,69,6984723 +2023-11-12,MA,63,6984723 +2023-11-13,MA,39,6984723 +2023-11-14,MA,58,6984723 +2023-11-15,MA,64,6984723 +2023-11-16,MA,60,6984723 +2023-11-17,MA,46,6984723 +2023-11-18,MA,72,6984723 +2023-11-19,MA,75,6984723 +2023-11-20,MA,89,6984723 +2023-11-21,MA,77,6984723 +2023-11-22,MA,66,6984723 +2023-11-23,MA,62,6984723 +2023-11-24,MA,83,6984723 +2023-11-25,MA,90,6984723 +2023-11-26,MA,78,6984723 +2023-11-27,MA,119,6984723 +2023-11-28,MA,92,6984723 +2023-11-29,MA,88,6984723 +2023-11-30,MA,64,6984723 +2023-12-01,MA,70,6984723 +2023-12-02,MA,98,6984723 +2023-12-03,MA,79,6984723 +2023-12-04,MA,90,6984723 +2023-12-05,MA,90,6984723 +2023-12-06,MA,76,6984723 +2023-12-07,MA,66,6984723 +2023-12-08,MA,72,6984723 +2023-12-09,MA,100,6984723 +2023-12-10,MA,73,6984723 +2023-12-11,MA,109,6984723 +2023-12-12,MA,88,6984723 +2023-12-13,MA,96,6984723 +2023-12-14,MA,103,6984723 +2023-12-15,MA,100,6984723 +2023-12-16,MA,106,6984723 +2023-12-17,MA,136,6984723 +2023-12-18,MA,137,6984723 +2023-12-19,MA,124,6984723 +2023-12-20,MA,120,6984723 +2023-12-21,MA,125,6984723 +2023-12-22,MA,105,6984723 +2023-12-23,MA,146,6984723 +2023-12-24,MA,158,6984723 +2023-12-25,MA,133,6984723 +2023-12-26,MA,142,6984723 +2023-12-27,MA,153,6984723 +2023-12-28,MA,189,6984723 +2023-12-29,MA,188,6984723 +2023-12-30,MA,147,6984723 +2023-12-31,MA,155,6984723 +2024-01-01,MA,142,6984723 +2024-01-02,MA,150,6984723 +2024-01-03,MA,146,6984723 +2024-01-04,MA,144,6984723 +2024-01-05,MA,130,6984723 +2024-01-06,MA,131,6984723 +2024-01-07,MA,113,6984723 +2024-01-08,MA,135,6984723 +2024-01-09,MA,137,6984723 +2024-01-10,MA,133,6984723 +2024-01-11,MA,125,6984723 +2024-01-12,MA,119,6984723 +2024-01-13,MA,84,6984723 +2024-01-14,MA,118,6984723 +2024-01-15,MA,105,6984723 +2024-01-16,MA,109,6984723 +2024-01-17,MA,137,6984723 +2024-01-18,MA,141,6984723 +2024-01-19,MA,110,6984723 +2022-12-31,MD,111,6165129 +2023-01-01,MD,119,6165129 +2023-01-02,MD,99,6165129 +2023-01-03,MD,147,6165129 +2023-01-04,MD,135,6165129 +2023-01-05,MD,125,6165129 +2023-01-06,MD,93,6165129 +2023-01-07,MD,77,6165129 +2023-01-08,MD,109,6165129 +2023-01-09,MD,105,6165129 +2023-01-10,MD,117,6165129 +2023-01-11,MD,106,6165129 +2023-01-12,MD,103,6165129 +2023-01-13,MD,96,6165129 +2023-01-14,MD,89,6165129 +2023-01-15,MD,101,6165129 +2023-01-16,MD,76,6165129 +2023-01-17,MD,95,6165129 +2023-01-18,MD,84,6165129 +2023-01-19,MD,112,6165129 +2023-01-20,MD,82,6165129 +2023-01-21,MD,68,6165129 +2023-01-22,MD,62,6165129 +2023-01-23,MD,91,6165129 +2023-01-24,MD,93,6165129 +2023-01-25,MD,83,6165129 +2023-01-26,MD,76,6165129 +2023-01-27,MD,76,6165129 +2023-01-28,MD,51,6165129 +2023-01-29,MD,62,6165129 +2023-01-30,MD,77,6165129 +2023-01-31,MD,70,6165129 +2023-02-01,MD,67,6165129 +2023-02-02,MD,71,6165129 +2023-02-03,MD,54,6165129 +2023-02-04,MD,43,6165129 +2023-02-05,MD,66,6165129 +2023-02-06,MD,80,6165129 +2023-02-07,MD,73,6165129 +2023-02-08,MD,74,6165129 +2023-02-09,MD,76,6165129 +2023-02-10,MD,62,6165129 +2023-02-11,MD,52,6165129 +2023-02-12,MD,60,6165129 +2023-02-13,MD,60,6165129 +2023-02-14,MD,63,6165129 +2023-02-15,MD,70,6165129 +2023-02-16,MD,44,6165129 +2023-02-17,MD,56,6165129 +2023-02-18,MD,43,6165129 +2023-02-19,MD,55,6165129 +2023-02-20,MD,68,6165129 +2023-02-21,MD,50,6165129 +2023-02-22,MD,43,6165129 +2023-02-23,MD,56,6165129 +2023-02-24,MD,34,6165129 +2023-02-25,MD,33,6165129 +2023-02-26,MD,40,6165129 +2023-02-27,MD,62,6165129 +2023-02-28,MD,44,6165129 +2023-03-01,MD,30,6165129 +2023-03-02,MD,48,6165129 +2023-03-03,MD,51,6165129 +2023-03-04,MD,35,6165129 +2023-03-05,MD,37,6165129 +2023-03-06,MD,39,6165129 +2023-03-07,MD,47,6165129 +2023-03-08,MD,32,6165129 +2023-03-09,MD,40,6165129 +2023-03-10,MD,37,6165129 +2023-03-11,MD,24,6165129 +2023-03-12,MD,27,6165129 +2023-03-13,MD,35,6165129 +2023-03-14,MD,34,6165129 +2023-03-15,MD,39,6165129 +2023-03-16,MD,40,6165129 +2023-03-17,MD,29,6165129 +2023-03-18,MD,31,6165129 +2023-03-19,MD,34,6165129 +2023-03-20,MD,30,6165129 +2023-03-21,MD,33,6165129 +2023-03-22,MD,37,6165129 +2023-03-23,MD,40,6165129 +2023-03-24,MD,29,6165129 +2023-03-25,MD,26,6165129 +2023-03-26,MD,21,6165129 +2023-03-27,MD,22,6165129 +2023-03-28,MD,22,6165129 +2023-03-29,MD,25,6165129 +2023-03-30,MD,24,6165129 +2023-03-31,MD,29,6165129 +2023-04-01,MD,24,6165129 +2023-04-02,MD,20,6165129 +2023-04-03,MD,30,6165129 +2023-04-04,MD,22,6165129 +2023-04-05,MD,19,6165129 +2023-04-06,MD,21,6165129 +2023-04-07,MD,21,6165129 +2023-04-08,MD,21,6165129 +2023-04-09,MD,21,6165129 +2023-04-10,MD,27,6165129 +2023-04-11,MD,17,6165129 +2023-04-12,MD,20,6165129 +2023-04-13,MD,16,6165129 +2023-04-14,MD,24,6165129 +2023-04-15,MD,20,6165129 +2023-04-16,MD,14,6165129 +2023-04-17,MD,14,6165129 +2023-04-18,MD,12,6165129 +2023-04-19,MD,9,6165129 +2023-04-20,MD,26,6165129 +2023-04-21,MD,15,6165129 +2023-04-22,MD,9,6165129 +2023-04-23,MD,15,6165129 +2023-04-24,MD,14,6165129 +2023-04-25,MD,17,6165129 +2023-04-26,MD,17,6165129 +2023-04-27,MD,15,6165129 +2023-04-28,MD,16,6165129 +2023-04-29,MD,5,6165129 +2023-04-30,MD,11,6165129 +2023-05-01,MD,16,6165129 +2023-05-02,MD,17,6165129 +2023-05-03,MD,9,6165129 +2023-05-04,MD,14,6165129 +2023-05-05,MD,17,6165129 +2023-05-06,MD,9,6165129 +2023-05-07,MD,11,6165129 +2023-05-08,MD,15,6165129 +2023-05-09,MD,8,6165129 +2023-05-10,MD,15,6165129 +2023-05-11,MD,14,6165129 +2023-05-12,MD,14,6165129 +2023-05-13,MD,10,6165129 +2023-05-14,MD,18,6165129 +2023-05-15,MD,8,6165129 +2023-05-16,MD,12,6165129 +2023-05-17,MD,7,6165129 +2023-05-18,MD,15,6165129 +2023-05-19,MD,11,6165129 +2023-05-20,MD,11,6165129 +2023-05-21,MD,9,6165129 +2023-05-22,MD,23,6165129 +2023-05-23,MD,12,6165129 +2023-05-24,MD,16,6165129 +2023-05-25,MD,14,6165129 +2023-05-26,MD,13,6165129 +2023-05-27,MD,10,6165129 +2023-05-28,MD,11,6165129 +2023-05-29,MD,14,6165129 +2023-05-30,MD,13,6165129 +2023-05-31,MD,8,6165129 +2023-06-01,MD,15,6165129 +2023-06-02,MD,12,6165129 +2023-06-03,MD,9,6165129 +2023-06-04,MD,6,6165129 +2023-06-05,MD,16,6165129 +2023-06-06,MD,4,6165129 +2023-06-07,MD,15,6165129 +2023-06-08,MD,10,6165129 +2023-06-09,MD,13,6165129 +2023-06-10,MD,8,6165129 +2023-06-11,MD,8,6165129 +2023-06-12,MD,11,6165129 +2023-06-13,MD,14,6165129 +2023-06-14,MD,16,6165129 +2023-06-15,MD,11,6165129 +2023-06-16,MD,9,6165129 +2023-06-17,MD,11,6165129 +2023-06-18,MD,12,6165129 +2023-06-19,MD,10,6165129 +2023-06-20,MD,9,6165129 +2023-06-21,MD,12,6165129 +2023-06-22,MD,11,6165129 +2023-06-23,MD,15,6165129 +2023-06-24,MD,9,6165129 +2023-06-25,MD,17,6165129 +2023-06-26,MD,16,6165129 +2023-06-27,MD,17,6165129 +2023-06-28,MD,27,6165129 +2023-06-29,MD,20,6165129 +2023-06-30,MD,23,6165129 +2023-07-01,MD,25,6165129 +2023-07-02,MD,30,6165129 +2023-07-03,MD,26,6165129 +2023-07-04,MD,12,6165129 +2023-07-05,MD,11,6165129 +2023-07-06,MD,11,6165129 +2023-07-07,MD,11,6165129 +2023-07-08,MD,5,6165129 +2023-07-09,MD,12,6165129 +2023-07-10,MD,11,6165129 +2023-07-11,MD,13,6165129 +2023-07-12,MD,10,6165129 +2023-07-13,MD,14,6165129 +2023-07-14,MD,12,6165129 +2023-07-15,MD,14,6165129 +2023-07-16,MD,13,6165129 +2023-07-17,MD,18,6165129 +2023-07-18,MD,16,6165129 +2023-07-19,MD,9,6165129 +2023-07-20,MD,9,6165129 +2023-07-21,MD,12,6165129 +2023-07-22,MD,12,6165129 +2023-07-23,MD,23,6165129 +2023-07-24,MD,12,6165129 +2023-07-25,MD,22,6165129 +2023-07-26,MD,21,6165129 +2023-07-27,MD,17,6165129 +2023-07-28,MD,20,6165129 +2023-07-29,MD,15,6165129 +2023-07-30,MD,24,6165129 +2023-07-31,MD,23,6165129 +2023-08-01,MD,14,6165129 +2023-08-02,MD,20,6165129 +2023-08-03,MD,17,6165129 +2023-08-04,MD,17,6165129 +2023-08-05,MD,21,6165129 +2023-08-06,MD,23,6165129 +2023-08-07,MD,22,6165129 +2023-08-08,MD,11,6165129 +2023-08-09,MD,16,6165129 +2023-08-10,MD,31,6165129 +2023-08-11,MD,17,6165129 +2023-08-12,MD,19,6165129 +2023-08-13,MD,32,6165129 +2023-08-14,MD,30,6165129 +2023-08-15,MD,35,6165129 +2023-08-16,MD,31,6165129 +2023-08-17,MD,32,6165129 +2023-08-18,MD,30,6165129 +2023-08-19,MD,29,6165129 +2023-08-20,MD,26,6165129 +2023-08-21,MD,28,6165129 +2023-08-22,MD,34,6165129 +2023-08-23,MD,37,6165129 +2023-08-24,MD,41,6165129 +2023-08-25,MD,36,6165129 +2023-08-26,MD,41,6165129 +2023-08-27,MD,45,6165129 +2023-08-28,MD,43,6165129 +2023-08-29,MD,26,6165129 +2023-08-30,MD,32,6165129 +2023-08-31,MD,41,6165129 +2023-09-01,MD,34,6165129 +2023-09-02,MD,35,6165129 +2023-09-03,MD,49,6165129 +2023-09-04,MD,51,6165129 +2023-09-05,MD,51,6165129 +2023-09-06,MD,59,6165129 +2023-09-07,MD,52,6165129 +2023-09-08,MD,51,6165129 +2023-09-09,MD,44,6165129 +2023-09-10,MD,51,6165129 +2023-09-11,MD,55,6165129 +2023-09-12,MD,49,6165129 +2023-09-13,MD,49,6165129 +2023-09-14,MD,34,6165129 +2023-09-15,MD,22,6165129 +2023-09-16,MD,34,6165129 +2023-09-17,MD,44,6165129 +2023-09-18,MD,55,6165129 +2023-09-19,MD,72,6165129 +2023-09-20,MD,42,6165129 +2023-09-21,MD,55,6165129 +2023-09-22,MD,51,6165129 +2023-09-23,MD,39,6165129 +2023-09-24,MD,57,6165129 +2023-09-25,MD,43,6165129 +2023-09-26,MD,50,6165129 +2023-09-27,MD,51,6165129 +2023-09-28,MD,41,6165129 +2023-09-29,MD,39,6165129 +2023-09-30,MD,37,6165129 +2023-10-01,MD,43,6165129 +2023-10-02,MD,48,6165129 +2023-10-03,MD,45,6165129 +2023-10-04,MD,51,6165129 +2023-10-05,MD,54,6165129 +2023-10-06,MD,44,6165129 +2023-10-07,MD,31,6165129 +2023-10-08,MD,30,6165129 +2023-10-09,MD,39,6165129 +2023-10-10,MD,36,6165129 +2023-10-11,MD,45,6165129 +2023-10-12,MD,40,6165129 +2023-10-13,MD,40,6165129 +2023-10-14,MD,33,6165129 +2023-10-15,MD,42,6165129 +2023-10-16,MD,44,6165129 +2023-10-17,MD,42,6165129 +2023-10-18,MD,37,6165129 +2023-10-19,MD,39,6165129 +2023-10-20,MD,49,6165129 +2023-10-21,MD,32,6165129 +2023-10-22,MD,49,6165129 +2023-10-23,MD,36,6165129 +2023-10-24,MD,34,6165129 +2023-10-25,MD,35,6165129 +2023-10-26,MD,35,6165129 +2023-10-27,MD,56,6165129 +2023-10-28,MD,27,6165129 +2023-10-29,MD,42,6165129 +2023-10-30,MD,37,6165129 +2023-10-31,MD,38,6165129 +2023-11-01,MD,34,6165129 +2023-11-02,MD,37,6165129 +2023-11-03,MD,42,6165129 +2023-11-04,MD,28,6165129 +2023-11-05,MD,40,6165129 +2023-11-06,MD,44,6165129 +2023-11-07,MD,38,6165129 +2023-11-08,MD,33,6165129 +2023-11-09,MD,47,6165129 +2023-11-10,MD,33,6165129 +2023-11-11,MD,29,6165129 +2023-11-12,MD,20,6165129 +2023-11-13,MD,52,6165129 +2023-11-14,MD,59,6165129 +2023-11-15,MD,45,6165129 +2023-11-16,MD,48,6165129 +2023-11-17,MD,37,6165129 +2023-11-18,MD,53,6165129 +2023-11-19,MD,47,6165129 +2023-11-20,MD,56,6165129 +2023-11-21,MD,61,6165129 +2023-11-22,MD,42,6165129 +2023-11-23,MD,48,6165129 +2023-11-24,MD,41,6165129 +2023-11-25,MD,45,6165129 +2023-11-26,MD,76,6165129 +2023-11-27,MD,52,6165129 +2023-11-28,MD,57,6165129 +2023-11-29,MD,58,6165129 +2023-11-30,MD,64,6165129 +2023-12-01,MD,55,6165129 +2023-12-02,MD,60,6165129 +2023-12-03,MD,51,6165129 +2023-12-04,MD,63,6165129 +2023-12-05,MD,71,6165129 +2023-12-06,MD,64,6165129 +2023-12-07,MD,65,6165129 +2023-12-08,MD,58,6165129 +2023-12-09,MD,56,6165129 +2023-12-10,MD,67,6165129 +2023-12-11,MD,63,6165129 +2023-12-12,MD,64,6165129 +2023-12-13,MD,67,6165129 +2023-12-14,MD,68,6165129 +2023-12-15,MD,69,6165129 +2023-12-16,MD,57,6165129 +2023-12-17,MD,69,6165129 +2023-12-18,MD,63,6165129 +2023-12-19,MD,68,6165129 +2023-12-20,MD,68,6165129 +2023-12-21,MD,70,6165129 +2023-12-22,MD,65,6165129 +2023-12-23,MD,64,6165129 +2023-12-24,MD,66,6165129 +2023-12-25,MD,74,6165129 +2023-12-26,MD,91,6165129 +2023-12-27,MD,90,6165129 +2023-12-28,MD,93,6165129 +2023-12-29,MD,94,6165129 +2023-12-30,MD,74,6165129 +2023-12-31,MD,67,6165129 +2024-01-01,MD,106,6165129 +2024-01-02,MD,103,6165129 +2024-01-03,MD,74,6165129 +2024-01-04,MD,91,6165129 +2024-01-05,MD,87,6165129 +2024-01-06,MD,80,6165129 +2024-01-07,MD,73,6165129 +2024-01-08,MD,73,6165129 +2024-01-09,MD,83,6165129 +2024-01-10,MD,63,6165129 +2024-01-11,MD,88,6165129 +2024-01-12,MD,64,6165129 +2024-01-13,MD,54,6165129 +2024-01-14,MD,70,6165129 +2024-01-15,MD,71,6165129 +2024-01-16,MD,55,6165129 +2024-01-17,MD,63,6165129 +2024-01-18,MD,56,6165129 +2024-01-19,MD,59,6165129 +2022-12-31,ME,13,1372247 +2023-01-01,ME,11,1372247 +2023-01-02,ME,9,1372247 +2023-01-03,ME,16,1372247 +2023-01-04,ME,16,1372247 +2023-01-05,ME,11,1372247 +2023-01-06,ME,11,1372247 +2023-01-07,ME,15,1372247 +2023-01-08,ME,12,1372247 +2023-01-09,ME,20,1372247 +2023-01-10,ME,12,1372247 +2023-01-11,ME,10,1372247 +2023-01-12,ME,12,1372247 +2023-01-13,ME,13,1372247 +2023-01-14,ME,8,1372247 +2023-01-15,ME,13,1372247 +2023-01-16,ME,11,1372247 +2023-01-17,ME,12,1372247 +2023-01-18,ME,12,1372247 +2023-01-19,ME,16,1372247 +2023-01-20,ME,10,1372247 +2023-01-21,ME,28,1372247 +2023-01-22,ME,14,1372247 +2023-01-23,ME,8,1372247 +2023-01-24,ME,12,1372247 +2023-01-25,ME,18,1372247 +2023-01-26,ME,11,1372247 +2023-01-27,ME,13,1372247 +2023-01-28,ME,9,1372247 +2023-01-29,ME,9,1372247 +2023-01-30,ME,17,1372247 +2023-01-31,ME,17,1372247 +2023-02-01,ME,15,1372247 +2023-02-02,ME,13,1372247 +2023-02-03,ME,11,1372247 +2023-02-04,ME,11,1372247 +2023-02-05,ME,13,1372247 +2023-02-06,ME,15,1372247 +2023-02-07,ME,14,1372247 +2023-02-08,ME,17,1372247 +2023-02-09,ME,22,1372247 +2023-02-10,ME,11,1372247 +2023-02-11,ME,13,1372247 +2023-02-12,ME,14,1372247 +2023-02-13,ME,15,1372247 +2023-02-14,ME,17,1372247 +2023-02-15,ME,21,1372247 +2023-02-16,ME,26,1372247 +2023-02-17,ME,18,1372247 +2023-02-18,ME,24,1372247 +2023-02-19,ME,16,1372247 +2023-02-20,ME,14,1372247 +2023-02-21,ME,16,1372247 +2023-02-22,ME,22,1372247 +2023-02-23,ME,8,1372247 +2023-02-24,ME,13,1372247 +2023-02-25,ME,22,1372247 +2023-02-26,ME,14,1372247 +2023-02-27,ME,22,1372247 +2023-02-28,ME,19,1372247 +2023-03-01,ME,29,1372247 +2023-03-02,ME,13,1372247 +2023-03-03,ME,26,1372247 +2023-03-04,ME,8,1372247 +2023-03-05,ME,15,1372247 +2023-03-06,ME,24,1372247 +2023-03-07,ME,18,1372247 +2023-03-08,ME,15,1372247 +2023-03-09,ME,10,1372247 +2023-03-10,ME,22,1372247 +2023-03-11,ME,13,1372247 +2023-03-12,ME,16,1372247 +2023-03-13,ME,20,1372247 +2023-03-14,ME,12,1372247 +2023-03-15,ME,16,1372247 +2023-03-16,ME,14,1372247 +2023-03-17,ME,16,1372247 +2023-03-18,ME,19,1372247 +2023-03-19,ME,9,1372247 +2023-03-20,ME,12,1372247 +2023-03-21,ME,10,1372247 +2023-03-22,ME,18,1372247 +2023-03-23,ME,11,1372247 +2023-03-24,ME,13,1372247 +2023-03-25,ME,9,1372247 +2023-03-26,ME,10,1372247 +2023-03-27,ME,5,1372247 +2023-03-28,ME,13,1372247 +2023-03-29,ME,11,1372247 +2023-03-30,ME,9,1372247 +2023-03-31,ME,13,1372247 +2023-04-01,ME,10,1372247 +2023-04-02,ME,9,1372247 +2023-04-03,ME,9,1372247 +2023-04-04,ME,15,1372247 +2023-04-05,ME,8,1372247 +2023-04-06,ME,5,1372247 +2023-04-07,ME,7,1372247 +2023-04-08,ME,7,1372247 +2023-04-09,ME,6,1372247 +2023-04-10,ME,8,1372247 +2023-04-11,ME,14,1372247 +2023-04-12,ME,10,1372247 +2023-04-13,ME,9,1372247 +2023-04-14,ME,11,1372247 +2023-04-15,ME,4,1372247 +2023-04-16,ME,5,1372247 +2023-04-17,ME,7,1372247 +2023-04-18,ME,7,1372247 +2023-04-19,ME,7,1372247 +2023-04-20,ME,3,1372247 +2023-04-21,ME,8,1372247 +2023-04-22,ME,4,1372247 +2023-04-23,ME,4,1372247 +2023-04-24,ME,1,1372247 +2023-04-25,ME,2,1372247 +2023-04-26,ME,5,1372247 +2023-04-27,ME,10,1372247 +2023-04-28,ME,4,1372247 +2023-04-29,ME,6,1372247 +2023-04-30,ME,9,1372247 +2023-05-01,ME,6,1372247 +2023-05-02,ME,4,1372247 +2023-05-03,ME,7,1372247 +2023-05-04,ME,6,1372247 +2023-05-05,ME,4,1372247 +2023-05-06,ME,4,1372247 +2023-05-07,ME,6,1372247 +2023-05-08,ME,3,1372247 +2023-05-09,ME,3,1372247 +2023-05-10,ME,6,1372247 +2023-05-11,ME,4,1372247 +2023-05-12,ME,4,1372247 +2023-05-13,ME,4,1372247 +2023-05-14,ME,4,1372247 +2023-05-15,ME,3,1372247 +2023-05-16,ME,2,1372247 +2023-05-17,ME,2,1372247 +2023-05-18,ME,4,1372247 +2023-05-19,ME,4,1372247 +2023-05-20,ME,4,1372247 +2023-05-21,ME,6,1372247 +2023-05-22,ME,1,1372247 +2023-05-23,ME,2,1372247 +2023-05-24,ME,4,1372247 +2023-05-25,ME,7,1372247 +2023-05-26,ME,4,1372247 +2023-05-27,ME,3,1372247 +2023-05-28,ME,2,1372247 +2023-05-29,ME,4,1372247 +2023-05-30,ME,2,1372247 +2023-05-31,ME,4,1372247 +2023-06-01,ME,0,1372247 +2023-06-02,ME,4,1372247 +2023-06-03,ME,2,1372247 +2023-06-04,ME,3,1372247 +2023-06-05,ME,4,1372247 +2023-06-06,ME,3,1372247 +2023-06-07,ME,4,1372247 +2023-06-08,ME,2,1372247 +2023-06-09,ME,1,1372247 +2023-06-10,ME,3,1372247 +2023-06-11,ME,2,1372247 +2023-06-12,ME,1,1372247 +2023-06-13,ME,3,1372247 +2023-06-14,ME,4,1372247 +2023-06-15,ME,3,1372247 +2023-06-16,ME,5,1372247 +2023-06-17,ME,3,1372247 +2023-06-18,ME,4,1372247 +2023-06-19,ME,3,1372247 +2023-06-20,ME,1,1372247 +2023-06-21,ME,2,1372247 +2023-06-22,ME,2,1372247 +2023-06-23,ME,2,1372247 +2023-06-24,ME,3,1372247 +2023-06-25,ME,1,1372247 +2023-06-26,ME,1,1372247 +2023-06-27,ME,1,1372247 +2023-06-28,ME,1,1372247 +2023-06-29,ME,1,1372247 +2023-06-30,ME,1,1372247 +2023-07-01,ME,0,1372247 +2023-07-02,ME,2,1372247 +2023-07-03,ME,2,1372247 +2023-07-04,ME,2,1372247 +2023-07-05,ME,2,1372247 +2023-07-06,ME,0,1372247 +2023-07-07,ME,3,1372247 +2023-07-08,ME,3,1372247 +2023-07-09,ME,3,1372247 +2023-07-10,ME,1,1372247 +2023-07-11,ME,4,1372247 +2023-07-12,ME,3,1372247 +2023-07-13,ME,4,1372247 +2023-07-14,ME,2,1372247 +2023-07-15,ME,3,1372247 +2023-07-16,ME,2,1372247 +2023-07-17,ME,3,1372247 +2023-07-18,ME,5,1372247 +2023-07-19,ME,2,1372247 +2023-07-20,ME,4,1372247 +2023-07-21,ME,2,1372247 +2023-07-22,ME,3,1372247 +2023-07-23,ME,3,1372247 +2023-07-24,ME,2,1372247 +2023-07-25,ME,2,1372247 +2023-07-26,ME,5,1372247 +2023-07-27,ME,6,1372247 +2023-07-28,ME,4,1372247 +2023-07-29,ME,4,1372247 +2023-07-30,ME,0,1372247 +2023-07-31,ME,2,1372247 +2023-08-01,ME,4,1372247 +2023-08-02,ME,3,1372247 +2023-08-03,ME,3,1372247 +2023-08-04,ME,3,1372247 +2023-08-05,ME,4,1372247 +2023-08-06,ME,1,1372247 +2023-08-07,ME,3,1372247 +2023-08-08,ME,3,1372247 +2023-08-09,ME,6,1372247 +2023-08-10,ME,2,1372247 +2023-08-11,ME,4,1372247 +2023-08-12,ME,5,1372247 +2023-08-13,ME,2,1372247 +2023-08-14,ME,6,1372247 +2023-08-15,ME,4,1372247 +2023-08-16,ME,2,1372247 +2023-08-17,ME,3,1372247 +2023-08-18,ME,4,1372247 +2023-08-19,ME,2,1372247 +2023-08-20,ME,0,1372247 +2023-08-21,ME,4,1372247 +2023-08-22,ME,6,1372247 +2023-08-23,ME,3,1372247 +2023-08-24,ME,5,1372247 +2023-08-25,ME,6,1372247 +2023-08-26,ME,5,1372247 +2023-08-27,ME,5,1372247 +2023-08-28,ME,4,1372247 +2023-08-29,ME,8,1372247 +2023-08-30,ME,4,1372247 +2023-08-31,ME,8,1372247 +2023-09-01,ME,8,1372247 +2023-09-02,ME,7,1372247 +2023-09-03,ME,3,1372247 +2023-09-04,ME,7,1372247 +2023-09-05,ME,6,1372247 +2023-09-06,ME,7,1372247 +2023-09-07,ME,3,1372247 +2023-09-08,ME,5,1372247 +2023-09-09,ME,5,1372247 +2023-09-10,ME,5,1372247 +2023-09-11,ME,4,1372247 +2023-09-12,ME,9,1372247 +2023-09-13,ME,8,1372247 +2023-09-14,ME,9,1372247 +2023-09-15,ME,7,1372247 +2023-09-16,ME,6,1372247 +2023-09-17,ME,6,1372247 +2023-09-18,ME,6,1372247 +2023-09-19,ME,4,1372247 +2023-09-20,ME,4,1372247 +2023-09-21,ME,9,1372247 +2023-09-22,ME,9,1372247 +2023-09-23,ME,6,1372247 +2023-09-24,ME,6,1372247 +2023-09-25,ME,13,1372247 +2023-09-26,ME,67,1372247 +2023-09-27,ME,73,1372247 +2023-09-28,ME,69,1372247 +2023-09-29,ME,68,1372247 +2023-09-30,ME,68,1372247 +2023-10-01,ME,2,1372247 +2023-10-02,ME,11,1372247 +2023-10-03,ME,12,1372247 +2023-10-04,ME,10,1372247 +2023-10-05,ME,9,1372247 +2023-10-06,ME,9,1372247 +2023-10-07,ME,9,1372247 +2023-10-08,ME,7,1372247 +2023-10-09,ME,9,1372247 +2023-10-10,ME,11,1372247 +2023-10-11,ME,7,1372247 +2023-10-12,ME,4,1372247 +2023-10-13,ME,12,1372247 +2023-10-14,ME,9,1372247 +2023-10-15,ME,8,1372247 +2023-10-16,ME,10,1372247 +2023-10-17,ME,6,1372247 +2023-10-18,ME,2,1372247 +2023-10-19,ME,10,1372247 +2023-10-20,ME,13,1372247 +2023-10-21,ME,6,1372247 +2023-10-22,ME,6,1372247 +2023-10-23,ME,8,1372247 +2023-10-24,ME,7,1372247 +2023-10-25,ME,12,1372247 +2023-10-26,ME,7,1372247 +2023-10-27,ME,9,1372247 +2023-10-28,ME,7,1372247 +2023-10-29,ME,8,1372247 +2023-10-30,ME,5,1372247 +2023-10-31,ME,5,1372247 +2023-11-01,ME,8,1372247 +2023-11-02,ME,6,1372247 +2023-11-03,ME,11,1372247 +2023-11-04,ME,5,1372247 +2023-11-05,ME,7,1372247 +2023-11-06,ME,8,1372247 +2023-11-07,ME,9,1372247 +2023-11-08,ME,9,1372247 +2023-11-09,ME,4,1372247 +2023-11-10,ME,10,1372247 +2023-11-11,ME,12,1372247 +2023-11-12,ME,9,1372247 +2023-11-13,ME,4,1372247 +2023-11-14,ME,9,1372247 +2023-11-15,ME,5,1372247 +2023-11-16,ME,9,1372247 +2023-11-17,ME,13,1372247 +2023-11-18,ME,9,1372247 +2023-11-19,ME,9,1372247 +2023-11-20,ME,13,1372247 +2023-11-21,ME,8,1372247 +2023-11-22,ME,10,1372247 +2023-11-23,ME,10,1372247 +2023-11-24,ME,11,1372247 +2023-11-25,ME,11,1372247 +2023-11-26,ME,15,1372247 +2023-11-27,ME,11,1372247 +2023-11-28,ME,16,1372247 +2023-11-29,ME,9,1372247 +2023-11-30,ME,14,1372247 +2023-12-01,ME,11,1372247 +2023-12-02,ME,16,1372247 +2023-12-03,ME,11,1372247 +2023-12-04,ME,22,1372247 +2023-12-05,ME,18,1372247 +2023-12-06,ME,17,1372247 +2023-12-07,ME,16,1372247 +2023-12-08,ME,17,1372247 +2023-12-09,ME,10,1372247 +2023-12-10,ME,16,1372247 +2023-12-11,ME,16,1372247 +2023-12-12,ME,15,1372247 +2023-12-13,ME,14,1372247 +2023-12-14,ME,13,1372247 +2023-12-15,ME,15,1372247 +2023-12-16,ME,18,1372247 +2023-12-17,ME,12,1372247 +2023-12-18,ME,16,1372247 +2023-12-19,ME,8,1372247 +2023-12-20,ME,19,1372247 +2023-12-21,ME,14,1372247 +2023-12-22,ME,18,1372247 +2023-12-23,ME,15,1372247 +2023-12-24,ME,16,1372247 +2023-12-25,ME,9,1372247 +2023-12-26,ME,19,1372247 +2023-12-27,ME,22,1372247 +2023-12-28,ME,22,1372247 +2023-12-29,ME,23,1372247 +2023-12-30,ME,16,1372247 +2023-12-31,ME,22,1372247 +2024-01-01,ME,24,1372247 +2024-01-02,ME,27,1372247 +2024-01-03,ME,22,1372247 +2024-01-04,ME,15,1372247 +2024-01-05,ME,21,1372247 +2024-01-06,ME,24,1372247 +2024-01-07,ME,19,1372247 +2024-01-08,ME,15,1372247 +2024-01-09,ME,13,1372247 +2024-01-10,ME,15,1372247 +2024-01-11,ME,15,1372247 +2024-01-12,ME,10,1372247 +2024-01-13,ME,10,1372247 +2024-01-14,ME,9,1372247 +2024-01-15,ME,7,1372247 +2024-01-16,ME,13,1372247 +2024-01-17,ME,16,1372247 +2024-01-18,ME,13,1372247 +2024-01-19,ME,9,1372247 +2022-12-31,MI,158,10050811 +2023-01-01,MI,155,10050811 +2023-01-02,MI,163,10050811 +2023-01-03,MI,169,10050811 +2023-01-04,MI,177,10050811 +2023-01-05,MI,159,10050811 +2023-01-06,MI,133,10050811 +2023-01-07,MI,119,10050811 +2023-01-08,MI,123,10050811 +2023-01-09,MI,126,10050811 +2023-01-10,MI,143,10050811 +2023-01-11,MI,154,10050811 +2023-01-12,MI,140,10050811 +2023-01-13,MI,112,10050811 +2023-01-14,MI,97,10050811 +2023-01-15,MI,116,10050811 +2023-01-16,MI,96,10050811 +2023-01-17,MI,104,10050811 +2023-01-18,MI,105,10050811 +2023-01-19,MI,84,10050811 +2023-01-20,MI,101,10050811 +2023-01-21,MI,84,10050811 +2023-01-22,MI,63,10050811 +2023-01-23,MI,137,10050811 +2023-01-24,MI,107,10050811 +2023-01-25,MI,87,10050811 +2023-01-26,MI,91,10050811 +2023-01-27,MI,79,10050811 +2023-01-28,MI,85,10050811 +2023-01-29,MI,70,10050811 +2023-01-30,MI,90,10050811 +2023-01-31,MI,97,10050811 +2023-02-01,MI,84,10050811 +2023-02-02,MI,95,10050811 +2023-02-03,MI,85,10050811 +2023-02-04,MI,85,10050811 +2023-02-05,MI,78,10050811 +2023-02-06,MI,84,10050811 +2023-02-07,MI,101,10050811 +2023-02-08,MI,87,10050811 +2023-02-09,MI,107,10050811 +2023-02-10,MI,100,10050811 +2023-02-11,MI,68,10050811 +2023-02-12,MI,72,10050811 +2023-02-13,MI,108,10050811 +2023-02-14,MI,103,10050811 +2023-02-15,MI,92,10050811 +2023-02-16,MI,108,10050811 +2023-02-17,MI,96,10050811 +2023-02-18,MI,101,10050811 +2023-02-19,MI,83,10050811 +2023-02-20,MI,107,10050811 +2023-02-21,MI,116,10050811 +2023-02-22,MI,90,10050811 +2023-02-23,MI,95,10050811 +2023-02-24,MI,110,10050811 +2023-02-25,MI,88,10050811 +2023-02-26,MI,91,10050811 +2023-02-27,MI,131,10050811 +2023-02-28,MI,119,10050811 +2023-03-01,MI,97,10050811 +2023-03-02,MI,116,10050811 +2023-03-03,MI,89,10050811 +2023-03-04,MI,79,10050811 +2023-03-05,MI,78,10050811 +2023-03-06,MI,111,10050811 +2023-03-07,MI,99,10050811 +2023-03-08,MI,110,10050811 +2023-03-09,MI,102,10050811 +2023-03-10,MI,97,10050811 +2023-03-11,MI,86,10050811 +2023-03-12,MI,84,10050811 +2023-03-13,MI,125,10050811 +2023-03-14,MI,106,10050811 +2023-03-15,MI,119,10050811 +2023-03-16,MI,89,10050811 +2023-03-17,MI,84,10050811 +2023-03-18,MI,72,10050811 +2023-03-19,MI,104,10050811 +2023-03-20,MI,107,10050811 +2023-03-21,MI,102,10050811 +2023-03-22,MI,102,10050811 +2023-03-23,MI,110,10050811 +2023-03-24,MI,81,10050811 +2023-03-25,MI,93,10050811 +2023-03-26,MI,80,10050811 +2023-03-27,MI,109,10050811 +2023-03-28,MI,104,10050811 +2023-03-29,MI,99,10050811 +2023-03-30,MI,93,10050811 +2023-03-31,MI,100,10050811 +2023-04-01,MI,83,10050811 +2023-04-02,MI,70,10050811 +2023-04-03,MI,109,10050811 +2023-04-04,MI,84,10050811 +2023-04-05,MI,95,10050811 +2023-04-06,MI,75,10050811 +2023-04-07,MI,74,10050811 +2023-04-08,MI,65,10050811 +2023-04-09,MI,59,10050811 +2023-04-10,MI,64,10050811 +2023-04-11,MI,72,10050811 +2023-04-12,MI,101,10050811 +2023-04-13,MI,63,10050811 +2023-04-14,MI,67,10050811 +2023-04-15,MI,64,10050811 +2023-04-16,MI,75,10050811 +2023-04-17,MI,64,10050811 +2023-04-18,MI,55,10050811 +2023-04-19,MI,75,10050811 +2023-04-20,MI,73,10050811 +2023-04-21,MI,63,10050811 +2023-04-22,MI,50,10050811 +2023-04-23,MI,48,10050811 +2023-04-24,MI,56,10050811 +2023-04-25,MI,45,10050811 +2023-04-26,MI,49,10050811 +2023-04-27,MI,66,10050811 +2023-04-28,MI,54,10050811 +2023-04-29,MI,43,10050811 +2023-04-30,MI,51,10050811 +2023-05-01,MI,57,10050811 +2023-05-02,MI,50,10050811 +2023-05-03,MI,44,10050811 +2023-05-04,MI,44,10050811 +2023-05-05,MI,52,10050811 +2023-05-06,MI,62,10050811 +2023-05-07,MI,39,10050811 +2023-05-08,MI,62,10050811 +2023-05-09,MI,51,10050811 +2023-05-10,MI,44,10050811 +2023-05-11,MI,38,10050811 +2023-05-12,MI,39,10050811 +2023-05-13,MI,44,10050811 +2023-05-14,MI,28,10050811 +2023-05-15,MI,40,10050811 +2023-05-16,MI,43,10050811 +2023-05-17,MI,32,10050811 +2023-05-18,MI,42,10050811 +2023-05-19,MI,39,10050811 +2023-05-20,MI,37,10050811 +2023-05-21,MI,35,10050811 +2023-05-22,MI,42,10050811 +2023-05-23,MI,35,10050811 +2023-05-24,MI,24,10050811 +2023-05-25,MI,28,10050811 +2023-05-26,MI,26,10050811 +2023-05-27,MI,34,10050811 +2023-05-28,MI,29,10050811 +2023-05-29,MI,35,10050811 +2023-05-30,MI,36,10050811 +2023-05-31,MI,26,10050811 +2023-06-01,MI,28,10050811 +2023-06-02,MI,24,10050811 +2023-06-03,MI,23,10050811 +2023-06-04,MI,24,10050811 +2023-06-05,MI,19,10050811 +2023-06-06,MI,22,10050811 +2023-06-07,MI,22,10050811 +2023-06-08,MI,17,10050811 +2023-06-09,MI,32,10050811 +2023-06-10,MI,21,10050811 +2023-06-11,MI,18,10050811 +2023-06-12,MI,29,10050811 +2023-06-13,MI,30,10050811 +2023-06-14,MI,18,10050811 +2023-06-15,MI,18,10050811 +2023-06-16,MI,23,10050811 +2023-06-17,MI,24,10050811 +2023-06-18,MI,20,10050811 +2023-06-19,MI,28,10050811 +2023-06-20,MI,12,10050811 +2023-06-21,MI,16,10050811 +2023-06-22,MI,26,10050811 +2023-06-23,MI,35,10050811 +2023-06-24,MI,25,10050811 +2023-06-25,MI,21,10050811 +2023-06-26,MI,24,10050811 +2023-06-27,MI,19,10050811 +2023-06-28,MI,15,10050811 +2023-06-29,MI,21,10050811 +2023-06-30,MI,23,10050811 +2023-07-01,MI,18,10050811 +2023-07-02,MI,13,10050811 +2023-07-03,MI,12,10050811 +2023-07-04,MI,16,10050811 +2023-07-05,MI,21,10050811 +2023-07-06,MI,17,10050811 +2023-07-07,MI,19,10050811 +2023-07-08,MI,12,10050811 +2023-07-09,MI,18,10050811 +2023-07-10,MI,16,10050811 +2023-07-11,MI,18,10050811 +2023-07-12,MI,19,10050811 +2023-07-13,MI,14,10050811 +2023-07-14,MI,13,10050811 +2023-07-15,MI,14,10050811 +2023-07-16,MI,13,10050811 +2023-07-17,MI,16,10050811 +2023-07-18,MI,18,10050811 +2023-07-19,MI,11,10050811 +2023-07-20,MI,12,10050811 +2023-07-21,MI,16,10050811 +2023-07-22,MI,8,10050811 +2023-07-23,MI,15,10050811 +2023-07-24,MI,12,10050811 +2023-07-25,MI,17,10050811 +2023-07-26,MI,25,10050811 +2023-07-27,MI,17,10050811 +2023-07-28,MI,20,10050811 +2023-07-29,MI,15,10050811 +2023-07-30,MI,19,10050811 +2023-07-31,MI,18,10050811 +2023-08-01,MI,21,10050811 +2023-08-02,MI,17,10050811 +2023-08-03,MI,21,10050811 +2023-08-04,MI,20,10050811 +2023-08-05,MI,28,10050811 +2023-08-06,MI,21,10050811 +2023-08-07,MI,33,10050811 +2023-08-08,MI,24,10050811 +2023-08-09,MI,36,10050811 +2023-08-10,MI,38,10050811 +2023-08-11,MI,22,10050811 +2023-08-12,MI,32,10050811 +2023-08-13,MI,39,10050811 +2023-08-14,MI,32,10050811 +2023-08-15,MI,41,10050811 +2023-08-16,MI,39,10050811 +2023-08-17,MI,48,10050811 +2023-08-18,MI,36,10050811 +2023-08-19,MI,44,10050811 +2023-08-20,MI,32,10050811 +2023-08-21,MI,39,10050811 +2023-08-22,MI,42,10050811 +2023-08-23,MI,44,10050811 +2023-08-24,MI,50,10050811 +2023-08-25,MI,63,10050811 +2023-08-26,MI,40,10050811 +2023-08-27,MI,56,10050811 +2023-08-28,MI,52,10050811 +2023-08-29,MI,53,10050811 +2023-08-30,MI,43,10050811 +2023-08-31,MI,65,10050811 +2023-09-01,MI,48,10050811 +2023-09-02,MI,53,10050811 +2023-09-03,MI,57,10050811 +2023-09-04,MI,60,10050811 +2023-09-05,MI,66,10050811 +2023-09-06,MI,71,10050811 +2023-09-07,MI,50,10050811 +2023-09-08,MI,66,10050811 +2023-09-09,MI,45,10050811 +2023-09-10,MI,52,10050811 +2023-09-11,MI,75,10050811 +2023-09-12,MI,66,10050811 +2023-09-13,MI,84,10050811 +2023-09-14,MI,94,10050811 +2023-09-15,MI,61,10050811 +2023-09-16,MI,60,10050811 +2023-09-17,MI,65,10050811 +2023-09-18,MI,92,10050811 +2023-09-19,MI,69,10050811 +2023-09-20,MI,89,10050811 +2023-09-21,MI,84,10050811 +2023-09-22,MI,105,10050811 +2023-09-23,MI,77,10050811 +2023-09-24,MI,88,10050811 +2023-09-25,MI,78,10050811 +2023-09-26,MI,88,10050811 +2023-09-27,MI,69,10050811 +2023-09-28,MI,91,10050811 +2023-09-29,MI,72,10050811 +2023-09-30,MI,77,10050811 +2023-10-01,MI,56,10050811 +2023-10-02,MI,82,10050811 +2023-10-03,MI,86,10050811 +2023-10-04,MI,66,10050811 +2023-10-05,MI,69,10050811 +2023-10-06,MI,74,10050811 +2023-10-07,MI,56,10050811 +2023-10-08,MI,72,10050811 +2023-10-09,MI,69,10050811 +2023-10-10,MI,55,10050811 +2023-10-11,MI,83,10050811 +2023-10-12,MI,67,10050811 +2023-10-13,MI,66,10050811 +2023-10-14,MI,62,10050811 +2023-10-15,MI,52,10050811 +2023-10-16,MI,68,10050811 +2023-10-17,MI,76,10050811 +2023-10-18,MI,80,10050811 +2023-10-19,MI,69,10050811 +2023-10-20,MI,82,10050811 +2023-10-21,MI,72,10050811 +2023-10-22,MI,69,10050811 +2023-10-23,MI,73,10050811 +2023-10-24,MI,69,10050811 +2023-10-25,MI,64,10050811 +2023-10-26,MI,91,10050811 +2023-10-27,MI,88,10050811 +2023-10-28,MI,58,10050811 +2023-10-29,MI,61,10050811 +2023-10-30,MI,67,10050811 +2023-10-31,MI,60,10050811 +2023-11-01,MI,85,10050811 +2023-11-02,MI,75,10050811 +2023-11-03,MI,59,10050811 +2023-11-04,MI,63,10050811 +2023-11-05,MI,77,10050811 +2023-11-06,MI,92,10050811 +2023-11-07,MI,77,10050811 +2023-11-08,MI,71,10050811 +2023-11-09,MI,83,10050811 +2023-11-10,MI,66,10050811 +2023-11-11,MI,63,10050811 +2023-11-12,MI,76,10050811 +2023-11-13,MI,104,10050811 +2023-11-14,MI,81,10050811 +2023-11-15,MI,88,10050811 +2023-11-16,MI,110,10050811 +2023-11-17,MI,130,10050811 +2023-11-18,MI,100,10050811 +2023-11-19,MI,99,10050811 +2023-11-20,MI,113,10050811 +2023-11-21,MI,126,10050811 +2023-11-22,MI,129,10050811 +2023-11-23,MI,111,10050811 +2023-11-24,MI,127,10050811 +2023-11-25,MI,127,10050811 +2023-11-26,MI,138,10050811 +2023-11-27,MI,147,10050811 +2023-11-28,MI,169,10050811 +2023-11-29,MI,166,10050811 +2023-11-30,MI,172,10050811 +2023-12-01,MI,145,10050811 +2023-12-02,MI,130,10050811 +2023-12-03,MI,136,10050811 +2023-12-04,MI,138,10050811 +2023-12-05,MI,149,10050811 +2023-12-06,MI,169,10050811 +2023-12-07,MI,148,10050811 +2023-12-08,MI,136,10050811 +2023-12-09,MI,145,10050811 +2023-12-10,MI,135,10050811 +2023-12-11,MI,147,10050811 +2023-12-12,MI,140,10050811 +2023-12-13,MI,144,10050811 +2023-12-14,MI,132,10050811 +2023-12-15,MI,130,10050811 +2023-12-16,MI,148,10050811 +2023-12-17,MI,154,10050811 +2023-12-18,MI,201,10050811 +2023-12-19,MI,125,10050811 +2023-12-20,MI,184,10050811 +2023-12-21,MI,160,10050811 +2023-12-22,MI,144,10050811 +2023-12-23,MI,158,10050811 +2023-12-24,MI,160,10050811 +2023-12-25,MI,158,10050811 +2023-12-26,MI,189,10050811 +2023-12-27,MI,220,10050811 +2023-12-28,MI,219,10050811 +2023-12-29,MI,245,10050811 +2023-12-30,MI,179,10050811 +2023-12-31,MI,188,10050811 +2024-01-01,MI,177,10050811 +2024-01-02,MI,190,10050811 +2024-01-03,MI,186,10050811 +2024-01-04,MI,172,10050811 +2024-01-05,MI,166,10050811 +2024-01-06,MI,164,10050811 +2024-01-07,MI,154,10050811 +2024-01-08,MI,159,10050811 +2024-01-09,MI,167,10050811 +2024-01-10,MI,135,10050811 +2024-01-11,MI,143,10050811 +2024-01-12,MI,149,10050811 +2024-01-13,MI,108,10050811 +2024-01-14,MI,92,10050811 +2024-01-15,MI,114,10050811 +2024-01-16,MI,112,10050811 +2024-01-17,MI,116,10050811 +2024-01-18,MI,104,10050811 +2024-01-19,MI,92,10050811 +2022-12-31,MN,75,5707390 +2023-01-01,MN,66,5707390 +2023-01-02,MN,96,5707390 +2023-01-03,MN,71,5707390 +2023-01-04,MN,80,5707390 +2023-01-05,MN,78,5707390 +2023-01-06,MN,82,5707390 +2023-01-07,MN,82,5707390 +2023-01-08,MN,64,5707390 +2023-01-09,MN,68,5707390 +2023-01-10,MN,53,5707390 +2023-01-11,MN,51,5707390 +2023-01-12,MN,58,5707390 +2023-01-13,MN,57,5707390 +2023-01-14,MN,39,5707390 +2023-01-15,MN,46,5707390 +2023-01-16,MN,61,5707390 +2023-01-17,MN,79,5707390 +2023-01-18,MN,48,5707390 +2023-01-19,MN,57,5707390 +2023-01-20,MN,50,5707390 +2023-01-21,MN,41,5707390 +2023-01-22,MN,47,5707390 +2023-01-23,MN,55,5707390 +2023-01-24,MN,74,5707390 +2023-01-25,MN,64,5707390 +2023-01-26,MN,64,5707390 +2023-01-27,MN,62,5707390 +2023-01-28,MN,41,5707390 +2023-01-29,MN,37,5707390 +2023-01-30,MN,65,5707390 +2023-01-31,MN,50,5707390 +2023-02-01,MN,68,5707390 +2023-02-02,MN,51,5707390 +2023-02-03,MN,42,5707390 +2023-02-04,MN,43,5707390 +2023-02-05,MN,47,5707390 +2023-02-06,MN,68,5707390 +2023-02-07,MN,63,5707390 +2023-02-08,MN,60,5707390 +2023-02-09,MN,57,5707390 +2023-02-10,MN,65,5707390 +2023-02-11,MN,62,5707390 +2023-02-12,MN,45,5707390 +2023-02-13,MN,65,5707390 +2023-02-14,MN,65,5707390 +2023-02-15,MN,59,5707390 +2023-02-16,MN,47,5707390 +2023-02-17,MN,58,5707390 +2023-02-18,MN,37,5707390 +2023-02-19,MN,45,5707390 +2023-02-20,MN,60,5707390 +2023-02-21,MN,48,5707390 +2023-02-22,MN,56,5707390 +2023-02-23,MN,38,5707390 +2023-02-24,MN,57,5707390 +2023-02-25,MN,57,5707390 +2023-02-26,MN,34,5707390 +2023-02-27,MN,46,5707390 +2023-02-28,MN,63,5707390 +2023-03-01,MN,51,5707390 +2023-03-02,MN,50,5707390 +2023-03-03,MN,67,5707390 +2023-03-04,MN,48,5707390 +2023-03-05,MN,39,5707390 +2023-03-06,MN,49,5707390 +2023-03-07,MN,53,5707390 +2023-03-08,MN,45,5707390 +2023-03-09,MN,57,5707390 +2023-03-10,MN,53,5707390 +2023-03-11,MN,29,5707390 +2023-03-12,MN,31,5707390 +2023-03-13,MN,41,5707390 +2023-03-14,MN,48,5707390 +2023-03-15,MN,48,5707390 +2023-03-16,MN,33,5707390 +2023-03-17,MN,37,5707390 +2023-03-18,MN,33,5707390 +2023-03-19,MN,31,5707390 +2023-03-20,MN,45,5707390 +2023-03-21,MN,40,5707390 +2023-03-22,MN,37,5707390 +2023-03-23,MN,32,5707390 +2023-03-24,MN,29,5707390 +2023-03-25,MN,39,5707390 +2023-03-26,MN,24,5707390 +2023-03-27,MN,43,5707390 +2023-03-28,MN,26,5707390 +2023-03-29,MN,35,5707390 +2023-03-30,MN,47,5707390 +2023-03-31,MN,48,5707390 +2023-04-01,MN,32,5707390 +2023-04-02,MN,28,5707390 +2023-04-03,MN,36,5707390 +2023-04-04,MN,29,5707390 +2023-04-05,MN,42,5707390 +2023-04-06,MN,28,5707390 +2023-04-07,MN,29,5707390 +2023-04-08,MN,25,5707390 +2023-04-09,MN,25,5707390 +2023-04-10,MN,33,5707390 +2023-04-11,MN,28,5707390 +2023-04-12,MN,28,5707390 +2023-04-13,MN,38,5707390 +2023-04-14,MN,26,5707390 +2023-04-15,MN,18,5707390 +2023-04-16,MN,22,5707390 +2023-04-17,MN,21,5707390 +2023-04-18,MN,24,5707390 +2023-04-19,MN,28,5707390 +2023-04-20,MN,28,5707390 +2023-04-21,MN,28,5707390 +2023-04-22,MN,20,5707390 +2023-04-23,MN,23,5707390 +2023-04-24,MN,9,5707390 +2023-04-25,MN,27,5707390 +2023-04-26,MN,24,5707390 +2023-04-27,MN,24,5707390 +2023-04-28,MN,12,5707390 +2023-04-29,MN,17,5707390 +2023-04-30,MN,17,5707390 +2023-05-01,MN,20,5707390 +2023-05-02,MN,27,5707390 +2023-05-03,MN,18,5707390 +2023-05-04,MN,13,5707390 +2023-05-05,MN,22,5707390 +2023-05-06,MN,26,5707390 +2023-05-07,MN,23,5707390 +2023-05-08,MN,21,5707390 +2023-05-09,MN,24,5707390 +2023-05-10,MN,22,5707390 +2023-05-11,MN,21,5707390 +2023-05-12,MN,20,5707390 +2023-05-13,MN,7,5707390 +2023-05-14,MN,18,5707390 +2023-05-15,MN,9,5707390 +2023-05-16,MN,9,5707390 +2023-05-17,MN,5,5707390 +2023-05-18,MN,15,5707390 +2023-05-19,MN,18,5707390 +2023-05-20,MN,9,5707390 +2023-05-21,MN,13,5707390 +2023-05-22,MN,16,5707390 +2023-05-23,MN,12,5707390 +2023-05-24,MN,7,5707390 +2023-05-25,MN,10,5707390 +2023-05-26,MN,14,5707390 +2023-05-27,MN,12,5707390 +2023-05-28,MN,11,5707390 +2023-05-29,MN,7,5707390 +2023-05-30,MN,10,5707390 +2023-05-31,MN,12,5707390 +2023-06-01,MN,7,5707390 +2023-06-02,MN,8,5707390 +2023-06-03,MN,7,5707390 +2023-06-04,MN,3,5707390 +2023-06-05,MN,7,5707390 +2023-06-06,MN,4,5707390 +2023-06-07,MN,11,5707390 +2023-06-08,MN,4,5707390 +2023-06-09,MN,7,5707390 +2023-06-10,MN,2,5707390 +2023-06-11,MN,7,5707390 +2023-06-12,MN,8,5707390 +2023-06-13,MN,7,5707390 +2023-06-14,MN,4,5707390 +2023-06-15,MN,6,5707390 +2023-06-16,MN,8,5707390 +2023-06-17,MN,8,5707390 +2023-06-18,MN,6,5707390 +2023-06-19,MN,7,5707390 +2023-06-20,MN,7,5707390 +2023-06-21,MN,3,5707390 +2023-06-22,MN,6,5707390 +2023-06-23,MN,11,5707390 +2023-06-24,MN,4,5707390 +2023-06-25,MN,7,5707390 +2023-06-26,MN,4,5707390 +2023-06-27,MN,6,5707390 +2023-06-28,MN,4,5707390 +2023-06-29,MN,6,5707390 +2023-06-30,MN,4,5707390 +2023-07-01,MN,8,5707390 +2023-07-02,MN,5,5707390 +2023-07-03,MN,9,5707390 +2023-07-04,MN,5,5707390 +2023-07-05,MN,9,5707390 +2023-07-06,MN,5,5707390 +2023-07-07,MN,8,5707390 +2023-07-08,MN,7,5707390 +2023-07-09,MN,5,5707390 +2023-07-10,MN,5,5707390 +2023-07-11,MN,10,5707390 +2023-07-12,MN,7,5707390 +2023-07-13,MN,8,5707390 +2023-07-14,MN,10,5707390 +2023-07-15,MN,7,5707390 +2023-07-16,MN,14,5707390 +2023-07-17,MN,14,5707390 +2023-07-18,MN,11,5707390 +2023-07-19,MN,13,5707390 +2023-07-20,MN,11,5707390 +2023-07-21,MN,8,5707390 +2023-07-22,MN,7,5707390 +2023-07-23,MN,7,5707390 +2023-07-24,MN,11,5707390 +2023-07-25,MN,8,5707390 +2023-07-26,MN,11,5707390 +2023-07-27,MN,10,5707390 +2023-07-28,MN,6,5707390 +2023-07-29,MN,6,5707390 +2023-07-30,MN,9,5707390 +2023-07-31,MN,8,5707390 +2023-08-01,MN,12,5707390 +2023-08-02,MN,17,5707390 +2023-08-03,MN,12,5707390 +2023-08-04,MN,12,5707390 +2023-08-05,MN,12,5707390 +2023-08-06,MN,10,5707390 +2023-08-07,MN,19,5707390 +2023-08-08,MN,10,5707390 +2023-08-09,MN,12,5707390 +2023-08-10,MN,26,5707390 +2023-08-11,MN,14,5707390 +2023-08-12,MN,20,5707390 +2023-08-13,MN,14,5707390 +2023-08-14,MN,9,5707390 +2023-08-15,MN,14,5707390 +2023-08-16,MN,27,5707390 +2023-08-17,MN,15,5707390 +2023-08-18,MN,17,5707390 +2023-08-19,MN,14,5707390 +2023-08-20,MN,26,5707390 +2023-08-21,MN,25,5707390 +2023-08-22,MN,29,5707390 +2023-08-23,MN,33,5707390 +2023-08-24,MN,26,5707390 +2023-08-25,MN,24,5707390 +2023-08-26,MN,18,5707390 +2023-08-27,MN,24,5707390 +2023-08-28,MN,33,5707390 +2023-08-29,MN,23,5707390 +2023-08-30,MN,24,5707390 +2023-08-31,MN,25,5707390 +2023-09-01,MN,24,5707390 +2023-09-02,MN,17,5707390 +2023-09-03,MN,17,5707390 +2023-09-04,MN,24,5707390 +2023-09-05,MN,33,5707390 +2023-09-06,MN,24,5707390 +2023-09-07,MN,30,5707390 +2023-09-08,MN,31,5707390 +2023-09-09,MN,28,5707390 +2023-09-10,MN,22,5707390 +2023-09-11,MN,37,5707390 +2023-09-12,MN,26,5707390 +2023-09-13,MN,39,5707390 +2023-09-14,MN,25,5707390 +2023-09-15,MN,32,5707390 +2023-09-16,MN,31,5707390 +2023-09-17,MN,26,5707390 +2023-09-18,MN,40,5707390 +2023-09-19,MN,35,5707390 +2023-09-20,MN,41,5707390 +2023-09-21,MN,43,5707390 +2023-09-22,MN,38,5707390 +2023-09-23,MN,23,5707390 +2023-09-24,MN,47,5707390 +2023-09-25,MN,42,5707390 +2023-09-26,MN,37,5707390 +2023-09-27,MN,40,5707390 +2023-09-28,MN,39,5707390 +2023-09-29,MN,32,5707390 +2023-09-30,MN,39,5707390 +2023-10-01,MN,41,5707390 +2023-10-02,MN,36,5707390 +2023-10-03,MN,34,5707390 +2023-10-04,MN,43,5707390 +2023-10-05,MN,37,5707390 +2023-10-06,MN,30,5707390 +2023-10-07,MN,34,5707390 +2023-10-08,MN,33,5707390 +2023-10-09,MN,44,5707390 +2023-10-10,MN,39,5707390 +2023-10-11,MN,41,5707390 +2023-10-12,MN,49,5707390 +2023-10-13,MN,36,5707390 +2023-10-14,MN,34,5707390 +2023-10-15,MN,27,5707390 +2023-10-16,MN,53,5707390 +2023-10-17,MN,42,5707390 +2023-10-18,MN,47,5707390 +2023-10-19,MN,47,5707390 +2023-10-20,MN,36,5707390 +2023-10-21,MN,44,5707390 +2023-10-22,MN,36,5707390 +2023-10-23,MN,41,5707390 +2023-10-24,MN,34,5707390 +2023-10-25,MN,34,5707390 +2023-10-26,MN,42,5707390 +2023-10-27,MN,37,5707390 +2023-10-28,MN,22,5707390 +2023-10-29,MN,22,5707390 +2023-10-30,MN,33,5707390 +2023-10-31,MN,37,5707390 +2023-11-01,MN,42,5707390 +2023-11-02,MN,27,5707390 +2023-11-03,MN,33,5707390 +2023-11-04,MN,34,5707390 +2023-11-05,MN,36,5707390 +2023-11-06,MN,48,5707390 +2023-11-07,MN,42,5707390 +2023-11-08,MN,45,5707390 +2023-11-09,MN,43,5707390 +2023-11-10,MN,45,5707390 +2023-11-11,MN,49,5707390 +2023-11-12,MN,47,5707390 +2023-11-13,MN,72,5707390 +2023-11-14,MN,58,5707390 +2023-11-15,MN,60,5707390 +2023-11-16,MN,50,5707390 +2023-11-17,MN,49,5707390 +2023-11-18,MN,50,5707390 +2023-11-19,MN,56,5707390 +2023-11-20,MN,53,5707390 +2023-11-21,MN,50,5707390 +2023-11-22,MN,44,5707390 +2023-11-23,MN,36,5707390 +2023-11-24,MN,61,5707390 +2023-11-25,MN,63,5707390 +2023-11-26,MN,63,5707390 +2023-11-27,MN,66,5707390 +2023-11-28,MN,54,5707390 +2023-11-29,MN,78,5707390 +2023-11-30,MN,59,5707390 +2023-12-01,MN,67,5707390 +2023-12-02,MN,42,5707390 +2023-12-03,MN,48,5707390 +2023-12-04,MN,66,5707390 +2023-12-05,MN,70,5707390 +2023-12-06,MN,70,5707390 +2023-12-07,MN,90,5707390 +2023-12-08,MN,62,5707390 +2023-12-09,MN,68,5707390 +2023-12-10,MN,58,5707390 +2023-12-11,MN,69,5707390 +2023-12-12,MN,72,5707390 +2023-12-13,MN,68,5707390 +2023-12-14,MN,83,5707390 +2023-12-15,MN,84,5707390 +2023-12-16,MN,67,5707390 +2023-12-17,MN,71,5707390 +2023-12-18,MN,85,5707390 +2023-12-19,MN,74,5707390 +2023-12-20,MN,75,5707390 +2023-12-21,MN,80,5707390 +2023-12-22,MN,78,5707390 +2023-12-23,MN,65,5707390 +2023-12-24,MN,77,5707390 +2023-12-25,MN,63,5707390 +2023-12-26,MN,86,5707390 +2023-12-27,MN,116,5707390 +2023-12-28,MN,97,5707390 +2023-12-29,MN,94,5707390 +2023-12-30,MN,71,5707390 +2023-12-31,MN,70,5707390 +2024-01-01,MN,72,5707390 +2024-01-02,MN,86,5707390 +2024-01-03,MN,79,5707390 +2024-01-04,MN,81,5707390 +2024-01-05,MN,80,5707390 +2024-01-06,MN,54,5707390 +2024-01-07,MN,59,5707390 +2024-01-08,MN,80,5707390 +2024-01-09,MN,81,5707390 +2024-01-10,MN,74,5707390 +2024-01-11,MN,76,5707390 +2024-01-12,MN,51,5707390 +2024-01-13,MN,46,5707390 +2024-01-14,MN,46,5707390 +2024-01-15,MN,45,5707390 +2024-01-16,MN,53,5707390 +2024-01-17,MN,56,5707390 +2024-01-18,MN,52,5707390 +2024-01-19,MN,50,5707390 +2022-12-31,MO,111,6168187 +2023-01-01,MO,120,6168187 +2023-01-02,MO,117,6168187 +2023-01-03,MO,126,6168187 +2023-01-04,MO,123,6168187 +2023-01-05,MO,130,6168187 +2023-01-06,MO,105,6168187 +2023-01-07,MO,91,6168187 +2023-01-08,MO,99,6168187 +2023-01-09,MO,101,6168187 +2023-01-10,MO,125,6168187 +2023-01-11,MO,129,6168187 +2023-01-12,MO,106,6168187 +2023-01-13,MO,98,6168187 +2023-01-14,MO,70,6168187 +2023-01-15,MO,76,6168187 +2023-01-16,MO,98,6168187 +2023-01-17,MO,103,6168187 +2023-01-18,MO,92,6168187 +2023-01-19,MO,71,6168187 +2023-01-20,MO,68,6168187 +2023-01-21,MO,60,6168187 +2023-01-22,MO,55,6168187 +2023-01-23,MO,79,6168187 +2023-01-24,MO,60,6168187 +2023-01-25,MO,67,6168187 +2023-01-26,MO,87,6168187 +2023-01-27,MO,72,6168187 +2023-01-28,MO,68,6168187 +2023-01-29,MO,62,6168187 +2023-01-30,MO,70,6168187 +2023-01-31,MO,73,6168187 +2023-02-01,MO,73,6168187 +2023-02-02,MO,87,6168187 +2023-02-03,MO,76,6168187 +2023-02-04,MO,49,6168187 +2023-02-05,MO,64,6168187 +2023-02-06,MO,70,6168187 +2023-02-07,MO,86,6168187 +2023-02-08,MO,70,6168187 +2023-02-09,MO,74,6168187 +2023-02-10,MO,50,6168187 +2023-02-11,MO,51,6168187 +2023-02-12,MO,63,6168187 +2023-02-13,MO,83,6168187 +2023-02-14,MO,70,6168187 +2023-02-15,MO,83,6168187 +2023-02-16,MO,74,6168187 +2023-02-17,MO,72,6168187 +2023-02-18,MO,61,6168187 +2023-02-19,MO,55,6168187 +2023-02-20,MO,73,6168187 +2023-02-21,MO,88,6168187 +2023-02-22,MO,70,6168187 +2023-02-23,MO,82,6168187 +2023-02-24,MO,60,6168187 +2023-02-25,MO,48,6168187 +2023-02-26,MO,55,6168187 +2023-02-27,MO,84,6168187 +2023-02-28,MO,86,6168187 +2023-03-01,MO,80,6168187 +2023-03-02,MO,66,6168187 +2023-03-03,MO,67,6168187 +2023-03-04,MO,66,6168187 +2023-03-05,MO,71,6168187 +2023-03-06,MO,73,6168187 +2023-03-07,MO,71,6168187 +2023-03-08,MO,70,6168187 +2023-03-09,MO,51,6168187 +2023-03-10,MO,63,6168187 +2023-03-11,MO,69,6168187 +2023-03-12,MO,52,6168187 +2023-03-13,MO,72,6168187 +2023-03-14,MO,62,6168187 +2023-03-15,MO,80,6168187 +2023-03-16,MO,59,6168187 +2023-03-17,MO,48,6168187 +2023-03-18,MO,49,6168187 +2023-03-19,MO,54,6168187 +2023-03-20,MO,73,6168187 +2023-03-21,MO,51,6168187 +2023-03-22,MO,63,6168187 +2023-03-23,MO,56,6168187 +2023-03-24,MO,51,6168187 +2023-03-25,MO,54,6168187 +2023-03-26,MO,54,6168187 +2023-03-27,MO,53,6168187 +2023-03-28,MO,53,6168187 +2023-03-29,MO,44,6168187 +2023-03-30,MO,54,6168187 +2023-03-31,MO,59,6168187 +2023-04-01,MO,50,6168187 +2023-04-02,MO,48,6168187 +2023-04-03,MO,52,6168187 +2023-04-04,MO,65,6168187 +2023-04-05,MO,52,6168187 +2023-04-06,MO,52,6168187 +2023-04-07,MO,41,6168187 +2023-04-08,MO,43,6168187 +2023-04-09,MO,44,6168187 +2023-04-10,MO,42,6168187 +2023-04-11,MO,43,6168187 +2023-04-12,MO,41,6168187 +2023-04-13,MO,36,6168187 +2023-04-14,MO,46,6168187 +2023-04-15,MO,34,6168187 +2023-04-16,MO,33,6168187 +2023-04-17,MO,48,6168187 +2023-04-18,MO,43,6168187 +2023-04-19,MO,51,6168187 +2023-04-20,MO,29,6168187 +2023-04-21,MO,36,6168187 +2023-04-22,MO,27,6168187 +2023-04-23,MO,26,6168187 +2023-04-24,MO,21,6168187 +2023-04-25,MO,34,6168187 +2023-04-26,MO,32,6168187 +2023-04-27,MO,36,6168187 +2023-04-28,MO,27,6168187 +2023-04-29,MO,18,6168187 +2023-04-30,MO,26,6168187 +2023-05-01,MO,29,6168187 +2023-05-02,MO,36,6168187 +2023-05-03,MO,31,6168187 +2023-05-04,MO,30,6168187 +2023-05-05,MO,31,6168187 +2023-05-06,MO,20,6168187 +2023-05-07,MO,31,6168187 +2023-05-08,MO,29,6168187 +2023-05-09,MO,33,6168187 +2023-05-10,MO,25,6168187 +2023-05-11,MO,27,6168187 +2023-05-12,MO,20,6168187 +2023-05-13,MO,21,6168187 +2023-05-14,MO,21,6168187 +2023-05-15,MO,24,6168187 +2023-05-16,MO,20,6168187 +2023-05-17,MO,21,6168187 +2023-05-18,MO,19,6168187 +2023-05-19,MO,12,6168187 +2023-05-20,MO,18,6168187 +2023-05-21,MO,17,6168187 +2023-05-22,MO,14,6168187 +2023-05-23,MO,20,6168187 +2023-05-24,MO,20,6168187 +2023-05-25,MO,12,6168187 +2023-05-26,MO,10,6168187 +2023-05-27,MO,12,6168187 +2023-05-28,MO,16,6168187 +2023-05-29,MO,23,6168187 +2023-05-30,MO,19,6168187 +2023-05-31,MO,10,6168187 +2023-06-01,MO,15,6168187 +2023-06-02,MO,21,6168187 +2023-06-03,MO,7,6168187 +2023-06-04,MO,12,6168187 +2023-06-05,MO,17,6168187 +2023-06-06,MO,11,6168187 +2023-06-07,MO,20,6168187 +2023-06-08,MO,17,6168187 +2023-06-09,MO,13,6168187 +2023-06-10,MO,9,6168187 +2023-06-11,MO,10,6168187 +2023-06-12,MO,11,6168187 +2023-06-13,MO,10,6168187 +2023-06-14,MO,13,6168187 +2023-06-15,MO,14,6168187 +2023-06-16,MO,13,6168187 +2023-06-17,MO,7,6168187 +2023-06-18,MO,16,6168187 +2023-06-19,MO,11,6168187 +2023-06-20,MO,15,6168187 +2023-06-21,MO,18,6168187 +2023-06-22,MO,15,6168187 +2023-06-23,MO,9,6168187 +2023-06-24,MO,4,6168187 +2023-06-25,MO,15,6168187 +2023-06-26,MO,13,6168187 +2023-06-27,MO,15,6168187 +2023-06-28,MO,12,6168187 +2023-06-29,MO,5,6168187 +2023-06-30,MO,11,6168187 +2023-07-01,MO,11,6168187 +2023-07-02,MO,11,6168187 +2023-07-03,MO,22,6168187 +2023-07-04,MO,13,6168187 +2023-07-05,MO,20,6168187 +2023-07-06,MO,18,6168187 +2023-07-07,MO,17,6168187 +2023-07-08,MO,20,6168187 +2023-07-09,MO,13,6168187 +2023-07-10,MO,13,6168187 +2023-07-11,MO,16,6168187 +2023-07-12,MO,12,6168187 +2023-07-13,MO,14,6168187 +2023-07-14,MO,11,6168187 +2023-07-15,MO,5,6168187 +2023-07-16,MO,9,6168187 +2023-07-17,MO,17,6168187 +2023-07-18,MO,18,6168187 +2023-07-19,MO,18,6168187 +2023-07-20,MO,15,6168187 +2023-07-21,MO,18,6168187 +2023-07-22,MO,11,6168187 +2023-07-23,MO,17,6168187 +2023-07-24,MO,18,6168187 +2023-07-25,MO,27,6168187 +2023-07-26,MO,21,6168187 +2023-07-27,MO,13,6168187 +2023-07-28,MO,15,6168187 +2023-07-29,MO,13,6168187 +2023-07-30,MO,11,6168187 +2023-07-31,MO,20,6168187 +2023-08-01,MO,20,6168187 +2023-08-02,MO,20,6168187 +2023-08-03,MO,18,6168187 +2023-08-04,MO,22,6168187 +2023-08-05,MO,15,6168187 +2023-08-06,MO,21,6168187 +2023-08-07,MO,29,6168187 +2023-08-08,MO,23,6168187 +2023-08-09,MO,33,6168187 +2023-08-10,MO,34,6168187 +2023-08-11,MO,20,6168187 +2023-08-12,MO,37,6168187 +2023-08-13,MO,40,6168187 +2023-08-14,MO,32,6168187 +2023-08-15,MO,34,6168187 +2023-08-16,MO,27,6168187 +2023-08-17,MO,33,6168187 +2023-08-18,MO,42,6168187 +2023-08-19,MO,34,6168187 +2023-08-20,MO,42,6168187 +2023-08-21,MO,34,6168187 +2023-08-22,MO,46,6168187 +2023-08-23,MO,48,6168187 +2023-08-24,MO,44,6168187 +2023-08-25,MO,40,6168187 +2023-08-26,MO,43,6168187 +2023-08-27,MO,48,6168187 +2023-08-28,MO,64,6168187 +2023-08-29,MO,52,6168187 +2023-08-30,MO,43,6168187 +2023-08-31,MO,49,6168187 +2023-09-01,MO,47,6168187 +2023-09-02,MO,41,6168187 +2023-09-03,MO,50,6168187 +2023-09-04,MO,57,6168187 +2023-09-05,MO,77,6168187 +2023-09-06,MO,74,6168187 +2023-09-07,MO,54,6168187 +2023-09-08,MO,67,6168187 +2023-09-09,MO,65,6168187 +2023-09-10,MO,66,6168187 +2023-09-11,MO,60,6168187 +2023-09-12,MO,81,6168187 +2023-09-13,MO,55,6168187 +2023-09-14,MO,71,6168187 +2023-09-15,MO,54,6168187 +2023-09-16,MO,53,6168187 +2023-09-17,MO,58,6168187 +2023-09-18,MO,71,6168187 +2023-09-19,MO,65,6168187 +2023-09-20,MO,61,6168187 +2023-09-21,MO,62,6168187 +2023-09-22,MO,52,6168187 +2023-09-23,MO,62,6168187 +2023-09-24,MO,48,6168187 +2023-09-25,MO,73,6168187 +2023-09-26,MO,64,6168187 +2023-09-27,MO,73,6168187 +2023-09-28,MO,57,6168187 +2023-09-29,MO,51,6168187 +2023-09-30,MO,41,6168187 +2023-10-01,MO,35,6168187 +2023-10-02,MO,54,6168187 +2023-10-03,MO,47,6168187 +2023-10-04,MO,52,6168187 +2023-10-05,MO,43,6168187 +2023-10-06,MO,22,6168187 +2023-10-07,MO,42,6168187 +2023-10-08,MO,40,6168187 +2023-10-09,MO,43,6168187 +2023-10-10,MO,54,6168187 +2023-10-11,MO,61,6168187 +2023-10-12,MO,39,6168187 +2023-10-13,MO,49,6168187 +2023-10-14,MO,37,6168187 +2023-10-15,MO,40,6168187 +2023-10-16,MO,61,6168187 +2023-10-17,MO,36,6168187 +2023-10-18,MO,50,6168187 +2023-10-19,MO,34,6168187 +2023-10-20,MO,53,6168187 +2023-10-21,MO,34,6168187 +2023-10-22,MO,43,6168187 +2023-10-23,MO,47,6168187 +2023-10-24,MO,77,6168187 +2023-10-25,MO,53,6168187 +2023-10-26,MO,54,6168187 +2023-10-27,MO,48,6168187 +2023-10-28,MO,40,6168187 +2023-10-29,MO,47,6168187 +2023-10-30,MO,57,6168187 +2023-10-31,MO,43,6168187 +2023-11-01,MO,34,6168187 +2023-11-02,MO,72,6168187 +2023-11-03,MO,40,6168187 +2023-11-04,MO,42,6168187 +2023-11-05,MO,41,6168187 +2023-11-06,MO,71,6168187 +2023-11-07,MO,61,6168187 +2023-11-08,MO,45,6168187 +2023-11-09,MO,70,6168187 +2023-11-10,MO,44,6168187 +2023-11-11,MO,61,6168187 +2023-11-12,MO,60,6168187 +2023-11-13,MO,57,6168187 +2023-11-14,MO,66,6168187 +2023-11-15,MO,84,6168187 +2023-11-16,MO,67,6168187 +2023-11-17,MO,75,6168187 +2023-11-18,MO,51,6168187 +2023-11-19,MO,71,6168187 +2023-11-20,MO,83,6168187 +2023-11-21,MO,91,6168187 +2023-11-22,MO,78,6168187 +2023-11-23,MO,65,6168187 +2023-11-24,MO,79,6168187 +2023-11-25,MO,78,6168187 +2023-11-26,MO,94,6168187 +2023-11-27,MO,114,6168187 +2023-11-28,MO,99,6168187 +2023-11-29,MO,102,6168187 +2023-11-30,MO,98,6168187 +2023-12-01,MO,85,6168187 +2023-12-02,MO,85,6168187 +2023-12-03,MO,80,6168187 +2023-12-04,MO,100,6168187 +2023-12-05,MO,87,6168187 +2023-12-06,MO,88,6168187 +2023-12-07,MO,113,6168187 +2023-12-08,MO,131,6168187 +2023-12-09,MO,104,6168187 +2023-12-10,MO,92,6168187 +2023-12-11,MO,107,6168187 +2023-12-12,MO,100,6168187 +2023-12-13,MO,93,6168187 +2023-12-14,MO,91,6168187 +2023-12-15,MO,115,6168187 +2023-12-16,MO,86,6168187 +2023-12-17,MO,87,6168187 +2023-12-18,MO,130,6168187 +2023-12-19,MO,107,6168187 +2023-12-20,MO,117,6168187 +2023-12-21,MO,132,6168187 +2023-12-22,MO,104,6168187 +2023-12-23,MO,107,6168187 +2023-12-24,MO,109,6168187 +2023-12-25,MO,100,6168187 +2023-12-26,MO,110,6168187 +2023-12-27,MO,131,6168187 +2023-12-28,MO,122,6168187 +2023-12-29,MO,102,6168187 +2023-12-30,MO,108,6168187 +2023-12-31,MO,100,6168187 +2024-01-01,MO,126,6168187 +2024-01-02,MO,137,6168187 +2024-01-03,MO,136,6168187 +2024-01-04,MO,117,6168187 +2024-01-05,MO,118,6168187 +2024-01-06,MO,89,6168187 +2024-01-07,MO,95,6168187 +2024-01-08,MO,118,6168187 +2024-01-09,MO,108,6168187 +2024-01-10,MO,118,6168187 +2024-01-11,MO,117,6168187 +2024-01-12,MO,111,6168187 +2024-01-13,MO,77,6168187 +2024-01-14,MO,81,6168187 +2024-01-15,MO,86,6168187 +2024-01-16,MO,79,6168187 +2024-01-17,MO,97,6168187 +2024-01-18,MO,80,6168187 +2024-01-19,MO,61,6168187 +2022-12-31,MS,79,2949965 +2023-01-01,MS,71,2949965 +2023-01-02,MS,72,2949965 +2023-01-03,MS,57,2949965 +2023-01-04,MS,64,2949965 +2023-01-05,MS,52,2949965 +2023-01-06,MS,64,2949965 +2023-01-07,MS,41,2949965 +2023-01-08,MS,58,2949965 +2023-01-09,MS,61,2949965 +2023-01-10,MS,74,2949965 +2023-01-11,MS,58,2949965 +2023-01-12,MS,34,2949965 +2023-01-13,MS,45,2949965 +2023-01-14,MS,34,2949965 +2023-01-15,MS,30,2949965 +2023-01-16,MS,43,2949965 +2023-01-17,MS,54,2949965 +2023-01-18,MS,35,2949965 +2023-01-19,MS,48,2949965 +2023-01-20,MS,37,2949965 +2023-01-21,MS,26,2949965 +2023-01-22,MS,32,2949965 +2023-01-23,MS,29,2949965 +2023-01-24,MS,37,2949965 +2023-01-25,MS,25,2949965 +2023-01-26,MS,19,2949965 +2023-01-27,MS,20,2949965 +2023-01-28,MS,29,2949965 +2023-01-29,MS,33,2949965 +2023-01-30,MS,22,2949965 +2023-01-31,MS,20,2949965 +2023-02-01,MS,21,2949965 +2023-02-02,MS,21,2949965 +2023-02-03,MS,28,2949965 +2023-02-04,MS,25,2949965 +2023-02-05,MS,19,2949965 +2023-02-06,MS,36,2949965 +2023-02-07,MS,26,2949965 +2023-02-08,MS,30,2949965 +2023-02-09,MS,24,2949965 +2023-02-10,MS,33,2949965 +2023-02-11,MS,28,2949965 +2023-02-12,MS,29,2949965 +2023-02-13,MS,30,2949965 +2023-02-14,MS,30,2949965 +2023-02-15,MS,25,2949965 +2023-02-16,MS,22,2949965 +2023-02-17,MS,25,2949965 +2023-02-18,MS,22,2949965 +2023-02-19,MS,23,2949965 +2023-02-20,MS,23,2949965 +2023-02-21,MS,27,2949965 +2023-02-22,MS,25,2949965 +2023-02-23,MS,25,2949965 +2023-02-24,MS,18,2949965 +2023-02-25,MS,12,2949965 +2023-02-26,MS,14,2949965 +2023-02-27,MS,25,2949965 +2023-02-28,MS,17,2949965 +2023-03-01,MS,15,2949965 +2023-03-02,MS,13,2949965 +2023-03-03,MS,14,2949965 +2023-03-04,MS,17,2949965 +2023-03-05,MS,8,2949965 +2023-03-06,MS,14,2949965 +2023-03-07,MS,9,2949965 +2023-03-08,MS,14,2949965 +2023-03-09,MS,6,2949965 +2023-03-10,MS,12,2949965 +2023-03-11,MS,6,2949965 +2023-03-12,MS,13,2949965 +2023-03-13,MS,16,2949965 +2023-03-14,MS,15,2949965 +2023-03-15,MS,12,2949965 +2023-03-16,MS,11,2949965 +2023-03-17,MS,6,2949965 +2023-03-18,MS,9,2949965 +2023-03-19,MS,11,2949965 +2023-03-20,MS,13,2949965 +2023-03-21,MS,15,2949965 +2023-03-22,MS,14,2949965 +2023-03-23,MS,14,2949965 +2023-03-24,MS,9,2949965 +2023-03-25,MS,9,2949965 +2023-03-26,MS,11,2949965 +2023-03-27,MS,8,2949965 +2023-03-28,MS,10,2949965 +2023-03-29,MS,10,2949965 +2023-03-30,MS,7,2949965 +2023-03-31,MS,12,2949965 +2023-04-01,MS,12,2949965 +2023-04-02,MS,9,2949965 +2023-04-03,MS,13,2949965 +2023-04-04,MS,12,2949965 +2023-04-05,MS,11,2949965 +2023-04-06,MS,9,2949965 +2023-04-07,MS,7,2949965 +2023-04-08,MS,7,2949965 +2023-04-09,MS,20,2949965 +2023-04-10,MS,12,2949965 +2023-04-11,MS,11,2949965 +2023-04-12,MS,15,2949965 +2023-04-13,MS,5,2949965 +2023-04-14,MS,10,2949965 +2023-04-15,MS,7,2949965 +2023-04-16,MS,13,2949965 +2023-04-17,MS,16,2949965 +2023-04-18,MS,14,2949965 +2023-04-19,MS,12,2949965 +2023-04-20,MS,10,2949965 +2023-04-21,MS,11,2949965 +2023-04-22,MS,7,2949965 +2023-04-23,MS,10,2949965 +2023-04-24,MS,9,2949965 +2023-04-25,MS,13,2949965 +2023-04-26,MS,13,2949965 +2023-04-27,MS,14,2949965 +2023-04-28,MS,8,2949965 +2023-04-29,MS,4,2949965 +2023-04-30,MS,2,2949965 +2023-05-01,MS,7,2949965 +2023-05-02,MS,5,2949965 +2023-05-03,MS,9,2949965 +2023-05-04,MS,10,2949965 +2023-05-05,MS,10,2949965 +2023-05-06,MS,3,2949965 +2023-05-07,MS,7,2949965 +2023-05-08,MS,7,2949965 +2023-05-09,MS,15,2949965 +2023-05-10,MS,5,2949965 +2023-05-11,MS,6,2949965 +2023-05-12,MS,4,2949965 +2023-05-13,MS,4,2949965 +2023-05-14,MS,5,2949965 +2023-05-15,MS,11,2949965 +2023-05-16,MS,7,2949965 +2023-05-17,MS,8,2949965 +2023-05-18,MS,8,2949965 +2023-05-19,MS,8,2949965 +2023-05-20,MS,2,2949965 +2023-05-21,MS,11,2949965 +2023-05-22,MS,8,2949965 +2023-05-23,MS,9,2949965 +2023-05-24,MS,8,2949965 +2023-05-25,MS,4,2949965 +2023-05-26,MS,9,2949965 +2023-05-27,MS,5,2949965 +2023-05-28,MS,6,2949965 +2023-05-29,MS,3,2949965 +2023-05-30,MS,8,2949965 +2023-05-31,MS,10,2949965 +2023-06-01,MS,8,2949965 +2023-06-02,MS,6,2949965 +2023-06-03,MS,4,2949965 +2023-06-04,MS,3,2949965 +2023-06-05,MS,9,2949965 +2023-06-06,MS,7,2949965 +2023-06-07,MS,2,2949965 +2023-06-08,MS,3,2949965 +2023-06-09,MS,4,2949965 +2023-06-10,MS,3,2949965 +2023-06-11,MS,2,2949965 +2023-06-12,MS,0,2949965 +2023-06-13,MS,5,2949965 +2023-06-14,MS,2,2949965 +2023-06-15,MS,1,2949965 +2023-06-16,MS,4,2949965 +2023-06-17,MS,1,2949965 +2023-06-18,MS,5,2949965 +2023-06-19,MS,5,2949965 +2023-06-20,MS,5,2949965 +2023-06-21,MS,9,2949965 +2023-06-22,MS,5,2949965 +2023-06-23,MS,9,2949965 +2023-06-24,MS,2,2949965 +2023-06-25,MS,4,2949965 +2023-06-26,MS,7,2949965 +2023-06-27,MS,6,2949965 +2023-06-28,MS,7,2949965 +2023-06-29,MS,7,2949965 +2023-06-30,MS,3,2949965 +2023-07-01,MS,4,2949965 +2023-07-02,MS,5,2949965 +2023-07-03,MS,7,2949965 +2023-07-04,MS,5,2949965 +2023-07-05,MS,1,2949965 +2023-07-06,MS,5,2949965 +2023-07-07,MS,2,2949965 +2023-07-08,MS,5,2949965 +2023-07-09,MS,2,2949965 +2023-07-10,MS,6,2949965 +2023-07-11,MS,3,2949965 +2023-07-12,MS,15,2949965 +2023-07-13,MS,7,2949965 +2023-07-14,MS,9,2949965 +2023-07-15,MS,6,2949965 +2023-07-16,MS,11,2949965 +2023-07-17,MS,11,2949965 +2023-07-18,MS,7,2949965 +2023-07-19,MS,9,2949965 +2023-07-20,MS,7,2949965 +2023-07-21,MS,5,2949965 +2023-07-22,MS,8,2949965 +2023-07-23,MS,9,2949965 +2023-07-24,MS,10,2949965 +2023-07-25,MS,12,2949965 +2023-07-26,MS,17,2949965 +2023-07-27,MS,9,2949965 +2023-07-28,MS,14,2949965 +2023-07-29,MS,7,2949965 +2023-07-30,MS,14,2949965 +2023-07-31,MS,14,2949965 +2023-08-01,MS,13,2949965 +2023-08-02,MS,18,2949965 +2023-08-03,MS,18,2949965 +2023-08-04,MS,21,2949965 +2023-08-05,MS,11,2949965 +2023-08-06,MS,12,2949965 +2023-08-07,MS,20,2949965 +2023-08-08,MS,17,2949965 +2023-08-09,MS,17,2949965 +2023-08-10,MS,22,2949965 +2023-08-11,MS,27,2949965 +2023-08-12,MS,19,2949965 +2023-08-13,MS,17,2949965 +2023-08-14,MS,28,2949965 +2023-08-15,MS,29,2949965 +2023-08-16,MS,30,2949965 +2023-08-17,MS,21,2949965 +2023-08-18,MS,33,2949965 +2023-08-19,MS,20,2949965 +2023-08-20,MS,16,2949965 +2023-08-21,MS,25,2949965 +2023-08-22,MS,28,2949965 +2023-08-23,MS,31,2949965 +2023-08-24,MS,29,2949965 +2023-08-25,MS,28,2949965 +2023-08-26,MS,24,2949965 +2023-08-27,MS,18,2949965 +2023-08-28,MS,20,2949965 +2023-08-29,MS,22,2949965 +2023-08-30,MS,17,2949965 +2023-08-31,MS,21,2949965 +2023-09-01,MS,14,2949965 +2023-09-02,MS,19,2949965 +2023-09-03,MS,16,2949965 +2023-09-04,MS,24,2949965 +2023-09-05,MS,22,2949965 +2023-09-06,MS,17,2949965 +2023-09-07,MS,27,2949965 +2023-09-08,MS,28,2949965 +2023-09-09,MS,24,2949965 +2023-09-10,MS,28,2949965 +2023-09-11,MS,27,2949965 +2023-09-12,MS,28,2949965 +2023-09-13,MS,13,2949965 +2023-09-14,MS,24,2949965 +2023-09-15,MS,17,2949965 +2023-09-16,MS,14,2949965 +2023-09-17,MS,15,2949965 +2023-09-18,MS,19,2949965 +2023-09-19,MS,18,2949965 +2023-09-20,MS,16,2949965 +2023-09-21,MS,17,2949965 +2023-09-22,MS,14,2949965 +2023-09-23,MS,9,2949965 +2023-09-24,MS,16,2949965 +2023-09-25,MS,22,2949965 +2023-09-26,MS,11,2949965 +2023-09-27,MS,12,2949965 +2023-09-28,MS,16,2949965 +2023-09-29,MS,17,2949965 +2023-09-30,MS,21,2949965 +2023-10-01,MS,11,2949965 +2023-10-02,MS,10,2949965 +2023-10-03,MS,23,2949965 +2023-10-04,MS,12,2949965 +2023-10-05,MS,8,2949965 +2023-10-06,MS,10,2949965 +2023-10-07,MS,9,2949965 +2023-10-08,MS,9,2949965 +2023-10-09,MS,13,2949965 +2023-10-10,MS,11,2949965 +2023-10-11,MS,2,2949965 +2023-10-12,MS,3,2949965 +2023-10-13,MS,3,2949965 +2023-10-14,MS,8,2949965 +2023-10-15,MS,10,2949965 +2023-10-16,MS,10,2949965 +2023-10-17,MS,9,2949965 +2023-10-18,MS,11,2949965 +2023-10-19,MS,13,2949965 +2023-10-20,MS,8,2949965 +2023-10-21,MS,9,2949965 +2023-10-22,MS,13,2949965 +2023-10-23,MS,10,2949965 +2023-10-24,MS,13,2949965 +2023-10-25,MS,14,2949965 +2023-10-26,MS,14,2949965 +2023-10-27,MS,12,2949965 +2023-10-28,MS,7,2949965 +2023-10-29,MS,16,2949965 +2023-10-30,MS,12,2949965 +2023-10-31,MS,12,2949965 +2023-11-01,MS,10,2949965 +2023-11-02,MS,8,2949965 +2023-11-03,MS,16,2949965 +2023-11-04,MS,8,2949965 +2023-11-05,MS,15,2949965 +2023-11-06,MS,19,2949965 +2023-11-07,MS,10,2949965 +2023-11-08,MS,14,2949965 +2023-11-09,MS,8,2949965 +2023-11-10,MS,16,2949965 +2023-11-11,MS,10,2949965 +2023-11-12,MS,7,2949965 +2023-11-13,MS,10,2949965 +2023-11-14,MS,15,2949965 +2023-11-15,MS,15,2949965 +2023-11-16,MS,11,2949965 +2023-11-17,MS,10,2949965 +2023-11-18,MS,15,2949965 +2023-11-19,MS,13,2949965 +2023-11-20,MS,19,2949965 +2023-11-21,MS,14,2949965 +2023-11-22,MS,12,2949965 +2023-11-23,MS,17,2949965 +2023-11-24,MS,21,2949965 +2023-11-25,MS,17,2949965 +2023-11-26,MS,14,2949965 +2023-11-27,MS,14,2949965 +2023-11-28,MS,10,2949965 +2023-11-29,MS,15,2949965 +2023-11-30,MS,17,2949965 +2023-12-01,MS,17,2949965 +2023-12-02,MS,14,2949965 +2023-12-03,MS,22,2949965 +2023-12-04,MS,30,2949965 +2023-12-05,MS,13,2949965 +2023-12-06,MS,10,2949965 +2023-12-07,MS,14,2949965 +2023-12-08,MS,23,2949965 +2023-12-09,MS,18,2949965 +2023-12-10,MS,10,2949965 +2023-12-11,MS,15,2949965 +2023-12-12,MS,25,2949965 +2023-12-13,MS,25,2949965 +2023-12-14,MS,21,2949965 +2023-12-15,MS,20,2949965 +2023-12-16,MS,23,2949965 +2023-12-17,MS,25,2949965 +2023-12-18,MS,23,2949965 +2023-12-19,MS,19,2949965 +2023-12-20,MS,16,2949965 +2023-12-21,MS,20,2949965 +2023-12-22,MS,23,2949965 +2023-12-23,MS,20,2949965 +2023-12-24,MS,26,2949965 +2023-12-25,MS,25,2949965 +2023-12-26,MS,33,2949965 +2023-12-27,MS,36,2949965 +2023-12-28,MS,32,2949965 +2023-12-29,MS,23,2949965 +2023-12-30,MS,32,2949965 +2023-12-31,MS,23,2949965 +2024-01-01,MS,37,2949965 +2024-01-02,MS,33,2949965 +2024-01-03,MS,30,2949965 +2024-01-04,MS,34,2949965 +2024-01-05,MS,37,2949965 +2024-01-06,MS,23,2949965 +2024-01-07,MS,35,2949965 +2024-01-08,MS,39,2949965 +2024-01-09,MS,37,2949965 +2024-01-10,MS,39,2949965 +2024-01-11,MS,34,2949965 +2024-01-12,MS,27,2949965 +2024-01-13,MS,23,2949965 +2024-01-14,MS,22,2949965 +2024-01-15,MS,26,2949965 +2024-01-16,MS,22,2949965 +2024-01-17,MS,38,2949965 +2024-01-18,MS,28,2949965 +2024-01-19,MS,23,2949965 +2022-12-31,MT,11,1104271 +2023-01-01,MT,41,1104271 +2023-01-02,MT,18,1104271 +2023-01-03,MT,9,1104271 +2023-01-04,MT,5,1104271 +2023-01-05,MT,5,1104271 +2023-01-06,MT,8,1104271 +2023-01-07,MT,7,1104271 +2023-01-08,MT,22,1104271 +2023-01-09,MT,22,1104271 +2023-01-10,MT,13,1104271 +2023-01-11,MT,10,1104271 +2023-01-12,MT,9,1104271 +2023-01-13,MT,8,1104271 +2023-01-14,MT,9,1104271 +2023-01-15,MT,11,1104271 +2023-01-16,MT,14,1104271 +2023-01-17,MT,9,1104271 +2023-01-18,MT,13,1104271 +2023-01-19,MT,8,1104271 +2023-01-20,MT,9,1104271 +2023-01-21,MT,7,1104271 +2023-01-22,MT,11,1104271 +2023-01-23,MT,9,1104271 +2023-01-24,MT,11,1104271 +2023-01-25,MT,9,1104271 +2023-01-26,MT,5,1104271 +2023-01-27,MT,10,1104271 +2023-01-28,MT,8,1104271 +2023-01-29,MT,9,1104271 +2023-01-30,MT,7,1104271 +2023-01-31,MT,18,1104271 +2023-02-01,MT,9,1104271 +2023-02-02,MT,13,1104271 +2023-02-03,MT,7,1104271 +2023-02-04,MT,13,1104271 +2023-02-05,MT,5,1104271 +2023-02-06,MT,14,1104271 +2023-02-07,MT,20,1104271 +2023-02-08,MT,18,1104271 +2023-02-09,MT,19,1104271 +2023-02-10,MT,15,1104271 +2023-02-11,MT,21,1104271 +2023-02-12,MT,10,1104271 +2023-02-13,MT,9,1104271 +2023-02-14,MT,15,1104271 +2023-02-15,MT,10,1104271 +2023-02-16,MT,18,1104271 +2023-02-17,MT,12,1104271 +2023-02-18,MT,13,1104271 +2023-02-19,MT,24,1104271 +2023-02-20,MT,26,1104271 +2023-02-21,MT,23,1104271 +2023-02-22,MT,23,1104271 +2023-02-23,MT,18,1104271 +2023-02-24,MT,17,1104271 +2023-02-25,MT,13,1104271 +2023-02-26,MT,24,1104271 +2023-02-27,MT,16,1104271 +2023-02-28,MT,22,1104271 +2023-03-01,MT,19,1104271 +2023-03-02,MT,14,1104271 +2023-03-03,MT,13,1104271 +2023-03-04,MT,7,1104271 +2023-03-05,MT,13,1104271 +2023-03-06,MT,14,1104271 +2023-03-07,MT,15,1104271 +2023-03-08,MT,10,1104271 +2023-03-09,MT,10,1104271 +2023-03-10,MT,8,1104271 +2023-03-11,MT,14,1104271 +2023-03-12,MT,23,1104271 +2023-03-13,MT,29,1104271 +2023-03-14,MT,20,1104271 +2023-03-15,MT,27,1104271 +2023-03-16,MT,10,1104271 +2023-03-17,MT,16,1104271 +2023-03-18,MT,16,1104271 +2023-03-19,MT,8,1104271 +2023-03-20,MT,15,1104271 +2023-03-21,MT,8,1104271 +2023-03-22,MT,13,1104271 +2023-03-23,MT,15,1104271 +2023-03-24,MT,12,1104271 +2023-03-25,MT,5,1104271 +2023-03-26,MT,7,1104271 +2023-03-27,MT,12,1104271 +2023-03-28,MT,11,1104271 +2023-03-29,MT,11,1104271 +2023-03-30,MT,10,1104271 +2023-03-31,MT,8,1104271 +2023-04-01,MT,6,1104271 +2023-04-02,MT,8,1104271 +2023-04-03,MT,9,1104271 +2023-04-04,MT,13,1104271 +2023-04-05,MT,7,1104271 +2023-04-06,MT,11,1104271 +2023-04-07,MT,6,1104271 +2023-04-08,MT,12,1104271 +2023-04-09,MT,8,1104271 +2023-04-10,MT,9,1104271 +2023-04-11,MT,11,1104271 +2023-04-12,MT,3,1104271 +2023-04-13,MT,5,1104271 +2023-04-14,MT,4,1104271 +2023-04-15,MT,11,1104271 +2023-04-16,MT,5,1104271 +2023-04-17,MT,9,1104271 +2023-04-18,MT,8,1104271 +2023-04-19,MT,3,1104271 +2023-04-20,MT,5,1104271 +2023-04-21,MT,5,1104271 +2023-04-22,MT,7,1104271 +2023-04-23,MT,8,1104271 +2023-04-24,MT,7,1104271 +2023-04-25,MT,7,1104271 +2023-04-26,MT,7,1104271 +2023-04-27,MT,4,1104271 +2023-04-28,MT,4,1104271 +2023-04-29,MT,7,1104271 +2023-04-30,MT,4,1104271 +2023-05-01,MT,10,1104271 +2023-05-02,MT,8,1104271 +2023-05-03,MT,10,1104271 +2023-05-04,MT,3,1104271 +2023-05-05,MT,4,1104271 +2023-05-06,MT,3,1104271 +2023-05-07,MT,1,1104271 +2023-05-08,MT,3,1104271 +2023-05-09,MT,8,1104271 +2023-05-10,MT,5,1104271 +2023-05-11,MT,4,1104271 +2023-05-12,MT,2,1104271 +2023-05-13,MT,2,1104271 +2023-05-14,MT,2,1104271 +2023-05-15,MT,5,1104271 +2023-05-16,MT,4,1104271 +2023-05-17,MT,3,1104271 +2023-05-18,MT,6,1104271 +2023-05-19,MT,2,1104271 +2023-05-20,MT,1,1104271 +2023-05-21,MT,5,1104271 +2023-05-22,MT,5,1104271 +2023-05-23,MT,3,1104271 +2023-05-24,MT,3,1104271 +2023-05-25,MT,1,1104271 +2023-05-26,MT,2,1104271 +2023-05-27,MT,4,1104271 +2023-05-28,MT,2,1104271 +2023-05-29,MT,1,1104271 +2023-05-30,MT,2,1104271 +2023-05-31,MT,4,1104271 +2023-06-01,MT,2,1104271 +2023-06-02,MT,3,1104271 +2023-06-03,MT,1,1104271 +2023-06-04,MT,2,1104271 +2023-06-05,MT,0,1104271 +2023-06-06,MT,1,1104271 +2023-06-07,MT,5,1104271 +2023-06-08,MT,3,1104271 +2023-06-09,MT,3,1104271 +2023-06-10,MT,3,1104271 +2023-06-11,MT,2,1104271 +2023-06-12,MT,4,1104271 +2023-06-13,MT,3,1104271 +2023-06-14,MT,2,1104271 +2023-06-15,MT,1,1104271 +2023-06-16,MT,1,1104271 +2023-06-17,MT,2,1104271 +2023-06-18,MT,2,1104271 +2023-06-19,MT,3,1104271 +2023-06-20,MT,3,1104271 +2023-06-21,MT,2,1104271 +2023-06-22,MT,2,1104271 +2023-06-23,MT,2,1104271 +2023-06-24,MT,1,1104271 +2023-06-25,MT,1,1104271 +2023-06-26,MT,4,1104271 +2023-06-27,MT,5,1104271 +2023-06-28,MT,4,1104271 +2023-06-29,MT,4,1104271 +2023-06-30,MT,1,1104271 +2023-07-01,MT,2,1104271 +2023-07-02,MT,2,1104271 +2023-07-03,MT,3,1104271 +2023-07-04,MT,5,1104271 +2023-07-05,MT,1,1104271 +2023-07-06,MT,1,1104271 +2023-07-07,MT,1,1104271 +2023-07-08,MT,1,1104271 +2023-07-09,MT,6,1104271 +2023-07-10,MT,5,1104271 +2023-07-11,MT,3,1104271 +2023-07-12,MT,5,1104271 +2023-07-13,MT,4,1104271 +2023-07-14,MT,2,1104271 +2023-07-15,MT,2,1104271 +2023-07-16,MT,1,1104271 +2023-07-17,MT,2,1104271 +2023-07-18,MT,1,1104271 +2023-07-19,MT,5,1104271 +2023-07-20,MT,3,1104271 +2023-07-21,MT,4,1104271 +2023-07-22,MT,2,1104271 +2023-07-23,MT,3,1104271 +2023-07-24,MT,7,1104271 +2023-07-25,MT,3,1104271 +2023-07-26,MT,4,1104271 +2023-07-27,MT,3,1104271 +2023-07-28,MT,5,1104271 +2023-07-29,MT,4,1104271 +2023-07-30,MT,5,1104271 +2023-07-31,MT,7,1104271 +2023-08-01,MT,5,1104271 +2023-08-02,MT,8,1104271 +2023-08-03,MT,2,1104271 +2023-08-04,MT,4,1104271 +2023-08-05,MT,3,1104271 +2023-08-06,MT,3,1104271 +2023-08-07,MT,5,1104271 +2023-08-08,MT,1,1104271 +2023-08-09,MT,4,1104271 +2023-08-10,MT,5,1104271 +2023-08-11,MT,2,1104271 +2023-08-12,MT,5,1104271 +2023-08-13,MT,6,1104271 +2023-08-14,MT,3,1104271 +2023-08-15,MT,4,1104271 +2023-08-16,MT,6,1104271 +2023-08-17,MT,10,1104271 +2023-08-18,MT,7,1104271 +2023-08-19,MT,7,1104271 +2023-08-20,MT,8,1104271 +2023-08-21,MT,7,1104271 +2023-08-22,MT,12,1104271 +2023-08-23,MT,11,1104271 +2023-08-24,MT,3,1104271 +2023-08-25,MT,5,1104271 +2023-08-26,MT,9,1104271 +2023-08-27,MT,11,1104271 +2023-08-28,MT,12,1104271 +2023-08-29,MT,7,1104271 +2023-08-30,MT,7,1104271 +2023-08-31,MT,5,1104271 +2023-09-01,MT,9,1104271 +2023-09-02,MT,7,1104271 +2023-09-03,MT,7,1104271 +2023-09-04,MT,10,1104271 +2023-09-05,MT,10,1104271 +2023-09-06,MT,8,1104271 +2023-09-07,MT,14,1104271 +2023-09-08,MT,11,1104271 +2023-09-09,MT,15,1104271 +2023-09-10,MT,13,1104271 +2023-09-11,MT,11,1104271 +2023-09-12,MT,9,1104271 +2023-09-13,MT,13,1104271 +2023-09-14,MT,14,1104271 +2023-09-15,MT,12,1104271 +2023-09-16,MT,16,1104271 +2023-09-17,MT,14,1104271 +2023-09-18,MT,19,1104271 +2023-09-19,MT,15,1104271 +2023-09-20,MT,15,1104271 +2023-09-21,MT,12,1104271 +2023-09-22,MT,19,1104271 +2023-09-23,MT,16,1104271 +2023-09-24,MT,23,1104271 +2023-09-25,MT,12,1104271 +2023-09-26,MT,23,1104271 +2023-09-27,MT,18,1104271 +2023-09-28,MT,23,1104271 +2023-09-29,MT,8,1104271 +2023-09-30,MT,8,1104271 +2023-10-01,MT,7,1104271 +2023-10-02,MT,16,1104271 +2023-10-03,MT,10,1104271 +2023-10-04,MT,16,1104271 +2023-10-05,MT,11,1104271 +2023-10-06,MT,12,1104271 +2023-10-07,MT,14,1104271 +2023-10-08,MT,16,1104271 +2023-10-09,MT,17,1104271 +2023-10-10,MT,12,1104271 +2023-10-11,MT,11,1104271 +2023-10-12,MT,11,1104271 +2023-10-13,MT,14,1104271 +2023-10-14,MT,15,1104271 +2023-10-15,MT,11,1104271 +2023-10-16,MT,13,1104271 +2023-10-17,MT,21,1104271 +2023-10-18,MT,18,1104271 +2023-10-19,MT,15,1104271 +2023-10-20,MT,10,1104271 +2023-10-21,MT,12,1104271 +2023-10-22,MT,7,1104271 +2023-10-23,MT,11,1104271 +2023-10-24,MT,6,1104271 +2023-10-25,MT,9,1104271 +2023-10-26,MT,10,1104271 +2023-10-27,MT,7,1104271 +2023-10-28,MT,8,1104271 +2023-10-29,MT,10,1104271 +2023-10-30,MT,12,1104271 +2023-10-31,MT,12,1104271 +2023-11-01,MT,7,1104271 +2023-11-02,MT,7,1104271 +2023-11-03,MT,7,1104271 +2023-11-04,MT,10,1104271 +2023-11-05,MT,12,1104271 +2023-11-06,MT,10,1104271 +2023-11-07,MT,14,1104271 +2023-11-08,MT,15,1104271 +2023-11-09,MT,13,1104271 +2023-11-10,MT,17,1104271 +2023-11-11,MT,11,1104271 +2023-11-12,MT,9,1104271 +2023-11-13,MT,8,1104271 +2023-11-14,MT,19,1104271 +2023-11-15,MT,17,1104271 +2023-11-16,MT,11,1104271 +2023-11-17,MT,15,1104271 +2023-11-18,MT,15,1104271 +2023-11-19,MT,9,1104271 +2023-11-20,MT,11,1104271 +2023-11-21,MT,12,1104271 +2023-11-22,MT,19,1104271 +2023-11-23,MT,9,1104271 +2023-11-24,MT,17,1104271 +2023-11-25,MT,15,1104271 +2023-11-26,MT,19,1104271 +2023-11-27,MT,9,1104271 +2023-11-28,MT,14,1104271 +2023-11-29,MT,23,1104271 +2023-11-30,MT,10,1104271 +2023-12-01,MT,14,1104271 +2023-12-02,MT,14,1104271 +2023-12-03,MT,17,1104271 +2023-12-04,MT,13,1104271 +2023-12-05,MT,22,1104271 +2023-12-06,MT,15,1104271 +2023-12-07,MT,14,1104271 +2023-12-08,MT,16,1104271 +2023-12-09,MT,10,1104271 +2023-12-10,MT,18,1104271 +2023-12-11,MT,21,1104271 +2023-12-12,MT,11,1104271 +2023-12-13,MT,22,1104271 +2023-12-14,MT,10,1104271 +2023-12-15,MT,17,1104271 +2023-12-16,MT,7,1104271 +2023-12-17,MT,15,1104271 +2023-12-18,MT,31,1104271 +2023-12-19,MT,21,1104271 +2023-12-20,MT,11,1104271 +2023-12-21,MT,10,1104271 +2023-12-22,MT,9,1104271 +2023-12-23,MT,9,1104271 +2023-12-24,MT,10,1104271 +2023-12-25,MT,8,1104271 +2023-12-26,MT,22,1104271 +2023-12-27,MT,12,1104271 +2023-12-28,MT,20,1104271 +2023-12-29,MT,14,1104271 +2023-12-30,MT,18,1104271 +2023-12-31,MT,16,1104271 +2024-01-01,MT,12,1104271 +2024-01-02,MT,21,1104271 +2024-01-03,MT,24,1104271 +2024-01-04,MT,18,1104271 +2024-01-05,MT,15,1104271 +2024-01-06,MT,11,1104271 +2024-01-07,MT,22,1104271 +2024-01-08,MT,20,1104271 +2024-01-09,MT,21,1104271 +2024-01-10,MT,11,1104271 +2024-01-11,MT,13,1104271 +2024-01-12,MT,7,1104271 +2024-01-13,MT,10,1104271 +2024-01-14,MT,12,1104271 +2024-01-15,MT,10,1104271 +2024-01-16,MT,14,1104271 +2024-01-17,MT,8,1104271 +2024-01-18,MT,6,1104271 +2024-01-19,MT,9,1104271 +2022-12-31,NC,239,10551162 +2023-01-01,NC,235,10551162 +2023-01-02,NC,234,10551162 +2023-01-03,NC,231,10551162 +2023-01-04,NC,239,10551162 +2023-01-05,NC,239,10551162 +2023-01-06,NC,212,10551162 +2023-01-07,NC,174,10551162 +2023-01-08,NC,182,10551162 +2023-01-09,NC,192,10551162 +2023-01-10,NC,195,10551162 +2023-01-11,NC,192,10551162 +2023-01-12,NC,198,10551162 +2023-01-13,NC,171,10551162 +2023-01-14,NC,127,10551162 +2023-01-15,NC,142,10551162 +2023-01-16,NC,155,10551162 +2023-01-17,NC,151,10551162 +2023-01-18,NC,142,10551162 +2023-01-19,NC,175,10551162 +2023-01-20,NC,164,10551162 +2023-01-21,NC,139,10551162 +2023-01-22,NC,121,10551162 +2023-01-23,NC,128,10551162 +2023-01-24,NC,129,10551162 +2023-01-25,NC,162,10551162 +2023-01-26,NC,162,10551162 +2023-01-27,NC,129,10551162 +2023-01-28,NC,117,10551162 +2023-01-29,NC,110,10551162 +2023-01-30,NC,112,10551162 +2023-01-31,NC,107,10551162 +2023-02-01,NC,121,10551162 +2023-02-02,NC,110,10551162 +2023-02-03,NC,115,10551162 +2023-02-04,NC,94,10551162 +2023-02-05,NC,113,10551162 +2023-02-06,NC,112,10551162 +2023-02-07,NC,133,10551162 +2023-02-08,NC,116,10551162 +2023-02-09,NC,120,10551162 +2023-02-10,NC,110,10551162 +2023-02-11,NC,83,10551162 +2023-02-12,NC,92,10551162 +2023-02-13,NC,101,10551162 +2023-02-14,NC,102,10551162 +2023-02-15,NC,112,10551162 +2023-02-16,NC,121,10551162 +2023-02-17,NC,131,10551162 +2023-02-18,NC,95,10551162 +2023-02-19,NC,83,10551162 +2023-02-20,NC,106,10551162 +2023-02-21,NC,105,10551162 +2023-02-22,NC,119,10551162 +2023-02-23,NC,101,10551162 +2023-02-24,NC,88,10551162 +2023-02-25,NC,91,10551162 +2023-02-26,NC,86,10551162 +2023-02-27,NC,106,10551162 +2023-02-28,NC,102,10551162 +2023-03-01,NC,78,10551162 +2023-03-02,NC,84,10551162 +2023-03-03,NC,66,10551162 +2023-03-04,NC,63,10551162 +2023-03-05,NC,71,10551162 +2023-03-06,NC,63,10551162 +2023-03-07,NC,63,10551162 +2023-03-08,NC,76,10551162 +2023-03-09,NC,80,10551162 +2023-03-10,NC,75,10551162 +2023-03-11,NC,61,10551162 +2023-03-12,NC,53,10551162 +2023-03-13,NC,66,10551162 +2023-03-14,NC,66,10551162 +2023-03-15,NC,63,10551162 +2023-03-16,NC,53,10551162 +2023-03-17,NC,43,10551162 +2023-03-18,NC,41,10551162 +2023-03-19,NC,58,10551162 +2023-03-20,NC,46,10551162 +2023-03-21,NC,44,10551162 +2023-03-22,NC,63,10551162 +2023-03-23,NC,59,10551162 +2023-03-24,NC,65,10551162 +2023-03-25,NC,38,10551162 +2023-03-26,NC,49,10551162 +2023-03-27,NC,62,10551162 +2023-03-28,NC,58,10551162 +2023-03-29,NC,51,10551162 +2023-03-30,NC,39,10551162 +2023-03-31,NC,44,10551162 +2023-04-01,NC,51,10551162 +2023-04-02,NC,44,10551162 +2023-04-03,NC,34,10551162 +2023-04-04,NC,34,10551162 +2023-04-05,NC,39,10551162 +2023-04-06,NC,41,10551162 +2023-04-07,NC,51,10551162 +2023-04-08,NC,29,10551162 +2023-04-09,NC,22,10551162 +2023-04-10,NC,37,10551162 +2023-04-11,NC,36,10551162 +2023-04-12,NC,41,10551162 +2023-04-13,NC,35,10551162 +2023-04-14,NC,27,10551162 +2023-04-15,NC,35,10551162 +2023-04-16,NC,35,10551162 +2023-04-17,NC,42,10551162 +2023-04-18,NC,43,10551162 +2023-04-19,NC,26,10551162 +2023-04-20,NC,29,10551162 +2023-04-21,NC,22,10551162 +2023-04-22,NC,24,10551162 +2023-04-23,NC,16,10551162 +2023-04-24,NC,19,10551162 +2023-04-25,NC,21,10551162 +2023-04-26,NC,18,10551162 +2023-04-27,NC,24,10551162 +2023-04-28,NC,30,10551162 +2023-04-29,NC,37,10551162 +2023-04-30,NC,27,10551162 +2023-05-01,NC,23,10551162 +2023-05-02,NC,23,10551162 +2023-05-03,NC,27,10551162 +2023-05-04,NC,28,10551162 +2023-05-05,NC,32,10551162 +2023-05-06,NC,29,10551162 +2023-05-07,NC,24,10551162 +2023-05-08,NC,31,10551162 +2023-05-09,NC,20,10551162 +2023-05-10,NC,19,10551162 +2023-05-11,NC,26,10551162 +2023-05-12,NC,21,10551162 +2023-05-13,NC,25,10551162 +2023-05-14,NC,23,10551162 +2023-05-15,NC,23,10551162 +2023-05-16,NC,27,10551162 +2023-05-17,NC,28,10551162 +2023-05-18,NC,19,10551162 +2023-05-19,NC,31,10551162 +2023-05-20,NC,25,10551162 +2023-05-21,NC,14,10551162 +2023-05-22,NC,29,10551162 +2023-05-23,NC,16,10551162 +2023-05-24,NC,17,10551162 +2023-05-25,NC,30,10551162 +2023-05-26,NC,19,10551162 +2023-05-27,NC,16,10551162 +2023-05-28,NC,14,10551162 +2023-05-29,NC,27,10551162 +2023-05-30,NC,25,10551162 +2023-05-31,NC,23,10551162 +2023-06-01,NC,26,10551162 +2023-06-02,NC,24,10551162 +2023-06-03,NC,17,10551162 +2023-06-04,NC,17,10551162 +2023-06-05,NC,16,10551162 +2023-06-06,NC,15,10551162 +2023-06-07,NC,17,10551162 +2023-06-08,NC,16,10551162 +2023-06-09,NC,19,10551162 +2023-06-10,NC,14,10551162 +2023-06-11,NC,17,10551162 +2023-06-12,NC,23,10551162 +2023-06-13,NC,21,10551162 +2023-06-14,NC,23,10551162 +2023-06-15,NC,26,10551162 +2023-06-16,NC,21,10551162 +2023-06-17,NC,14,10551162 +2023-06-18,NC,19,10551162 +2023-06-19,NC,26,10551162 +2023-06-20,NC,13,10551162 +2023-06-21,NC,14,10551162 +2023-06-22,NC,11,10551162 +2023-06-23,NC,23,10551162 +2023-06-24,NC,13,10551162 +2023-06-25,NC,19,10551162 +2023-06-26,NC,17,10551162 +2023-06-27,NC,25,10551162 +2023-06-28,NC,36,10551162 +2023-06-29,NC,20,10551162 +2023-06-30,NC,18,10551162 +2023-07-01,NC,15,10551162 +2023-07-02,NC,14,10551162 +2023-07-03,NC,14,10551162 +2023-07-04,NC,13,10551162 +2023-07-05,NC,31,10551162 +2023-07-06,NC,16,10551162 +2023-07-07,NC,24,10551162 +2023-07-08,NC,22,10551162 +2023-07-09,NC,21,10551162 +2023-07-10,NC,18,10551162 +2023-07-11,NC,26,10551162 +2023-07-12,NC,27,10551162 +2023-07-13,NC,37,10551162 +2023-07-14,NC,28,10551162 +2023-07-15,NC,13,10551162 +2023-07-16,NC,24,10551162 +2023-07-17,NC,22,10551162 +2023-07-18,NC,38,10551162 +2023-07-19,NC,29,10551162 +2023-07-20,NC,31,10551162 +2023-07-21,NC,34,10551162 +2023-07-22,NC,27,10551162 +2023-07-23,NC,26,10551162 +2023-07-24,NC,30,10551162 +2023-07-25,NC,40,10551162 +2023-07-26,NC,27,10551162 +2023-07-27,NC,36,10551162 +2023-07-28,NC,42,10551162 +2023-07-29,NC,29,10551162 +2023-07-30,NC,46,10551162 +2023-07-31,NC,41,10551162 +2023-08-01,NC,39,10551162 +2023-08-02,NC,27,10551162 +2023-08-03,NC,43,10551162 +2023-08-04,NC,31,10551162 +2023-08-05,NC,43,10551162 +2023-08-06,NC,28,10551162 +2023-08-07,NC,51,10551162 +2023-08-08,NC,47,10551162 +2023-08-09,NC,59,10551162 +2023-08-10,NC,41,10551162 +2023-08-11,NC,49,10551162 +2023-08-12,NC,48,10551162 +2023-08-13,NC,63,10551162 +2023-08-14,NC,65,10551162 +2023-08-15,NC,57,10551162 +2023-08-16,NC,56,10551162 +2023-08-17,NC,50,10551162 +2023-08-18,NC,73,10551162 +2023-08-19,NC,57,10551162 +2023-08-20,NC,60,10551162 +2023-08-21,NC,72,10551162 +2023-08-22,NC,82,10551162 +2023-08-23,NC,70,10551162 +2023-08-24,NC,56,10551162 +2023-08-25,NC,73,10551162 +2023-08-26,NC,49,10551162 +2023-08-27,NC,66,10551162 +2023-08-28,NC,75,10551162 +2023-08-29,NC,88,10551162 +2023-08-30,NC,65,10551162 +2023-08-31,NC,70,10551162 +2023-09-01,NC,68,10551162 +2023-09-02,NC,76,10551162 +2023-09-03,NC,83,10551162 +2023-09-04,NC,90,10551162 +2023-09-05,NC,96,10551162 +2023-09-06,NC,89,10551162 +2023-09-07,NC,98,10551162 +2023-09-08,NC,93,10551162 +2023-09-09,NC,91,10551162 +2023-09-10,NC,89,10551162 +2023-09-11,NC,97,10551162 +2023-09-12,NC,78,10551162 +2023-09-13,NC,98,10551162 +2023-09-14,NC,73,10551162 +2023-09-15,NC,83,10551162 +2023-09-16,NC,64,10551162 +2023-09-17,NC,79,10551162 +2023-09-18,NC,104,10551162 +2023-09-19,NC,75,10551162 +2023-09-20,NC,81,10551162 +2023-09-21,NC,100,10551162 +2023-09-22,NC,98,10551162 +2023-09-23,NC,85,10551162 +2023-09-24,NC,74,10551162 +2023-09-25,NC,80,10551162 +2023-09-26,NC,89,10551162 +2023-09-27,NC,79,10551162 +2023-09-28,NC,75,10551162 +2023-09-29,NC,76,10551162 +2023-09-30,NC,70,10551162 +2023-10-01,NC,78,10551162 +2023-10-02,NC,96,10551162 +2023-10-03,NC,74,10551162 +2023-10-04,NC,79,10551162 +2023-10-05,NC,89,10551162 +2023-10-06,NC,79,10551162 +2023-10-07,NC,73,10551162 +2023-10-08,NC,54,10551162 +2023-10-09,NC,62,10551162 +2023-10-10,NC,66,10551162 +2023-10-11,NC,66,10551162 +2023-10-12,NC,62,10551162 +2023-10-13,NC,70,10551162 +2023-10-14,NC,56,10551162 +2023-10-15,NC,55,10551162 +2023-10-16,NC,70,10551162 +2023-10-17,NC,63,10551162 +2023-10-18,NC,64,10551162 +2023-10-19,NC,60,10551162 +2023-10-20,NC,55,10551162 +2023-10-21,NC,48,10551162 +2023-10-22,NC,65,10551162 +2023-10-23,NC,60,10551162 +2023-10-24,NC,68,10551162 +2023-10-25,NC,61,10551162 +2023-10-26,NC,64,10551162 +2023-10-27,NC,54,10551162 +2023-10-28,NC,62,10551162 +2023-10-29,NC,49,10551162 +2023-10-30,NC,57,10551162 +2023-10-31,NC,51,10551162 +2023-11-01,NC,59,10551162 +2023-11-02,NC,47,10551162 +2023-11-03,NC,56,10551162 +2023-11-04,NC,49,10551162 +2023-11-05,NC,49,10551162 +2023-11-06,NC,65,10551162 +2023-11-07,NC,55,10551162 +2023-11-08,NC,63,10551162 +2023-11-09,NC,48,10551162 +2023-11-10,NC,58,10551162 +2023-11-11,NC,46,10551162 +2023-11-12,NC,48,10551162 +2023-11-13,NC,58,10551162 +2023-11-14,NC,57,10551162 +2023-11-15,NC,48,10551162 +2023-11-16,NC,71,10551162 +2023-11-17,NC,57,10551162 +2023-11-18,NC,62,10551162 +2023-11-19,NC,71,10551162 +2023-11-20,NC,56,10551162 +2023-11-21,NC,64,10551162 +2023-11-22,NC,55,10551162 +2023-11-23,NC,50,10551162 +2023-11-24,NC,59,10551162 +2023-11-25,NC,59,10551162 +2023-11-26,NC,57,10551162 +2023-11-27,NC,85,10551162 +2023-11-28,NC,67,10551162 +2023-11-29,NC,63,10551162 +2023-11-30,NC,71,10551162 +2023-12-01,NC,60,10551162 +2023-12-02,NC,61,10551162 +2023-12-03,NC,68,10551162 +2023-12-04,NC,91,10551162 +2023-12-05,NC,78,10551162 +2023-12-06,NC,77,10551162 +2023-12-07,NC,86,10551162 +2023-12-08,NC,91,10551162 +2023-12-09,NC,54,10551162 +2023-12-10,NC,72,10551162 +2023-12-11,NC,78,10551162 +2023-12-12,NC,80,10551162 +2023-12-13,NC,90,10551162 +2023-12-14,NC,89,10551162 +2023-12-15,NC,86,10551162 +2023-12-16,NC,75,10551162 +2023-12-17,NC,84,10551162 +2023-12-18,NC,101,10551162 +2023-12-19,NC,108,10551162 +2023-12-20,NC,106,10551162 +2023-12-21,NC,114,10551162 +2023-12-22,NC,103,10551162 +2023-12-23,NC,88,10551162 +2023-12-24,NC,103,10551162 +2023-12-25,NC,135,10551162 +2023-12-26,NC,152,10551162 +2023-12-27,NC,144,10551162 +2023-12-28,NC,136,10551162 +2023-12-29,NC,130,10551162 +2023-12-30,NC,103,10551162 +2023-12-31,NC,133,10551162 +2024-01-01,NC,125,10551162 +2024-01-02,NC,129,10551162 +2024-01-03,NC,130,10551162 +2024-01-04,NC,124,10551162 +2024-01-05,NC,100,10551162 +2024-01-06,NC,118,10551162 +2024-01-07,NC,116,10551162 +2024-01-08,NC,137,10551162 +2024-01-09,NC,137,10551162 +2024-01-10,NC,134,10551162 +2024-01-11,NC,108,10551162 +2024-01-12,NC,120,10551162 +2024-01-13,NC,107,10551162 +2024-01-14,NC,90,10551162 +2024-01-15,NC,98,10551162 +2024-01-16,NC,93,10551162 +2024-01-17,NC,106,10551162 +2024-01-18,NC,107,10551162 +2024-01-19,NC,107,10551162 +2022-12-31,ND,4,774948 +2023-01-01,ND,9,774948 +2023-01-02,ND,9,774948 +2023-01-03,ND,8,774948 +2023-01-04,ND,6,774948 +2023-01-05,ND,3,774948 +2023-01-06,ND,8,774948 +2023-01-07,ND,11,774948 +2023-01-08,ND,6,774948 +2023-01-09,ND,13,774948 +2023-01-10,ND,10,774948 +2023-01-11,ND,5,774948 +2023-01-12,ND,11,774948 +2023-01-13,ND,6,774948 +2023-01-14,ND,5,774948 +2023-01-15,ND,8,774948 +2023-01-16,ND,6,774948 +2023-01-17,ND,5,774948 +2023-01-18,ND,7,774948 +2023-01-19,ND,10,774948 +2023-01-20,ND,10,774948 +2023-01-21,ND,8,774948 +2023-01-22,ND,6,774948 +2023-01-23,ND,7,774948 +2023-01-24,ND,7,774948 +2023-01-25,ND,6,774948 +2023-01-26,ND,10,774948 +2023-01-27,ND,3,774948 +2023-01-28,ND,8,774948 +2023-01-29,ND,8,774948 +2023-01-30,ND,12,774948 +2023-01-31,ND,7,774948 +2023-02-01,ND,9,774948 +2023-02-02,ND,11,774948 +2023-02-03,ND,10,774948 +2023-02-04,ND,11,774948 +2023-02-05,ND,10,774948 +2023-02-06,ND,15,774948 +2023-02-07,ND,7,774948 +2023-02-08,ND,8,774948 +2023-02-09,ND,10,774948 +2023-02-10,ND,10,774948 +2023-02-11,ND,9,774948 +2023-02-12,ND,6,774948 +2023-02-13,ND,10,774948 +2023-02-14,ND,8,774948 +2023-02-15,ND,11,774948 +2023-02-16,ND,10,774948 +2023-02-17,ND,15,774948 +2023-02-18,ND,11,774948 +2023-02-19,ND,13,774948 +2023-02-20,ND,12,774948 +2023-02-21,ND,7,774948 +2023-02-22,ND,13,774948 +2023-02-23,ND,5,774948 +2023-02-24,ND,8,774948 +2023-02-25,ND,9,774948 +2023-02-26,ND,13,774948 +2023-02-27,ND,15,774948 +2023-02-28,ND,7,774948 +2023-03-01,ND,6,774948 +2023-03-02,ND,8,774948 +2023-03-03,ND,12,774948 +2023-03-04,ND,10,774948 +2023-03-05,ND,4,774948 +2023-03-06,ND,14,774948 +2023-03-07,ND,4,774948 +2023-03-08,ND,4,774948 +2023-03-09,ND,8,774948 +2023-03-10,ND,3,774948 +2023-03-11,ND,6,774948 +2023-03-12,ND,8,774948 +2023-03-13,ND,9,774948 +2023-03-14,ND,10,774948 +2023-03-15,ND,10,774948 +2023-03-16,ND,9,774948 +2023-03-17,ND,6,774948 +2023-03-18,ND,4,774948 +2023-03-19,ND,3,774948 +2023-03-20,ND,4,774948 +2023-03-21,ND,3,774948 +2023-03-22,ND,6,774948 +2023-03-23,ND,7,774948 +2023-03-24,ND,9,774948 +2023-03-25,ND,4,774948 +2023-03-26,ND,7,774948 +2023-03-27,ND,9,774948 +2023-03-28,ND,5,774948 +2023-03-29,ND,4,774948 +2023-03-30,ND,8,774948 +2023-03-31,ND,10,774948 +2023-04-01,ND,2,774948 +2023-04-02,ND,3,774948 +2023-04-03,ND,6,774948 +2023-04-04,ND,6,774948 +2023-04-05,ND,2,774948 +2023-04-06,ND,2,774948 +2023-04-07,ND,5,774948 +2023-04-08,ND,8,774948 +2023-04-09,ND,5,774948 +2023-04-10,ND,7,774948 +2023-04-11,ND,3,774948 +2023-04-12,ND,1,774948 +2023-04-13,ND,6,774948 +2023-04-14,ND,5,774948 +2023-04-15,ND,6,774948 +2023-04-16,ND,4,774948 +2023-04-17,ND,5,774948 +2023-04-18,ND,4,774948 +2023-04-19,ND,3,774948 +2023-04-20,ND,5,774948 +2023-04-21,ND,3,774948 +2023-04-22,ND,7,774948 +2023-04-23,ND,7,774948 +2023-04-24,ND,7,774948 +2023-04-25,ND,5,774948 +2023-04-26,ND,1,774948 +2023-04-27,ND,4,774948 +2023-04-28,ND,5,774948 +2023-04-29,ND,2,774948 +2023-04-30,ND,2,774948 +2023-05-01,ND,6,774948 +2023-05-02,ND,3,774948 +2023-05-03,ND,4,774948 +2023-05-04,ND,3,774948 +2023-05-05,ND,2,774948 +2023-05-06,ND,5,774948 +2023-05-07,ND,3,774948 +2023-05-08,ND,6,774948 +2023-05-09,ND,6,774948 +2023-05-10,ND,7,774948 +2023-05-11,ND,2,774948 +2023-05-12,ND,5,774948 +2023-05-13,ND,4,774948 +2023-05-14,ND,2,774948 +2023-05-15,ND,3,774948 +2023-05-16,ND,3,774948 +2023-05-17,ND,2,774948 +2023-05-18,ND,1,774948 +2023-05-19,ND,2,774948 +2023-05-20,ND,3,774948 +2023-05-21,ND,0,774948 +2023-05-22,ND,3,774948 +2023-05-23,ND,2,774948 +2023-05-24,ND,1,774948 +2023-05-25,ND,0,774948 +2023-05-26,ND,3,774948 +2023-05-27,ND,2,774948 +2023-05-28,ND,0,774948 +2023-05-29,ND,2,774948 +2023-05-30,ND,3,774948 +2023-05-31,ND,5,774948 +2023-06-01,ND,0,774948 +2023-06-02,ND,2,774948 +2023-06-03,ND,0,774948 +2023-06-04,ND,0,774948 +2023-06-05,ND,4,774948 +2023-06-06,ND,2,774948 +2023-06-07,ND,3,774948 +2023-06-08,ND,1,774948 +2023-06-09,ND,2,774948 +2023-06-10,ND,1,774948 +2023-06-11,ND,6,774948 +2023-06-12,ND,4,774948 +2023-06-13,ND,3,774948 +2023-06-14,ND,1,774948 +2023-06-15,ND,1,774948 +2023-06-16,ND,1,774948 +2023-06-17,ND,0,774948 +2023-06-18,ND,0,774948 +2023-06-19,ND,1,774948 +2023-06-20,ND,1,774948 +2023-06-21,ND,1,774948 +2023-06-22,ND,2,774948 +2023-06-23,ND,0,774948 +2023-06-24,ND,4,774948 +2023-06-25,ND,0,774948 +2023-06-26,ND,2,774948 +2023-06-27,ND,0,774948 +2023-06-28,ND,1,774948 +2023-06-29,ND,0,774948 +2023-06-30,ND,1,774948 +2023-07-01,ND,0,774948 +2023-07-02,ND,0,774948 +2023-07-03,ND,1,774948 +2023-07-04,ND,2,774948 +2023-07-05,ND,2,774948 +2023-07-06,ND,0,774948 +2023-07-07,ND,2,774948 +2023-07-08,ND,2,774948 +2023-07-09,ND,0,774948 +2023-07-10,ND,1,774948 +2023-07-11,ND,1,774948 +2023-07-12,ND,1,774948 +2023-07-13,ND,2,774948 +2023-07-14,ND,4,774948 +2023-07-15,ND,1,774948 +2023-07-16,ND,2,774948 +2023-07-17,ND,0,774948 +2023-07-18,ND,2,774948 +2023-07-19,ND,5,774948 +2023-07-20,ND,5,774948 +2023-07-21,ND,4,774948 +2023-07-22,ND,3,774948 +2023-07-23,ND,3,774948 +2023-07-24,ND,1,774948 +2023-07-25,ND,1,774948 +2023-07-26,ND,3,774948 +2023-07-27,ND,2,774948 +2023-07-28,ND,0,774948 +2023-07-29,ND,0,774948 +2023-07-30,ND,2,774948 +2023-07-31,ND,1,774948 +2023-08-01,ND,2,774948 +2023-08-02,ND,3,774948 +2023-08-03,ND,4,774948 +2023-08-04,ND,2,774948 +2023-08-05,ND,2,774948 +2023-08-06,ND,1,774948 +2023-08-07,ND,4,774948 +2023-08-08,ND,5,774948 +2023-08-09,ND,1,774948 +2023-08-10,ND,1,774948 +2023-08-11,ND,1,774948 +2023-08-12,ND,0,774948 +2023-08-13,ND,3,774948 +2023-08-14,ND,1,774948 +2023-08-15,ND,0,774948 +2023-08-16,ND,3,774948 +2023-08-17,ND,4,774948 +2023-08-18,ND,3,774948 +2023-08-19,ND,2,774948 +2023-08-20,ND,4,774948 +2023-08-21,ND,3,774948 +2023-08-22,ND,2,774948 +2023-08-23,ND,5,774948 +2023-08-24,ND,2,774948 +2023-08-25,ND,3,774948 +2023-08-26,ND,2,774948 +2023-08-27,ND,3,774948 +2023-08-28,ND,4,774948 +2023-08-29,ND,1,774948 +2023-08-30,ND,3,774948 +2023-08-31,ND,2,774948 +2023-09-01,ND,5,774948 +2023-09-02,ND,4,774948 +2023-09-03,ND,2,774948 +2023-09-04,ND,3,774948 +2023-09-05,ND,5,774948 +2023-09-06,ND,1,774948 +2023-09-07,ND,8,774948 +2023-09-08,ND,1,774948 +2023-09-09,ND,0,774948 +2023-09-10,ND,3,774948 +2023-09-11,ND,5,774948 +2023-09-12,ND,6,774948 +2023-09-13,ND,6,774948 +2023-09-14,ND,6,774948 +2023-09-15,ND,3,774948 +2023-09-16,ND,4,774948 +2023-09-17,ND,2,774948 +2023-09-18,ND,5,774948 +2023-09-19,ND,8,774948 +2023-09-20,ND,3,774948 +2023-09-21,ND,5,774948 +2023-09-22,ND,8,774948 +2023-09-23,ND,2,774948 +2023-09-24,ND,8,774948 +2023-09-25,ND,7,774948 +2023-09-26,ND,8,774948 +2023-09-27,ND,5,774948 +2023-09-28,ND,6,774948 +2023-09-29,ND,4,774948 +2023-09-30,ND,6,774948 +2023-10-01,ND,6,774948 +2023-10-02,ND,6,774948 +2023-10-03,ND,7,774948 +2023-10-04,ND,6,774948 +2023-10-05,ND,6,774948 +2023-10-06,ND,7,774948 +2023-10-07,ND,8,774948 +2023-10-08,ND,10,774948 +2023-10-09,ND,8,774948 +2023-10-10,ND,7,774948 +2023-10-11,ND,7,774948 +2023-10-12,ND,7,774948 +2023-10-13,ND,11,774948 +2023-10-14,ND,11,774948 +2023-10-15,ND,7,774948 +2023-10-16,ND,4,774948 +2023-10-17,ND,6,774948 +2023-10-18,ND,14,774948 +2023-10-19,ND,7,774948 +2023-10-20,ND,7,774948 +2023-10-21,ND,6,774948 +2023-10-22,ND,5,774948 +2023-10-23,ND,9,774948 +2023-10-24,ND,12,774948 +2023-10-25,ND,6,774948 +2023-10-26,ND,10,774948 +2023-10-27,ND,6,774948 +2023-10-28,ND,5,774948 +2023-10-29,ND,5,774948 +2023-10-30,ND,3,774948 +2023-10-31,ND,7,774948 +2023-11-01,ND,9,774948 +2023-11-02,ND,5,774948 +2023-11-03,ND,3,774948 +2023-11-04,ND,7,774948 +2023-11-05,ND,10,774948 +2023-11-06,ND,10,774948 +2023-11-07,ND,8,774948 +2023-11-08,ND,6,774948 +2023-11-09,ND,5,774948 +2023-11-10,ND,5,774948 +2023-11-11,ND,13,774948 +2023-11-12,ND,9,774948 +2023-11-13,ND,6,774948 +2023-11-14,ND,7,774948 +2023-11-15,ND,13,774948 +2023-11-16,ND,12,774948 +2023-11-17,ND,21,774948 +2023-11-18,ND,8,774948 +2023-11-19,ND,11,774948 +2023-11-20,ND,15,774948 +2023-11-21,ND,11,774948 +2023-11-22,ND,10,774948 +2023-11-23,ND,9,774948 +2023-11-24,ND,13,774948 +2023-11-25,ND,13,774948 +2023-11-26,ND,12,774948 +2023-11-27,ND,13,774948 +2023-11-28,ND,11,774948 +2023-11-29,ND,15,774948 +2023-11-30,ND,14,774948 +2023-12-01,ND,10,774948 +2023-12-02,ND,10,774948 +2023-12-03,ND,9,774948 +2023-12-04,ND,12,774948 +2023-12-05,ND,15,774948 +2023-12-06,ND,13,774948 +2023-12-07,ND,9,774948 +2023-12-08,ND,12,774948 +2023-12-09,ND,14,774948 +2023-12-10,ND,11,774948 +2023-12-11,ND,11,774948 +2023-12-12,ND,11,774948 +2023-12-13,ND,16,774948 +2023-12-14,ND,7,774948 +2023-12-15,ND,12,774948 +2023-12-16,ND,14,774948 +2023-12-17,ND,8,774948 +2023-12-18,ND,14,774948 +2023-12-19,ND,14,774948 +2023-12-20,ND,19,774948 +2023-12-21,ND,13,774948 +2023-12-22,ND,9,774948 +2023-12-23,ND,10,774948 +2023-12-24,ND,7,774948 +2023-12-25,ND,16,774948 +2023-12-26,ND,12,774948 +2023-12-27,ND,15,774948 +2023-12-28,ND,23,774948 +2023-12-29,ND,17,774948 +2023-12-30,ND,10,774948 +2023-12-31,ND,10,774948 +2024-01-01,ND,11,774948 +2024-01-02,ND,12,774948 +2024-01-03,ND,9,774948 +2024-01-04,ND,8,774948 +2024-01-05,ND,11,774948 +2024-01-06,ND,7,774948 +2024-01-07,ND,10,774948 +2024-01-08,ND,6,774948 +2024-01-09,ND,12,774948 +2024-01-10,ND,2,774948 +2024-01-11,ND,7,774948 +2024-01-12,ND,9,774948 +2024-01-13,ND,5,774948 +2024-01-14,ND,6,774948 +2024-01-15,ND,9,774948 +2024-01-16,ND,7,774948 +2024-01-17,ND,9,774948 +2024-01-18,ND,5,774948 +2024-01-19,ND,4,774948 +2022-12-31,NE,17,1963692 +2023-01-01,NE,28,1963692 +2023-01-02,NE,15,1963692 +2023-01-03,NE,32,1963692 +2023-01-04,NE,27,1963692 +2023-01-05,NE,24,1963692 +2023-01-06,NE,15,1963692 +2023-01-07,NE,23,1963692 +2023-01-08,NE,26,1963692 +2023-01-09,NE,19,1963692 +2023-01-10,NE,20,1963692 +2023-01-11,NE,25,1963692 +2023-01-12,NE,26,1963692 +2023-01-13,NE,20,1963692 +2023-01-14,NE,21,1963692 +2023-01-15,NE,15,1963692 +2023-01-16,NE,16,1963692 +2023-01-17,NE,18,1963692 +2023-01-18,NE,20,1963692 +2023-01-19,NE,18,1963692 +2023-01-20,NE,19,1963692 +2023-01-21,NE,17,1963692 +2023-01-22,NE,9,1963692 +2023-01-23,NE,16,1963692 +2023-01-24,NE,13,1963692 +2023-01-25,NE,19,1963692 +2023-01-26,NE,13,1963692 +2023-01-27,NE,14,1963692 +2023-01-28,NE,10,1963692 +2023-01-29,NE,10,1963692 +2023-01-30,NE,8,1963692 +2023-01-31,NE,17,1963692 +2023-02-01,NE,4,1963692 +2023-02-02,NE,11,1963692 +2023-02-03,NE,9,1963692 +2023-02-04,NE,9,1963692 +2023-02-05,NE,12,1963692 +2023-02-06,NE,19,1963692 +2023-02-07,NE,13,1963692 +2023-02-08,NE,15,1963692 +2023-02-09,NE,14,1963692 +2023-02-10,NE,21,1963692 +2023-02-11,NE,10,1963692 +2023-02-12,NE,12,1963692 +2023-02-13,NE,19,1963692 +2023-02-14,NE,26,1963692 +2023-02-15,NE,21,1963692 +2023-02-16,NE,24,1963692 +2023-02-17,NE,24,1963692 +2023-02-18,NE,20,1963692 +2023-02-19,NE,21,1963692 +2023-02-20,NE,30,1963692 +2023-02-21,NE,27,1963692 +2023-02-22,NE,23,1963692 +2023-02-23,NE,32,1963692 +2023-02-24,NE,20,1963692 +2023-02-25,NE,15,1963692 +2023-02-26,NE,21,1963692 +2023-02-27,NE,27,1963692 +2023-02-28,NE,35,1963692 +2023-03-01,NE,25,1963692 +2023-03-02,NE,31,1963692 +2023-03-03,NE,33,1963692 +2023-03-04,NE,25,1963692 +2023-03-05,NE,18,1963692 +2023-03-06,NE,26,1963692 +2023-03-07,NE,25,1963692 +2023-03-08,NE,27,1963692 +2023-03-09,NE,19,1963692 +2023-03-10,NE,18,1963692 +2023-03-11,NE,15,1963692 +2023-03-12,NE,20,1963692 +2023-03-13,NE,25,1963692 +2023-03-14,NE,17,1963692 +2023-03-15,NE,27,1963692 +2023-03-16,NE,22,1963692 +2023-03-17,NE,25,1963692 +2023-03-18,NE,10,1963692 +2023-03-19,NE,19,1963692 +2023-03-20,NE,24,1963692 +2023-03-21,NE,20,1963692 +2023-03-22,NE,16,1963692 +2023-03-23,NE,18,1963692 +2023-03-24,NE,19,1963692 +2023-03-25,NE,22,1963692 +2023-03-26,NE,18,1963692 +2023-03-27,NE,33,1963692 +2023-03-28,NE,23,1963692 +2023-03-29,NE,18,1963692 +2023-03-30,NE,21,1963692 +2023-03-31,NE,20,1963692 +2023-04-01,NE,15,1963692 +2023-04-02,NE,23,1963692 +2023-04-03,NE,10,1963692 +2023-04-04,NE,15,1963692 +2023-04-05,NE,13,1963692 +2023-04-06,NE,15,1963692 +2023-04-07,NE,16,1963692 +2023-04-08,NE,5,1963692 +2023-04-09,NE,10,1963692 +2023-04-10,NE,16,1963692 +2023-04-11,NE,10,1963692 +2023-04-12,NE,7,1963692 +2023-04-13,NE,10,1963692 +2023-04-14,NE,14,1963692 +2023-04-15,NE,5,1963692 +2023-04-16,NE,7,1963692 +2023-04-17,NE,19,1963692 +2023-04-18,NE,6,1963692 +2023-04-19,NE,5,1963692 +2023-04-20,NE,8,1963692 +2023-04-21,NE,7,1963692 +2023-04-22,NE,13,1963692 +2023-04-23,NE,13,1963692 +2023-04-24,NE,9,1963692 +2023-04-25,NE,7,1963692 +2023-04-26,NE,5,1963692 +2023-04-27,NE,4,1963692 +2023-04-28,NE,7,1963692 +2023-04-29,NE,9,1963692 +2023-04-30,NE,3,1963692 +2023-05-01,NE,2,1963692 +2023-05-02,NE,5,1963692 +2023-05-03,NE,2,1963692 +2023-05-04,NE,3,1963692 +2023-05-05,NE,3,1963692 +2023-05-06,NE,3,1963692 +2023-05-07,NE,5,1963692 +2023-05-08,NE,7,1963692 +2023-05-09,NE,10,1963692 +2023-05-10,NE,5,1963692 +2023-05-11,NE,7,1963692 +2023-05-12,NE,7,1963692 +2023-05-13,NE,4,1963692 +2023-05-14,NE,3,1963692 +2023-05-15,NE,5,1963692 +2023-05-16,NE,3,1963692 +2023-05-17,NE,5,1963692 +2023-05-18,NE,9,1963692 +2023-05-19,NE,2,1963692 +2023-05-20,NE,1,1963692 +2023-05-21,NE,4,1963692 +2023-05-22,NE,6,1963692 +2023-05-23,NE,4,1963692 +2023-05-24,NE,3,1963692 +2023-05-25,NE,4,1963692 +2023-05-26,NE,4,1963692 +2023-05-27,NE,2,1963692 +2023-05-28,NE,2,1963692 +2023-05-29,NE,5,1963692 +2023-05-30,NE,5,1963692 +2023-05-31,NE,9,1963692 +2023-06-01,NE,3,1963692 +2023-06-02,NE,5,1963692 +2023-06-03,NE,5,1963692 +2023-06-04,NE,2,1963692 +2023-06-05,NE,1,1963692 +2023-06-06,NE,4,1963692 +2023-06-07,NE,2,1963692 +2023-06-08,NE,2,1963692 +2023-06-09,NE,1,1963692 +2023-06-10,NE,8,1963692 +2023-06-11,NE,4,1963692 +2023-06-12,NE,6,1963692 +2023-06-13,NE,6,1963692 +2023-06-14,NE,2,1963692 +2023-06-15,NE,4,1963692 +2023-06-16,NE,2,1963692 +2023-06-17,NE,7,1963692 +2023-06-18,NE,0,1963692 +2023-06-19,NE,1,1963692 +2023-06-20,NE,2,1963692 +2023-06-21,NE,1,1963692 +2023-06-22,NE,3,1963692 +2023-06-23,NE,2,1963692 +2023-06-24,NE,4,1963692 +2023-06-25,NE,3,1963692 +2023-06-26,NE,2,1963692 +2023-06-27,NE,0,1963692 +2023-06-28,NE,1,1963692 +2023-06-29,NE,0,1963692 +2023-06-30,NE,8,1963692 +2023-07-01,NE,2,1963692 +2023-07-02,NE,1,1963692 +2023-07-03,NE,0,1963692 +2023-07-04,NE,3,1963692 +2023-07-05,NE,3,1963692 +2023-07-06,NE,3,1963692 +2023-07-07,NE,1,1963692 +2023-07-08,NE,2,1963692 +2023-07-09,NE,1,1963692 +2023-07-10,NE,2,1963692 +2023-07-11,NE,5,1963692 +2023-07-12,NE,4,1963692 +2023-07-13,NE,4,1963692 +2023-07-14,NE,4,1963692 +2023-07-15,NE,4,1963692 +2023-07-16,NE,3,1963692 +2023-07-17,NE,8,1963692 +2023-07-18,NE,2,1963692 +2023-07-19,NE,4,1963692 +2023-07-20,NE,3,1963692 +2023-07-21,NE,7,1963692 +2023-07-22,NE,1,1963692 +2023-07-23,NE,5,1963692 +2023-07-24,NE,6,1963692 +2023-07-25,NE,3,1963692 +2023-07-26,NE,3,1963692 +2023-07-27,NE,5,1963692 +2023-07-28,NE,2,1963692 +2023-07-29,NE,3,1963692 +2023-07-30,NE,2,1963692 +2023-07-31,NE,7,1963692 +2023-08-01,NE,5,1963692 +2023-08-02,NE,1,1963692 +2023-08-03,NE,5,1963692 +2023-08-04,NE,5,1963692 +2023-08-05,NE,2,1963692 +2023-08-06,NE,6,1963692 +2023-08-07,NE,4,1963692 +2023-08-08,NE,8,1963692 +2023-08-09,NE,4,1963692 +2023-08-10,NE,6,1963692 +2023-08-11,NE,2,1963692 +2023-08-12,NE,2,1963692 +2023-08-13,NE,7,1963692 +2023-08-14,NE,6,1963692 +2023-08-15,NE,8,1963692 +2023-08-16,NE,10,1963692 +2023-08-17,NE,6,1963692 +2023-08-18,NE,6,1963692 +2023-08-19,NE,3,1963692 +2023-08-20,NE,8,1963692 +2023-08-21,NE,4,1963692 +2023-08-22,NE,8,1963692 +2023-08-23,NE,8,1963692 +2023-08-24,NE,12,1963692 +2023-08-25,NE,3,1963692 +2023-08-26,NE,5,1963692 +2023-08-27,NE,4,1963692 +2023-08-28,NE,5,1963692 +2023-08-29,NE,9,1963692 +2023-08-30,NE,8,1963692 +2023-08-31,NE,6,1963692 +2023-09-01,NE,5,1963692 +2023-09-02,NE,4,1963692 +2023-09-03,NE,8,1963692 +2023-09-04,NE,11,1963692 +2023-09-05,NE,8,1963692 +2023-09-06,NE,12,1963692 +2023-09-07,NE,11,1963692 +2023-09-08,NE,11,1963692 +2023-09-09,NE,13,1963692 +2023-09-10,NE,6,1963692 +2023-09-11,NE,8,1963692 +2023-09-12,NE,11,1963692 +2023-09-13,NE,10,1963692 +2023-09-14,NE,13,1963692 +2023-09-15,NE,14,1963692 +2023-09-16,NE,12,1963692 +2023-09-17,NE,8,1963692 +2023-09-18,NE,17,1963692 +2023-09-19,NE,12,1963692 +2023-09-20,NE,10,1963692 +2023-09-21,NE,11,1963692 +2023-09-22,NE,10,1963692 +2023-09-23,NE,10,1963692 +2023-09-24,NE,14,1963692 +2023-09-25,NE,15,1963692 +2023-09-26,NE,10,1963692 +2023-09-27,NE,15,1963692 +2023-09-28,NE,16,1963692 +2023-09-29,NE,11,1963692 +2023-09-30,NE,9,1963692 +2023-10-01,NE,8,1963692 +2023-10-02,NE,10,1963692 +2023-10-03,NE,12,1963692 +2023-10-04,NE,15,1963692 +2023-10-05,NE,6,1963692 +2023-10-06,NE,6,1963692 +2023-10-07,NE,7,1963692 +2023-10-08,NE,9,1963692 +2023-10-09,NE,14,1963692 +2023-10-10,NE,10,1963692 +2023-10-11,NE,9,1963692 +2023-10-12,NE,11,1963692 +2023-10-13,NE,7,1963692 +2023-10-14,NE,8,1963692 +2023-10-15,NE,4,1963692 +2023-10-16,NE,17,1963692 +2023-10-17,NE,12,1963692 +2023-10-18,NE,15,1963692 +2023-10-19,NE,15,1963692 +2023-10-20,NE,12,1963692 +2023-10-21,NE,11,1963692 +2023-10-22,NE,20,1963692 +2023-10-23,NE,21,1963692 +2023-10-24,NE,15,1963692 +2023-10-25,NE,25,1963692 +2023-10-26,NE,17,1963692 +2023-10-27,NE,20,1963692 +2023-10-28,NE,13,1963692 +2023-10-29,NE,19,1963692 +2023-10-30,NE,21,1963692 +2023-10-31,NE,16,1963692 +2023-11-01,NE,18,1963692 +2023-11-02,NE,16,1963692 +2023-11-03,NE,14,1963692 +2023-11-04,NE,16,1963692 +2023-11-05,NE,28,1963692 +2023-11-06,NE,38,1963692 +2023-11-07,NE,31,1963692 +2023-11-08,NE,24,1963692 +2023-11-09,NE,12,1963692 +2023-11-10,NE,14,1963692 +2023-11-11,NE,14,1963692 +2023-11-12,NE,22,1963692 +2023-11-13,NE,22,1963692 +2023-11-14,NE,21,1963692 +2023-11-15,NE,21,1963692 +2023-11-16,NE,27,1963692 +2023-11-17,NE,19,1963692 +2023-11-18,NE,14,1963692 +2023-11-19,NE,28,1963692 +2023-11-20,NE,29,1963692 +2023-11-21,NE,24,1963692 +2023-11-22,NE,22,1963692 +2023-11-23,NE,26,1963692 +2023-11-24,NE,24,1963692 +2023-11-25,NE,26,1963692 +2023-11-26,NE,29,1963692 +2023-11-27,NE,30,1963692 +2023-11-28,NE,23,1963692 +2023-11-29,NE,22,1963692 +2023-11-30,NE,25,1963692 +2023-12-01,NE,28,1963692 +2023-12-02,NE,26,1963692 +2023-12-03,NE,19,1963692 +2023-12-04,NE,40,1963692 +2023-12-05,NE,30,1963692 +2023-12-06,NE,30,1963692 +2023-12-07,NE,21,1963692 +2023-12-08,NE,22,1963692 +2023-12-09,NE,22,1963692 +2023-12-10,NE,37,1963692 +2023-12-11,NE,36,1963692 +2023-12-12,NE,37,1963692 +2023-12-13,NE,42,1963692 +2023-12-14,NE,33,1963692 +2023-12-15,NE,41,1963692 +2023-12-16,NE,29,1963692 +2023-12-17,NE,44,1963692 +2023-12-18,NE,41,1963692 +2023-12-19,NE,27,1963692 +2023-12-20,NE,26,1963692 +2023-12-21,NE,44,1963692 +2023-12-22,NE,33,1963692 +2023-12-23,NE,34,1963692 +2023-12-24,NE,31,1963692 +2023-12-25,NE,22,1963692 +2023-12-26,NE,33,1963692 +2023-12-27,NE,38,1963692 +2023-12-28,NE,31,1963692 +2023-12-29,NE,34,1963692 +2023-12-30,NE,33,1963692 +2023-12-31,NE,31,1963692 +2024-01-01,NE,29,1963692 +2024-01-02,NE,25,1963692 +2024-01-03,NE,30,1963692 +2024-01-04,NE,34,1963692 +2024-01-05,NE,35,1963692 +2024-01-06,NE,20,1963692 +2024-01-07,NE,24,1963692 +2024-01-08,NE,26,1963692 +2024-01-09,NE,26,1963692 +2024-01-10,NE,31,1963692 +2024-01-11,NE,25,1963692 +2024-01-12,NE,17,1963692 +2024-01-13,NE,14,1963692 +2024-01-14,NE,12,1963692 +2024-01-15,NE,18,1963692 +2024-01-16,NE,24,1963692 +2024-01-17,NE,19,1963692 +2024-01-18,NE,21,1963692 +2024-01-19,NE,18,1963692 +2022-12-31,NH,12,1388992 +2023-01-01,NH,21,1388992 +2023-01-02,NH,17,1388992 +2023-01-03,NH,28,1388992 +2023-01-04,NH,21,1388992 +2023-01-05,NH,27,1388992 +2023-01-06,NH,29,1388992 +2023-01-07,NH,23,1388992 +2023-01-08,NH,22,1388992 +2023-01-09,NH,20,1388992 +2023-01-10,NH,29,1388992 +2023-01-11,NH,28,1388992 +2023-01-12,NH,22,1388992 +2023-01-13,NH,19,1388992 +2023-01-14,NH,22,1388992 +2023-01-15,NH,22,1388992 +2023-01-16,NH,22,1388992 +2023-01-17,NH,21,1388992 +2023-01-18,NH,12,1388992 +2023-01-19,NH,20,1388992 +2023-01-20,NH,10,1388992 +2023-01-21,NH,6,1388992 +2023-01-22,NH,9,1388992 +2023-01-23,NH,10,1388992 +2023-01-24,NH,16,1388992 +2023-01-25,NH,7,1388992 +2023-01-26,NH,6,1388992 +2023-01-27,NH,11,1388992 +2023-01-28,NH,8,1388992 +2023-01-29,NH,18,1388992 +2023-01-30,NH,19,1388992 +2023-01-31,NH,17,1388992 +2023-02-01,NH,18,1388992 +2023-02-02,NH,9,1388992 +2023-02-03,NH,7,1388992 +2023-02-04,NH,11,1388992 +2023-02-05,NH,11,1388992 +2023-02-06,NH,12,1388992 +2023-02-07,NH,9,1388992 +2023-02-08,NH,16,1388992 +2023-02-09,NH,14,1388992 +2023-02-10,NH,13,1388992 +2023-02-11,NH,11,1388992 +2023-02-12,NH,15,1388992 +2023-02-13,NH,14,1388992 +2023-02-14,NH,14,1388992 +2023-02-15,NH,20,1388992 +2023-02-16,NH,10,1388992 +2023-02-17,NH,8,1388992 +2023-02-18,NH,8,1388992 +2023-02-19,NH,10,1388992 +2023-02-20,NH,20,1388992 +2023-02-21,NH,10,1388992 +2023-02-22,NH,5,1388992 +2023-02-23,NH,7,1388992 +2023-02-24,NH,16,1388992 +2023-02-25,NH,13,1388992 +2023-02-26,NH,17,1388992 +2023-02-27,NH,20,1388992 +2023-02-28,NH,13,1388992 +2023-03-01,NH,12,1388992 +2023-03-02,NH,21,1388992 +2023-03-03,NH,10,1388992 +2023-03-04,NH,7,1388992 +2023-03-05,NH,16,1388992 +2023-03-06,NH,14,1388992 +2023-03-07,NH,9,1388992 +2023-03-08,NH,8,1388992 +2023-03-09,NH,5,1388992 +2023-03-10,NH,10,1388992 +2023-03-11,NH,12,1388992 +2023-03-12,NH,11,1388992 +2023-03-13,NH,5,1388992 +2023-03-14,NH,5,1388992 +2023-03-15,NH,12,1388992 +2023-03-16,NH,14,1388992 +2023-03-17,NH,6,1388992 +2023-03-18,NH,6,1388992 +2023-03-19,NH,10,1388992 +2023-03-20,NH,10,1388992 +2023-03-21,NH,7,1388992 +2023-03-22,NH,7,1388992 +2023-03-23,NH,5,1388992 +2023-03-24,NH,5,1388992 +2023-03-25,NH,4,1388992 +2023-03-26,NH,6,1388992 +2023-03-27,NH,10,1388992 +2023-03-28,NH,8,1388992 +2023-03-29,NH,5,1388992 +2023-03-30,NH,9,1388992 +2023-03-31,NH,8,1388992 +2023-04-01,NH,12,1388992 +2023-04-02,NH,9,1388992 +2023-04-03,NH,5,1388992 +2023-04-04,NH,6,1388992 +2023-04-05,NH,5,1388992 +2023-04-06,NH,8,1388992 +2023-04-07,NH,9,1388992 +2023-04-08,NH,3,1388992 +2023-04-09,NH,5,1388992 +2023-04-10,NH,6,1388992 +2023-04-11,NH,5,1388992 +2023-04-12,NH,5,1388992 +2023-04-13,NH,4,1388992 +2023-04-14,NH,12,1388992 +2023-04-15,NH,7,1388992 +2023-04-16,NH,9,1388992 +2023-04-17,NH,6,1388992 +2023-04-18,NH,9,1388992 +2023-04-19,NH,2,1388992 +2023-04-20,NH,7,1388992 +2023-04-21,NH,9,1388992 +2023-04-22,NH,6,1388992 +2023-04-23,NH,3,1388992 +2023-04-24,NH,12,1388992 +2023-04-25,NH,7,1388992 +2023-04-26,NH,10,1388992 +2023-04-27,NH,9,1388992 +2023-04-28,NH,8,1388992 +2023-04-29,NH,5,1388992 +2023-04-30,NH,3,1388992 +2023-05-01,NH,9,1388992 +2023-05-02,NH,8,1388992 +2023-05-03,NH,9,1388992 +2023-05-04,NH,3,1388992 +2023-05-05,NH,8,1388992 +2023-05-06,NH,4,1388992 +2023-05-07,NH,5,1388992 +2023-05-08,NH,6,1388992 +2023-05-09,NH,5,1388992 +2023-05-10,NH,6,1388992 +2023-05-11,NH,4,1388992 +2023-05-12,NH,6,1388992 +2023-05-13,NH,2,1388992 +2023-05-14,NH,3,1388992 +2023-05-15,NH,8,1388992 +2023-05-16,NH,7,1388992 +2023-05-17,NH,2,1388992 +2023-05-18,NH,6,1388992 +2023-05-19,NH,6,1388992 +2023-05-20,NH,9,1388992 +2023-05-21,NH,2,1388992 +2023-05-22,NH,5,1388992 +2023-05-23,NH,5,1388992 +2023-05-24,NH,6,1388992 +2023-05-25,NH,2,1388992 +2023-05-26,NH,5,1388992 +2023-05-27,NH,3,1388992 +2023-05-28,NH,3,1388992 +2023-05-29,NH,5,1388992 +2023-05-30,NH,6,1388992 +2023-05-31,NH,4,1388992 +2023-06-01,NH,5,1388992 +2023-06-02,NH,2,1388992 +2023-06-03,NH,2,1388992 +2023-06-04,NH,4,1388992 +2023-06-05,NH,3,1388992 +2023-06-06,NH,3,1388992 +2023-06-07,NH,4,1388992 +2023-06-08,NH,7,1388992 +2023-06-09,NH,6,1388992 +2023-06-10,NH,4,1388992 +2023-06-11,NH,1,1388992 +2023-06-12,NH,6,1388992 +2023-06-13,NH,5,1388992 +2023-06-14,NH,4,1388992 +2023-06-15,NH,6,1388992 +2023-06-16,NH,2,1388992 +2023-06-17,NH,2,1388992 +2023-06-18,NH,3,1388992 +2023-06-19,NH,7,1388992 +2023-06-20,NH,1,1388992 +2023-06-21,NH,2,1388992 +2023-06-22,NH,4,1388992 +2023-06-23,NH,6,1388992 +2023-06-24,NH,4,1388992 +2023-06-25,NH,1,1388992 +2023-06-26,NH,2,1388992 +2023-06-27,NH,5,1388992 +2023-06-28,NH,8,1388992 +2023-06-29,NH,3,1388992 +2023-06-30,NH,6,1388992 +2023-07-01,NH,6,1388992 +2023-07-02,NH,7,1388992 +2023-07-03,NH,8,1388992 +2023-07-04,NH,2,1388992 +2023-07-05,NH,7,1388992 +2023-07-06,NH,6,1388992 +2023-07-07,NH,5,1388992 +2023-07-08,NH,2,1388992 +2023-07-09,NH,2,1388992 +2023-07-10,NH,3,1388992 +2023-07-11,NH,3,1388992 +2023-07-12,NH,4,1388992 +2023-07-13,NH,3,1388992 +2023-07-14,NH,5,1388992 +2023-07-15,NH,7,1388992 +2023-07-16,NH,2,1388992 +2023-07-17,NH,4,1388992 +2023-07-18,NH,1,1388992 +2023-07-19,NH,3,1388992 +2023-07-20,NH,7,1388992 +2023-07-21,NH,4,1388992 +2023-07-22,NH,5,1388992 +2023-07-23,NH,7,1388992 +2023-07-24,NH,7,1388992 +2023-07-25,NH,6,1388992 +2023-07-26,NH,8,1388992 +2023-07-27,NH,9,1388992 +2023-07-28,NH,13,1388992 +2023-07-29,NH,4,1388992 +2023-07-30,NH,5,1388992 +2023-07-31,NH,7,1388992 +2023-08-01,NH,9,1388992 +2023-08-02,NH,9,1388992 +2023-08-03,NH,4,1388992 +2023-08-04,NH,8,1388992 +2023-08-05,NH,5,1388992 +2023-08-06,NH,4,1388992 +2023-08-07,NH,7,1388992 +2023-08-08,NH,8,1388992 +2023-08-09,NH,12,1388992 +2023-08-10,NH,14,1388992 +2023-08-11,NH,4,1388992 +2023-08-12,NH,10,1388992 +2023-08-13,NH,5,1388992 +2023-08-14,NH,9,1388992 +2023-08-15,NH,5,1388992 +2023-08-16,NH,5,1388992 +2023-08-17,NH,3,1388992 +2023-08-18,NH,3,1388992 +2023-08-19,NH,5,1388992 +2023-08-20,NH,4,1388992 +2023-08-21,NH,6,1388992 +2023-08-22,NH,4,1388992 +2023-08-23,NH,9,1388992 +2023-08-24,NH,7,1388992 +2023-08-25,NH,8,1388992 +2023-08-26,NH,11,1388992 +2023-08-27,NH,6,1388992 +2023-08-28,NH,5,1388992 +2023-08-29,NH,12,1388992 +2023-08-30,NH,6,1388992 +2023-08-31,NH,9,1388992 +2023-09-01,NH,8,1388992 +2023-09-02,NH,5,1388992 +2023-09-03,NH,4,1388992 +2023-09-04,NH,6,1388992 +2023-09-05,NH,7,1388992 +2023-09-06,NH,7,1388992 +2023-09-07,NH,8,1388992 +2023-09-08,NH,13,1388992 +2023-09-09,NH,9,1388992 +2023-09-10,NH,9,1388992 +2023-09-11,NH,8,1388992 +2023-09-12,NH,38,1388992 +2023-09-13,NH,38,1388992 +2023-09-14,NH,45,1388992 +2023-09-15,NH,49,1388992 +2023-09-16,NH,41,1388992 +2023-09-17,NH,10,1388992 +2023-09-18,NH,17,1388992 +2023-09-19,NH,13,1388992 +2023-09-20,NH,13,1388992 +2023-09-21,NH,17,1388992 +2023-09-22,NH,16,1388992 +2023-09-23,NH,9,1388992 +2023-09-24,NH,6,1388992 +2023-09-25,NH,10,1388992 +2023-09-26,NH,15,1388992 +2023-09-27,NH,12,1388992 +2023-09-28,NH,8,1388992 +2023-09-29,NH,16,1388992 +2023-09-30,NH,11,1388992 +2023-10-01,NH,12,1388992 +2023-10-02,NH,17,1388992 +2023-10-03,NH,19,1388992 +2023-10-04,NH,15,1388992 +2023-10-05,NH,18,1388992 +2023-10-06,NH,16,1388992 +2023-10-07,NH,10,1388992 +2023-10-08,NH,9,1388992 +2023-10-09,NH,9,1388992 +2023-10-10,NH,17,1388992 +2023-10-11,NH,16,1388992 +2023-10-12,NH,15,1388992 +2023-10-13,NH,7,1388992 +2023-10-14,NH,6,1388992 +2023-10-15,NH,5,1388992 +2023-10-16,NH,11,1388992 +2023-10-17,NH,11,1388992 +2023-10-18,NH,10,1388992 +2023-10-19,NH,11,1388992 +2023-10-20,NH,15,1388992 +2023-10-21,NH,8,1388992 +2023-10-22,NH,4,1388992 +2023-10-23,NH,14,1388992 +2023-10-24,NH,11,1388992 +2023-10-25,NH,14,1388992 +2023-10-26,NH,14,1388992 +2023-10-27,NH,14,1388992 +2023-10-28,NH,7,1388992 +2023-10-29,NH,10,1388992 +2023-10-30,NH,17,1388992 +2023-10-31,NH,5,1388992 +2023-11-01,NH,12,1388992 +2023-11-02,NH,10,1388992 +2023-11-03,NH,6,1388992 +2023-11-04,NH,5,1388992 +2023-11-05,NH,5,1388992 +2023-11-06,NH,13,1388992 +2023-11-07,NH,10,1388992 +2023-11-08,NH,6,1388992 +2023-11-09,NH,17,1388992 +2023-11-10,NH,15,1388992 +2023-11-11,NH,6,1388992 +2023-11-12,NH,6,1388992 +2023-11-13,NH,12,1388992 +2023-11-14,NH,5,1388992 +2023-11-15,NH,11,1388992 +2023-11-16,NH,9,1388992 +2023-11-17,NH,10,1388992 +2023-11-18,NH,5,1388992 +2023-11-19,NH,9,1388992 +2023-11-20,NH,7,1388992 +2023-11-21,NH,13,1388992 +2023-11-22,NH,8,1388992 +2023-11-23,NH,8,1388992 +2023-11-24,NH,18,1388992 +2023-11-25,NH,11,1388992 +2023-11-26,NH,12,1388992 +2023-11-27,NH,16,1388992 +2023-11-28,NH,13,1388992 +2023-11-29,NH,11,1388992 +2023-11-30,NH,14,1388992 +2023-12-01,NH,14,1388992 +2023-12-02,NH,10,1388992 +2023-12-03,NH,20,1388992 +2023-12-04,NH,11,1388992 +2023-12-05,NH,11,1388992 +2023-12-06,NH,14,1388992 +2023-12-07,NH,15,1388992 +2023-12-08,NH,12,1388992 +2023-12-09,NH,11,1388992 +2023-12-10,NH,16,1388992 +2023-12-11,NH,9,1388992 +2023-12-12,NH,15,1388992 +2023-12-13,NH,23,1388992 +2023-12-14,NH,15,1388992 +2023-12-15,NH,19,1388992 +2023-12-16,NH,11,1388992 +2023-12-17,NH,12,1388992 +2023-12-18,NH,21,1388992 +2023-12-19,NH,21,1388992 +2023-12-20,NH,23,1388992 +2023-12-21,NH,16,1388992 +2023-12-22,NH,27,1388992 +2023-12-23,NH,14,1388992 +2023-12-24,NH,10,1388992 +2023-12-25,NH,15,1388992 +2023-12-26,NH,21,1388992 +2023-12-27,NH,21,1388992 +2023-12-28,NH,22,1388992 +2023-12-29,NH,25,1388992 +2023-12-30,NH,26,1388992 +2023-12-31,NH,28,1388992 +2024-01-01,NH,22,1388992 +2024-01-02,NH,34,1388992 +2024-01-03,NH,28,1388992 +2024-01-04,NH,28,1388992 +2024-01-05,NH,17,1388992 +2024-01-06,NH,25,1388992 +2024-01-07,NH,15,1388992 +2024-01-08,NH,14,1388992 +2024-01-09,NH,21,1388992 +2024-01-10,NH,24,1388992 +2024-01-11,NH,13,1388992 +2024-01-12,NH,23,1388992 +2024-01-13,NH,14,1388992 +2024-01-14,NH,15,1388992 +2024-01-15,NH,19,1388992 +2024-01-16,NH,9,1388992 +2024-01-17,NH,17,1388992 +2024-01-18,NH,6,1388992 +2024-01-19,NH,6,1388992 +2022-12-31,NJ,209,9267130 +2023-01-01,NJ,231,9267130 +2023-01-02,NJ,270,9267130 +2023-01-03,NJ,297,9267130 +2023-01-04,NJ,240,9267130 +2023-01-05,NJ,305,9267130 +2023-01-06,NJ,251,9267130 +2023-01-07,NJ,215,9267130 +2023-01-08,NJ,201,9267130 +2023-01-09,NJ,234,9267130 +2023-01-10,NJ,267,9267130 +2023-01-11,NJ,226,9267130 +2023-01-12,NJ,276,9267130 +2023-01-13,NJ,210,9267130 +2023-01-14,NJ,190,9267130 +2023-01-15,NJ,154,9267130 +2023-01-16,NJ,200,9267130 +2023-01-17,NJ,229,9267130 +2023-01-18,NJ,238,9267130 +2023-01-19,NJ,230,9267130 +2023-01-20,NJ,224,9267130 +2023-01-21,NJ,196,9267130 +2023-01-22,NJ,148,9267130 +2023-01-23,NJ,188,9267130 +2023-01-24,NJ,207,9267130 +2023-01-25,NJ,186,9267130 +2023-01-26,NJ,169,9267130 +2023-01-27,NJ,164,9267130 +2023-01-28,NJ,173,9267130 +2023-01-29,NJ,136,9267130 +2023-01-30,NJ,195,9267130 +2023-01-31,NJ,179,9267130 +2023-02-01,NJ,185,9267130 +2023-02-02,NJ,137,9267130 +2023-02-03,NJ,144,9267130 +2023-02-04,NJ,142,9267130 +2023-02-05,NJ,143,9267130 +2023-02-06,NJ,166,9267130 +2023-02-07,NJ,177,9267130 +2023-02-08,NJ,197,9267130 +2023-02-09,NJ,178,9267130 +2023-02-10,NJ,171,9267130 +2023-02-11,NJ,141,9267130 +2023-02-12,NJ,107,9267130 +2023-02-13,NJ,167,9267130 +2023-02-14,NJ,173,9267130 +2023-02-15,NJ,158,9267130 +2023-02-16,NJ,153,9267130 +2023-02-17,NJ,130,9267130 +2023-02-18,NJ,109,9267130 +2023-02-19,NJ,100,9267130 +2023-02-20,NJ,118,9267130 +2023-02-21,NJ,126,9267130 +2023-02-22,NJ,143,9267130 +2023-02-23,NJ,119,9267130 +2023-02-24,NJ,79,9267130 +2023-02-25,NJ,64,9267130 +2023-02-26,NJ,92,9267130 +2023-02-27,NJ,82,9267130 +2023-02-28,NJ,80,9267130 +2023-03-01,NJ,97,9267130 +2023-03-02,NJ,89,9267130 +2023-03-03,NJ,77,9267130 +2023-03-04,NJ,77,9267130 +2023-03-05,NJ,79,9267130 +2023-03-06,NJ,84,9267130 +2023-03-07,NJ,80,9267130 +2023-03-08,NJ,89,9267130 +2023-03-09,NJ,87,9267130 +2023-03-10,NJ,94,9267130 +2023-03-11,NJ,58,9267130 +2023-03-12,NJ,57,9267130 +2023-03-13,NJ,69,9267130 +2023-03-14,NJ,68,9267130 +2023-03-15,NJ,83,9267130 +2023-03-16,NJ,73,9267130 +2023-03-17,NJ,77,9267130 +2023-03-18,NJ,55,9267130 +2023-03-19,NJ,46,9267130 +2023-03-20,NJ,61,9267130 +2023-03-21,NJ,68,9267130 +2023-03-22,NJ,76,9267130 +2023-03-23,NJ,71,9267130 +2023-03-24,NJ,66,9267130 +2023-03-25,NJ,63,9267130 +2023-03-26,NJ,64,9267130 +2023-03-27,NJ,46,9267130 +2023-03-28,NJ,52,9267130 +2023-03-29,NJ,51,9267130 +2023-03-30,NJ,60,9267130 +2023-03-31,NJ,36,9267130 +2023-04-01,NJ,40,9267130 +2023-04-02,NJ,45,9267130 +2023-04-03,NJ,60,9267130 +2023-04-04,NJ,41,9267130 +2023-04-05,NJ,44,9267130 +2023-04-06,NJ,45,9267130 +2023-04-07,NJ,32,9267130 +2023-04-08,NJ,37,9267130 +2023-04-09,NJ,39,9267130 +2023-04-10,NJ,31,9267130 +2023-04-11,NJ,39,9267130 +2023-04-12,NJ,44,9267130 +2023-04-13,NJ,37,9267130 +2023-04-14,NJ,43,9267130 +2023-04-15,NJ,38,9267130 +2023-04-16,NJ,34,9267130 +2023-04-17,NJ,28,9267130 +2023-04-18,NJ,40,9267130 +2023-04-19,NJ,28,9267130 +2023-04-20,NJ,31,9267130 +2023-04-21,NJ,36,9267130 +2023-04-22,NJ,25,9267130 +2023-04-23,NJ,22,9267130 +2023-04-24,NJ,32,9267130 +2023-04-25,NJ,25,9267130 +2023-04-26,NJ,20,9267130 +2023-04-27,NJ,28,9267130 +2023-04-28,NJ,21,9267130 +2023-04-29,NJ,20,9267130 +2023-04-30,NJ,25,9267130 +2023-05-01,NJ,32,9267130 +2023-05-02,NJ,26,9267130 +2023-05-03,NJ,25,9267130 +2023-05-04,NJ,28,9267130 +2023-05-05,NJ,27,9267130 +2023-05-06,NJ,27,9267130 +2023-05-07,NJ,24,9267130 +2023-05-08,NJ,27,9267130 +2023-05-09,NJ,26,9267130 +2023-05-10,NJ,43,9267130 +2023-05-11,NJ,25,9267130 +2023-05-12,NJ,19,9267130 +2023-05-13,NJ,23,9267130 +2023-05-14,NJ,19,9267130 +2023-05-15,NJ,19,9267130 +2023-05-16,NJ,23,9267130 +2023-05-17,NJ,20,9267130 +2023-05-18,NJ,15,9267130 +2023-05-19,NJ,14,9267130 +2023-05-20,NJ,13,9267130 +2023-05-21,NJ,16,9267130 +2023-05-22,NJ,24,9267130 +2023-05-23,NJ,18,9267130 +2023-05-24,NJ,25,9267130 +2023-05-25,NJ,30,9267130 +2023-05-26,NJ,21,9267130 +2023-05-27,NJ,27,9267130 +2023-05-28,NJ,31,9267130 +2023-05-29,NJ,22,9267130 +2023-05-30,NJ,23,9267130 +2023-05-31,NJ,32,9267130 +2023-06-01,NJ,30,9267130 +2023-06-02,NJ,30,9267130 +2023-06-03,NJ,23,9267130 +2023-06-04,NJ,22,9267130 +2023-06-05,NJ,26,9267130 +2023-06-06,NJ,27,9267130 +2023-06-07,NJ,23,9267130 +2023-06-08,NJ,15,9267130 +2023-06-09,NJ,12,9267130 +2023-06-10,NJ,20,9267130 +2023-06-11,NJ,17,9267130 +2023-06-12,NJ,20,9267130 +2023-06-13,NJ,23,9267130 +2023-06-14,NJ,26,9267130 +2023-06-15,NJ,27,9267130 +2023-06-16,NJ,27,9267130 +2023-06-17,NJ,22,9267130 +2023-06-18,NJ,24,9267130 +2023-06-19,NJ,15,9267130 +2023-06-20,NJ,12,9267130 +2023-06-21,NJ,27,9267130 +2023-06-22,NJ,23,9267130 +2023-06-23,NJ,22,9267130 +2023-06-24,NJ,19,9267130 +2023-06-25,NJ,21,9267130 +2023-06-26,NJ,24,9267130 +2023-06-27,NJ,18,9267130 +2023-06-28,NJ,18,9267130 +2023-06-29,NJ,20,9267130 +2023-06-30,NJ,22,9267130 +2023-07-01,NJ,13,9267130 +2023-07-02,NJ,17,9267130 +2023-07-03,NJ,17,9267130 +2023-07-04,NJ,17,9267130 +2023-07-05,NJ,16,9267130 +2023-07-06,NJ,24,9267130 +2023-07-07,NJ,15,9267130 +2023-07-08,NJ,13,9267130 +2023-07-09,NJ,23,9267130 +2023-07-10,NJ,16,9267130 +2023-07-11,NJ,20,9267130 +2023-07-12,NJ,20,9267130 +2023-07-13,NJ,17,9267130 +2023-07-14,NJ,20,9267130 +2023-07-15,NJ,18,9267130 +2023-07-16,NJ,30,9267130 +2023-07-17,NJ,21,9267130 +2023-07-18,NJ,20,9267130 +2023-07-19,NJ,22,9267130 +2023-07-20,NJ,28,9267130 +2023-07-21,NJ,27,9267130 +2023-07-22,NJ,23,9267130 +2023-07-23,NJ,31,9267130 +2023-07-24,NJ,18,9267130 +2023-07-25,NJ,31,9267130 +2023-07-26,NJ,42,9267130 +2023-07-27,NJ,23,9267130 +2023-07-28,NJ,35,9267130 +2023-07-29,NJ,40,9267130 +2023-07-30,NJ,29,9267130 +2023-07-31,NJ,31,9267130 +2023-08-01,NJ,24,9267130 +2023-08-02,NJ,36,9267130 +2023-08-03,NJ,36,9267130 +2023-08-04,NJ,52,9267130 +2023-08-05,NJ,34,9267130 +2023-08-06,NJ,23,9267130 +2023-08-07,NJ,39,9267130 +2023-08-08,NJ,44,9267130 +2023-08-09,NJ,54,9267130 +2023-08-10,NJ,46,9267130 +2023-08-11,NJ,46,9267130 +2023-08-12,NJ,25,9267130 +2023-08-13,NJ,45,9267130 +2023-08-14,NJ,50,9267130 +2023-08-15,NJ,46,9267130 +2023-08-16,NJ,37,9267130 +2023-08-17,NJ,41,9267130 +2023-08-18,NJ,50,9267130 +2023-08-19,NJ,48,9267130 +2023-08-20,NJ,42,9267130 +2023-08-21,NJ,47,9267130 +2023-08-22,NJ,49,9267130 +2023-08-23,NJ,40,9267130 +2023-08-24,NJ,44,9267130 +2023-08-25,NJ,45,9267130 +2023-08-26,NJ,46,9267130 +2023-08-27,NJ,51,9267130 +2023-08-28,NJ,59,9267130 +2023-08-29,NJ,49,9267130 +2023-08-30,NJ,46,9267130 +2023-08-31,NJ,50,9267130 +2023-09-01,NJ,55,9267130 +2023-09-02,NJ,46,9267130 +2023-09-03,NJ,57,9267130 +2023-09-04,NJ,55,9267130 +2023-09-05,NJ,91,9267130 +2023-09-06,NJ,79,9267130 +2023-09-07,NJ,61,9267130 +2023-09-08,NJ,61,9267130 +2023-09-09,NJ,48,9267130 +2023-09-10,NJ,57,9267130 +2023-09-11,NJ,65,9267130 +2023-09-12,NJ,59,9267130 +2023-09-13,NJ,70,9267130 +2023-09-14,NJ,62,9267130 +2023-09-15,NJ,85,9267130 +2023-09-16,NJ,60,9267130 +2023-09-17,NJ,54,9267130 +2023-09-18,NJ,96,9267130 +2023-09-19,NJ,67,9267130 +2023-09-20,NJ,88,9267130 +2023-09-21,NJ,76,9267130 +2023-09-22,NJ,84,9267130 +2023-09-23,NJ,76,9267130 +2023-09-24,NJ,85,9267130 +2023-09-25,NJ,92,9267130 +2023-09-26,NJ,84,9267130 +2023-09-27,NJ,100,9267130 +2023-09-28,NJ,79,9267130 +2023-09-29,NJ,103,9267130 +2023-09-30,NJ,73,9267130 +2023-10-01,NJ,121,9267130 +2023-10-02,NJ,99,9267130 +2023-10-03,NJ,111,9267130 +2023-10-04,NJ,103,9267130 +2023-10-05,NJ,89,9267130 +2023-10-06,NJ,93,9267130 +2023-10-07,NJ,83,9267130 +2023-10-08,NJ,78,9267130 +2023-10-09,NJ,96,9267130 +2023-10-10,NJ,79,9267130 +2023-10-11,NJ,80,9267130 +2023-10-12,NJ,84,9267130 +2023-10-13,NJ,88,9267130 +2023-10-14,NJ,83,9267130 +2023-10-15,NJ,71,9267130 +2023-10-16,NJ,82,9267130 +2023-10-17,NJ,86,9267130 +2023-10-18,NJ,63,9267130 +2023-10-19,NJ,68,9267130 +2023-10-20,NJ,89,9267130 +2023-10-21,NJ,77,9267130 +2023-10-22,NJ,53,9267130 +2023-10-23,NJ,68,9267130 +2023-10-24,NJ,61,9267130 +2023-10-25,NJ,65,9267130 +2023-10-26,NJ,61,9267130 +2023-10-27,NJ,70,9267130 +2023-10-28,NJ,65,9267130 +2023-10-29,NJ,54,9267130 +2023-10-30,NJ,60,9267130 +2023-10-31,NJ,56,9267130 +2023-11-01,NJ,57,9267130 +2023-11-02,NJ,64,9267130 +2023-11-03,NJ,45,9267130 +2023-11-04,NJ,52,9267130 +2023-11-05,NJ,56,9267130 +2023-11-06,NJ,64,9267130 +2023-11-07,NJ,75,9267130 +2023-11-08,NJ,67,9267130 +2023-11-09,NJ,71,9267130 +2023-11-10,NJ,54,9267130 +2023-11-11,NJ,58,9267130 +2023-11-12,NJ,59,9267130 +2023-11-13,NJ,68,9267130 +2023-11-14,NJ,68,9267130 +2023-11-15,NJ,64,9267130 +2023-11-16,NJ,56,9267130 +2023-11-17,NJ,56,9267130 +2023-11-18,NJ,66,9267130 +2023-11-19,NJ,68,9267130 +2023-11-20,NJ,71,9267130 +2023-11-21,NJ,73,9267130 +2023-11-22,NJ,73,9267130 +2023-11-23,NJ,47,9267130 +2023-11-24,NJ,86,9267130 +2023-11-25,NJ,70,9267130 +2023-11-26,NJ,67,9267130 +2023-11-27,NJ,106,9267130 +2023-11-28,NJ,96,9267130 +2023-11-29,NJ,99,9267130 +2023-11-30,NJ,97,9267130 +2023-12-01,NJ,87,9267130 +2023-12-02,NJ,83,9267130 +2023-12-03,NJ,94,9267130 +2023-12-04,NJ,99,9267130 +2023-12-05,NJ,109,9267130 +2023-12-06,NJ,83,9267130 +2023-12-07,NJ,74,9267130 +2023-12-08,NJ,103,9267130 +2023-12-09,NJ,93,9267130 +2023-12-10,NJ,89,9267130 +2023-12-11,NJ,113,9267130 +2023-12-12,NJ,127,9267130 +2023-12-13,NJ,122,9267130 +2023-12-14,NJ,112,9267130 +2023-12-15,NJ,101,9267130 +2023-12-16,NJ,102,9267130 +2023-12-17,NJ,108,9267130 +2023-12-18,NJ,165,9267130 +2023-12-19,NJ,159,9267130 +2023-12-20,NJ,157,9267130 +2023-12-21,NJ,143,9267130 +2023-12-22,NJ,148,9267130 +2023-12-23,NJ,130,9267130 +2023-12-24,NJ,146,9267130 +2023-12-25,NJ,137,9267130 +2023-12-26,NJ,212,9267130 +2023-12-27,NJ,251,9267130 +2023-12-28,NJ,275,9267130 +2023-12-29,NJ,230,9267130 +2023-12-30,NJ,217,9267130 +2023-12-31,NJ,191,9267130 +2024-01-01,NJ,206,9267130 +2024-01-02,NJ,205,9267130 +2024-01-03,NJ,233,9267130 +2024-01-04,NJ,205,9267130 +2024-01-05,NJ,185,9267130 +2024-01-06,NJ,178,9267130 +2024-01-07,NJ,187,9267130 +2024-01-08,NJ,206,9267130 +2024-01-09,NJ,177,9267130 +2024-01-10,NJ,207,9267130 +2024-01-11,NJ,171,9267130 +2024-01-12,NJ,186,9267130 +2024-01-13,NJ,195,9267130 +2024-01-14,NJ,137,9267130 +2024-01-15,NJ,179,9267130 +2024-01-16,NJ,152,9267130 +2024-01-17,NJ,159,9267130 +2024-01-18,NJ,136,9267130 +2024-01-19,NJ,129,9267130 +2022-12-31,NM,21,2115877 +2023-01-01,NM,2,2115877 +2023-01-02,NM,17,2115877 +2023-01-03,NM,21,2115877 +2023-01-04,NM,21,2115877 +2023-01-05,NM,11,2115877 +2023-01-06,NM,13,2115877 +2023-01-07,NM,20,2115877 +2023-01-08,NM,11,2115877 +2023-01-09,NM,25,2115877 +2023-01-10,NM,14,2115877 +2023-01-11,NM,16,2115877 +2023-01-12,NM,14,2115877 +2023-01-13,NM,16,2115877 +2023-01-14,NM,13,2115877 +2023-01-15,NM,17,2115877 +2023-01-16,NM,10,2115877 +2023-01-17,NM,21,2115877 +2023-01-18,NM,20,2115877 +2023-01-19,NM,18,2115877 +2023-01-20,NM,12,2115877 +2023-01-21,NM,9,2115877 +2023-01-22,NM,11,2115877 +2023-01-23,NM,21,2115877 +2023-01-24,NM,12,2115877 +2023-01-25,NM,25,2115877 +2023-01-26,NM,11,2115877 +2023-01-27,NM,17,2115877 +2023-01-28,NM,13,2115877 +2023-01-29,NM,19,2115877 +2023-01-30,NM,15,2115877 +2023-01-31,NM,13,2115877 +2023-02-01,NM,8,2115877 +2023-02-02,NM,6,2115877 +2023-02-03,NM,10,2115877 +2023-02-04,NM,9,2115877 +2023-02-05,NM,11,2115877 +2023-02-06,NM,10,2115877 +2023-02-07,NM,13,2115877 +2023-02-08,NM,9,2115877 +2023-02-09,NM,12,2115877 +2023-02-10,NM,15,2115877 +2023-02-11,NM,9,2115877 +2023-02-12,NM,11,2115877 +2023-02-13,NM,13,2115877 +2023-02-14,NM,9,2115877 +2023-02-15,NM,13,2115877 +2023-02-16,NM,19,2115877 +2023-02-17,NM,20,2115877 +2023-02-18,NM,16,2115877 +2023-02-19,NM,9,2115877 +2023-02-20,NM,10,2115877 +2023-02-21,NM,17,2115877 +2023-02-22,NM,10,2115877 +2023-02-23,NM,12,2115877 +2023-02-24,NM,11,2115877 +2023-02-25,NM,22,2115877 +2023-02-26,NM,17,2115877 +2023-02-27,NM,21,2115877 +2023-02-28,NM,11,2115877 +2023-03-01,NM,12,2115877 +2023-03-02,NM,19,2115877 +2023-03-03,NM,12,2115877 +2023-03-04,NM,17,2115877 +2023-03-05,NM,20,2115877 +2023-03-06,NM,14,2115877 +2023-03-07,NM,10,2115877 +2023-03-08,NM,18,2115877 +2023-03-09,NM,15,2115877 +2023-03-10,NM,12,2115877 +2023-03-11,NM,14,2115877 +2023-03-12,NM,15,2115877 +2023-03-13,NM,23,2115877 +2023-03-14,NM,12,2115877 +2023-03-15,NM,13,2115877 +2023-03-16,NM,13,2115877 +2023-03-17,NM,5,2115877 +2023-03-18,NM,12,2115877 +2023-03-19,NM,11,2115877 +2023-03-20,NM,23,2115877 +2023-03-21,NM,22,2115877 +2023-03-22,NM,20,2115877 +2023-03-23,NM,15,2115877 +2023-03-24,NM,18,2115877 +2023-03-25,NM,13,2115877 +2023-03-26,NM,18,2115877 +2023-03-27,NM,15,2115877 +2023-03-28,NM,17,2115877 +2023-03-29,NM,19,2115877 +2023-03-30,NM,11,2115877 +2023-03-31,NM,16,2115877 +2023-04-01,NM,13,2115877 +2023-04-02,NM,14,2115877 +2023-04-03,NM,20,2115877 +2023-04-04,NM,21,2115877 +2023-04-05,NM,15,2115877 +2023-04-06,NM,13,2115877 +2023-04-07,NM,15,2115877 +2023-04-08,NM,13,2115877 +2023-04-09,NM,10,2115877 +2023-04-10,NM,22,2115877 +2023-04-11,NM,15,2115877 +2023-04-12,NM,10,2115877 +2023-04-13,NM,22,2115877 +2023-04-14,NM,28,2115877 +2023-04-15,NM,21,2115877 +2023-04-16,NM,22,2115877 +2023-04-17,NM,14,2115877 +2023-04-18,NM,13,2115877 +2023-04-19,NM,19,2115877 +2023-04-20,NM,15,2115877 +2023-04-21,NM,17,2115877 +2023-04-22,NM,17,2115877 +2023-04-23,NM,5,2115877 +2023-04-24,NM,7,2115877 +2023-04-25,NM,18,2115877 +2023-04-26,NM,13,2115877 +2023-04-27,NM,15,2115877 +2023-04-28,NM,15,2115877 +2023-04-29,NM,19,2115877 +2023-04-30,NM,10,2115877 +2023-05-01,NM,7,2115877 +2023-05-02,NM,18,2115877 +2023-05-03,NM,16,2115877 +2023-05-04,NM,12,2115877 +2023-05-05,NM,9,2115877 +2023-05-06,NM,9,2115877 +2023-05-07,NM,11,2115877 +2023-05-08,NM,19,2115877 +2023-05-09,NM,15,2115877 +2023-05-10,NM,10,2115877 +2023-05-11,NM,12,2115877 +2023-05-12,NM,6,2115877 +2023-05-13,NM,4,2115877 +2023-05-14,NM,5,2115877 +2023-05-15,NM,12,2115877 +2023-05-16,NM,8,2115877 +2023-05-17,NM,11,2115877 +2023-05-18,NM,7,2115877 +2023-05-19,NM,8,2115877 +2023-05-20,NM,5,2115877 +2023-05-21,NM,11,2115877 +2023-05-22,NM,11,2115877 +2023-05-23,NM,11,2115877 +2023-05-24,NM,5,2115877 +2023-05-25,NM,6,2115877 +2023-05-26,NM,5,2115877 +2023-05-27,NM,7,2115877 +2023-05-28,NM,6,2115877 +2023-05-29,NM,1,2115877 +2023-05-30,NM,8,2115877 +2023-05-31,NM,5,2115877 +2023-06-01,NM,5,2115877 +2023-06-02,NM,8,2115877 +2023-06-03,NM,1,2115877 +2023-06-04,NM,5,2115877 +2023-06-05,NM,4,2115877 +2023-06-06,NM,5,2115877 +2023-06-07,NM,3,2115877 +2023-06-08,NM,2,2115877 +2023-06-09,NM,3,2115877 +2023-06-10,NM,8,2115877 +2023-06-11,NM,5,2115877 +2023-06-12,NM,5,2115877 +2023-06-13,NM,3,2115877 +2023-06-14,NM,3,2115877 +2023-06-15,NM,6,2115877 +2023-06-16,NM,3,2115877 +2023-06-17,NM,6,2115877 +2023-06-18,NM,1,2115877 +2023-06-19,NM,5,2115877 +2023-06-20,NM,6,2115877 +2023-06-21,NM,7,2115877 +2023-06-22,NM,6,2115877 +2023-06-23,NM,6,2115877 +2023-06-24,NM,3,2115877 +2023-06-25,NM,6,2115877 +2023-06-26,NM,0,2115877 +2023-06-27,NM,3,2115877 +2023-06-28,NM,5,2115877 +2023-06-29,NM,6,2115877 +2023-06-30,NM,5,2115877 +2023-07-01,NM,4,2115877 +2023-07-02,NM,4,2115877 +2023-07-03,NM,5,2115877 +2023-07-04,NM,3,2115877 +2023-07-05,NM,5,2115877 +2023-07-06,NM,4,2115877 +2023-07-07,NM,5,2115877 +2023-07-08,NM,2,2115877 +2023-07-09,NM,3,2115877 +2023-07-10,NM,3,2115877 +2023-07-11,NM,5,2115877 +2023-07-12,NM,7,2115877 +2023-07-13,NM,6,2115877 +2023-07-14,NM,4,2115877 +2023-07-15,NM,3,2115877 +2023-07-16,NM,5,2115877 +2023-07-17,NM,7,2115877 +2023-07-18,NM,2,2115877 +2023-07-19,NM,3,2115877 +2023-07-20,NM,3,2115877 +2023-07-21,NM,3,2115877 +2023-07-22,NM,1,2115877 +2023-07-23,NM,1,2115877 +2023-07-24,NM,5,2115877 +2023-07-25,NM,10,2115877 +2023-07-26,NM,3,2115877 +2023-07-27,NM,8,2115877 +2023-07-28,NM,2,2115877 +2023-07-29,NM,3,2115877 +2023-07-30,NM,2,2115877 +2023-07-31,NM,6,2115877 +2023-08-01,NM,5,2115877 +2023-08-02,NM,4,2115877 +2023-08-03,NM,4,2115877 +2023-08-04,NM,3,2115877 +2023-08-05,NM,5,2115877 +2023-08-06,NM,3,2115877 +2023-08-07,NM,7,2115877 +2023-08-08,NM,7,2115877 +2023-08-09,NM,3,2115877 +2023-08-10,NM,7,2115877 +2023-08-11,NM,8,2115877 +2023-08-12,NM,5,2115877 +2023-08-13,NM,2,2115877 +2023-08-14,NM,8,2115877 +2023-08-15,NM,6,2115877 +2023-08-16,NM,10,2115877 +2023-08-17,NM,8,2115877 +2023-08-18,NM,7,2115877 +2023-08-19,NM,6,2115877 +2023-08-20,NM,4,2115877 +2023-08-21,NM,3,2115877 +2023-08-22,NM,9,2115877 +2023-08-23,NM,4,2115877 +2023-08-24,NM,9,2115877 +2023-08-25,NM,5,2115877 +2023-08-26,NM,4,2115877 +2023-08-27,NM,10,2115877 +2023-08-28,NM,8,2115877 +2023-08-29,NM,13,2115877 +2023-08-30,NM,4,2115877 +2023-08-31,NM,11,2115877 +2023-09-01,NM,7,2115877 +2023-09-02,NM,8,2115877 +2023-09-03,NM,7,2115877 +2023-09-04,NM,11,2115877 +2023-09-05,NM,11,2115877 +2023-09-06,NM,5,2115877 +2023-09-07,NM,20,2115877 +2023-09-08,NM,8,2115877 +2023-09-09,NM,7,2115877 +2023-09-10,NM,8,2115877 +2023-09-11,NM,6,2115877 +2023-09-12,NM,8,2115877 +2023-09-13,NM,4,2115877 +2023-09-14,NM,8,2115877 +2023-09-15,NM,3,2115877 +2023-09-16,NM,7,2115877 +2023-09-17,NM,9,2115877 +2023-09-18,NM,5,2115877 +2023-09-19,NM,6,2115877 +2023-09-20,NM,8,2115877 +2023-09-21,NM,8,2115877 +2023-09-22,NM,14,2115877 +2023-09-23,NM,6,2115877 +2023-09-24,NM,14,2115877 +2023-09-25,NM,10,2115877 +2023-09-26,NM,7,2115877 +2023-09-27,NM,19,2115877 +2023-09-28,NM,19,2115877 +2023-09-29,NM,14,2115877 +2023-09-30,NM,12,2115877 +2023-10-01,NM,10,2115877 +2023-10-02,NM,15,2115877 +2023-10-03,NM,12,2115877 +2023-10-04,NM,16,2115877 +2023-10-05,NM,18,2115877 +2023-10-06,NM,14,2115877 +2023-10-07,NM,10,2115877 +2023-10-08,NM,12,2115877 +2023-10-09,NM,18,2115877 +2023-10-10,NM,16,2115877 +2023-10-11,NM,19,2115877 +2023-10-12,NM,26,2115877 +2023-10-13,NM,15,2115877 +2023-10-14,NM,21,2115877 +2023-10-15,NM,25,2115877 +2023-10-16,NM,7,2115877 +2023-10-17,NM,11,2115877 +2023-10-18,NM,15,2115877 +2023-10-19,NM,18,2115877 +2023-10-20,NM,22,2115877 +2023-10-21,NM,16,2115877 +2023-10-22,NM,18,2115877 +2023-10-23,NM,24,2115877 +2023-10-24,NM,19,2115877 +2023-10-25,NM,29,2115877 +2023-10-26,NM,22,2115877 +2023-10-27,NM,19,2115877 +2023-10-28,NM,19,2115877 +2023-10-29,NM,23,2115877 +2023-10-30,NM,21,2115877 +2023-10-31,NM,19,2115877 +2023-11-01,NM,19,2115877 +2023-11-02,NM,26,2115877 +2023-11-03,NM,19,2115877 +2023-11-04,NM,25,2115877 +2023-11-05,NM,22,2115877 +2023-11-06,NM,28,2115877 +2023-11-07,NM,28,2115877 +2023-11-08,NM,27,2115877 +2023-11-09,NM,38,2115877 +2023-11-10,NM,22,2115877 +2023-11-11,NM,15,2115877 +2023-11-12,NM,41,2115877 +2023-11-13,NM,31,2115877 +2023-11-14,NM,26,2115877 +2023-11-15,NM,34,2115877 +2023-11-16,NM,28,2115877 +2023-11-17,NM,22,2115877 +2023-11-18,NM,27,2115877 +2023-11-19,NM,33,2115877 +2023-11-20,NM,16,2115877 +2023-11-21,NM,42,2115877 +2023-11-22,NM,23,2115877 +2023-11-23,NM,23,2115877 +2023-11-24,NM,18,2115877 +2023-11-25,NM,26,2115877 +2023-11-26,NM,26,2115877 +2023-11-27,NM,30,2115877 +2023-11-28,NM,22,2115877 +2023-11-29,NM,22,2115877 +2023-11-30,NM,18,2115877 +2023-12-01,NM,13,2115877 +2023-12-02,NM,16,2115877 +2023-12-03,NM,16,2115877 +2023-12-04,NM,16,2115877 +2023-12-05,NM,13,2115877 +2023-12-06,NM,15,2115877 +2023-12-07,NM,16,2115877 +2023-12-08,NM,22,2115877 +2023-12-09,NM,16,2115877 +2023-12-10,NM,22,2115877 +2023-12-11,NM,12,2115877 +2023-12-12,NM,20,2115877 +2023-12-13,NM,23,2115877 +2023-12-14,NM,13,2115877 +2023-12-15,NM,20,2115877 +2023-12-16,NM,24,2115877 +2023-12-17,NM,18,2115877 +2023-12-18,NM,23,2115877 +2023-12-19,NM,30,2115877 +2023-12-20,NM,22,2115877 +2023-12-21,NM,11,2115877 +2023-12-22,NM,7,2115877 +2023-12-23,NM,11,2115877 +2023-12-24,NM,13,2115877 +2023-12-25,NM,21,2115877 +2023-12-26,NM,12,2115877 +2023-12-27,NM,26,2115877 +2023-12-28,NM,30,2115877 +2023-12-29,NM,18,2115877 +2023-12-30,NM,11,2115877 +2023-12-31,NM,6,2115877 +2024-01-01,NM,16,2115877 +2024-01-02,NM,15,2115877 +2024-01-03,NM,22,2115877 +2024-01-04,NM,18,2115877 +2024-01-05,NM,22,2115877 +2024-01-06,NM,7,2115877 +2024-01-07,NM,5,2115877 +2024-01-08,NM,9,2115877 +2024-01-09,NM,5,2115877 +2024-01-10,NM,5,2115877 +2024-01-11,NM,13,2115877 +2024-01-12,NM,6,2115877 +2024-01-13,NM,3,2115877 +2024-01-14,NM,8,2115877 +2024-01-15,NM,11,2115877 +2024-01-16,NM,13,2115877 +2024-01-17,NM,10,2115877 +2024-01-18,NM,11,2115877 +2024-01-19,NM,7,2115877 +2022-12-31,NV,38,3143991 +2023-01-01,NV,29,3143991 +2023-01-02,NV,45,3143991 +2023-01-03,NV,53,3143991 +2023-01-04,NV,32,3143991 +2023-01-05,NV,46,3143991 +2023-01-06,NV,40,3143991 +2023-01-07,NV,28,3143991 +2023-01-08,NV,40,3143991 +2023-01-09,NV,31,3143991 +2023-01-10,NV,29,3143991 +2023-01-11,NV,26,3143991 +2023-01-12,NV,34,3143991 +2023-01-13,NV,38,3143991 +2023-01-14,NV,18,3143991 +2023-01-15,NV,21,3143991 +2023-01-16,NV,23,3143991 +2023-01-17,NV,34,3143991 +2023-01-18,NV,27,3143991 +2023-01-19,NV,33,3143991 +2023-01-20,NV,36,3143991 +2023-01-21,NV,22,3143991 +2023-01-22,NV,27,3143991 +2023-01-23,NV,20,3143991 +2023-01-24,NV,27,3143991 +2023-01-25,NV,17,3143991 +2023-01-26,NV,17,3143991 +2023-01-27,NV,20,3143991 +2023-01-28,NV,17,3143991 +2023-01-29,NV,21,3143991 +2023-01-30,NV,19,3143991 +2023-01-31,NV,21,3143991 +2023-02-01,NV,16,3143991 +2023-02-02,NV,14,3143991 +2023-02-03,NV,21,3143991 +2023-02-04,NV,17,3143991 +2023-02-05,NV,11,3143991 +2023-02-06,NV,25,3143991 +2023-02-07,NV,18,3143991 +2023-02-08,NV,19,3143991 +2023-02-09,NV,20,3143991 +2023-02-10,NV,26,3143991 +2023-02-11,NV,29,3143991 +2023-02-12,NV,25,3143991 +2023-02-13,NV,15,3143991 +2023-02-14,NV,12,3143991 +2023-02-15,NV,33,3143991 +2023-02-16,NV,22,3143991 +2023-02-17,NV,28,3143991 +2023-02-18,NV,32,3143991 +2023-02-19,NV,19,3143991 +2023-02-20,NV,24,3143991 +2023-02-21,NV,24,3143991 +2023-02-22,NV,27,3143991 +2023-02-23,NV,20,3143991 +2023-02-24,NV,27,3143991 +2023-02-25,NV,15,3143991 +2023-02-26,NV,23,3143991 +2023-02-27,NV,20,3143991 +2023-02-28,NV,16,3143991 +2023-03-01,NV,21,3143991 +2023-03-02,NV,18,3143991 +2023-03-03,NV,19,3143991 +2023-03-04,NV,20,3143991 +2023-03-05,NV,19,3143991 +2023-03-06,NV,28,3143991 +2023-03-07,NV,23,3143991 +2023-03-08,NV,27,3143991 +2023-03-09,NV,28,3143991 +2023-03-10,NV,23,3143991 +2023-03-11,NV,21,3143991 +2023-03-12,NV,10,3143991 +2023-03-13,NV,20,3143991 +2023-03-14,NV,18,3143991 +2023-03-15,NV,33,3143991 +2023-03-16,NV,13,3143991 +2023-03-17,NV,16,3143991 +2023-03-18,NV,16,3143991 +2023-03-19,NV,22,3143991 +2023-03-20,NV,26,3143991 +2023-03-21,NV,25,3143991 +2023-03-22,NV,26,3143991 +2023-03-23,NV,23,3143991 +2023-03-24,NV,25,3143991 +2023-03-25,NV,13,3143991 +2023-03-26,NV,16,3143991 +2023-03-27,NV,20,3143991 +2023-03-28,NV,26,3143991 +2023-03-29,NV,25,3143991 +2023-03-30,NV,16,3143991 +2023-03-31,NV,14,3143991 +2023-04-01,NV,12,3143991 +2023-04-02,NV,17,3143991 +2023-04-03,NV,23,3143991 +2023-04-04,NV,12,3143991 +2023-04-05,NV,20,3143991 +2023-04-06,NV,16,3143991 +2023-04-07,NV,22,3143991 +2023-04-08,NV,14,3143991 +2023-04-09,NV,25,3143991 +2023-04-10,NV,20,3143991 +2023-04-11,NV,14,3143991 +2023-04-12,NV,15,3143991 +2023-04-13,NV,15,3143991 +2023-04-14,NV,13,3143991 +2023-04-15,NV,21,3143991 +2023-04-16,NV,15,3143991 +2023-04-17,NV,14,3143991 +2023-04-18,NV,13,3143991 +2023-04-19,NV,15,3143991 +2023-04-20,NV,15,3143991 +2023-04-21,NV,15,3143991 +2023-04-22,NV,15,3143991 +2023-04-23,NV,10,3143991 +2023-04-24,NV,19,3143991 +2023-04-25,NV,11,3143991 +2023-04-26,NV,6,3143991 +2023-04-27,NV,11,3143991 +2023-04-28,NV,15,3143991 +2023-04-29,NV,13,3143991 +2023-04-30,NV,11,3143991 +2023-05-01,NV,14,3143991 +2023-05-02,NV,9,3143991 +2023-05-03,NV,15,3143991 +2023-05-04,NV,21,3143991 +2023-05-05,NV,11,3143991 +2023-05-06,NV,13,3143991 +2023-05-07,NV,12,3143991 +2023-05-08,NV,15,3143991 +2023-05-09,NV,11,3143991 +2023-05-10,NV,19,3143991 +2023-05-11,NV,7,3143991 +2023-05-12,NV,6,3143991 +2023-05-13,NV,4,3143991 +2023-05-14,NV,7,3143991 +2023-05-15,NV,19,3143991 +2023-05-16,NV,19,3143991 +2023-05-17,NV,10,3143991 +2023-05-18,NV,8,3143991 +2023-05-19,NV,15,3143991 +2023-05-20,NV,13,3143991 +2023-05-21,NV,15,3143991 +2023-05-22,NV,13,3143991 +2023-05-23,NV,8,3143991 +2023-05-24,NV,15,3143991 +2023-05-25,NV,17,3143991 +2023-05-26,NV,10,3143991 +2023-05-27,NV,6,3143991 +2023-05-28,NV,11,3143991 +2023-05-29,NV,11,3143991 +2023-05-30,NV,15,3143991 +2023-05-31,NV,12,3143991 +2023-06-01,NV,12,3143991 +2023-06-02,NV,15,3143991 +2023-06-03,NV,12,3143991 +2023-06-04,NV,13,3143991 +2023-06-05,NV,16,3143991 +2023-06-06,NV,16,3143991 +2023-06-07,NV,12,3143991 +2023-06-08,NV,16,3143991 +2023-06-09,NV,18,3143991 +2023-06-10,NV,11,3143991 +2023-06-11,NV,11,3143991 +2023-06-12,NV,13,3143991 +2023-06-13,NV,12,3143991 +2023-06-14,NV,7,3143991 +2023-06-15,NV,9,3143991 +2023-06-16,NV,8,3143991 +2023-06-17,NV,15,3143991 +2023-06-18,NV,13,3143991 +2023-06-19,NV,7,3143991 +2023-06-20,NV,16,3143991 +2023-06-21,NV,12,3143991 +2023-06-22,NV,10,3143991 +2023-06-23,NV,13,3143991 +2023-06-24,NV,15,3143991 +2023-06-25,NV,8,3143991 +2023-06-26,NV,20,3143991 +2023-06-27,NV,8,3143991 +2023-06-28,NV,15,3143991 +2023-06-29,NV,8,3143991 +2023-06-30,NV,10,3143991 +2023-07-01,NV,7,3143991 +2023-07-02,NV,9,3143991 +2023-07-03,NV,12,3143991 +2023-07-04,NV,12,3143991 +2023-07-05,NV,12,3143991 +2023-07-06,NV,11,3143991 +2023-07-07,NV,11,3143991 +2023-07-08,NV,12,3143991 +2023-07-09,NV,6,3143991 +2023-07-10,NV,7,3143991 +2023-07-11,NV,15,3143991 +2023-07-12,NV,6,3143991 +2023-07-13,NV,6,3143991 +2023-07-14,NV,11,3143991 +2023-07-15,NV,10,3143991 +2023-07-16,NV,12,3143991 +2023-07-17,NV,15,3143991 +2023-07-18,NV,9,3143991 +2023-07-19,NV,13,3143991 +2023-07-20,NV,13,3143991 +2023-07-21,NV,12,3143991 +2023-07-22,NV,9,3143991 +2023-07-23,NV,11,3143991 +2023-07-24,NV,14,3143991 +2023-07-25,NV,12,3143991 +2023-07-26,NV,8,3143991 +2023-07-27,NV,15,3143991 +2023-07-28,NV,16,3143991 +2023-07-29,NV,11,3143991 +2023-07-30,NV,11,3143991 +2023-07-31,NV,9,3143991 +2023-08-01,NV,17,3143991 +2023-08-02,NV,14,3143991 +2023-08-03,NV,9,3143991 +2023-08-04,NV,5,3143991 +2023-08-05,NV,11,3143991 +2023-08-06,NV,15,3143991 +2023-08-07,NV,10,3143991 +2023-08-08,NV,12,3143991 +2023-08-09,NV,13,3143991 +2023-08-10,NV,12,3143991 +2023-08-11,NV,28,3143991 +2023-08-12,NV,20,3143991 +2023-08-13,NV,15,3143991 +2023-08-14,NV,18,3143991 +2023-08-15,NV,20,3143991 +2023-08-16,NV,26,3143991 +2023-08-17,NV,17,3143991 +2023-08-18,NV,26,3143991 +2023-08-19,NV,21,3143991 +2023-08-20,NV,14,3143991 +2023-08-21,NV,17,3143991 +2023-08-22,NV,16,3143991 +2023-08-23,NV,21,3143991 +2023-08-24,NV,18,3143991 +2023-08-25,NV,18,3143991 +2023-08-26,NV,21,3143991 +2023-08-27,NV,17,3143991 +2023-08-28,NV,16,3143991 +2023-08-29,NV,20,3143991 +2023-08-30,NV,18,3143991 +2023-08-31,NV,20,3143991 +2023-09-01,NV,22,3143991 +2023-09-02,NV,20,3143991 +2023-09-03,NV,24,3143991 +2023-09-04,NV,24,3143991 +2023-09-05,NV,32,3143991 +2023-09-06,NV,32,3143991 +2023-09-07,NV,21,3143991 +2023-09-08,NV,21,3143991 +2023-09-09,NV,12,3143991 +2023-09-10,NV,22,3143991 +2023-09-11,NV,22,3143991 +2023-09-12,NV,26,3143991 +2023-09-13,NV,21,3143991 +2023-09-14,NV,22,3143991 +2023-09-15,NV,23,3143991 +2023-09-16,NV,27,3143991 +2023-09-17,NV,31,3143991 +2023-09-18,NV,23,3143991 +2023-09-19,NV,35,3143991 +2023-09-20,NV,22,3143991 +2023-09-21,NV,20,3143991 +2023-09-22,NV,25,3143991 +2023-09-23,NV,26,3143991 +2023-09-24,NV,26,3143991 +2023-09-25,NV,29,3143991 +2023-09-26,NV,26,3143991 +2023-09-27,NV,33,3143991 +2023-09-28,NV,23,3143991 +2023-09-29,NV,25,3143991 +2023-09-30,NV,15,3143991 +2023-10-01,NV,21,3143991 +2023-10-02,NV,20,3143991 +2023-10-03,NV,13,3143991 +2023-10-04,NV,29,3143991 +2023-10-05,NV,20,3143991 +2023-10-06,NV,19,3143991 +2023-10-07,NV,23,3143991 +2023-10-08,NV,24,3143991 +2023-10-09,NV,25,3143991 +2023-10-10,NV,33,3143991 +2023-10-11,NV,21,3143991 +2023-10-12,NV,27,3143991 +2023-10-13,NV,26,3143991 +2023-10-14,NV,30,3143991 +2023-10-15,NV,23,3143991 +2023-10-16,NV,26,3143991 +2023-10-17,NV,33,3143991 +2023-10-18,NV,29,3143991 +2023-10-19,NV,20,3143991 +2023-10-20,NV,21,3143991 +2023-10-21,NV,16,3143991 +2023-10-22,NV,22,3143991 +2023-10-23,NV,30,3143991 +2023-10-24,NV,41,3143991 +2023-10-25,NV,26,3143991 +2023-10-26,NV,24,3143991 +2023-10-27,NV,25,3143991 +2023-10-28,NV,19,3143991 +2023-10-29,NV,18,3143991 +2023-10-30,NV,23,3143991 +2023-10-31,NV,17,3143991 +2023-11-01,NV,29,3143991 +2023-11-02,NV,26,3143991 +2023-11-03,NV,29,3143991 +2023-11-04,NV,27,3143991 +2023-11-05,NV,17,3143991 +2023-11-06,NV,37,3143991 +2023-11-07,NV,13,3143991 +2023-11-08,NV,27,3143991 +2023-11-09,NV,24,3143991 +2023-11-10,NV,18,3143991 +2023-11-11,NV,20,3143991 +2023-11-12,NV,20,3143991 +2023-11-13,NV,32,3143991 +2023-11-14,NV,19,3143991 +2023-11-15,NV,29,3143991 +2023-11-16,NV,25,3143991 +2023-11-17,NV,25,3143991 +2023-11-18,NV,28,3143991 +2023-11-19,NV,24,3143991 +2023-11-20,NV,21,3143991 +2023-11-21,NV,18,3143991 +2023-11-22,NV,22,3143991 +2023-11-23,NV,18,3143991 +2023-11-24,NV,31,3143991 +2023-11-25,NV,28,3143991 +2023-11-26,NV,33,3143991 +2023-11-27,NV,29,3143991 +2023-11-28,NV,30,3143991 +2023-11-29,NV,29,3143991 +2023-11-30,NV,29,3143991 +2023-12-01,NV,32,3143991 +2023-12-02,NV,22,3143991 +2023-12-03,NV,27,3143991 +2023-12-04,NV,29,3143991 +2023-12-05,NV,28,3143991 +2023-12-06,NV,24,3143991 +2023-12-07,NV,38,3143991 +2023-12-08,NV,38,3143991 +2023-12-09,NV,19,3143991 +2023-12-10,NV,22,3143991 +2023-12-11,NV,34,3143991 +2023-12-12,NV,34,3143991 +2023-12-13,NV,32,3143991 +2023-12-14,NV,32,3143991 +2023-12-15,NV,30,3143991 +2023-12-16,NV,26,3143991 +2023-12-17,NV,27,3143991 +2023-12-18,NV,42,3143991 +2023-12-19,NV,39,3143991 +2023-12-20,NV,31,3143991 +2023-12-21,NV,46,3143991 +2023-12-22,NV,33,3143991 +2023-12-23,NV,33,3143991 +2023-12-24,NV,31,3143991 +2023-12-25,NV,34,3143991 +2023-12-26,NV,40,3143991 +2023-12-27,NV,47,3143991 +2023-12-28,NV,46,3143991 +2023-12-29,NV,42,3143991 +2023-12-30,NV,36,3143991 +2023-12-31,NV,37,3143991 +2024-01-01,NV,30,3143991 +2024-01-02,NV,43,3143991 +2024-01-03,NV,41,3143991 +2024-01-04,NV,38,3143991 +2024-01-05,NV,23,3143991 +2024-01-06,NV,29,3143991 +2024-01-07,NV,30,3143991 +2024-01-08,NV,20,3143991 +2024-01-09,NV,37,3143991 +2024-01-10,NV,32,3143991 +2024-01-11,NV,40,3143991 +2024-01-12,NV,35,3143991 +2024-01-13,NV,35,3143991 +2024-01-14,NV,29,3143991 +2024-01-15,NV,29,3143991 +2024-01-16,NV,41,3143991 +2024-01-17,NV,26,3143991 +2024-01-18,NV,35,3143991 +2024-01-19,NV,23,3143991 +2022-12-31,NY,466,19835913 +2023-01-01,NY,478,19835913 +2023-01-02,NY,582,19835913 +2023-01-03,NY,599,19835913 +2023-01-04,NY,549,19835913 +2023-01-05,NY,593,19835913 +2023-01-06,NY,527,19835913 +2023-01-07,NY,403,19835913 +2023-01-08,NY,485,19835913 +2023-01-09,NY,506,19835913 +2023-01-10,NY,515,19835913 +2023-01-11,NY,463,19835913 +2023-01-12,NY,434,19835913 +2023-01-13,NY,441,19835913 +2023-01-14,NY,329,19835913 +2023-01-15,NY,298,19835913 +2023-01-16,NY,477,19835913 +2023-01-17,NY,386,19835913 +2023-01-18,NY,435,19835913 +2023-01-19,NY,385,19835913 +2023-01-20,NY,364,19835913 +2023-01-21,NY,311,19835913 +2023-01-22,NY,375,19835913 +2023-01-23,NY,411,19835913 +2023-01-24,NY,340,19835913 +2023-01-25,NY,354,19835913 +2023-01-26,NY,368,19835913 +2023-01-27,NY,349,19835913 +2023-01-28,NY,277,19835913 +2023-01-29,NY,301,19835913 +2023-01-30,NY,348,19835913 +2023-01-31,NY,371,19835913 +2023-02-01,NY,298,19835913 +2023-02-02,NY,346,19835913 +2023-02-03,NY,304,19835913 +2023-02-04,NY,266,19835913 +2023-02-05,NY,272,19835913 +2023-02-06,NY,323,19835913 +2023-02-07,NY,290,19835913 +2023-02-08,NY,276,19835913 +2023-02-09,NY,276,19835913 +2023-02-10,NY,269,19835913 +2023-02-11,NY,240,19835913 +2023-02-12,NY,240,19835913 +2023-02-13,NY,332,19835913 +2023-02-14,NY,304,19835913 +2023-02-15,NY,289,19835913 +2023-02-16,NY,273,19835913 +2023-02-17,NY,262,19835913 +2023-02-18,NY,232,19835913 +2023-02-19,NY,196,19835913 +2023-02-20,NY,322,19835913 +2023-02-21,NY,254,19835913 +2023-02-22,NY,253,19835913 +2023-02-23,NY,238,19835913 +2023-02-24,NY,223,19835913 +2023-02-25,NY,185,19835913 +2023-02-26,NY,227,19835913 +2023-02-27,NY,229,19835913 +2023-02-28,NY,228,19835913 +2023-03-01,NY,239,19835913 +2023-03-02,NY,214,19835913 +2023-03-03,NY,201,19835913 +2023-03-04,NY,150,19835913 +2023-03-05,NY,210,19835913 +2023-03-06,NY,214,19835913 +2023-03-07,NY,190,19835913 +2023-03-08,NY,186,19835913 +2023-03-09,NY,184,19835913 +2023-03-10,NY,165,19835913 +2023-03-11,NY,147,19835913 +2023-03-12,NY,173,19835913 +2023-03-13,NY,171,19835913 +2023-03-14,NY,172,19835913 +2023-03-15,NY,171,19835913 +2023-03-16,NY,169,19835913 +2023-03-17,NY,152,19835913 +2023-03-18,NY,114,19835913 +2023-03-19,NY,144,19835913 +2023-03-20,NY,168,19835913 +2023-03-21,NY,151,19835913 +2023-03-22,NY,148,19835913 +2023-03-23,NY,143,19835913 +2023-03-24,NY,137,19835913 +2023-03-25,NY,107,19835913 +2023-03-26,NY,145,19835913 +2023-03-27,NY,127,19835913 +2023-03-28,NY,144,19835913 +2023-03-29,NY,143,19835913 +2023-03-30,NY,128,19835913 +2023-03-31,NY,131,19835913 +2023-04-01,NY,106,19835913 +2023-04-02,NY,150,19835913 +2023-04-03,NY,127,19835913 +2023-04-04,NY,139,19835913 +2023-04-05,NY,117,19835913 +2023-04-06,NY,117,19835913 +2023-04-07,NY,92,19835913 +2023-04-08,NY,55,19835913 +2023-04-09,NY,106,19835913 +2023-04-10,NY,137,19835913 +2023-04-11,NY,114,19835913 +2023-04-12,NY,125,19835913 +2023-04-13,NY,119,19835913 +2023-04-14,NY,99,19835913 +2023-04-15,NY,74,19835913 +2023-04-16,NY,116,19835913 +2023-04-17,NY,125,19835913 +2023-04-18,NY,102,19835913 +2023-04-19,NY,96,19835913 +2023-04-20,NY,79,19835913 +2023-04-21,NY,87,19835913 +2023-04-22,NY,70,19835913 +2023-04-23,NY,68,19835913 +2023-04-24,NY,93,19835913 +2023-04-25,NY,88,19835913 +2023-04-26,NY,83,19835913 +2023-04-27,NY,98,19835913 +2023-04-28,NY,94,19835913 +2023-04-29,NY,84,19835913 +2023-04-30,NY,80,19835913 +2023-05-01,NY,95,19835913 +2023-05-02,NY,76,19835913 +2023-05-03,NY,96,19835913 +2023-05-04,NY,103,19835913 +2023-05-05,NY,79,19835913 +2023-05-06,NY,82,19835913 +2023-05-07,NY,83,19835913 +2023-05-08,NY,79,19835913 +2023-05-09,NY,68,19835913 +2023-05-10,NY,68,19835913 +2023-05-11,NY,98,19835913 +2023-05-12,NY,81,19835913 +2023-05-13,NY,68,19835913 +2023-05-14,NY,95,19835913 +2023-05-15,NY,79,19835913 +2023-05-16,NY,76,19835913 +2023-05-17,NY,85,19835913 +2023-05-18,NY,74,19835913 +2023-05-19,NY,87,19835913 +2023-05-20,NY,65,19835913 +2023-05-21,NY,79,19835913 +2023-05-22,NY,85,19835913 +2023-05-23,NY,82,19835913 +2023-05-24,NY,91,19835913 +2023-05-25,NY,76,19835913 +2023-05-26,NY,53,19835913 +2023-05-27,NY,43,19835913 +2023-05-28,NY,60,19835913 +2023-05-29,NY,87,19835913 +2023-05-30,NY,92,19835913 +2023-05-31,NY,75,19835913 +2023-06-01,NY,92,19835913 +2023-06-02,NY,59,19835913 +2023-06-03,NY,61,19835913 +2023-06-04,NY,63,19835913 +2023-06-05,NY,77,19835913 +2023-06-06,NY,70,19835913 +2023-06-07,NY,70,19835913 +2023-06-08,NY,64,19835913 +2023-06-09,NY,67,19835913 +2023-06-10,NY,71,19835913 +2023-06-11,NY,69,19835913 +2023-06-12,NY,68,19835913 +2023-06-13,NY,83,19835913 +2023-06-14,NY,75,19835913 +2023-06-15,NY,59,19835913 +2023-06-16,NY,48,19835913 +2023-06-17,NY,55,19835913 +2023-06-18,NY,50,19835913 +2023-06-19,NY,54,19835913 +2023-06-20,NY,61,19835913 +2023-06-21,NY,57,19835913 +2023-06-22,NY,59,19835913 +2023-06-23,NY,36,19835913 +2023-06-24,NY,61,19835913 +2023-06-25,NY,60,19835913 +2023-06-26,NY,76,19835913 +2023-06-27,NY,79,19835913 +2023-06-28,NY,90,19835913 +2023-06-29,NY,52,19835913 +2023-06-30,NY,61,19835913 +2023-07-01,NY,41,19835913 +2023-07-02,NY,57,19835913 +2023-07-03,NY,61,19835913 +2023-07-04,NY,60,19835913 +2023-07-05,NY,50,19835913 +2023-07-06,NY,68,19835913 +2023-07-07,NY,57,19835913 +2023-07-08,NY,31,19835913 +2023-07-09,NY,47,19835913 +2023-07-10,NY,60,19835913 +2023-07-11,NY,57,19835913 +2023-07-12,NY,65,19835913 +2023-07-13,NY,75,19835913 +2023-07-14,NY,68,19835913 +2023-07-15,NY,62,19835913 +2023-07-16,NY,76,19835913 +2023-07-17,NY,78,19835913 +2023-07-18,NY,76,19835913 +2023-07-19,NY,80,19835913 +2023-07-20,NY,84,19835913 +2023-07-21,NY,81,19835913 +2023-07-22,NY,83,19835913 +2023-07-23,NY,88,19835913 +2023-07-24,NY,80,19835913 +2023-07-25,NY,115,19835913 +2023-07-26,NY,101,19835913 +2023-07-27,NY,87,19835913 +2023-07-28,NY,90,19835913 +2023-07-29,NY,73,19835913 +2023-07-30,NY,100,19835913 +2023-07-31,NY,109,19835913 +2023-08-01,NY,99,19835913 +2023-08-02,NY,91,19835913 +2023-08-03,NY,115,19835913 +2023-08-04,NY,92,19835913 +2023-08-05,NY,97,19835913 +2023-08-06,NY,118,19835913 +2023-08-07,NY,147,19835913 +2023-08-08,NY,145,19835913 +2023-08-09,NY,149,19835913 +2023-08-10,NY,147,19835913 +2023-08-11,NY,132,19835913 +2023-08-12,NY,115,19835913 +2023-08-13,NY,166,19835913 +2023-08-14,NY,150,19835913 +2023-08-15,NY,164,19835913 +2023-08-16,NY,143,19835913 +2023-08-17,NY,160,19835913 +2023-08-18,NY,164,19835913 +2023-08-19,NY,116,19835913 +2023-08-20,NY,156,19835913 +2023-08-21,NY,176,19835913 +2023-08-22,NY,152,19835913 +2023-08-23,NY,171,19835913 +2023-08-24,NY,179,19835913 +2023-08-25,NY,165,19835913 +2023-08-26,NY,135,19835913 +2023-08-27,NY,195,19835913 +2023-08-28,NY,159,19835913 +2023-08-29,NY,206,19835913 +2023-08-30,NY,203,19835913 +2023-08-31,NY,205,19835913 +2023-09-01,NY,175,19835913 +2023-09-02,NY,152,19835913 +2023-09-03,NY,208,19835913 +2023-09-04,NY,240,19835913 +2023-09-05,NY,242,19835913 +2023-09-06,NY,243,19835913 +2023-09-07,NY,216,19835913 +2023-09-08,NY,202,19835913 +2023-09-09,NY,171,19835913 +2023-09-10,NY,213,19835913 +2023-09-11,NY,233,19835913 +2023-09-12,NY,198,19835913 +2023-09-13,NY,230,19835913 +2023-09-14,NY,235,19835913 +2023-09-15,NY,181,19835913 +2023-09-16,NY,175,19835913 +2023-09-17,NY,200,19835913 +2023-09-18,NY,233,19835913 +2023-09-19,NY,246,19835913 +2023-09-20,NY,223,19835913 +2023-09-21,NY,275,19835913 +2023-09-22,NY,225,19835913 +2023-09-23,NY,206,19835913 +2023-09-24,NY,220,19835913 +2023-09-25,NY,283,19835913 +2023-09-26,NY,297,19835913 +2023-09-27,NY,264,19835913 +2023-09-28,NY,251,19835913 +2023-09-29,NY,219,19835913 +2023-09-30,NY,219,19835913 +2023-10-01,NY,258,19835913 +2023-10-02,NY,267,19835913 +2023-10-03,NY,244,19835913 +2023-10-04,NY,291,19835913 +2023-10-05,NY,219,19835913 +2023-10-06,NY,190,19835913 +2023-10-07,NY,191,19835913 +2023-10-08,NY,179,19835913 +2023-10-09,NY,253,19835913 +2023-10-10,NY,240,19835913 +2023-10-11,NY,208,19835913 +2023-10-12,NY,205,19835913 +2023-10-13,NY,160,19835913 +2023-10-14,NY,152,19835913 +2023-10-15,NY,196,19835913 +2023-10-16,NY,191,19835913 +2023-10-17,NY,185,19835913 +2023-10-18,NY,170,19835913 +2023-10-19,NY,185,19835913 +2023-10-20,NY,199,19835913 +2023-10-21,NY,173,19835913 +2023-10-22,NY,166,19835913 +2023-10-23,NY,168,19835913 +2023-10-24,NY,207,19835913 +2023-10-25,NY,204,19835913 +2023-10-26,NY,173,19835913 +2023-10-27,NY,180,19835913 +2023-10-28,NY,159,19835913 +2023-10-29,NY,161,19835913 +2023-10-30,NY,166,19835913 +2023-10-31,NY,138,19835913 +2023-11-01,NY,118,19835913 +2023-11-02,NY,150,19835913 +2023-11-03,NY,139,19835913 +2023-11-04,NY,136,19835913 +2023-11-05,NY,161,19835913 +2023-11-06,NY,148,19835913 +2023-11-07,NY,163,19835913 +2023-11-08,NY,133,19835913 +2023-11-09,NY,155,19835913 +2023-11-10,NY,151,19835913 +2023-11-11,NY,129,19835913 +2023-11-12,NY,143,19835913 +2023-11-13,NY,157,19835913 +2023-11-14,NY,170,19835913 +2023-11-15,NY,173,19835913 +2023-11-16,NY,154,19835913 +2023-11-17,NY,190,19835913 +2023-11-18,NY,155,19835913 +2023-11-19,NY,191,19835913 +2023-11-20,NY,229,19835913 +2023-11-21,NY,211,19835913 +2023-11-22,NY,190,19835913 +2023-11-23,NY,168,19835913 +2023-11-24,NY,205,19835913 +2023-11-25,NY,175,19835913 +2023-11-26,NY,203,19835913 +2023-11-27,NY,266,19835913 +2023-11-28,NY,240,19835913 +2023-11-29,NY,240,19835913 +2023-11-30,NY,192,19835913 +2023-12-01,NY,217,19835913 +2023-12-02,NY,191,19835913 +2023-12-03,NY,221,19835913 +2023-12-04,NY,278,19835913 +2023-12-05,NY,260,19835913 +2023-12-06,NY,242,19835913 +2023-12-07,NY,238,19835913 +2023-12-08,NY,197,19835913 +2023-12-09,NY,193,19835913 +2023-12-10,NY,262,19835913 +2023-12-11,NY,252,19835913 +2023-12-12,NY,301,19835913 +2023-12-13,NY,283,19835913 +2023-12-14,NY,290,19835913 +2023-12-15,NY,292,19835913 +2023-12-16,NY,266,19835913 +2023-12-17,NY,365,19835913 +2023-12-18,NY,376,19835913 +2023-12-19,NY,360,19835913 +2023-12-20,NY,370,19835913 +2023-12-21,NY,347,19835913 +2023-12-22,NY,315,19835913 +2023-12-23,NY,280,19835913 +2023-12-24,NY,314,19835913 +2023-12-25,NY,398,19835913 +2023-12-26,NY,414,19835913 +2023-12-27,NY,513,19835913 +2023-12-28,NY,574,19835913 +2023-12-29,NY,511,19835913 +2023-12-30,NY,471,19835913 +2023-12-31,NY,397,19835913 +2024-01-01,NY,521,19835913 +2024-01-02,NY,514,19835913 +2024-01-03,NY,466,19835913 +2024-01-04,NY,422,19835913 +2024-01-05,NY,402,19835913 +2024-01-06,NY,328,19835913 +2024-01-07,NY,376,19835913 +2024-01-08,NY,457,19835913 +2024-01-09,NY,418,19835913 +2024-01-10,NY,401,19835913 +2024-01-11,NY,438,19835913 +2024-01-12,NY,364,19835913 +2024-01-13,NY,348,19835913 +2024-01-14,NY,321,19835913 +2024-01-15,NY,374,19835913 +2024-01-16,NY,382,19835913 +2024-01-17,NY,382,19835913 +2024-01-18,NY,366,19835913 +2024-01-19,NY,295,19835913 +2022-12-31,OH,242,11780017 +2023-01-01,OH,200,11780017 +2023-01-02,OH,254,11780017 +2023-01-03,OH,264,11780017 +2023-01-04,OH,262,11780017 +2023-01-05,OH,250,11780017 +2023-01-06,OH,215,11780017 +2023-01-07,OH,187,11780017 +2023-01-08,OH,176,11780017 +2023-01-09,OH,182,11780017 +2023-01-10,OH,211,11780017 +2023-01-11,OH,206,11780017 +2023-01-12,OH,170,11780017 +2023-01-13,OH,165,11780017 +2023-01-14,OH,129,11780017 +2023-01-15,OH,146,11780017 +2023-01-16,OH,146,11780017 +2023-01-17,OH,178,11780017 +2023-01-18,OH,200,11780017 +2023-01-19,OH,135,11780017 +2023-01-20,OH,146,11780017 +2023-01-21,OH,103,11780017 +2023-01-22,OH,129,11780017 +2023-01-23,OH,153,11780017 +2023-01-24,OH,147,11780017 +2023-01-25,OH,115,11780017 +2023-01-26,OH,131,11780017 +2023-01-27,OH,138,11780017 +2023-01-28,OH,143,11780017 +2023-01-29,OH,147,11780017 +2023-01-30,OH,121,11780017 +2023-01-31,OH,120,11780017 +2023-02-01,OH,144,11780017 +2023-02-02,OH,123,11780017 +2023-02-03,OH,153,11780017 +2023-02-04,OH,99,11780017 +2023-02-05,OH,119,11780017 +2023-02-06,OH,139,11780017 +2023-02-07,OH,142,11780017 +2023-02-08,OH,137,11780017 +2023-02-09,OH,120,11780017 +2023-02-10,OH,135,11780017 +2023-02-11,OH,119,11780017 +2023-02-12,OH,125,11780017 +2023-02-13,OH,143,11780017 +2023-02-14,OH,143,11780017 +2023-02-15,OH,159,11780017 +2023-02-16,OH,175,11780017 +2023-02-17,OH,150,11780017 +2023-02-18,OH,137,11780017 +2023-02-19,OH,130,11780017 +2023-02-20,OH,146,11780017 +2023-02-21,OH,160,11780017 +2023-02-22,OH,117,11780017 +2023-02-23,OH,153,11780017 +2023-02-24,OH,169,11780017 +2023-02-25,OH,132,11780017 +2023-02-26,OH,137,11780017 +2023-02-27,OH,162,11780017 +2023-02-28,OH,153,11780017 +2023-03-01,OH,139,11780017 +2023-03-02,OH,153,11780017 +2023-03-03,OH,136,11780017 +2023-03-04,OH,142,11780017 +2023-03-05,OH,132,11780017 +2023-03-06,OH,144,11780017 +2023-03-07,OH,156,11780017 +2023-03-08,OH,159,11780017 +2023-03-09,OH,144,11780017 +2023-03-10,OH,149,11780017 +2023-03-11,OH,115,11780017 +2023-03-12,OH,121,11780017 +2023-03-13,OH,144,11780017 +2023-03-14,OH,173,11780017 +2023-03-15,OH,140,11780017 +2023-03-16,OH,149,11780017 +2023-03-17,OH,133,11780017 +2023-03-18,OH,110,11780017 +2023-03-19,OH,99,11780017 +2023-03-20,OH,119,11780017 +2023-03-21,OH,139,11780017 +2023-03-22,OH,129,11780017 +2023-03-23,OH,130,11780017 +2023-03-24,OH,133,11780017 +2023-03-25,OH,112,11780017 +2023-03-26,OH,106,11780017 +2023-03-27,OH,119,11780017 +2023-03-28,OH,118,11780017 +2023-03-29,OH,114,11780017 +2023-03-30,OH,126,11780017 +2023-03-31,OH,125,11780017 +2023-04-01,OH,124,11780017 +2023-04-02,OH,96,11780017 +2023-04-03,OH,103,11780017 +2023-04-04,OH,116,11780017 +2023-04-05,OH,128,11780017 +2023-04-06,OH,103,11780017 +2023-04-07,OH,71,11780017 +2023-04-08,OH,89,11780017 +2023-04-09,OH,82,11780017 +2023-04-10,OH,92,11780017 +2023-04-11,OH,105,11780017 +2023-04-12,OH,96,11780017 +2023-04-13,OH,81,11780017 +2023-04-14,OH,90,11780017 +2023-04-15,OH,73,11780017 +2023-04-16,OH,76,11780017 +2023-04-17,OH,91,11780017 +2023-04-18,OH,85,11780017 +2023-04-19,OH,63,11780017 +2023-04-20,OH,73,11780017 +2023-04-21,OH,72,11780017 +2023-04-22,OH,78,11780017 +2023-04-23,OH,57,11780017 +2023-04-24,OH,47,11780017 +2023-04-25,OH,41,11780017 +2023-04-26,OH,46,11780017 +2023-04-27,OH,57,11780017 +2023-04-28,OH,49,11780017 +2023-04-29,OH,57,11780017 +2023-04-30,OH,54,11780017 +2023-05-01,OH,47,11780017 +2023-05-02,OH,66,11780017 +2023-05-03,OH,60,11780017 +2023-05-04,OH,64,11780017 +2023-05-05,OH,53,11780017 +2023-05-06,OH,55,11780017 +2023-05-07,OH,54,11780017 +2023-05-08,OH,58,11780017 +2023-05-09,OH,54,11780017 +2023-05-10,OH,59,11780017 +2023-05-11,OH,49,11780017 +2023-05-12,OH,53,11780017 +2023-05-13,OH,33,11780017 +2023-05-14,OH,43,11780017 +2023-05-15,OH,52,11780017 +2023-05-16,OH,52,11780017 +2023-05-17,OH,52,11780017 +2023-05-18,OH,55,11780017 +2023-05-19,OH,46,11780017 +2023-05-20,OH,37,11780017 +2023-05-21,OH,38,11780017 +2023-05-22,OH,48,11780017 +2023-05-23,OH,40,11780017 +2023-05-24,OH,32,11780017 +2023-05-25,OH,49,11780017 +2023-05-26,OH,54,11780017 +2023-05-27,OH,42,11780017 +2023-05-28,OH,41,11780017 +2023-05-29,OH,36,11780017 +2023-05-30,OH,45,11780017 +2023-05-31,OH,49,11780017 +2023-06-01,OH,31,11780017 +2023-06-02,OH,32,11780017 +2023-06-03,OH,33,11780017 +2023-06-04,OH,20,11780017 +2023-06-05,OH,34,11780017 +2023-06-06,OH,37,11780017 +2023-06-07,OH,26,11780017 +2023-06-08,OH,21,11780017 +2023-06-09,OH,21,11780017 +2023-06-10,OH,18,11780017 +2023-06-11,OH,14,11780017 +2023-06-12,OH,26,11780017 +2023-06-13,OH,19,11780017 +2023-06-14,OH,24,11780017 +2023-06-15,OH,23,11780017 +2023-06-16,OH,28,11780017 +2023-06-17,OH,23,11780017 +2023-06-18,OH,19,11780017 +2023-06-19,OH,15,11780017 +2023-06-20,OH,23,11780017 +2023-06-21,OH,20,11780017 +2023-06-22,OH,16,11780017 +2023-06-23,OH,12,11780017 +2023-06-24,OH,15,11780017 +2023-06-25,OH,18,11780017 +2023-06-26,OH,23,11780017 +2023-06-27,OH,21,11780017 +2023-06-28,OH,16,11780017 +2023-06-29,OH,22,11780017 +2023-06-30,OH,16,11780017 +2023-07-01,OH,18,11780017 +2023-07-02,OH,15,11780017 +2023-07-03,OH,19,11780017 +2023-07-04,OH,30,11780017 +2023-07-05,OH,23,11780017 +2023-07-06,OH,20,11780017 +2023-07-07,OH,15,11780017 +2023-07-08,OH,13,11780017 +2023-07-09,OH,16,11780017 +2023-07-10,OH,17,11780017 +2023-07-11,OH,15,11780017 +2023-07-12,OH,22,11780017 +2023-07-13,OH,30,11780017 +2023-07-14,OH,22,11780017 +2023-07-15,OH,22,11780017 +2023-07-16,OH,22,11780017 +2023-07-17,OH,21,11780017 +2023-07-18,OH,23,11780017 +2023-07-19,OH,26,11780017 +2023-07-20,OH,24,11780017 +2023-07-21,OH,26,11780017 +2023-07-22,OH,18,11780017 +2023-07-23,OH,28,11780017 +2023-07-24,OH,27,11780017 +2023-07-25,OH,38,11780017 +2023-07-26,OH,30,11780017 +2023-07-27,OH,27,11780017 +2023-07-28,OH,36,11780017 +2023-07-29,OH,37,11780017 +2023-07-30,OH,30,11780017 +2023-07-31,OH,33,11780017 +2023-08-01,OH,38,11780017 +2023-08-02,OH,18,11780017 +2023-08-03,OH,37,11780017 +2023-08-04,OH,44,11780017 +2023-08-05,OH,42,11780017 +2023-08-06,OH,32,11780017 +2023-08-07,OH,55,11780017 +2023-08-08,OH,51,11780017 +2023-08-09,OH,56,11780017 +2023-08-10,OH,37,11780017 +2023-08-11,OH,47,11780017 +2023-08-12,OH,30,11780017 +2023-08-13,OH,51,11780017 +2023-08-14,OH,26,11780017 +2023-08-15,OH,36,11780017 +2023-08-16,OH,49,11780017 +2023-08-17,OH,52,11780017 +2023-08-18,OH,59,11780017 +2023-08-19,OH,47,11780017 +2023-08-20,OH,45,11780017 +2023-08-21,OH,65,11780017 +2023-08-22,OH,50,11780017 +2023-08-23,OH,62,11780017 +2023-08-24,OH,71,11780017 +2023-08-25,OH,53,11780017 +2023-08-26,OH,62,11780017 +2023-08-27,OH,59,11780017 +2023-08-28,OH,69,11780017 +2023-08-29,OH,70,11780017 +2023-08-30,OH,66,11780017 +2023-08-31,OH,60,11780017 +2023-09-01,OH,69,11780017 +2023-09-02,OH,75,11780017 +2023-09-03,OH,61,11780017 +2023-09-04,OH,81,11780017 +2023-09-05,OH,88,11780017 +2023-09-06,OH,86,11780017 +2023-09-07,OH,98,11780017 +2023-09-08,OH,95,11780017 +2023-09-09,OH,94,11780017 +2023-09-10,OH,87,11780017 +2023-09-11,OH,108,11780017 +2023-09-12,OH,96,11780017 +2023-09-13,OH,101,11780017 +2023-09-14,OH,89,11780017 +2023-09-15,OH,82,11780017 +2023-09-16,OH,94,11780017 +2023-09-17,OH,72,11780017 +2023-09-18,OH,88,11780017 +2023-09-19,OH,98,11780017 +2023-09-20,OH,107,11780017 +2023-09-21,OH,94,11780017 +2023-09-22,OH,83,11780017 +2023-09-23,OH,65,11780017 +2023-09-24,OH,69,11780017 +2023-09-25,OH,93,11780017 +2023-09-26,OH,94,11780017 +2023-09-27,OH,100,11780017 +2023-09-28,OH,99,11780017 +2023-09-29,OH,90,11780017 +2023-09-30,OH,109,11780017 +2023-10-01,OH,70,11780017 +2023-10-02,OH,88,11780017 +2023-10-03,OH,115,11780017 +2023-10-04,OH,115,11780017 +2023-10-05,OH,91,11780017 +2023-10-06,OH,62,11780017 +2023-10-07,OH,56,11780017 +2023-10-08,OH,62,11780017 +2023-10-09,OH,79,11780017 +2023-10-10,OH,88,11780017 +2023-10-11,OH,79,11780017 +2023-10-12,OH,91,11780017 +2023-10-13,OH,86,11780017 +2023-10-14,OH,66,11780017 +2023-10-15,OH,70,11780017 +2023-10-16,OH,85,11780017 +2023-10-17,OH,98,11780017 +2023-10-18,OH,99,11780017 +2023-10-19,OH,81,11780017 +2023-10-20,OH,93,11780017 +2023-10-21,OH,96,11780017 +2023-10-22,OH,90,11780017 +2023-10-23,OH,106,11780017 +2023-10-24,OH,102,11780017 +2023-10-25,OH,96,11780017 +2023-10-26,OH,98,11780017 +2023-10-27,OH,109,11780017 +2023-10-28,OH,98,11780017 +2023-10-29,OH,102,11780017 +2023-10-30,OH,89,11780017 +2023-10-31,OH,88,11780017 +2023-11-01,OH,71,11780017 +2023-11-02,OH,90,11780017 +2023-11-03,OH,99,11780017 +2023-11-04,OH,107,11780017 +2023-11-05,OH,89,11780017 +2023-11-06,OH,97,11780017 +2023-11-07,OH,125,11780017 +2023-11-08,OH,97,11780017 +2023-11-09,OH,116,11780017 +2023-11-10,OH,106,11780017 +2023-11-11,OH,104,11780017 +2023-11-12,OH,102,11780017 +2023-11-13,OH,132,11780017 +2023-11-14,OH,115,11780017 +2023-11-15,OH,143,11780017 +2023-11-16,OH,143,11780017 +2023-11-17,OH,145,11780017 +2023-11-18,OH,136,11780017 +2023-11-19,OH,138,11780017 +2023-11-20,OH,160,11780017 +2023-11-21,OH,165,11780017 +2023-11-22,OH,150,11780017 +2023-11-23,OH,144,11780017 +2023-11-24,OH,156,11780017 +2023-11-25,OH,153,11780017 +2023-11-26,OH,165,11780017 +2023-11-27,OH,206,11780017 +2023-11-28,OH,186,11780017 +2023-11-29,OH,185,11780017 +2023-11-30,OH,183,11780017 +2023-12-01,OH,169,11780017 +2023-12-02,OH,159,11780017 +2023-12-03,OH,171,11780017 +2023-12-04,OH,200,11780017 +2023-12-05,OH,197,11780017 +2023-12-06,OH,171,11780017 +2023-12-07,OH,169,11780017 +2023-12-08,OH,190,11780017 +2023-12-09,OH,188,11780017 +2023-12-10,OH,161,11780017 +2023-12-11,OH,225,11780017 +2023-12-12,OH,187,11780017 +2023-12-13,OH,187,11780017 +2023-12-14,OH,184,11780017 +2023-12-15,OH,155,11780017 +2023-12-16,OH,180,11780017 +2023-12-17,OH,185,11780017 +2023-12-18,OH,226,11780017 +2023-12-19,OH,235,11780017 +2023-12-20,OH,217,11780017 +2023-12-21,OH,225,11780017 +2023-12-22,OH,199,11780017 +2023-12-23,OH,184,11780017 +2023-12-24,OH,185,11780017 +2023-12-25,OH,238,11780017 +2023-12-26,OH,294,11780017 +2023-12-27,OH,301,11780017 +2023-12-28,OH,284,11780017 +2023-12-29,OH,268,11780017 +2023-12-30,OH,211,11780017 +2023-12-31,OH,247,11780017 +2024-01-01,OH,216,11780017 +2024-01-02,OH,242,11780017 +2024-01-03,OH,188,11780017 +2024-01-04,OH,194,11780017 +2024-01-05,OH,197,11780017 +2024-01-06,OH,185,11780017 +2024-01-07,OH,174,11780017 +2024-01-08,OH,200,11780017 +2024-01-09,OH,178,11780017 +2024-01-10,OH,171,11780017 +2024-01-11,OH,171,11780017 +2024-01-12,OH,160,11780017 +2024-01-13,OH,154,11780017 +2024-01-14,OH,131,11780017 +2024-01-15,OH,170,11780017 +2024-01-16,OH,149,11780017 +2024-01-17,OH,143,11780017 +2024-01-18,OH,132,11780017 +2024-01-19,OH,140,11780017 +2022-12-31,OK,69,3986639 +2023-01-01,OK,60,3986639 +2023-01-02,OK,62,3986639 +2023-01-03,OK,77,3986639 +2023-01-04,OK,84,3986639 +2023-01-05,OK,54,3986639 +2023-01-06,OK,63,3986639 +2023-01-07,OK,62,3986639 +2023-01-08,OK,42,3986639 +2023-01-09,OK,59,3986639 +2023-01-10,OK,66,3986639 +2023-01-11,OK,64,3986639 +2023-01-12,OK,63,3986639 +2023-01-13,OK,57,3986639 +2023-01-14,OK,51,3986639 +2023-01-15,OK,34,3986639 +2023-01-16,OK,52,3986639 +2023-01-17,OK,67,3986639 +2023-01-18,OK,73,3986639 +2023-01-19,OK,72,3986639 +2023-01-20,OK,53,3986639 +2023-01-21,OK,49,3986639 +2023-01-22,OK,58,3986639 +2023-01-23,OK,59,3986639 +2023-01-24,OK,56,3986639 +2023-01-25,OK,39,3986639 +2023-01-26,OK,60,3986639 +2023-01-27,OK,68,3986639 +2023-01-28,OK,49,3986639 +2023-01-29,OK,48,3986639 +2023-01-30,OK,49,3986639 +2023-01-31,OK,46,3986639 +2023-02-01,OK,58,3986639 +2023-02-02,OK,62,3986639 +2023-02-03,OK,45,3986639 +2023-02-04,OK,52,3986639 +2023-02-05,OK,40,3986639 +2023-02-06,OK,55,3986639 +2023-02-07,OK,53,3986639 +2023-02-08,OK,39,3986639 +2023-02-09,OK,54,3986639 +2023-02-10,OK,40,3986639 +2023-02-11,OK,47,3986639 +2023-02-12,OK,43,3986639 +2023-02-13,OK,50,3986639 +2023-02-14,OK,52,3986639 +2023-02-15,OK,40,3986639 +2023-02-16,OK,44,3986639 +2023-02-17,OK,37,3986639 +2023-02-18,OK,29,3986639 +2023-02-19,OK,37,3986639 +2023-02-20,OK,43,3986639 +2023-02-21,OK,48,3986639 +2023-02-22,OK,46,3986639 +2023-02-23,OK,37,3986639 +2023-02-24,OK,36,3986639 +2023-02-25,OK,32,3986639 +2023-02-26,OK,21,3986639 +2023-02-27,OK,36,3986639 +2023-02-28,OK,36,3986639 +2023-03-01,OK,33,3986639 +2023-03-02,OK,34,3986639 +2023-03-03,OK,27,3986639 +2023-03-04,OK,28,3986639 +2023-03-05,OK,24,3986639 +2023-03-06,OK,24,3986639 +2023-03-07,OK,49,3986639 +2023-03-08,OK,45,3986639 +2023-03-09,OK,40,3986639 +2023-03-10,OK,31,3986639 +2023-03-11,OK,28,3986639 +2023-03-12,OK,22,3986639 +2023-03-13,OK,38,3986639 +2023-03-14,OK,30,3986639 +2023-03-15,OK,51,3986639 +2023-03-16,OK,40,3986639 +2023-03-17,OK,30,3986639 +2023-03-18,OK,30,3986639 +2023-03-19,OK,28,3986639 +2023-03-20,OK,37,3986639 +2023-03-21,OK,41,3986639 +2023-03-22,OK,43,3986639 +2023-03-23,OK,41,3986639 +2023-03-24,OK,39,3986639 +2023-03-25,OK,18,3986639 +2023-03-26,OK,27,3986639 +2023-03-27,OK,23,3986639 +2023-03-28,OK,27,3986639 +2023-03-29,OK,35,3986639 +2023-03-30,OK,34,3986639 +2023-03-31,OK,25,3986639 +2023-04-01,OK,22,3986639 +2023-04-02,OK,23,3986639 +2023-04-03,OK,29,3986639 +2023-04-04,OK,22,3986639 +2023-04-05,OK,32,3986639 +2023-04-06,OK,22,3986639 +2023-04-07,OK,25,3986639 +2023-04-08,OK,18,3986639 +2023-04-09,OK,27,3986639 +2023-04-10,OK,27,3986639 +2023-04-11,OK,21,3986639 +2023-04-12,OK,25,3986639 +2023-04-13,OK,26,3986639 +2023-04-14,OK,29,3986639 +2023-04-15,OK,18,3986639 +2023-04-16,OK,19,3986639 +2023-04-17,OK,19,3986639 +2023-04-18,OK,22,3986639 +2023-04-19,OK,20,3986639 +2023-04-20,OK,10,3986639 +2023-04-21,OK,14,3986639 +2023-04-22,OK,18,3986639 +2023-04-23,OK,13,3986639 +2023-04-24,OK,15,3986639 +2023-04-25,OK,25,3986639 +2023-04-26,OK,15,3986639 +2023-04-27,OK,16,3986639 +2023-04-28,OK,10,3986639 +2023-04-29,OK,15,3986639 +2023-04-30,OK,15,3986639 +2023-05-01,OK,10,3986639 +2023-05-02,OK,15,3986639 +2023-05-03,OK,15,3986639 +2023-05-04,OK,13,3986639 +2023-05-05,OK,15,3986639 +2023-05-06,OK,16,3986639 +2023-05-07,OK,7,3986639 +2023-05-08,OK,13,3986639 +2023-05-09,OK,16,3986639 +2023-05-10,OK,13,3986639 +2023-05-11,OK,11,3986639 +2023-05-12,OK,15,3986639 +2023-05-13,OK,12,3986639 +2023-05-14,OK,11,3986639 +2023-05-15,OK,13,3986639 +2023-05-16,OK,10,3986639 +2023-05-17,OK,14,3986639 +2023-05-18,OK,8,3986639 +2023-05-19,OK,7,3986639 +2023-05-20,OK,2,3986639 +2023-05-21,OK,9,3986639 +2023-05-22,OK,9,3986639 +2023-05-23,OK,7,3986639 +2023-05-24,OK,10,3986639 +2023-05-25,OK,6,3986639 +2023-05-26,OK,9,3986639 +2023-05-27,OK,10,3986639 +2023-05-28,OK,8,3986639 +2023-05-29,OK,2,3986639 +2023-05-30,OK,13,3986639 +2023-05-31,OK,11,3986639 +2023-06-01,OK,4,3986639 +2023-06-02,OK,5,3986639 +2023-06-03,OK,3,3986639 +2023-06-04,OK,6,3986639 +2023-06-05,OK,4,3986639 +2023-06-06,OK,7,3986639 +2023-06-07,OK,11,3986639 +2023-06-08,OK,6,3986639 +2023-06-09,OK,5,3986639 +2023-06-10,OK,6,3986639 +2023-06-11,OK,8,3986639 +2023-06-12,OK,10,3986639 +2023-06-13,OK,4,3986639 +2023-06-14,OK,10,3986639 +2023-06-15,OK,7,3986639 +2023-06-16,OK,5,3986639 +2023-06-17,OK,3,3986639 +2023-06-18,OK,4,3986639 +2023-06-19,OK,4,3986639 +2023-06-20,OK,8,3986639 +2023-06-21,OK,13,3986639 +2023-06-22,OK,4,3986639 +2023-06-23,OK,5,3986639 +2023-06-24,OK,3,3986639 +2023-06-25,OK,8,3986639 +2023-06-26,OK,7,3986639 +2023-06-27,OK,8,3986639 +2023-06-28,OK,5,3986639 +2023-06-29,OK,6,3986639 +2023-06-30,OK,2,3986639 +2023-07-01,OK,3,3986639 +2023-07-02,OK,6,3986639 +2023-07-03,OK,3,3986639 +2023-07-04,OK,4,3986639 +2023-07-05,OK,3,3986639 +2023-07-06,OK,7,3986639 +2023-07-07,OK,4,3986639 +2023-07-08,OK,10,3986639 +2023-07-09,OK,7,3986639 +2023-07-10,OK,4,3986639 +2023-07-11,OK,3,3986639 +2023-07-12,OK,4,3986639 +2023-07-13,OK,7,3986639 +2023-07-14,OK,7,3986639 +2023-07-15,OK,5,3986639 +2023-07-16,OK,3,3986639 +2023-07-17,OK,10,3986639 +2023-07-18,OK,5,3986639 +2023-07-19,OK,10,3986639 +2023-07-20,OK,10,3986639 +2023-07-21,OK,8,3986639 +2023-07-22,OK,13,3986639 +2023-07-23,OK,6,3986639 +2023-07-24,OK,12,3986639 +2023-07-25,OK,8,3986639 +2023-07-26,OK,6,3986639 +2023-07-27,OK,10,3986639 +2023-07-28,OK,6,3986639 +2023-07-29,OK,6,3986639 +2023-07-30,OK,9,3986639 +2023-07-31,OK,11,3986639 +2023-08-01,OK,10,3986639 +2023-08-02,OK,7,3986639 +2023-08-03,OK,12,3986639 +2023-08-04,OK,16,3986639 +2023-08-05,OK,14,3986639 +2023-08-06,OK,10,3986639 +2023-08-07,OK,19,3986639 +2023-08-08,OK,14,3986639 +2023-08-09,OK,11,3986639 +2023-08-10,OK,18,3986639 +2023-08-11,OK,14,3986639 +2023-08-12,OK,9,3986639 +2023-08-13,OK,14,3986639 +2023-08-14,OK,11,3986639 +2023-08-15,OK,11,3986639 +2023-08-16,OK,12,3986639 +2023-08-17,OK,22,3986639 +2023-08-18,OK,17,3986639 +2023-08-19,OK,14,3986639 +2023-08-20,OK,20,3986639 +2023-08-21,OK,24,3986639 +2023-08-22,OK,15,3986639 +2023-08-23,OK,24,3986639 +2023-08-24,OK,22,3986639 +2023-08-25,OK,12,3986639 +2023-08-26,OK,16,3986639 +2023-08-27,OK,28,3986639 +2023-08-28,OK,25,3986639 +2023-08-29,OK,33,3986639 +2023-08-30,OK,35,3986639 +2023-08-31,OK,30,3986639 +2023-09-01,OK,34,3986639 +2023-09-02,OK,38,3986639 +2023-09-03,OK,26,3986639 +2023-09-04,OK,38,3986639 +2023-09-05,OK,38,3986639 +2023-09-06,OK,28,3986639 +2023-09-07,OK,40,3986639 +2023-09-08,OK,35,3986639 +2023-09-09,OK,29,3986639 +2023-09-10,OK,29,3986639 +2023-09-11,OK,28,3986639 +2023-09-12,OK,28,3986639 +2023-09-13,OK,26,3986639 +2023-09-14,OK,27,3986639 +2023-09-15,OK,24,3986639 +2023-09-16,OK,25,3986639 +2023-09-17,OK,25,3986639 +2023-09-18,OK,27,3986639 +2023-09-19,OK,33,3986639 +2023-09-20,OK,35,3986639 +2023-09-21,OK,36,3986639 +2023-09-22,OK,36,3986639 +2023-09-23,OK,22,3986639 +2023-09-24,OK,24,3986639 +2023-09-25,OK,22,3986639 +2023-09-26,OK,21,3986639 +2023-09-27,OK,24,3986639 +2023-09-28,OK,28,3986639 +2023-09-29,OK,24,3986639 +2023-09-30,OK,16,3986639 +2023-10-01,OK,26,3986639 +2023-10-02,OK,25,3986639 +2023-10-03,OK,21,3986639 +2023-10-04,OK,21,3986639 +2023-10-05,OK,25,3986639 +2023-10-06,OK,18,3986639 +2023-10-07,OK,15,3986639 +2023-10-08,OK,21,3986639 +2023-10-09,OK,19,3986639 +2023-10-10,OK,24,3986639 +2023-10-11,OK,32,3986639 +2023-10-12,OK,41,3986639 +2023-10-13,OK,21,3986639 +2023-10-14,OK,21,3986639 +2023-10-15,OK,21,3986639 +2023-10-16,OK,21,3986639 +2023-10-17,OK,11,3986639 +2023-10-18,OK,42,3986639 +2023-10-19,OK,30,3986639 +2023-10-20,OK,26,3986639 +2023-10-21,OK,17,3986639 +2023-10-22,OK,32,3986639 +2023-10-23,OK,30,3986639 +2023-10-24,OK,35,3986639 +2023-10-25,OK,26,3986639 +2023-10-26,OK,19,3986639 +2023-10-27,OK,19,3986639 +2023-10-28,OK,22,3986639 +2023-10-29,OK,23,3986639 +2023-10-30,OK,22,3986639 +2023-10-31,OK,28,3986639 +2023-11-01,OK,26,3986639 +2023-11-02,OK,27,3986639 +2023-11-03,OK,26,3986639 +2023-11-04,OK,22,3986639 +2023-11-05,OK,25,3986639 +2023-11-06,OK,28,3986639 +2023-11-07,OK,29,3986639 +2023-11-08,OK,26,3986639 +2023-11-09,OK,31,3986639 +2023-11-10,OK,32,3986639 +2023-11-11,OK,27,3986639 +2023-11-12,OK,20,3986639 +2023-11-13,OK,44,3986639 +2023-11-14,OK,31,3986639 +2023-11-15,OK,41,3986639 +2023-11-16,OK,34,3986639 +2023-11-17,OK,30,3986639 +2023-11-18,OK,33,3986639 +2023-11-19,OK,35,3986639 +2023-11-20,OK,40,3986639 +2023-11-21,OK,45,3986639 +2023-11-22,OK,30,3986639 +2023-11-23,OK,25,3986639 +2023-11-24,OK,39,3986639 +2023-11-25,OK,40,3986639 +2023-11-26,OK,35,3986639 +2023-11-27,OK,39,3986639 +2023-11-28,OK,44,3986639 +2023-11-29,OK,52,3986639 +2023-11-30,OK,49,3986639 +2023-12-01,OK,45,3986639 +2023-12-02,OK,46,3986639 +2023-12-03,OK,58,3986639 +2023-12-04,OK,50,3986639 +2023-12-05,OK,42,3986639 +2023-12-06,OK,56,3986639 +2023-12-07,OK,73,3986639 +2023-12-08,OK,59,3986639 +2023-12-09,OK,51,3986639 +2023-12-10,OK,56,3986639 +2023-12-11,OK,64,3986639 +2023-12-12,OK,54,3986639 +2023-12-13,OK,59,3986639 +2023-12-14,OK,57,3986639 +2023-12-15,OK,70,3986639 +2023-12-16,OK,34,3986639 +2023-12-17,OK,46,3986639 +2023-12-18,OK,68,3986639 +2023-12-19,OK,56,3986639 +2023-12-20,OK,61,3986639 +2023-12-21,OK,58,3986639 +2023-12-22,OK,70,3986639 +2023-12-23,OK,56,3986639 +2023-12-24,OK,62,3986639 +2023-12-25,OK,38,3986639 +2023-12-26,OK,69,3986639 +2023-12-27,OK,68,3986639 +2023-12-28,OK,73,3986639 +2023-12-29,OK,64,3986639 +2023-12-30,OK,55,3986639 +2023-12-31,OK,51,3986639 +2024-01-01,OK,50,3986639 +2024-01-02,OK,58,3986639 +2024-01-03,OK,60,3986639 +2024-01-04,OK,51,3986639 +2024-01-05,OK,52,3986639 +2024-01-06,OK,34,3986639 +2024-01-07,OK,52,3986639 +2024-01-08,OK,60,3986639 +2024-01-09,OK,48,3986639 +2024-01-10,OK,47,3986639 +2024-01-11,OK,59,3986639 +2024-01-12,OK,44,3986639 +2024-01-13,OK,42,3986639 +2024-01-14,OK,34,3986639 +2024-01-15,OK,41,3986639 +2024-01-16,OK,46,3986639 +2024-01-17,OK,50,3986639 +2024-01-18,OK,35,3986639 +2024-01-19,OK,37,3986639 +2022-12-31,OR,40,4246155 +2023-01-01,OR,38,4246155 +2023-01-02,OR,40,4246155 +2023-01-03,OR,43,4246155 +2023-01-04,OR,50,4246155 +2023-01-05,OR,39,4246155 +2023-01-06,OR,40,4246155 +2023-01-07,OR,39,4246155 +2023-01-08,OR,38,4246155 +2023-01-09,OR,47,4246155 +2023-01-10,OR,40,4246155 +2023-01-11,OR,29,4246155 +2023-01-12,OR,43,4246155 +2023-01-13,OR,42,4246155 +2023-01-14,OR,35,4246155 +2023-01-15,OR,34,4246155 +2023-01-16,OR,37,4246155 +2023-01-17,OR,48,4246155 +2023-01-18,OR,26,4246155 +2023-01-19,OR,27,4246155 +2023-01-20,OR,34,4246155 +2023-01-21,OR,30,4246155 +2023-01-22,OR,34,4246155 +2023-01-23,OR,34,4246155 +2023-01-24,OR,39,4246155 +2023-01-25,OR,24,4246155 +2023-01-26,OR,38,4246155 +2023-01-27,OR,30,4246155 +2023-01-28,OR,42,4246155 +2023-01-29,OR,35,4246155 +2023-01-30,OR,38,4246155 +2023-01-31,OR,29,4246155 +2023-02-01,OR,31,4246155 +2023-02-02,OR,28,4246155 +2023-02-03,OR,37,4246155 +2023-02-04,OR,27,4246155 +2023-02-05,OR,33,4246155 +2023-02-06,OR,37,4246155 +2023-02-07,OR,43,4246155 +2023-02-08,OR,31,4246155 +2023-02-09,OR,32,4246155 +2023-02-10,OR,25,4246155 +2023-02-11,OR,29,4246155 +2023-02-12,OR,35,4246155 +2023-02-13,OR,38,4246155 +2023-02-14,OR,46,4246155 +2023-02-15,OR,42,4246155 +2023-02-16,OR,44,4246155 +2023-02-17,OR,48,4246155 +2023-02-18,OR,27,4246155 +2023-02-19,OR,42,4246155 +2023-02-20,OR,32,4246155 +2023-02-21,OR,31,4246155 +2023-02-22,OR,31,4246155 +2023-02-23,OR,30,4246155 +2023-02-24,OR,30,4246155 +2023-02-25,OR,28,4246155 +2023-02-26,OR,34,4246155 +2023-02-27,OR,31,4246155 +2023-02-28,OR,37,4246155 +2023-03-01,OR,33,4246155 +2023-03-02,OR,33,4246155 +2023-03-03,OR,30,4246155 +2023-03-04,OR,26,4246155 +2023-03-05,OR,34,4246155 +2023-03-06,OR,30,4246155 +2023-03-07,OR,40,4246155 +2023-03-08,OR,28,4246155 +2023-03-09,OR,32,4246155 +2023-03-10,OR,35,4246155 +2023-03-11,OR,37,4246155 +2023-03-12,OR,30,4246155 +2023-03-13,OR,27,4246155 +2023-03-14,OR,26,4246155 +2023-03-15,OR,39,4246155 +2023-03-16,OR,38,4246155 +2023-03-17,OR,26,4246155 +2023-03-18,OR,27,4246155 +2023-03-19,OR,35,4246155 +2023-03-20,OR,34,4246155 +2023-03-21,OR,21,4246155 +2023-03-22,OR,26,4246155 +2023-03-23,OR,31,4246155 +2023-03-24,OR,31,4246155 +2023-03-25,OR,25,4246155 +2023-03-26,OR,24,4246155 +2023-03-27,OR,26,4246155 +2023-03-28,OR,27,4246155 +2023-03-29,OR,28,4246155 +2023-03-30,OR,22,4246155 +2023-03-31,OR,25,4246155 +2023-04-01,OR,23,4246155 +2023-04-02,OR,26,4246155 +2023-04-03,OR,28,4246155 +2023-04-04,OR,17,4246155 +2023-04-05,OR,18,4246155 +2023-04-06,OR,27,4246155 +2023-04-07,OR,12,4246155 +2023-04-08,OR,15,4246155 +2023-04-09,OR,24,4246155 +2023-04-10,OR,17,4246155 +2023-04-11,OR,22,4246155 +2023-04-12,OR,16,4246155 +2023-04-13,OR,17,4246155 +2023-04-14,OR,15,4246155 +2023-04-15,OR,14,4246155 +2023-04-16,OR,15,4246155 +2023-04-17,OR,14,4246155 +2023-04-18,OR,16,4246155 +2023-04-19,OR,19,4246155 +2023-04-20,OR,26,4246155 +2023-04-21,OR,25,4246155 +2023-04-22,OR,23,4246155 +2023-04-23,OR,17,4246155 +2023-04-24,OR,15,4246155 +2023-04-25,OR,13,4246155 +2023-04-26,OR,27,4246155 +2023-04-27,OR,19,4246155 +2023-04-28,OR,17,4246155 +2023-04-29,OR,18,4246155 +2023-04-30,OR,17,4246155 +2023-05-01,OR,10,4246155 +2023-05-02,OR,16,4246155 +2023-05-03,OR,18,4246155 +2023-05-04,OR,21,4246155 +2023-05-05,OR,14,4246155 +2023-05-06,OR,8,4246155 +2023-05-07,OR,23,4246155 +2023-05-08,OR,13,4246155 +2023-05-09,OR,10,4246155 +2023-05-10,OR,7,4246155 +2023-05-11,OR,15,4246155 +2023-05-12,OR,13,4246155 +2023-05-13,OR,19,4246155 +2023-05-14,OR,15,4246155 +2023-05-15,OR,19,4246155 +2023-05-16,OR,15,4246155 +2023-05-17,OR,8,4246155 +2023-05-18,OR,21,4246155 +2023-05-19,OR,10,4246155 +2023-05-20,OR,7,4246155 +2023-05-21,OR,14,4246155 +2023-05-22,OR,10,4246155 +2023-05-23,OR,8,4246155 +2023-05-24,OR,16,4246155 +2023-05-25,OR,9,4246155 +2023-05-26,OR,6,4246155 +2023-05-27,OR,10,4246155 +2023-05-28,OR,4,4246155 +2023-05-29,OR,15,4246155 +2023-05-30,OR,7,4246155 +2023-05-31,OR,12,4246155 +2023-06-01,OR,13,4246155 +2023-06-02,OR,11,4246155 +2023-06-03,OR,13,4246155 +2023-06-04,OR,9,4246155 +2023-06-05,OR,13,4246155 +2023-06-06,OR,8,4246155 +2023-06-07,OR,13,4246155 +2023-06-08,OR,13,4246155 +2023-06-09,OR,7,4246155 +2023-06-10,OR,11,4246155 +2023-06-11,OR,8,4246155 +2023-06-12,OR,8,4246155 +2023-06-13,OR,9,4246155 +2023-06-14,OR,9,4246155 +2023-06-15,OR,9,4246155 +2023-06-16,OR,11,4246155 +2023-06-17,OR,8,4246155 +2023-06-18,OR,14,4246155 +2023-06-19,OR,7,4246155 +2023-06-20,OR,8,4246155 +2023-06-21,OR,11,4246155 +2023-06-22,OR,11,4246155 +2023-06-23,OR,9,4246155 +2023-06-24,OR,12,4246155 +2023-06-25,OR,10,4246155 +2023-06-26,OR,10,4246155 +2023-06-27,OR,7,4246155 +2023-06-28,OR,9,4246155 +2023-06-29,OR,12,4246155 +2023-06-30,OR,11,4246155 +2023-07-01,OR,9,4246155 +2023-07-02,OR,12,4246155 +2023-07-03,OR,12,4246155 +2023-07-04,OR,8,4246155 +2023-07-05,OR,12,4246155 +2023-07-06,OR,15,4246155 +2023-07-07,OR,9,4246155 +2023-07-08,OR,19,4246155 +2023-07-09,OR,13,4246155 +2023-07-10,OR,15,4246155 +2023-07-11,OR,21,4246155 +2023-07-12,OR,18,4246155 +2023-07-13,OR,15,4246155 +2023-07-14,OR,7,4246155 +2023-07-15,OR,13,4246155 +2023-07-16,OR,15,4246155 +2023-07-17,OR,15,4246155 +2023-07-18,OR,9,4246155 +2023-07-19,OR,12,4246155 +2023-07-20,OR,13,4246155 +2023-07-21,OR,12,4246155 +2023-07-22,OR,13,4246155 +2023-07-23,OR,16,4246155 +2023-07-24,OR,12,4246155 +2023-07-25,OR,9,4246155 +2023-07-26,OR,8,4246155 +2023-07-27,OR,18,4246155 +2023-07-28,OR,9,4246155 +2023-07-29,OR,10,4246155 +2023-07-30,OR,11,4246155 +2023-07-31,OR,21,4246155 +2023-08-01,OR,20,4246155 +2023-08-02,OR,20,4246155 +2023-08-03,OR,23,4246155 +2023-08-04,OR,17,4246155 +2023-08-05,OR,20,4246155 +2023-08-06,OR,17,4246155 +2023-08-07,OR,19,4246155 +2023-08-08,OR,21,4246155 +2023-08-09,OR,20,4246155 +2023-08-10,OR,16,4246155 +2023-08-11,OR,19,4246155 +2023-08-12,OR,21,4246155 +2023-08-13,OR,18,4246155 +2023-08-14,OR,19,4246155 +2023-08-15,OR,28,4246155 +2023-08-16,OR,24,4246155 +2023-08-17,OR,24,4246155 +2023-08-18,OR,20,4246155 +2023-08-19,OR,22,4246155 +2023-08-20,OR,19,4246155 +2023-08-21,OR,30,4246155 +2023-08-22,OR,25,4246155 +2023-08-23,OR,25,4246155 +2023-08-24,OR,28,4246155 +2023-08-25,OR,21,4246155 +2023-08-26,OR,16,4246155 +2023-08-27,OR,21,4246155 +2023-08-28,OR,27,4246155 +2023-08-29,OR,38,4246155 +2023-08-30,OR,29,4246155 +2023-08-31,OR,23,4246155 +2023-09-01,OR,27,4246155 +2023-09-02,OR,27,4246155 +2023-09-03,OR,28,4246155 +2023-09-04,OR,31,4246155 +2023-09-05,OR,30,4246155 +2023-09-06,OR,45,4246155 +2023-09-07,OR,47,4246155 +2023-09-08,OR,38,4246155 +2023-09-09,OR,33,4246155 +2023-09-10,OR,28,4246155 +2023-09-11,OR,28,4246155 +2023-09-12,OR,23,4246155 +2023-09-13,OR,49,4246155 +2023-09-14,OR,48,4246155 +2023-09-15,OR,46,4246155 +2023-09-16,OR,36,4246155 +2023-09-17,OR,37,4246155 +2023-09-18,OR,24,4246155 +2023-09-19,OR,41,4246155 +2023-09-20,OR,37,4246155 +2023-09-21,OR,51,4246155 +2023-09-22,OR,33,4246155 +2023-09-23,OR,40,4246155 +2023-09-24,OR,45,4246155 +2023-09-25,OR,47,4246155 +2023-09-26,OR,45,4246155 +2023-09-27,OR,37,4246155 +2023-09-28,OR,29,4246155 +2023-09-29,OR,44,4246155 +2023-09-30,OR,43,4246155 +2023-10-01,OR,43,4246155 +2023-10-02,OR,43,4246155 +2023-10-03,OR,53,4246155 +2023-10-04,OR,34,4246155 +2023-10-05,OR,45,4246155 +2023-10-06,OR,36,4246155 +2023-10-07,OR,49,4246155 +2023-10-08,OR,38,4246155 +2023-10-09,OR,42,4246155 +2023-10-10,OR,32,4246155 +2023-10-11,OR,33,4246155 +2023-10-12,OR,30,4246155 +2023-10-13,OR,36,4246155 +2023-10-14,OR,31,4246155 +2023-10-15,OR,30,4246155 +2023-10-16,OR,51,4246155 +2023-10-17,OR,31,4246155 +2023-10-18,OR,30,4246155 +2023-10-19,OR,26,4246155 +2023-10-20,OR,30,4246155 +2023-10-21,OR,33,4246155 +2023-10-22,OR,33,4246155 +2023-10-23,OR,34,4246155 +2023-10-24,OR,32,4246155 +2023-10-25,OR,33,4246155 +2023-10-26,OR,33,4246155 +2023-10-27,OR,30,4246155 +2023-10-28,OR,29,4246155 +2023-10-29,OR,31,4246155 +2023-10-30,OR,26,4246155 +2023-10-31,OR,23,4246155 +2023-11-01,OR,36,4246155 +2023-11-02,OR,34,4246155 +2023-11-03,OR,20,4246155 +2023-11-04,OR,33,4246155 +2023-11-05,OR,24,4246155 +2023-11-06,OR,26,4246155 +2023-11-07,OR,27,4246155 +2023-11-08,OR,28,4246155 +2023-11-09,OR,30,4246155 +2023-11-10,OR,25,4246155 +2023-11-11,OR,18,4246155 +2023-11-12,OR,30,4246155 +2023-11-13,OR,21,4246155 +2023-11-14,OR,22,4246155 +2023-11-15,OR,37,4246155 +2023-11-16,OR,20,4246155 +2023-11-17,OR,27,4246155 +2023-11-18,OR,21,4246155 +2023-11-19,OR,19,4246155 +2023-11-20,OR,28,4246155 +2023-11-21,OR,30,4246155 +2023-11-22,OR,25,4246155 +2023-11-23,OR,30,4246155 +2023-11-24,OR,30,4246155 +2023-11-25,OR,39,4246155 +2023-11-26,OR,30,4246155 +2023-11-27,OR,33,4246155 +2023-11-28,OR,38,4246155 +2023-11-29,OR,31,4246155 +2023-11-30,OR,20,4246155 +2023-12-01,OR,35,4246155 +2023-12-02,OR,28,4246155 +2023-12-03,OR,24,4246155 +2023-12-04,OR,44,4246155 +2023-12-05,OR,32,4246155 +2023-12-06,OR,25,4246155 +2023-12-07,OR,31,4246155 +2023-12-08,OR,20,4246155 +2023-12-09,OR,24,4246155 +2023-12-10,OR,33,4246155 +2023-12-11,OR,34,4246155 +2023-12-12,OR,30,4246155 +2023-12-13,OR,32,4246155 +2023-12-14,OR,26,4246155 +2023-12-15,OR,19,4246155 +2023-12-16,OR,31,4246155 +2023-12-17,OR,28,4246155 +2023-12-18,OR,37,4246155 +2023-12-19,OR,31,4246155 +2023-12-20,OR,26,4246155 +2023-12-21,OR,29,4246155 +2023-12-22,OR,20,4246155 +2023-12-23,OR,34,4246155 +2023-12-24,OR,38,4246155 +2023-12-25,OR,37,4246155 +2023-12-26,OR,35,4246155 +2023-12-27,OR,39,4246155 +2023-12-28,OR,45,4246155 +2023-12-29,OR,53,4246155 +2023-12-30,OR,48,4246155 +2023-12-31,OR,43,4246155 +2024-01-01,OR,45,4246155 +2024-01-02,OR,47,4246155 +2024-01-03,OR,46,4246155 +2024-01-04,OR,34,4246155 +2024-01-05,OR,41,4246155 +2024-01-06,OR,34,4246155 +2024-01-07,OR,44,4246155 +2024-01-08,OR,34,4246155 +2024-01-09,OR,35,4246155 +2024-01-10,OR,42,4246155 +2024-01-11,OR,36,4246155 +2024-01-12,OR,33,4246155 +2024-01-13,OR,26,4246155 +2024-01-14,OR,26,4246155 +2024-01-15,OR,35,4246155 +2024-01-16,OR,33,4246155 +2024-01-17,OR,39,4246155 +2024-01-18,OR,38,4246155 +2024-01-19,OR,40,4246155 +2022-12-31,PA,228,12964056 +2023-01-01,PA,209,12964056 +2023-01-02,PA,251,12964056 +2023-01-03,PA,290,12964056 +2023-01-04,PA,267,12964056 +2023-01-05,PA,255,12964056 +2023-01-06,PA,250,12964056 +2023-01-07,PA,198,12964056 +2023-01-08,PA,175,12964056 +2023-01-09,PA,220,12964056 +2023-01-10,PA,216,12964056 +2023-01-11,PA,223,12964056 +2023-01-12,PA,188,12964056 +2023-01-13,PA,197,12964056 +2023-01-14,PA,151,12964056 +2023-01-15,PA,153,12964056 +2023-01-16,PA,189,12964056 +2023-01-17,PA,208,12964056 +2023-01-18,PA,196,12964056 +2023-01-19,PA,193,12964056 +2023-01-20,PA,203,12964056 +2023-01-21,PA,181,12964056 +2023-01-22,PA,170,12964056 +2023-01-23,PA,205,12964056 +2023-01-24,PA,217,12964056 +2023-01-25,PA,207,12964056 +2023-01-26,PA,191,12964056 +2023-01-27,PA,201,12964056 +2023-01-28,PA,134,12964056 +2023-01-29,PA,161,12964056 +2023-01-30,PA,164,12964056 +2023-01-31,PA,215,12964056 +2023-02-01,PA,176,12964056 +2023-02-02,PA,191,12964056 +2023-02-03,PA,163,12964056 +2023-02-04,PA,135,12964056 +2023-02-05,PA,175,12964056 +2023-02-06,PA,217,12964056 +2023-02-07,PA,205,12964056 +2023-02-08,PA,164,12964056 +2023-02-09,PA,173,12964056 +2023-02-10,PA,179,12964056 +2023-02-11,PA,139,12964056 +2023-02-12,PA,124,12964056 +2023-02-13,PA,205,12964056 +2023-02-14,PA,207,12964056 +2023-02-15,PA,199,12964056 +2023-02-16,PA,195,12964056 +2023-02-17,PA,179,12964056 +2023-02-18,PA,155,12964056 +2023-02-19,PA,146,12964056 +2023-02-20,PA,212,12964056 +2023-02-21,PA,163,12964056 +2023-02-22,PA,181,12964056 +2023-02-23,PA,169,12964056 +2023-02-24,PA,176,12964056 +2023-02-25,PA,144,12964056 +2023-02-26,PA,161,12964056 +2023-02-27,PA,152,12964056 +2023-02-28,PA,161,12964056 +2023-03-01,PA,146,12964056 +2023-03-02,PA,141,12964056 +2023-03-03,PA,134,12964056 +2023-03-04,PA,133,12964056 +2023-03-05,PA,129,12964056 +2023-03-06,PA,144,12964056 +2023-03-07,PA,136,12964056 +2023-03-08,PA,132,12964056 +2023-03-09,PA,132,12964056 +2023-03-10,PA,134,12964056 +2023-03-11,PA,104,12964056 +2023-03-12,PA,88,12964056 +2023-03-13,PA,136,12964056 +2023-03-14,PA,142,12964056 +2023-03-15,PA,140,12964056 +2023-03-16,PA,106,12964056 +2023-03-17,PA,109,12964056 +2023-03-18,PA,99,12964056 +2023-03-19,PA,100,12964056 +2023-03-20,PA,113,12964056 +2023-03-21,PA,122,12964056 +2023-03-22,PA,96,12964056 +2023-03-23,PA,131,12964056 +2023-03-24,PA,92,12964056 +2023-03-25,PA,91,12964056 +2023-03-26,PA,82,12964056 +2023-03-27,PA,113,12964056 +2023-03-28,PA,97,12964056 +2023-03-29,PA,101,12964056 +2023-03-30,PA,85,12964056 +2023-03-31,PA,79,12964056 +2023-04-01,PA,70,12964056 +2023-04-02,PA,81,12964056 +2023-04-03,PA,97,12964056 +2023-04-04,PA,75,12964056 +2023-04-05,PA,71,12964056 +2023-04-06,PA,84,12964056 +2023-04-07,PA,70,12964056 +2023-04-08,PA,51,12964056 +2023-04-09,PA,67,12964056 +2023-04-10,PA,61,12964056 +2023-04-11,PA,57,12964056 +2023-04-12,PA,63,12964056 +2023-04-13,PA,64,12964056 +2023-04-14,PA,56,12964056 +2023-04-15,PA,52,12964056 +2023-04-16,PA,57,12964056 +2023-04-17,PA,57,12964056 +2023-04-18,PA,51,12964056 +2023-04-19,PA,60,12964056 +2023-04-20,PA,50,12964056 +2023-04-21,PA,46,12964056 +2023-04-22,PA,27,12964056 +2023-04-23,PA,52,12964056 +2023-04-24,PA,40,12964056 +2023-04-25,PA,52,12964056 +2023-04-26,PA,56,12964056 +2023-04-27,PA,50,12964056 +2023-04-28,PA,66,12964056 +2023-04-29,PA,46,12964056 +2023-04-30,PA,50,12964056 +2023-05-01,PA,54,12964056 +2023-05-02,PA,39,12964056 +2023-05-03,PA,46,12964056 +2023-05-04,PA,35,12964056 +2023-05-05,PA,47,12964056 +2023-05-06,PA,24,12964056 +2023-05-07,PA,38,12964056 +2023-05-08,PA,59,12964056 +2023-05-09,PA,42,12964056 +2023-05-10,PA,45,12964056 +2023-05-11,PA,40,12964056 +2023-05-12,PA,48,12964056 +2023-05-13,PA,26,12964056 +2023-05-14,PA,35,12964056 +2023-05-15,PA,55,12964056 +2023-05-16,PA,36,12964056 +2023-05-17,PA,33,12964056 +2023-05-18,PA,34,12964056 +2023-05-19,PA,34,12964056 +2023-05-20,PA,32,12964056 +2023-05-21,PA,32,12964056 +2023-05-22,PA,40,12964056 +2023-05-23,PA,36,12964056 +2023-05-24,PA,42,12964056 +2023-05-25,PA,32,12964056 +2023-05-26,PA,31,12964056 +2023-05-27,PA,21,12964056 +2023-05-28,PA,30,12964056 +2023-05-29,PA,42,12964056 +2023-05-30,PA,36,12964056 +2023-05-31,PA,34,12964056 +2023-06-01,PA,40,12964056 +2023-06-02,PA,36,12964056 +2023-06-03,PA,30,12964056 +2023-06-04,PA,37,12964056 +2023-06-05,PA,35,12964056 +2023-06-06,PA,31,12964056 +2023-06-07,PA,31,12964056 +2023-06-08,PA,22,12964056 +2023-06-09,PA,33,12964056 +2023-06-10,PA,31,12964056 +2023-06-11,PA,30,12964056 +2023-06-12,PA,33,12964056 +2023-06-13,PA,37,12964056 +2023-06-14,PA,39,12964056 +2023-06-15,PA,33,12964056 +2023-06-16,PA,26,12964056 +2023-06-17,PA,25,12964056 +2023-06-18,PA,23,12964056 +2023-06-19,PA,30,12964056 +2023-06-20,PA,25,12964056 +2023-06-21,PA,25,12964056 +2023-06-22,PA,30,12964056 +2023-06-23,PA,25,12964056 +2023-06-24,PA,21,12964056 +2023-06-25,PA,19,12964056 +2023-06-26,PA,22,12964056 +2023-06-27,PA,27,12964056 +2023-06-28,PA,33,12964056 +2023-06-29,PA,38,12964056 +2023-06-30,PA,32,12964056 +2023-07-01,PA,30,12964056 +2023-07-02,PA,33,12964056 +2023-07-03,PA,28,12964056 +2023-07-04,PA,28,12964056 +2023-07-05,PA,26,12964056 +2023-07-06,PA,35,12964056 +2023-07-07,PA,32,12964056 +2023-07-08,PA,20,12964056 +2023-07-09,PA,39,12964056 +2023-07-10,PA,35,12964056 +2023-07-11,PA,45,12964056 +2023-07-12,PA,31,12964056 +2023-07-13,PA,25,12964056 +2023-07-14,PA,31,12964056 +2023-07-15,PA,29,12964056 +2023-07-16,PA,27,12964056 +2023-07-17,PA,27,12964056 +2023-07-18,PA,32,12964056 +2023-07-19,PA,26,12964056 +2023-07-20,PA,33,12964056 +2023-07-21,PA,53,12964056 +2023-07-22,PA,33,12964056 +2023-07-23,PA,28,12964056 +2023-07-24,PA,31,12964056 +2023-07-25,PA,49,12964056 +2023-07-26,PA,39,12964056 +2023-07-27,PA,51,12964056 +2023-07-28,PA,47,12964056 +2023-07-29,PA,36,12964056 +2023-07-30,PA,27,12964056 +2023-07-31,PA,51,12964056 +2023-08-01,PA,42,12964056 +2023-08-02,PA,46,12964056 +2023-08-03,PA,55,12964056 +2023-08-04,PA,44,12964056 +2023-08-05,PA,52,12964056 +2023-08-06,PA,53,12964056 +2023-08-07,PA,64,12964056 +2023-08-08,PA,54,12964056 +2023-08-09,PA,51,12964056 +2023-08-10,PA,50,12964056 +2023-08-11,PA,57,12964056 +2023-08-12,PA,58,12964056 +2023-08-13,PA,59,12964056 +2023-08-14,PA,63,12964056 +2023-08-15,PA,57,12964056 +2023-08-16,PA,69,12964056 +2023-08-17,PA,69,12964056 +2023-08-18,PA,51,12964056 +2023-08-19,PA,71,12964056 +2023-08-20,PA,60,12964056 +2023-08-21,PA,70,12964056 +2023-08-22,PA,62,12964056 +2023-08-23,PA,69,12964056 +2023-08-24,PA,55,12964056 +2023-08-25,PA,79,12964056 +2023-08-26,PA,70,12964056 +2023-08-27,PA,74,12964056 +2023-08-28,PA,90,12964056 +2023-08-29,PA,63,12964056 +2023-08-30,PA,82,12964056 +2023-08-31,PA,70,12964056 +2023-09-01,PA,80,12964056 +2023-09-02,PA,62,12964056 +2023-09-03,PA,93,12964056 +2023-09-04,PA,103,12964056 +2023-09-05,PA,117,12964056 +2023-09-06,PA,114,12964056 +2023-09-07,PA,87,12964056 +2023-09-08,PA,110,12964056 +2023-09-09,PA,75,12964056 +2023-09-10,PA,83,12964056 +2023-09-11,PA,92,12964056 +2023-09-12,PA,98,12964056 +2023-09-13,PA,98,12964056 +2023-09-14,PA,90,12964056 +2023-09-15,PA,107,12964056 +2023-09-16,PA,85,12964056 +2023-09-17,PA,107,12964056 +2023-09-18,PA,98,12964056 +2023-09-19,PA,112,12964056 +2023-09-20,PA,128,12964056 +2023-09-21,PA,105,12964056 +2023-09-22,PA,103,12964056 +2023-09-23,PA,78,12964056 +2023-09-24,PA,87,12964056 +2023-09-25,PA,97,12964056 +2023-09-26,PA,109,12964056 +2023-09-27,PA,112,12964056 +2023-09-28,PA,99,12964056 +2023-09-29,PA,111,12964056 +2023-09-30,PA,106,12964056 +2023-10-01,PA,95,12964056 +2023-10-02,PA,121,12964056 +2023-10-03,PA,116,12964056 +2023-10-04,PA,124,12964056 +2023-10-05,PA,100,12964056 +2023-10-06,PA,96,12964056 +2023-10-07,PA,87,12964056 +2023-10-08,PA,82,12964056 +2023-10-09,PA,82,12964056 +2023-10-10,PA,83,12964056 +2023-10-11,PA,87,12964056 +2023-10-12,PA,99,12964056 +2023-10-13,PA,112,12964056 +2023-10-14,PA,94,12964056 +2023-10-15,PA,89,12964056 +2023-10-16,PA,106,12964056 +2023-10-17,PA,105,12964056 +2023-10-18,PA,95,12964056 +2023-10-19,PA,124,12964056 +2023-10-20,PA,103,12964056 +2023-10-21,PA,94,12964056 +2023-10-22,PA,91,12964056 +2023-10-23,PA,111,12964056 +2023-10-24,PA,108,12964056 +2023-10-25,PA,99,12964056 +2023-10-26,PA,123,12964056 +2023-10-27,PA,121,12964056 +2023-10-28,PA,102,12964056 +2023-10-29,PA,107,12964056 +2023-10-30,PA,96,12964056 +2023-10-31,PA,88,12964056 +2023-11-01,PA,75,12964056 +2023-11-02,PA,92,12964056 +2023-11-03,PA,108,12964056 +2023-11-04,PA,97,12964056 +2023-11-05,PA,88,12964056 +2023-11-06,PA,119,12964056 +2023-11-07,PA,132,12964056 +2023-11-08,PA,135,12964056 +2023-11-09,PA,113,12964056 +2023-11-10,PA,119,12964056 +2023-11-11,PA,112,12964056 +2023-11-12,PA,98,12964056 +2023-11-13,PA,132,12964056 +2023-11-14,PA,142,12964056 +2023-11-15,PA,143,12964056 +2023-11-16,PA,118,12964056 +2023-11-17,PA,135,12964056 +2023-11-18,PA,141,12964056 +2023-11-19,PA,145,12964056 +2023-11-20,PA,138,12964056 +2023-11-21,PA,166,12964056 +2023-11-22,PA,149,12964056 +2023-11-23,PA,134,12964056 +2023-11-24,PA,138,12964056 +2023-11-25,PA,135,12964056 +2023-11-26,PA,127,12964056 +2023-11-27,PA,153,12964056 +2023-11-28,PA,183,12964056 +2023-11-29,PA,187,12964056 +2023-11-30,PA,197,12964056 +2023-12-01,PA,195,12964056 +2023-12-02,PA,155,12964056 +2023-12-03,PA,191,12964056 +2023-12-04,PA,199,12964056 +2023-12-05,PA,197,12964056 +2023-12-06,PA,155,12964056 +2023-12-07,PA,181,12964056 +2023-12-08,PA,160,12964056 +2023-12-09,PA,130,12964056 +2023-12-10,PA,137,12964056 +2023-12-11,PA,151,12964056 +2023-12-12,PA,149,12964056 +2023-12-13,PA,168,12964056 +2023-12-14,PA,151,12964056 +2023-12-15,PA,183,12964056 +2023-12-16,PA,151,12964056 +2023-12-17,PA,177,12964056 +2023-12-18,PA,217,12964056 +2023-12-19,PA,187,12964056 +2023-12-20,PA,160,12964056 +2023-12-21,PA,177,12964056 +2023-12-22,PA,191,12964056 +2023-12-23,PA,196,12964056 +2023-12-24,PA,185,12964056 +2023-12-25,PA,178,12964056 +2023-12-26,PA,270,12964056 +2023-12-27,PA,280,12964056 +2023-12-28,PA,322,12964056 +2023-12-29,PA,293,12964056 +2023-12-30,PA,214,12964056 +2023-12-31,PA,234,12964056 +2024-01-01,PA,192,12964056 +2024-01-02,PA,259,12964056 +2024-01-03,PA,230,12964056 +2024-01-04,PA,228,12964056 +2024-01-05,PA,250,12964056 +2024-01-06,PA,180,12964056 +2024-01-07,PA,151,12964056 +2024-01-08,PA,228,12964056 +2024-01-09,PA,227,12964056 +2024-01-10,PA,235,12964056 +2024-01-11,PA,208,12964056 +2024-01-12,PA,163,12964056 +2024-01-13,PA,160,12964056 +2024-01-14,PA,136,12964056 +2024-01-15,PA,159,12964056 +2024-01-16,PA,199,12964056 +2024-01-17,PA,192,12964056 +2024-01-18,PA,163,12964056 +2024-01-19,PA,131,12964056 +2022-12-31,PR,39,3263584 +2023-01-01,PR,37,3263584 +2023-01-02,PR,30,3263584 +2023-01-03,PR,41,3263584 +2023-01-04,PR,31,3263584 +2023-01-05,PR,33,3263584 +2023-01-06,PR,30,3263584 +2023-01-07,PR,19,3263584 +2023-01-08,PR,29,3263584 +2023-01-09,PR,39,3263584 +2023-01-10,PR,25,3263584 +2023-01-11,PR,80,3263584 +2023-01-12,PR,34,3263584 +2023-01-13,PR,21,3263584 +2023-01-14,PR,13,3263584 +2023-01-15,PR,14,3263584 +2023-01-16,PR,33,3263584 +2023-01-17,PR,33,3263584 +2023-01-18,PR,14,3263584 +2023-01-19,PR,26,3263584 +2023-01-20,PR,19,3263584 +2023-01-21,PR,15,3263584 +2023-01-22,PR,19,3263584 +2023-01-23,PR,27,3263584 +2023-01-24,PR,29,3263584 +2023-01-25,PR,22,3263584 +2023-01-26,PR,19,3263584 +2023-01-27,PR,23,3263584 +2023-01-28,PR,11,3263584 +2023-01-29,PR,15,3263584 +2023-01-30,PR,14,3263584 +2023-01-31,PR,18,3263584 +2023-02-01,PR,16,3263584 +2023-02-02,PR,22,3263584 +2023-02-03,PR,21,3263584 +2023-02-04,PR,18,3263584 +2023-02-05,PR,13,3263584 +2023-02-06,PR,25,3263584 +2023-02-07,PR,19,3263584 +2023-02-08,PR,17,3263584 +2023-02-09,PR,12,3263584 +2023-02-10,PR,12,3263584 +2023-02-11,PR,9,3263584 +2023-02-12,PR,8,3263584 +2023-02-13,PR,13,3263584 +2023-02-14,PR,14,3263584 +2023-02-15,PR,30,3263584 +2023-02-16,PR,28,3263584 +2023-02-17,PR,27,3263584 +2023-02-18,PR,25,3263584 +2023-02-19,PR,22,3263584 +2023-02-20,PR,13,3263584 +2023-02-21,PR,12,3263584 +2023-02-22,PR,10,3263584 +2023-02-23,PR,12,3263584 +2023-02-24,PR,10,3263584 +2023-02-25,PR,13,3263584 +2023-02-26,PR,10,3263584 +2023-02-27,PR,14,3263584 +2023-02-28,PR,13,3263584 +2023-03-01,PR,12,3263584 +2023-03-02,PR,14,3263584 +2023-03-03,PR,9,3263584 +2023-03-04,PR,6,3263584 +2023-03-05,PR,3,3263584 +2023-03-06,PR,14,3263584 +2023-03-07,PR,9,3263584 +2023-03-08,PR,9,3263584 +2023-03-09,PR,15,3263584 +2023-03-10,PR,13,3263584 +2023-03-11,PR,8,3263584 +2023-03-12,PR,9,3263584 +2023-03-13,PR,11,3263584 +2023-03-14,PR,4,3263584 +2023-03-15,PR,10,3263584 +2023-03-16,PR,10,3263584 +2023-03-17,PR,9,3263584 +2023-03-18,PR,7,3263584 +2023-03-19,PR,6,3263584 +2023-03-20,PR,12,3263584 +2023-03-21,PR,9,3263584 +2023-03-22,PR,13,3263584 +2023-03-23,PR,9,3263584 +2023-03-24,PR,11,3263584 +2023-03-25,PR,12,3263584 +2023-03-26,PR,12,3263584 +2023-03-27,PR,8,3263584 +2023-03-28,PR,5,3263584 +2023-03-29,PR,3,3263584 +2023-03-30,PR,3,3263584 +2023-03-31,PR,3,3263584 +2023-04-01,PR,2,3263584 +2023-04-02,PR,4,3263584 +2023-04-03,PR,1,3263584 +2023-04-04,PR,13,3263584 +2023-04-05,PR,3,3263584 +2023-04-06,PR,7,3263584 +2023-04-07,PR,3,3263584 +2023-04-08,PR,7,3263584 +2023-04-09,PR,7,3263584 +2023-04-10,PR,4,3263584 +2023-04-11,PR,8,3263584 +2023-04-12,PR,11,3263584 +2023-04-13,PR,6,3263584 +2023-04-14,PR,10,3263584 +2023-04-15,PR,5,3263584 +2023-04-16,PR,8,3263584 +2023-04-17,PR,9,3263584 +2023-04-18,PR,9,3263584 +2023-04-19,PR,10,3263584 +2023-04-20,PR,12,3263584 +2023-04-21,PR,8,3263584 +2023-04-22,PR,7,3263584 +2023-04-23,PR,9,3263584 +2023-04-24,PR,14,3263584 +2023-04-25,PR,5,3263584 +2023-04-26,PR,15,3263584 +2023-04-27,PR,17,3263584 +2023-04-28,PR,14,3263584 +2023-04-29,PR,18,3263584 +2023-04-30,PR,8,3263584 +2023-05-01,PR,15,3263584 +2023-05-02,PR,17,3263584 +2023-05-03,PR,12,3263584 +2023-05-04,PR,11,3263584 +2023-05-05,PR,12,3263584 +2023-05-06,PR,9,3263584 +2023-05-07,PR,9,3263584 +2023-05-08,PR,15,3263584 +2023-05-09,PR,12,3263584 +2023-05-10,PR,15,3263584 +2023-05-11,PR,16,3263584 +2023-05-12,PR,6,3263584 +2023-05-13,PR,8,3263584 +2023-05-14,PR,10,3263584 +2023-05-15,PR,19,3263584 +2023-05-16,PR,15,3263584 +2023-05-17,PR,19,3263584 +2023-05-18,PR,22,3263584 +2023-05-19,PR,22,3263584 +2023-05-20,PR,17,3263584 +2023-05-21,PR,15,3263584 +2023-05-22,PR,23,3263584 +2023-05-23,PR,18,3263584 +2023-05-24,PR,18,3263584 +2023-05-25,PR,15,3263584 +2023-05-26,PR,16,3263584 +2023-05-27,PR,8,3263584 +2023-05-28,PR,13,3263584 +2023-05-29,PR,24,3263584 +2023-05-30,PR,16,3263584 +2023-05-31,PR,20,3263584 +2023-06-01,PR,19,3263584 +2023-06-02,PR,19,3263584 +2023-06-03,PR,11,3263584 +2023-06-04,PR,18,3263584 +2023-06-05,PR,21,3263584 +2023-06-06,PR,13,3263584 +2023-06-07,PR,30,3263584 +2023-06-08,PR,24,3263584 +2023-06-09,PR,31,3263584 +2023-06-10,PR,17,3263584 +2023-06-11,PR,23,3263584 +2023-06-12,PR,26,3263584 +2023-06-13,PR,26,3263584 +2023-06-14,PR,29,3263584 +2023-06-15,PR,17,3263584 +2023-06-16,PR,28,3263584 +2023-06-17,PR,18,3263584 +2023-06-18,PR,17,3263584 +2023-06-19,PR,21,3263584 +2023-06-20,PR,19,3263584 +2023-06-21,PR,28,3263584 +2023-06-22,PR,30,3263584 +2023-06-23,PR,24,3263584 +2023-06-24,PR,12,3263584 +2023-06-25,PR,16,3263584 +2023-06-26,PR,27,3263584 +2023-06-27,PR,20,3263584 +2023-06-28,PR,35,3263584 +2023-06-29,PR,31,3263584 +2023-06-30,PR,25,3263584 +2023-07-01,PR,15,3263584 +2023-07-02,PR,22,3263584 +2023-07-03,PR,24,3263584 +2023-07-04,PR,28,3263584 +2023-07-05,PR,45,3263584 +2023-07-06,PR,21,3263584 +2023-07-07,PR,26,3263584 +2023-07-08,PR,12,3263584 +2023-07-09,PR,19,3263584 +2023-07-10,PR,34,3263584 +2023-07-11,PR,20,3263584 +2023-07-12,PR,33,3263584 +2023-07-13,PR,24,3263584 +2023-07-14,PR,19,3263584 +2023-07-15,PR,19,3263584 +2023-07-16,PR,27,3263584 +2023-07-17,PR,31,3263584 +2023-07-18,PR,22,3263584 +2023-07-19,PR,17,3263584 +2023-07-20,PR,26,3263584 +2023-07-21,PR,35,3263584 +2023-07-22,PR,17,3263584 +2023-07-23,PR,12,3263584 +2023-07-24,PR,21,3263584 +2023-07-25,PR,21,3263584 +2023-07-26,PR,27,3263584 +2023-07-27,PR,25,3263584 +2023-07-28,PR,20,3263584 +2023-07-29,PR,6,3263584 +2023-07-30,PR,14,3263584 +2023-07-31,PR,27,3263584 +2023-08-01,PR,22,3263584 +2023-08-02,PR,24,3263584 +2023-08-03,PR,36,3263584 +2023-08-04,PR,21,3263584 +2023-08-05,PR,17,3263584 +2023-08-06,PR,12,3263584 +2023-08-07,PR,18,3263584 +2023-08-08,PR,28,3263584 +2023-08-09,PR,26,3263584 +2023-08-10,PR,21,3263584 +2023-08-11,PR,21,3263584 +2023-08-12,PR,8,3263584 +2023-08-13,PR,11,3263584 +2023-08-14,PR,31,3263584 +2023-08-15,PR,15,3263584 +2023-08-16,PR,20,3263584 +2023-08-17,PR,24,3263584 +2023-08-18,PR,24,3263584 +2023-08-19,PR,11,3263584 +2023-08-20,PR,12,3263584 +2023-08-21,PR,24,3263584 +2023-08-22,PR,20,3263584 +2023-08-23,PR,20,3263584 +2023-08-24,PR,14,3263584 +2023-08-25,PR,21,3263584 +2023-08-26,PR,20,3263584 +2023-08-27,PR,16,3263584 +2023-08-28,PR,34,3263584 +2023-08-29,PR,26,3263584 +2023-08-30,PR,22,3263584 +2023-08-31,PR,17,3263584 +2023-09-01,PR,16,3263584 +2023-09-02,PR,10,3263584 +2023-09-03,PR,10,3263584 +2023-09-04,PR,14,3263584 +2023-09-05,PR,32,3263584 +2023-09-06,PR,11,3263584 +2023-09-07,PR,18,3263584 +2023-09-08,PR,18,3263584 +2023-09-09,PR,14,3263584 +2023-09-10,PR,12,3263584 +2023-09-11,PR,20,3263584 +2023-09-12,PR,16,3263584 +2023-09-13,PR,17,3263584 +2023-09-14,PR,8,3263584 +2023-09-15,PR,16,3263584 +2023-09-16,PR,9,3263584 +2023-09-17,PR,8,3263584 +2023-09-18,PR,9,3263584 +2023-09-19,PR,13,3263584 +2023-09-20,PR,17,3263584 +2023-09-21,PR,16,3263584 +2023-09-22,PR,15,3263584 +2023-09-23,PR,8,3263584 +2023-09-24,PR,8,3263584 +2023-09-25,PR,27,3263584 +2023-09-26,PR,13,3263584 +2023-09-27,PR,12,3263584 +2023-09-28,PR,6,3263584 +2023-09-29,PR,2,3263584 +2023-09-30,PR,2,3263584 +2023-10-01,PR,5,3263584 +2023-10-02,PR,11,3263584 +2023-10-03,PR,14,3263584 +2023-10-04,PR,12,3263584 +2023-10-05,PR,14,3263584 +2023-10-06,PR,14,3263584 +2023-10-07,PR,12,3263584 +2023-10-08,PR,12,3263584 +2023-10-09,PR,11,3263584 +2023-10-10,PR,14,3263584 +2023-10-11,PR,10,3263584 +2023-10-12,PR,13,3263584 +2023-10-13,PR,10,3263584 +2023-10-14,PR,5,3263584 +2023-10-15,PR,12,3263584 +2023-10-16,PR,14,3263584 +2023-10-17,PR,17,3263584 +2023-10-18,PR,18,3263584 +2023-10-19,PR,17,3263584 +2023-10-20,PR,10,3263584 +2023-10-21,PR,1,3263584 +2023-10-22,PR,11,3263584 +2023-10-23,PR,15,3263584 +2023-10-24,PR,9,3263584 +2023-10-25,PR,12,3263584 +2023-10-26,PR,13,3263584 +2023-10-27,PR,11,3263584 +2023-10-28,PR,9,3263584 +2023-10-29,PR,10,3263584 +2023-10-30,PR,8,3263584 +2023-10-31,PR,16,3263584 +2023-11-01,PR,11,3263584 +2023-11-02,PR,11,3263584 +2023-11-03,PR,12,3263584 +2023-11-04,PR,13,3263584 +2023-11-05,PR,9,3263584 +2023-11-06,PR,17,3263584 +2023-11-07,PR,13,3263584 +2023-11-08,PR,11,3263584 +2023-11-09,PR,14,3263584 +2023-11-10,PR,9,3263584 +2023-11-11,PR,6,3263584 +2023-11-12,PR,6,3263584 +2023-11-13,PR,13,3263584 +2023-11-14,PR,10,3263584 +2023-11-15,PR,14,3263584 +2023-11-16,PR,12,3263584 +2023-11-17,PR,10,3263584 +2023-11-18,PR,16,3263584 +2023-11-19,PR,10,3263584 +2023-11-20,PR,15,3263584 +2023-11-21,PR,22,3263584 +2023-11-22,PR,13,3263584 +2023-11-23,PR,6,3263584 +2023-11-24,PR,11,3263584 +2023-11-25,PR,19,3263584 +2023-11-26,PR,8,3263584 +2023-11-27,PR,21,3263584 +2023-11-28,PR,14,3263584 +2023-11-29,PR,10,3263584 +2023-11-30,PR,10,3263584 +2023-12-01,PR,9,3263584 +2023-12-02,PR,7,3263584 +2023-12-03,PR,6,3263584 +2023-12-04,PR,6,3263584 +2023-12-05,PR,13,3263584 +2023-12-06,PR,17,3263584 +2023-12-07,PR,14,3263584 +2023-12-08,PR,11,3263584 +2023-12-09,PR,4,3263584 +2023-12-10,PR,7,3263584 +2023-12-11,PR,11,3263584 +2023-12-12,PR,10,3263584 +2023-12-13,PR,7,3263584 +2023-12-14,PR,5,3263584 +2023-12-15,PR,16,3263584 +2023-12-16,PR,7,3263584 +2023-12-17,PR,13,3263584 +2023-12-18,PR,16,3263584 +2023-12-19,PR,18,3263584 +2023-12-20,PR,16,3263584 +2023-12-21,PR,22,3263584 +2023-12-22,PR,21,3263584 +2023-12-23,PR,11,3263584 +2023-12-24,PR,9,3263584 +2023-12-25,PR,13,3263584 +2023-12-26,PR,20,3263584 +2023-12-27,PR,9,3263584 +2023-12-28,PR,22,3263584 +2023-12-29,PR,12,3263584 +2023-12-30,PR,14,3263584 +2023-12-31,PR,24,3263584 +2024-01-01,PR,13,3263584 +2024-01-02,PR,30,3263584 +2024-01-03,PR,23,3263584 +2024-01-04,PR,32,3263584 +2024-01-05,PR,17,3263584 +2024-01-06,PR,21,3263584 +2024-01-07,PR,12,3263584 +2024-01-08,PR,30,3263584 +2024-01-09,PR,24,3263584 +2024-01-10,PR,35,3263584 +2024-01-11,PR,31,3263584 +2024-01-12,PR,29,3263584 +2024-01-13,PR,29,3263584 +2024-01-14,PR,30,3263584 +2024-01-15,PR,35,3263584 +2024-01-16,PR,38,3263584 +2024-01-17,PR,32,3263584 +2024-01-18,PR,39,3263584 +2024-01-19,PR,45,3263584 +2022-12-31,RI,17,1095610 +2023-01-01,RI,13,1095610 +2023-01-02,RI,5,1095610 +2023-01-03,RI,21,1095610 +2023-01-04,RI,31,1095610 +2023-01-05,RI,28,1095610 +2023-01-06,RI,28,1095610 +2023-01-07,RI,15,1095610 +2023-01-08,RI,14,1095610 +2023-01-09,RI,17,1095610 +2023-01-10,RI,24,1095610 +2023-01-11,RI,16,1095610 +2023-01-12,RI,26,1095610 +2023-01-13,RI,29,1095610 +2023-01-14,RI,15,1095610 +2023-01-15,RI,7,1095610 +2023-01-16,RI,13,1095610 +2023-01-17,RI,23,1095610 +2023-01-18,RI,18,1095610 +2023-01-19,RI,14,1095610 +2023-01-20,RI,19,1095610 +2023-01-21,RI,11,1095610 +2023-01-22,RI,10,1095610 +2023-01-23,RI,11,1095610 +2023-01-24,RI,23,1095610 +2023-01-25,RI,20,1095610 +2023-01-26,RI,17,1095610 +2023-01-27,RI,10,1095610 +2023-01-28,RI,11,1095610 +2023-01-29,RI,6,1095610 +2023-01-30,RI,23,1095610 +2023-01-31,RI,25,1095610 +2023-02-01,RI,14,1095610 +2023-02-02,RI,13,1095610 +2023-02-03,RI,17,1095610 +2023-02-04,RI,9,1095610 +2023-02-05,RI,12,1095610 +2023-02-06,RI,16,1095610 +2023-02-07,RI,22,1095610 +2023-02-08,RI,16,1095610 +2023-02-09,RI,20,1095610 +2023-02-10,RI,18,1095610 +2023-02-11,RI,7,1095610 +2023-02-12,RI,10,1095610 +2023-02-13,RI,12,1095610 +2023-02-14,RI,12,1095610 +2023-02-15,RI,10,1095610 +2023-02-16,RI,9,1095610 +2023-02-17,RI,12,1095610 +2023-02-18,RI,8,1095610 +2023-02-19,RI,6,1095610 +2023-02-20,RI,14,1095610 +2023-02-21,RI,8,1095610 +2023-02-22,RI,8,1095610 +2023-02-23,RI,7,1095610 +2023-02-24,RI,13,1095610 +2023-02-25,RI,7,1095610 +2023-02-26,RI,4,1095610 +2023-02-27,RI,11,1095610 +2023-02-28,RI,5,1095610 +2023-03-01,RI,7,1095610 +2023-03-02,RI,11,1095610 +2023-03-03,RI,8,1095610 +2023-03-04,RI,7,1095610 +2023-03-05,RI,2,1095610 +2023-03-06,RI,8,1095610 +2023-03-07,RI,6,1095610 +2023-03-08,RI,11,1095610 +2023-03-09,RI,6,1095610 +2023-03-10,RI,16,1095610 +2023-03-11,RI,4,1095610 +2023-03-12,RI,4,1095610 +2023-03-13,RI,9,1095610 +2023-03-14,RI,7,1095610 +2023-03-15,RI,8,1095610 +2023-03-16,RI,9,1095610 +2023-03-17,RI,8,1095610 +2023-03-18,RI,6,1095610 +2023-03-19,RI,3,1095610 +2023-03-20,RI,5,1095610 +2023-03-21,RI,4,1095610 +2023-03-22,RI,8,1095610 +2023-03-23,RI,8,1095610 +2023-03-24,RI,6,1095610 +2023-03-25,RI,1,1095610 +2023-03-26,RI,7,1095610 +2023-03-27,RI,5,1095610 +2023-03-28,RI,4,1095610 +2023-03-29,RI,5,1095610 +2023-03-30,RI,2,1095610 +2023-03-31,RI,2,1095610 +2023-04-01,RI,4,1095610 +2023-04-02,RI,4,1095610 +2023-04-03,RI,6,1095610 +2023-04-04,RI,5,1095610 +2023-04-05,RI,2,1095610 +2023-04-06,RI,4,1095610 +2023-04-07,RI,7,1095610 +2023-04-08,RI,3,1095610 +2023-04-09,RI,4,1095610 +2023-04-10,RI,8,1095610 +2023-04-11,RI,7,1095610 +2023-04-12,RI,5,1095610 +2023-04-13,RI,4,1095610 +2023-04-14,RI,11,1095610 +2023-04-15,RI,0,1095610 +2023-04-16,RI,5,1095610 +2023-04-17,RI,4,1095610 +2023-04-18,RI,2,1095610 +2023-04-19,RI,8,1095610 +2023-04-20,RI,3,1095610 +2023-04-21,RI,4,1095610 +2023-04-22,RI,2,1095610 +2023-04-23,RI,4,1095610 +2023-04-24,RI,5,1095610 +2023-04-25,RI,2,1095610 +2023-04-26,RI,0,1095610 +2023-04-27,RI,1,1095610 +2023-04-28,RI,3,1095610 +2023-04-29,RI,0,1095610 +2023-04-30,RI,0,1095610 +2023-05-01,RI,4,1095610 +2023-05-02,RI,3,1095610 +2023-05-03,RI,4,1095610 +2023-05-04,RI,3,1095610 +2023-05-05,RI,1,1095610 +2023-05-06,RI,1,1095610 +2023-05-07,RI,1,1095610 +2023-05-08,RI,1,1095610 +2023-05-09,RI,1,1095610 +2023-05-10,RI,4,1095610 +2023-05-11,RI,1,1095610 +2023-05-12,RI,2,1095610 +2023-05-13,RI,2,1095610 +2023-05-14,RI,0,1095610 +2023-05-15,RI,3,1095610 +2023-05-16,RI,4,1095610 +2023-05-17,RI,3,1095610 +2023-05-18,RI,3,1095610 +2023-05-19,RI,1,1095610 +2023-05-20,RI,1,1095610 +2023-05-21,RI,2,1095610 +2023-05-22,RI,5,1095610 +2023-05-23,RI,6,1095610 +2023-05-24,RI,4,1095610 +2023-05-25,RI,5,1095610 +2023-05-26,RI,1,1095610 +2023-05-27,RI,5,1095610 +2023-05-28,RI,2,1095610 +2023-05-29,RI,2,1095610 +2023-05-30,RI,7,1095610 +2023-05-31,RI,2,1095610 +2023-06-01,RI,2,1095610 +2023-06-02,RI,2,1095610 +2023-06-03,RI,2,1095610 +2023-06-04,RI,2,1095610 +2023-06-05,RI,0,1095610 +2023-06-06,RI,3,1095610 +2023-06-07,RI,3,1095610 +2023-06-08,RI,2,1095610 +2023-06-09,RI,3,1095610 +2023-06-10,RI,1,1095610 +2023-06-11,RI,3,1095610 +2023-06-12,RI,4,1095610 +2023-06-13,RI,2,1095610 +2023-06-14,RI,1,1095610 +2023-06-15,RI,8,1095610 +2023-06-16,RI,4,1095610 +2023-06-17,RI,3,1095610 +2023-06-18,RI,2,1095610 +2023-06-19,RI,6,1095610 +2023-06-20,RI,3,1095610 +2023-06-21,RI,3,1095610 +2023-06-22,RI,8,1095610 +2023-06-23,RI,1,1095610 +2023-06-24,RI,1,1095610 +2023-06-25,RI,0,1095610 +2023-06-26,RI,1,1095610 +2023-06-27,RI,3,1095610 +2023-06-28,RI,5,1095610 +2023-06-29,RI,1,1095610 +2023-06-30,RI,4,1095610 +2023-07-01,RI,2,1095610 +2023-07-02,RI,3,1095610 +2023-07-03,RI,3,1095610 +2023-07-04,RI,3,1095610 +2023-07-05,RI,2,1095610 +2023-07-06,RI,3,1095610 +2023-07-07,RI,0,1095610 +2023-07-08,RI,3,1095610 +2023-07-09,RI,2,1095610 +2023-07-10,RI,0,1095610 +2023-07-11,RI,2,1095610 +2023-07-12,RI,0,1095610 +2023-07-13,RI,2,1095610 +2023-07-14,RI,4,1095610 +2023-07-15,RI,2,1095610 +2023-07-16,RI,0,1095610 +2023-07-17,RI,1,1095610 +2023-07-18,RI,1,1095610 +2023-07-19,RI,3,1095610 +2023-07-20,RI,2,1095610 +2023-07-21,RI,3,1095610 +2023-07-22,RI,1,1095610 +2023-07-23,RI,1,1095610 +2023-07-24,RI,1,1095610 +2023-07-25,RI,1,1095610 +2023-07-26,RI,5,1095610 +2023-07-27,RI,2,1095610 +2023-07-28,RI,0,1095610 +2023-07-29,RI,1,1095610 +2023-07-30,RI,4,1095610 +2023-07-31,RI,5,1095610 +2023-08-01,RI,4,1095610 +2023-08-02,RI,2,1095610 +2023-08-03,RI,2,1095610 +2023-08-04,RI,4,1095610 +2023-08-05,RI,1,1095610 +2023-08-06,RI,1,1095610 +2023-08-07,RI,3,1095610 +2023-08-08,RI,1,1095610 +2023-08-09,RI,4,1095610 +2023-08-10,RI,2,1095610 +2023-08-11,RI,5,1095610 +2023-08-12,RI,3,1095610 +2023-08-13,RI,2,1095610 +2023-08-14,RI,5,1095610 +2023-08-15,RI,4,1095610 +2023-08-16,RI,8,1095610 +2023-08-17,RI,5,1095610 +2023-08-18,RI,7,1095610 +2023-08-19,RI,3,1095610 +2023-08-20,RI,5,1095610 +2023-08-21,RI,6,1095610 +2023-08-22,RI,3,1095610 +2023-08-23,RI,6,1095610 +2023-08-24,RI,3,1095610 +2023-08-25,RI,11,1095610 +2023-08-26,RI,4,1095610 +2023-08-27,RI,6,1095610 +2023-08-28,RI,7,1095610 +2023-08-29,RI,4,1095610 +2023-08-30,RI,5,1095610 +2023-08-31,RI,10,1095610 +2023-09-01,RI,6,1095610 +2023-09-02,RI,5,1095610 +2023-09-03,RI,6,1095610 +2023-09-04,RI,7,1095610 +2023-09-05,RI,6,1095610 +2023-09-06,RI,11,1095610 +2023-09-07,RI,7,1095610 +2023-09-08,RI,8,1095610 +2023-09-09,RI,3,1095610 +2023-09-10,RI,8,1095610 +2023-09-11,RI,2,1095610 +2023-09-12,RI,7,1095610 +2023-09-13,RI,12,1095610 +2023-09-14,RI,10,1095610 +2023-09-15,RI,6,1095610 +2023-09-16,RI,4,1095610 +2023-09-17,RI,5,1095610 +2023-09-18,RI,9,1095610 +2023-09-19,RI,8,1095610 +2023-09-20,RI,10,1095610 +2023-09-21,RI,8,1095610 +2023-09-22,RI,9,1095610 +2023-09-23,RI,5,1095610 +2023-09-24,RI,7,1095610 +2023-09-25,RI,10,1095610 +2023-09-26,RI,14,1095610 +2023-09-27,RI,14,1095610 +2023-09-28,RI,8,1095610 +2023-09-29,RI,13,1095610 +2023-09-30,RI,10,1095610 +2023-10-01,RI,8,1095610 +2023-10-02,RI,19,1095610 +2023-10-03,RI,14,1095610 +2023-10-04,RI,13,1095610 +2023-10-05,RI,14,1095610 +2023-10-06,RI,12,1095610 +2023-10-07,RI,5,1095610 +2023-10-08,RI,1,1095610 +2023-10-09,RI,12,1095610 +2023-10-10,RI,8,1095610 +2023-10-11,RI,10,1095610 +2023-10-12,RI,13,1095610 +2023-10-13,RI,7,1095610 +2023-10-14,RI,9,1095610 +2023-10-15,RI,7,1095610 +2023-10-16,RI,7,1095610 +2023-10-17,RI,11,1095610 +2023-10-18,RI,9,1095610 +2023-10-19,RI,3,1095610 +2023-10-20,RI,8,1095610 +2023-10-21,RI,8,1095610 +2023-10-22,RI,7,1095610 +2023-10-23,RI,5,1095610 +2023-10-24,RI,9,1095610 +2023-10-25,RI,8,1095610 +2023-10-26,RI,4,1095610 +2023-10-27,RI,6,1095610 +2023-10-28,RI,3,1095610 +2023-10-29,RI,7,1095610 +2023-10-30,RI,5,1095610 +2023-10-31,RI,3,1095610 +2023-11-01,RI,14,1095610 +2023-11-02,RI,14,1095610 +2023-11-03,RI,5,1095610 +2023-11-04,RI,2,1095610 +2023-11-05,RI,3,1095610 +2023-11-06,RI,9,1095610 +2023-11-07,RI,11,1095610 +2023-11-08,RI,4,1095610 +2023-11-09,RI,2,1095610 +2023-11-10,RI,3,1095610 +2023-11-11,RI,2,1095610 +2023-11-12,RI,1,1095610 +2023-11-13,RI,7,1095610 +2023-11-14,RI,10,1095610 +2023-11-15,RI,4,1095610 +2023-11-16,RI,12,1095610 +2023-11-17,RI,7,1095610 +2023-11-18,RI,3,1095610 +2023-11-19,RI,6,1095610 +2023-11-20,RI,10,1095610 +2023-11-21,RI,5,1095610 +2023-11-22,RI,8,1095610 +2023-11-23,RI,2,1095610 +2023-11-24,RI,10,1095610 +2023-11-25,RI,6,1095610 +2023-11-26,RI,4,1095610 +2023-11-27,RI,8,1095610 +2023-11-28,RI,12,1095610 +2023-11-29,RI,8,1095610 +2023-11-30,RI,4,1095610 +2023-12-01,RI,11,1095610 +2023-12-02,RI,4,1095610 +2023-12-03,RI,8,1095610 +2023-12-04,RI,14,1095610 +2023-12-05,RI,5,1095610 +2023-12-06,RI,8,1095610 +2023-12-07,RI,9,1095610 +2023-12-08,RI,6,1095610 +2023-12-09,RI,3,1095610 +2023-12-10,RI,7,1095610 +2023-12-11,RI,15,1095610 +2023-12-12,RI,13,1095610 +2023-12-13,RI,16,1095610 +2023-12-14,RI,7,1095610 +2023-12-15,RI,18,1095610 +2023-12-16,RI,8,1095610 +2023-12-17,RI,10,1095610 +2023-12-18,RI,25,1095610 +2023-12-19,RI,19,1095610 +2023-12-20,RI,12,1095610 +2023-12-21,RI,10,1095610 +2023-12-22,RI,14,1095610 +2023-12-23,RI,13,1095610 +2023-12-24,RI,13,1095610 +2023-12-25,RI,5,1095610 +2023-12-26,RI,15,1095610 +2023-12-27,RI,24,1095610 +2023-12-28,RI,15,1095610 +2023-12-29,RI,26,1095610 +2023-12-30,RI,11,1095610 +2023-12-31,RI,17,1095610 +2024-01-01,RI,9,1095610 +2024-01-02,RI,34,1095610 +2024-01-03,RI,20,1095610 +2024-01-04,RI,23,1095610 +2024-01-05,RI,26,1095610 +2024-01-06,RI,18,1095610 +2024-01-07,RI,11,1095610 +2024-01-08,RI,18,1095610 +2024-01-09,RI,15,1095610 +2024-01-10,RI,25,1095610 +2024-01-11,RI,18,1095610 +2024-01-12,RI,17,1095610 +2024-01-13,RI,13,1095610 +2024-01-14,RI,7,1095610 +2024-01-15,RI,12,1095610 +2024-01-16,RI,18,1095610 +2024-01-17,RI,12,1095610 +2024-01-18,RI,14,1095610 +2024-01-19,RI,11,1095610 +2022-12-31,SC,133,5190705 +2023-01-01,SC,119,5190705 +2023-01-02,SC,113,5190705 +2023-01-03,SC,124,5190705 +2023-01-04,SC,133,5190705 +2023-01-05,SC,136,5190705 +2023-01-06,SC,109,5190705 +2023-01-07,SC,85,5190705 +2023-01-08,SC,84,5190705 +2023-01-09,SC,89,5190705 +2023-01-10,SC,88,5190705 +2023-01-11,SC,98,5190705 +2023-01-12,SC,86,5190705 +2023-01-13,SC,97,5190705 +2023-01-14,SC,83,5190705 +2023-01-15,SC,80,5190705 +2023-01-16,SC,73,5190705 +2023-01-17,SC,80,5190705 +2023-01-18,SC,75,5190705 +2023-01-19,SC,74,5190705 +2023-01-20,SC,69,5190705 +2023-01-21,SC,59,5190705 +2023-01-22,SC,63,5190705 +2023-01-23,SC,66,5190705 +2023-01-24,SC,64,5190705 +2023-01-25,SC,56,5190705 +2023-01-26,SC,70,5190705 +2023-01-27,SC,49,5190705 +2023-01-28,SC,55,5190705 +2023-01-29,SC,50,5190705 +2023-01-30,SC,56,5190705 +2023-01-31,SC,70,5190705 +2023-02-01,SC,53,5190705 +2023-02-02,SC,65,5190705 +2023-02-03,SC,50,5190705 +2023-02-04,SC,47,5190705 +2023-02-05,SC,51,5190705 +2023-02-06,SC,48,5190705 +2023-02-07,SC,43,5190705 +2023-02-08,SC,54,5190705 +2023-02-09,SC,40,5190705 +2023-02-10,SC,54,5190705 +2023-02-11,SC,39,5190705 +2023-02-12,SC,42,5190705 +2023-02-13,SC,44,5190705 +2023-02-14,SC,39,5190705 +2023-02-15,SC,39,5190705 +2023-02-16,SC,43,5190705 +2023-02-17,SC,50,5190705 +2023-02-18,SC,29,5190705 +2023-02-19,SC,38,5190705 +2023-02-20,SC,34,5190705 +2023-02-21,SC,57,5190705 +2023-02-22,SC,39,5190705 +2023-02-23,SC,43,5190705 +2023-02-24,SC,37,5190705 +2023-02-25,SC,34,5190705 +2023-02-26,SC,32,5190705 +2023-02-27,SC,41,5190705 +2023-02-28,SC,30,5190705 +2023-03-01,SC,28,5190705 +2023-03-02,SC,28,5190705 +2023-03-03,SC,30,5190705 +2023-03-04,SC,23,5190705 +2023-03-05,SC,31,5190705 +2023-03-06,SC,32,5190705 +2023-03-07,SC,29,5190705 +2023-03-08,SC,19,5190705 +2023-03-09,SC,21,5190705 +2023-03-10,SC,24,5190705 +2023-03-11,SC,23,5190705 +2023-03-12,SC,19,5190705 +2023-03-13,SC,26,5190705 +2023-03-14,SC,27,5190705 +2023-03-15,SC,25,5190705 +2023-03-16,SC,21,5190705 +2023-03-17,SC,24,5190705 +2023-03-18,SC,29,5190705 +2023-03-19,SC,25,5190705 +2023-03-20,SC,19,5190705 +2023-03-21,SC,27,5190705 +2023-03-22,SC,35,5190705 +2023-03-23,SC,27,5190705 +2023-03-24,SC,26,5190705 +2023-03-25,SC,17,5190705 +2023-03-26,SC,21,5190705 +2023-03-27,SC,22,5190705 +2023-03-28,SC,25,5190705 +2023-03-29,SC,18,5190705 +2023-03-30,SC,19,5190705 +2023-03-31,SC,15,5190705 +2023-04-01,SC,17,5190705 +2023-04-02,SC,24,5190705 +2023-04-03,SC,29,5190705 +2023-04-04,SC,25,5190705 +2023-04-05,SC,17,5190705 +2023-04-06,SC,24,5190705 +2023-04-07,SC,17,5190705 +2023-04-08,SC,17,5190705 +2023-04-09,SC,16,5190705 +2023-04-10,SC,20,5190705 +2023-04-11,SC,23,5190705 +2023-04-12,SC,15,5190705 +2023-04-13,SC,17,5190705 +2023-04-14,SC,21,5190705 +2023-04-15,SC,27,5190705 +2023-04-16,SC,15,5190705 +2023-04-17,SC,13,5190705 +2023-04-18,SC,8,5190705 +2023-04-19,SC,15,5190705 +2023-04-20,SC,15,5190705 +2023-04-21,SC,12,5190705 +2023-04-22,SC,17,5190705 +2023-04-23,SC,18,5190705 +2023-04-24,SC,19,5190705 +2023-04-25,SC,17,5190705 +2023-04-26,SC,9,5190705 +2023-04-27,SC,14,5190705 +2023-04-28,SC,18,5190705 +2023-04-29,SC,14,5190705 +2023-04-30,SC,14,5190705 +2023-05-01,SC,19,5190705 +2023-05-02,SC,15,5190705 +2023-05-03,SC,7,5190705 +2023-05-04,SC,9,5190705 +2023-05-05,SC,11,5190705 +2023-05-06,SC,20,5190705 +2023-05-07,SC,10,5190705 +2023-05-08,SC,17,5190705 +2023-05-09,SC,10,5190705 +2023-05-10,SC,12,5190705 +2023-05-11,SC,17,5190705 +2023-05-12,SC,10,5190705 +2023-05-13,SC,13,5190705 +2023-05-14,SC,10,5190705 +2023-05-15,SC,9,5190705 +2023-05-16,SC,11,5190705 +2023-05-17,SC,22,5190705 +2023-05-18,SC,13,5190705 +2023-05-19,SC,12,5190705 +2023-05-20,SC,16,5190705 +2023-05-21,SC,9,5190705 +2023-05-22,SC,13,5190705 +2023-05-23,SC,17,5190705 +2023-05-24,SC,10,5190705 +2023-05-25,SC,9,5190705 +2023-05-26,SC,9,5190705 +2023-05-27,SC,13,5190705 +2023-05-28,SC,8,5190705 +2023-05-29,SC,19,5190705 +2023-05-30,SC,11,5190705 +2023-05-31,SC,14,5190705 +2023-06-01,SC,14,5190705 +2023-06-02,SC,6,5190705 +2023-06-03,SC,11,5190705 +2023-06-04,SC,13,5190705 +2023-06-05,SC,13,5190705 +2023-06-06,SC,19,5190705 +2023-06-07,SC,11,5190705 +2023-06-08,SC,15,5190705 +2023-06-09,SC,12,5190705 +2023-06-10,SC,8,5190705 +2023-06-11,SC,12,5190705 +2023-06-12,SC,18,5190705 +2023-06-13,SC,11,5190705 +2023-06-14,SC,8,5190705 +2023-06-15,SC,11,5190705 +2023-06-16,SC,9,5190705 +2023-06-17,SC,10,5190705 +2023-06-18,SC,6,5190705 +2023-06-19,SC,9,5190705 +2023-06-20,SC,6,5190705 +2023-06-21,SC,9,5190705 +2023-06-22,SC,13,5190705 +2023-06-23,SC,4,5190705 +2023-06-24,SC,14,5190705 +2023-06-25,SC,9,5190705 +2023-06-26,SC,8,5190705 +2023-06-27,SC,14,5190705 +2023-06-28,SC,14,5190705 +2023-06-29,SC,12,5190705 +2023-06-30,SC,12,5190705 +2023-07-01,SC,8,5190705 +2023-07-02,SC,9,5190705 +2023-07-03,SC,11,5190705 +2023-07-04,SC,9,5190705 +2023-07-05,SC,8,5190705 +2023-07-06,SC,13,5190705 +2023-07-07,SC,17,5190705 +2023-07-08,SC,10,5190705 +2023-07-09,SC,7,5190705 +2023-07-10,SC,11,5190705 +2023-07-11,SC,19,5190705 +2023-07-12,SC,17,5190705 +2023-07-13,SC,9,5190705 +2023-07-14,SC,15,5190705 +2023-07-15,SC,11,5190705 +2023-07-16,SC,7,5190705 +2023-07-17,SC,19,5190705 +2023-07-18,SC,21,5190705 +2023-07-19,SC,13,5190705 +2023-07-20,SC,12,5190705 +2023-07-21,SC,19,5190705 +2023-07-22,SC,13,5190705 +2023-07-23,SC,13,5190705 +2023-07-24,SC,11,5190705 +2023-07-25,SC,18,5190705 +2023-07-26,SC,17,5190705 +2023-07-27,SC,21,5190705 +2023-07-28,SC,17,5190705 +2023-07-29,SC,20,5190705 +2023-07-30,SC,21,5190705 +2023-07-31,SC,23,5190705 +2023-08-01,SC,24,5190705 +2023-08-02,SC,26,5190705 +2023-08-03,SC,22,5190705 +2023-08-04,SC,30,5190705 +2023-08-05,SC,31,5190705 +2023-08-06,SC,30,5190705 +2023-08-07,SC,30,5190705 +2023-08-08,SC,53,5190705 +2023-08-09,SC,36,5190705 +2023-08-10,SC,39,5190705 +2023-08-11,SC,31,5190705 +2023-08-12,SC,38,5190705 +2023-08-13,SC,38,5190705 +2023-08-14,SC,32,5190705 +2023-08-15,SC,34,5190705 +2023-08-16,SC,27,5190705 +2023-08-17,SC,49,5190705 +2023-08-18,SC,36,5190705 +2023-08-19,SC,45,5190705 +2023-08-20,SC,40,5190705 +2023-08-21,SC,42,5190705 +2023-08-22,SC,54,5190705 +2023-08-23,SC,46,5190705 +2023-08-24,SC,66,5190705 +2023-08-25,SC,49,5190705 +2023-08-26,SC,54,5190705 +2023-08-27,SC,55,5190705 +2023-08-28,SC,60,5190705 +2023-08-29,SC,65,5190705 +2023-08-30,SC,66,5190705 +2023-08-31,SC,49,5190705 +2023-09-01,SC,55,5190705 +2023-09-02,SC,42,5190705 +2023-09-03,SC,56,5190705 +2023-09-04,SC,57,5190705 +2023-09-05,SC,57,5190705 +2023-09-06,SC,67,5190705 +2023-09-07,SC,56,5190705 +2023-09-08,SC,53,5190705 +2023-09-09,SC,51,5190705 +2023-09-10,SC,62,5190705 +2023-09-11,SC,42,5190705 +2023-09-12,SC,53,5190705 +2023-09-13,SC,41,5190705 +2023-09-14,SC,60,5190705 +2023-09-15,SC,55,5190705 +2023-09-16,SC,36,5190705 +2023-09-17,SC,43,5190705 +2023-09-18,SC,46,5190705 +2023-09-19,SC,51,5190705 +2023-09-20,SC,53,5190705 +2023-09-21,SC,40,5190705 +2023-09-22,SC,45,5190705 +2023-09-23,SC,40,5190705 +2023-09-24,SC,40,5190705 +2023-09-25,SC,40,5190705 +2023-09-26,SC,37,5190705 +2023-09-27,SC,38,5190705 +2023-09-28,SC,37,5190705 +2023-09-29,SC,39,5190705 +2023-09-30,SC,30,5190705 +2023-10-01,SC,21,5190705 +2023-10-02,SC,36,5190705 +2023-10-03,SC,49,5190705 +2023-10-04,SC,42,5190705 +2023-10-05,SC,40,5190705 +2023-10-06,SC,43,5190705 +2023-10-07,SC,24,5190705 +2023-10-08,SC,35,5190705 +2023-10-09,SC,30,5190705 +2023-10-10,SC,39,5190705 +2023-10-11,SC,41,5190705 +2023-10-12,SC,35,5190705 +2023-10-13,SC,39,5190705 +2023-10-14,SC,37,5190705 +2023-10-15,SC,23,5190705 +2023-10-16,SC,28,5190705 +2023-10-17,SC,32,5190705 +2023-10-18,SC,39,5190705 +2023-10-19,SC,30,5190705 +2023-10-20,SC,21,5190705 +2023-10-21,SC,33,5190705 +2023-10-22,SC,38,5190705 +2023-10-23,SC,35,5190705 +2023-10-24,SC,29,5190705 +2023-10-25,SC,28,5190705 +2023-10-26,SC,29,5190705 +2023-10-27,SC,24,5190705 +2023-10-28,SC,17,5190705 +2023-10-29,SC,32,5190705 +2023-10-30,SC,37,5190705 +2023-10-31,SC,36,5190705 +2023-11-01,SC,31,5190705 +2023-11-02,SC,27,5190705 +2023-11-03,SC,29,5190705 +2023-11-04,SC,22,5190705 +2023-11-05,SC,37,5190705 +2023-11-06,SC,32,5190705 +2023-11-07,SC,36,5190705 +2023-11-08,SC,33,5190705 +2023-11-09,SC,27,5190705 +2023-11-10,SC,33,5190705 +2023-11-11,SC,24,5190705 +2023-11-12,SC,32,5190705 +2023-11-13,SC,30,5190705 +2023-11-14,SC,41,5190705 +2023-11-15,SC,28,5190705 +2023-11-16,SC,42,5190705 +2023-11-17,SC,37,5190705 +2023-11-18,SC,35,5190705 +2023-11-19,SC,41,5190705 +2023-11-20,SC,38,5190705 +2023-11-21,SC,37,5190705 +2023-11-22,SC,32,5190705 +2023-11-23,SC,34,5190705 +2023-11-24,SC,31,5190705 +2023-11-25,SC,38,5190705 +2023-11-26,SC,24,5190705 +2023-11-27,SC,55,5190705 +2023-11-28,SC,26,5190705 +2023-11-29,SC,35,5190705 +2023-11-30,SC,34,5190705 +2023-12-01,SC,41,5190705 +2023-12-02,SC,33,5190705 +2023-12-03,SC,46,5190705 +2023-12-04,SC,38,5190705 +2023-12-05,SC,33,5190705 +2023-12-06,SC,35,5190705 +2023-12-07,SC,34,5190705 +2023-12-08,SC,30,5190705 +2023-12-09,SC,34,5190705 +2023-12-10,SC,38,5190705 +2023-12-11,SC,36,5190705 +2023-12-12,SC,34,5190705 +2023-12-13,SC,39,5190705 +2023-12-14,SC,47,5190705 +2023-12-15,SC,39,5190705 +2023-12-16,SC,46,5190705 +2023-12-17,SC,57,5190705 +2023-12-18,SC,59,5190705 +2023-12-19,SC,63,5190705 +2023-12-20,SC,63,5190705 +2023-12-21,SC,51,5190705 +2023-12-22,SC,58,5190705 +2023-12-23,SC,52,5190705 +2023-12-24,SC,73,5190705 +2023-12-25,SC,58,5190705 +2023-12-26,SC,75,5190705 +2023-12-27,SC,93,5190705 +2023-12-28,SC,81,5190705 +2023-12-29,SC,73,5190705 +2023-12-30,SC,79,5190705 +2023-12-31,SC,63,5190705 +2024-01-01,SC,83,5190705 +2024-01-02,SC,89,5190705 +2024-01-03,SC,89,5190705 +2024-01-04,SC,68,5190705 +2024-01-05,SC,85,5190705 +2024-01-06,SC,71,5190705 +2024-01-07,SC,75,5190705 +2024-01-08,SC,77,5190705 +2024-01-09,SC,64,5190705 +2024-01-10,SC,63,5190705 +2024-01-11,SC,62,5190705 +2024-01-12,SC,62,5190705 +2024-01-13,SC,64,5190705 +2024-01-14,SC,45,5190705 +2024-01-15,SC,62,5190705 +2024-01-16,SC,60,5190705 +2024-01-17,SC,67,5190705 +2024-01-18,SC,62,5190705 +2024-01-19,SC,58,5190705 +2022-12-31,SD,13,895376 +2023-01-01,SD,7,895376 +2023-01-02,SD,5,895376 +2023-01-03,SD,8,895376 +2023-01-04,SD,4,895376 +2023-01-05,SD,9,895376 +2023-01-06,SD,10,895376 +2023-01-07,SD,6,895376 +2023-01-08,SD,6,895376 +2023-01-09,SD,12,895376 +2023-01-10,SD,2,895376 +2023-01-11,SD,6,895376 +2023-01-12,SD,6,895376 +2023-01-13,SD,13,895376 +2023-01-14,SD,12,895376 +2023-01-15,SD,4,895376 +2023-01-16,SD,7,895376 +2023-01-17,SD,9,895376 +2023-01-18,SD,3,895376 +2023-01-19,SD,10,895376 +2023-01-20,SD,8,895376 +2023-01-21,SD,9,895376 +2023-01-22,SD,11,895376 +2023-01-23,SD,10,895376 +2023-01-24,SD,11,895376 +2023-01-25,SD,12,895376 +2023-01-26,SD,7,895376 +2023-01-27,SD,11,895376 +2023-01-28,SD,8,895376 +2023-01-29,SD,14,895376 +2023-01-30,SD,12,895376 +2023-01-31,SD,11,895376 +2023-02-01,SD,8,895376 +2023-02-02,SD,13,895376 +2023-02-03,SD,15,895376 +2023-02-04,SD,11,895376 +2023-02-05,SD,15,895376 +2023-02-06,SD,11,895376 +2023-02-07,SD,18,895376 +2023-02-08,SD,13,895376 +2023-02-09,SD,12,895376 +2023-02-10,SD,18,895376 +2023-02-11,SD,13,895376 +2023-02-12,SD,19,895376 +2023-02-13,SD,11,895376 +2023-02-14,SD,9,895376 +2023-02-15,SD,12,895376 +2023-02-16,SD,10,895376 +2023-02-17,SD,18,895376 +2023-02-18,SD,11,895376 +2023-02-19,SD,14,895376 +2023-02-20,SD,24,895376 +2023-02-21,SD,9,895376 +2023-02-22,SD,10,895376 +2023-02-23,SD,11,895376 +2023-02-24,SD,8,895376 +2023-02-25,SD,13,895376 +2023-02-26,SD,12,895376 +2023-02-27,SD,23,895376 +2023-02-28,SD,13,895376 +2023-03-01,SD,9,895376 +2023-03-02,SD,21,895376 +2023-03-03,SD,14,895376 +2023-03-04,SD,13,895376 +2023-03-05,SD,14,895376 +2023-03-06,SD,11,895376 +2023-03-07,SD,16,895376 +2023-03-08,SD,10,895376 +2023-03-09,SD,6,895376 +2023-03-10,SD,7,895376 +2023-03-11,SD,3,895376 +2023-03-12,SD,5,895376 +2023-03-13,SD,9,895376 +2023-03-14,SD,6,895376 +2023-03-15,SD,7,895376 +2023-03-16,SD,5,895376 +2023-03-17,SD,11,895376 +2023-03-18,SD,9,895376 +2023-03-19,SD,7,895376 +2023-03-20,SD,9,895376 +2023-03-21,SD,1,895376 +2023-03-22,SD,20,895376 +2023-03-23,SD,15,895376 +2023-03-24,SD,8,895376 +2023-03-25,SD,16,895376 +2023-03-26,SD,7,895376 +2023-03-27,SD,7,895376 +2023-03-28,SD,8,895376 +2023-03-29,SD,12,895376 +2023-03-30,SD,9,895376 +2023-03-31,SD,9,895376 +2023-04-01,SD,2,895376 +2023-04-02,SD,9,895376 +2023-04-03,SD,10,895376 +2023-04-04,SD,6,895376 +2023-04-05,SD,4,895376 +2023-04-06,SD,4,895376 +2023-04-07,SD,3,895376 +2023-04-08,SD,3,895376 +2023-04-09,SD,7,895376 +2023-04-10,SD,8,895376 +2023-04-11,SD,8,895376 +2023-04-12,SD,4,895376 +2023-04-13,SD,8,895376 +2023-04-14,SD,4,895376 +2023-04-15,SD,8,895376 +2023-04-16,SD,4,895376 +2023-04-17,SD,5,895376 +2023-04-18,SD,8,895376 +2023-04-19,SD,4,895376 +2023-04-20,SD,3,895376 +2023-04-21,SD,2,895376 +2023-04-22,SD,4,895376 +2023-04-23,SD,4,895376 +2023-04-24,SD,5,895376 +2023-04-25,SD,2,895376 +2023-04-26,SD,6,895376 +2023-04-27,SD,8,895376 +2023-04-28,SD,8,895376 +2023-04-29,SD,2,895376 +2023-04-30,SD,5,895376 +2023-05-01,SD,9,895376 +2023-05-02,SD,9,895376 +2023-05-03,SD,5,895376 +2023-05-04,SD,4,895376 +2023-05-05,SD,6,895376 +2023-05-06,SD,7,895376 +2023-05-07,SD,8,895376 +2023-05-08,SD,7,895376 +2023-05-09,SD,5,895376 +2023-05-10,SD,3,895376 +2023-05-11,SD,6,895376 +2023-05-12,SD,3,895376 +2023-05-13,SD,6,895376 +2023-05-14,SD,3,895376 +2023-05-15,SD,5,895376 +2023-05-16,SD,2,895376 +2023-05-17,SD,5,895376 +2023-05-18,SD,3,895376 +2023-05-19,SD,2,895376 +2023-05-20,SD,1,895376 +2023-05-21,SD,1,895376 +2023-05-22,SD,5,895376 +2023-05-23,SD,2,895376 +2023-05-24,SD,1,895376 +2023-05-25,SD,3,895376 +2023-05-26,SD,1,895376 +2023-05-27,SD,5,895376 +2023-05-28,SD,0,895376 +2023-05-29,SD,0,895376 +2023-05-30,SD,1,895376 +2023-05-31,SD,4,895376 +2023-06-01,SD,2,895376 +2023-06-02,SD,3,895376 +2023-06-03,SD,2,895376 +2023-06-04,SD,3,895376 +2023-06-05,SD,1,895376 +2023-06-06,SD,2,895376 +2023-06-07,SD,3,895376 +2023-06-08,SD,2,895376 +2023-06-09,SD,4,895376 +2023-06-10,SD,2,895376 +2023-06-11,SD,4,895376 +2023-06-12,SD,2,895376 +2023-06-13,SD,2,895376 +2023-06-14,SD,1,895376 +2023-06-15,SD,4,895376 +2023-06-16,SD,2,895376 +2023-06-17,SD,1,895376 +2023-06-18,SD,1,895376 +2023-06-19,SD,0,895376 +2023-06-20,SD,1,895376 +2023-06-21,SD,1,895376 +2023-06-22,SD,0,895376 +2023-06-23,SD,3,895376 +2023-06-24,SD,0,895376 +2023-06-25,SD,3,895376 +2023-06-26,SD,3,895376 +2023-06-27,SD,1,895376 +2023-06-28,SD,0,895376 +2023-06-29,SD,1,895376 +2023-06-30,SD,2,895376 +2023-07-01,SD,2,895376 +2023-07-02,SD,3,895376 +2023-07-03,SD,2,895376 +2023-07-04,SD,1,895376 +2023-07-05,SD,3,895376 +2023-07-06,SD,4,895376 +2023-07-07,SD,2,895376 +2023-07-08,SD,0,895376 +2023-07-09,SD,1,895376 +2023-07-10,SD,1,895376 +2023-07-11,SD,2,895376 +2023-07-12,SD,0,895376 +2023-07-13,SD,1,895376 +2023-07-14,SD,2,895376 +2023-07-15,SD,1,895376 +2023-07-16,SD,0,895376 +2023-07-17,SD,3,895376 +2023-07-18,SD,3,895376 +2023-07-19,SD,0,895376 +2023-07-20,SD,2,895376 +2023-07-21,SD,1,895376 +2023-07-22,SD,0,895376 +2023-07-23,SD,2,895376 +2023-07-24,SD,3,895376 +2023-07-25,SD,3,895376 +2023-07-26,SD,0,895376 +2023-07-27,SD,2,895376 +2023-07-28,SD,4,895376 +2023-07-29,SD,0,895376 +2023-07-30,SD,1,895376 +2023-07-31,SD,1,895376 +2023-08-01,SD,2,895376 +2023-08-02,SD,2,895376 +2023-08-03,SD,4,895376 +2023-08-04,SD,2,895376 +2023-08-05,SD,2,895376 +2023-08-06,SD,0,895376 +2023-08-07,SD,0,895376 +2023-08-08,SD,4,895376 +2023-08-09,SD,1,895376 +2023-08-10,SD,0,895376 +2023-08-11,SD,4,895376 +2023-08-12,SD,1,895376 +2023-08-13,SD,3,895376 +2023-08-14,SD,2,895376 +2023-08-15,SD,6,895376 +2023-08-16,SD,3,895376 +2023-08-17,SD,5,895376 +2023-08-18,SD,5,895376 +2023-08-19,SD,6,895376 +2023-08-20,SD,6,895376 +2023-08-21,SD,2,895376 +2023-08-22,SD,4,895376 +2023-08-23,SD,6,895376 +2023-08-24,SD,4,895376 +2023-08-25,SD,4,895376 +2023-08-26,SD,4,895376 +2023-08-27,SD,3,895376 +2023-08-28,SD,9,895376 +2023-08-29,SD,5,895376 +2023-08-30,SD,8,895376 +2023-08-31,SD,8,895376 +2023-09-01,SD,7,895376 +2023-09-02,SD,6,895376 +2023-09-03,SD,8,895376 +2023-09-04,SD,12,895376 +2023-09-05,SD,3,895376 +2023-09-06,SD,10,895376 +2023-09-07,SD,10,895376 +2023-09-08,SD,8,895376 +2023-09-09,SD,4,895376 +2023-09-10,SD,10,895376 +2023-09-11,SD,6,895376 +2023-09-12,SD,7,895376 +2023-09-13,SD,5,895376 +2023-09-14,SD,11,895376 +2023-09-15,SD,3,895376 +2023-09-16,SD,6,895376 +2023-09-17,SD,9,895376 +2023-09-18,SD,8,895376 +2023-09-19,SD,5,895376 +2023-09-20,SD,7,895376 +2023-09-21,SD,11,895376 +2023-09-22,SD,9,895376 +2023-09-23,SD,7,895376 +2023-09-24,SD,7,895376 +2023-09-25,SD,8,895376 +2023-09-26,SD,13,895376 +2023-09-27,SD,12,895376 +2023-09-28,SD,11,895376 +2023-09-29,SD,11,895376 +2023-09-30,SD,5,895376 +2023-10-01,SD,8,895376 +2023-10-02,SD,14,895376 +2023-10-03,SD,10,895376 +2023-10-04,SD,10,895376 +2023-10-05,SD,4,895376 +2023-10-06,SD,8,895376 +2023-10-07,SD,8,895376 +2023-10-08,SD,8,895376 +2023-10-09,SD,14,895376 +2023-10-10,SD,2,895376 +2023-10-11,SD,8,895376 +2023-10-12,SD,6,895376 +2023-10-13,SD,7,895376 +2023-10-14,SD,6,895376 +2023-10-15,SD,7,895376 +2023-10-16,SD,8,895376 +2023-10-17,SD,10,895376 +2023-10-18,SD,5,895376 +2023-10-19,SD,9,895376 +2023-10-20,SD,13,895376 +2023-10-21,SD,9,895376 +2023-10-22,SD,5,895376 +2023-10-23,SD,7,895376 +2023-10-24,SD,12,895376 +2023-10-25,SD,13,895376 +2023-10-26,SD,9,895376 +2023-10-27,SD,9,895376 +2023-10-28,SD,11,895376 +2023-10-29,SD,12,895376 +2023-10-30,SD,17,895376 +2023-10-31,SD,8,895376 +2023-11-01,SD,13,895376 +2023-11-02,SD,6,895376 +2023-11-03,SD,10,895376 +2023-11-04,SD,11,895376 +2023-11-05,SD,7,895376 +2023-11-06,SD,14,895376 +2023-11-07,SD,14,895376 +2023-11-08,SD,8,895376 +2023-11-09,SD,11,895376 +2023-11-10,SD,10,895376 +2023-11-11,SD,7,895376 +2023-11-12,SD,7,895376 +2023-11-13,SD,14,895376 +2023-11-14,SD,16,895376 +2023-11-15,SD,14,895376 +2023-11-16,SD,12,895376 +2023-11-17,SD,13,895376 +2023-11-18,SD,13,895376 +2023-11-19,SD,14,895376 +2023-11-20,SD,20,895376 +2023-11-21,SD,17,895376 +2023-11-22,SD,17,895376 +2023-11-23,SD,12,895376 +2023-11-24,SD,12,895376 +2023-11-25,SD,9,895376 +2023-11-26,SD,16,895376 +2023-11-27,SD,19,895376 +2023-11-28,SD,18,895376 +2023-11-29,SD,15,895376 +2023-11-30,SD,26,895376 +2023-12-01,SD,12,895376 +2023-12-02,SD,14,895376 +2023-12-03,SD,14,895376 +2023-12-04,SD,15,895376 +2023-12-05,SD,12,895376 +2023-12-06,SD,16,895376 +2023-12-07,SD,15,895376 +2023-12-08,SD,19,895376 +2023-12-09,SD,13,895376 +2023-12-10,SD,17,895376 +2023-12-11,SD,20,895376 +2023-12-12,SD,21,895376 +2023-12-13,SD,16,895376 +2023-12-14,SD,15,895376 +2023-12-15,SD,19,895376 +2023-12-16,SD,9,895376 +2023-12-17,SD,18,895376 +2023-12-18,SD,21,895376 +2023-12-19,SD,24,895376 +2023-12-20,SD,17,895376 +2023-12-21,SD,20,895376 +2023-12-22,SD,17,895376 +2023-12-23,SD,23,895376 +2023-12-24,SD,19,895376 +2023-12-25,SD,22,895376 +2023-12-26,SD,12,895376 +2023-12-27,SD,21,895376 +2023-12-28,SD,20,895376 +2023-12-29,SD,15,895376 +2023-12-30,SD,15,895376 +2023-12-31,SD,18,895376 +2024-01-01,SD,17,895376 +2024-01-02,SD,15,895376 +2024-01-03,SD,15,895376 +2024-01-04,SD,21,895376 +2024-01-05,SD,18,895376 +2024-01-06,SD,20,895376 +2024-01-07,SD,12,895376 +2024-01-08,SD,18,895376 +2024-01-09,SD,12,895376 +2024-01-10,SD,12,895376 +2024-01-11,SD,14,895376 +2024-01-12,SD,11,895376 +2024-01-13,SD,7,895376 +2024-01-14,SD,10,895376 +2024-01-15,SD,15,895376 +2024-01-16,SD,14,895376 +2024-01-17,SD,15,895376 +2024-01-18,SD,11,895376 +2024-01-19,SD,10,895376 +2022-12-31,TN,116,6975218 +2023-01-01,TN,109,6975218 +2023-01-02,TN,120,6975218 +2023-01-03,TN,134,6975218 +2023-01-04,TN,137,6975218 +2023-01-05,TN,124,6975218 +2023-01-06,TN,102,6975218 +2023-01-07,TN,102,6975218 +2023-01-08,TN,78,6975218 +2023-01-09,TN,127,6975218 +2023-01-10,TN,108,6975218 +2023-01-11,TN,121,6975218 +2023-01-12,TN,104,6975218 +2023-01-13,TN,91,6975218 +2023-01-14,TN,82,6975218 +2023-01-15,TN,67,6975218 +2023-01-16,TN,79,6975218 +2023-01-17,TN,69,6975218 +2023-01-18,TN,103,6975218 +2023-01-19,TN,88,6975218 +2023-01-20,TN,85,6975218 +2023-01-21,TN,67,6975218 +2023-01-22,TN,41,6975218 +2023-01-23,TN,73,6975218 +2023-01-24,TN,89,6975218 +2023-01-25,TN,93,6975218 +2023-01-26,TN,72,6975218 +2023-01-27,TN,65,6975218 +2023-01-28,TN,58,6975218 +2023-01-29,TN,81,6975218 +2023-01-30,TN,76,6975218 +2023-01-31,TN,58,6975218 +2023-02-01,TN,76,6975218 +2023-02-02,TN,82,6975218 +2023-02-03,TN,70,6975218 +2023-02-04,TN,68,6975218 +2023-02-05,TN,65,6975218 +2023-02-06,TN,86,6975218 +2023-02-07,TN,92,6975218 +2023-02-08,TN,93,6975218 +2023-02-09,TN,74,6975218 +2023-02-10,TN,104,6975218 +2023-02-11,TN,67,6975218 +2023-02-12,TN,77,6975218 +2023-02-13,TN,72,6975218 +2023-02-14,TN,86,6975218 +2023-02-15,TN,78,6975218 +2023-02-16,TN,81,6975218 +2023-02-17,TN,75,6975218 +2023-02-18,TN,52,6975218 +2023-02-19,TN,58,6975218 +2023-02-20,TN,59,6975218 +2023-02-21,TN,61,6975218 +2023-02-22,TN,92,6975218 +2023-02-23,TN,73,6975218 +2023-02-24,TN,66,6975218 +2023-02-25,TN,54,6975218 +2023-02-26,TN,63,6975218 +2023-02-27,TN,73,6975218 +2023-02-28,TN,52,6975218 +2023-03-01,TN,59,6975218 +2023-03-02,TN,53,6975218 +2023-03-03,TN,57,6975218 +2023-03-04,TN,38,6975218 +2023-03-05,TN,52,6975218 +2023-03-06,TN,43,6975218 +2023-03-07,TN,48,6975218 +2023-03-08,TN,44,6975218 +2023-03-09,TN,49,6975218 +2023-03-10,TN,44,6975218 +2023-03-11,TN,32,6975218 +2023-03-12,TN,39,6975218 +2023-03-13,TN,37,6975218 +2023-03-14,TN,44,6975218 +2023-03-15,TN,50,6975218 +2023-03-16,TN,34,6975218 +2023-03-17,TN,30,6975218 +2023-03-18,TN,39,6975218 +2023-03-19,TN,41,6975218 +2023-03-20,TN,37,6975218 +2023-03-21,TN,50,6975218 +2023-03-22,TN,40,6975218 +2023-03-23,TN,57,6975218 +2023-03-24,TN,50,6975218 +2023-03-25,TN,36,6975218 +2023-03-26,TN,27,6975218 +2023-03-27,TN,35,6975218 +2023-03-28,TN,46,6975218 +2023-03-29,TN,33,6975218 +2023-03-30,TN,39,6975218 +2023-03-31,TN,38,6975218 +2023-04-01,TN,33,6975218 +2023-04-02,TN,31,6975218 +2023-04-03,TN,33,6975218 +2023-04-04,TN,32,6975218 +2023-04-05,TN,36,6975218 +2023-04-06,TN,33,6975218 +2023-04-07,TN,32,6975218 +2023-04-08,TN,30,6975218 +2023-04-09,TN,24,6975218 +2023-04-10,TN,32,6975218 +2023-04-11,TN,36,6975218 +2023-04-12,TN,35,6975218 +2023-04-13,TN,35,6975218 +2023-04-14,TN,32,6975218 +2023-04-15,TN,25,6975218 +2023-04-16,TN,27,6975218 +2023-04-17,TN,31,6975218 +2023-04-18,TN,20,6975218 +2023-04-19,TN,24,6975218 +2023-04-20,TN,29,6975218 +2023-04-21,TN,33,6975218 +2023-04-22,TN,10,6975218 +2023-04-23,TN,22,6975218 +2023-04-24,TN,29,6975218 +2023-04-25,TN,30,6975218 +2023-04-26,TN,23,6975218 +2023-04-27,TN,24,6975218 +2023-04-28,TN,24,6975218 +2023-04-29,TN,33,6975218 +2023-04-30,TN,26,6975218 +2023-05-01,TN,17,6975218 +2023-05-02,TN,20,6975218 +2023-05-03,TN,30,6975218 +2023-05-04,TN,29,6975218 +2023-05-05,TN,24,6975218 +2023-05-06,TN,25,6975218 +2023-05-07,TN,23,6975218 +2023-05-08,TN,23,6975218 +2023-05-09,TN,31,6975218 +2023-05-10,TN,21,6975218 +2023-05-11,TN,24,6975218 +2023-05-12,TN,19,6975218 +2023-05-13,TN,14,6975218 +2023-05-14,TN,17,6975218 +2023-05-15,TN,23,6975218 +2023-05-16,TN,22,6975218 +2023-05-17,TN,23,6975218 +2023-05-18,TN,22,6975218 +2023-05-19,TN,19,6975218 +2023-05-20,TN,13,6975218 +2023-05-21,TN,26,6975218 +2023-05-22,TN,15,6975218 +2023-05-23,TN,19,6975218 +2023-05-24,TN,22,6975218 +2023-05-25,TN,16,6975218 +2023-05-26,TN,12,6975218 +2023-05-27,TN,10,6975218 +2023-05-28,TN,13,6975218 +2023-05-29,TN,12,6975218 +2023-05-30,TN,17,6975218 +2023-05-31,TN,16,6975218 +2023-06-01,TN,16,6975218 +2023-06-02,TN,9,6975218 +2023-06-03,TN,18,6975218 +2023-06-04,TN,15,6975218 +2023-06-05,TN,16,6975218 +2023-06-06,TN,14,6975218 +2023-06-07,TN,13,6975218 +2023-06-08,TN,11,6975218 +2023-06-09,TN,7,6975218 +2023-06-10,TN,6,6975218 +2023-06-11,TN,7,6975218 +2023-06-12,TN,6,6975218 +2023-06-13,TN,11,6975218 +2023-06-14,TN,9,6975218 +2023-06-15,TN,10,6975218 +2023-06-16,TN,11,6975218 +2023-06-17,TN,9,6975218 +2023-06-18,TN,11,6975218 +2023-06-19,TN,9,6975218 +2023-06-20,TN,10,6975218 +2023-06-21,TN,13,6975218 +2023-06-22,TN,7,6975218 +2023-06-23,TN,16,6975218 +2023-06-24,TN,9,6975218 +2023-06-25,TN,7,6975218 +2023-06-26,TN,11,6975218 +2023-06-27,TN,14,6975218 +2023-06-28,TN,10,6975218 +2023-06-29,TN,15,6975218 +2023-06-30,TN,10,6975218 +2023-07-01,TN,5,6975218 +2023-07-02,TN,9,6975218 +2023-07-03,TN,11,6975218 +2023-07-04,TN,17,6975218 +2023-07-05,TN,21,6975218 +2023-07-06,TN,12,6975218 +2023-07-07,TN,10,6975218 +2023-07-08,TN,18,6975218 +2023-07-09,TN,12,6975218 +2023-07-10,TN,10,6975218 +2023-07-11,TN,21,6975218 +2023-07-12,TN,10,6975218 +2023-07-13,TN,9,6975218 +2023-07-14,TN,14,6975218 +2023-07-15,TN,11,6975218 +2023-07-16,TN,14,6975218 +2023-07-17,TN,22,6975218 +2023-07-18,TN,24,6975218 +2023-07-19,TN,21,6975218 +2023-07-20,TN,10,6975218 +2023-07-21,TN,23,6975218 +2023-07-22,TN,14,6975218 +2023-07-23,TN,14,6975218 +2023-07-24,TN,20,6975218 +2023-07-25,TN,25,6975218 +2023-07-26,TN,22,6975218 +2023-07-27,TN,27,6975218 +2023-07-28,TN,28,6975218 +2023-07-29,TN,32,6975218 +2023-07-30,TN,18,6975218 +2023-07-31,TN,29,6975218 +2023-08-01,TN,24,6975218 +2023-08-02,TN,30,6975218 +2023-08-03,TN,28,6975218 +2023-08-04,TN,22,6975218 +2023-08-05,TN,29,6975218 +2023-08-06,TN,22,6975218 +2023-08-07,TN,42,6975218 +2023-08-08,TN,40,6975218 +2023-08-09,TN,32,6975218 +2023-08-10,TN,41,6975218 +2023-08-11,TN,26,6975218 +2023-08-12,TN,35,6975218 +2023-08-13,TN,35,6975218 +2023-08-14,TN,52,6975218 +2023-08-15,TN,41,6975218 +2023-08-16,TN,48,6975218 +2023-08-17,TN,37,6975218 +2023-08-18,TN,53,6975218 +2023-08-19,TN,44,6975218 +2023-08-20,TN,60,6975218 +2023-08-21,TN,66,6975218 +2023-08-22,TN,62,6975218 +2023-08-23,TN,58,6975218 +2023-08-24,TN,47,6975218 +2023-08-25,TN,57,6975218 +2023-08-26,TN,54,6975218 +2023-08-27,TN,65,6975218 +2023-08-28,TN,59,6975218 +2023-08-29,TN,70,6975218 +2023-08-30,TN,58,6975218 +2023-08-31,TN,48,6975218 +2023-09-01,TN,58,6975218 +2023-09-02,TN,48,6975218 +2023-09-03,TN,59,6975218 +2023-09-04,TN,65,6975218 +2023-09-05,TN,81,6975218 +2023-09-06,TN,71,6975218 +2023-09-07,TN,77,6975218 +2023-09-08,TN,62,6975218 +2023-09-09,TN,58,6975218 +2023-09-10,TN,66,6975218 +2023-09-11,TN,59,6975218 +2023-09-12,TN,39,6975218 +2023-09-13,TN,68,6975218 +2023-09-14,TN,56,6975218 +2023-09-15,TN,44,6975218 +2023-09-16,TN,32,6975218 +2023-09-17,TN,55,6975218 +2023-09-18,TN,50,6975218 +2023-09-19,TN,53,6975218 +2023-09-20,TN,44,6975218 +2023-09-21,TN,44,6975218 +2023-09-22,TN,47,6975218 +2023-09-23,TN,36,6975218 +2023-09-24,TN,54,6975218 +2023-09-25,TN,51,6975218 +2023-09-26,TN,57,6975218 +2023-09-27,TN,48,6975218 +2023-09-28,TN,35,6975218 +2023-09-29,TN,29,6975218 +2023-09-30,TN,36,6975218 +2023-10-01,TN,32,6975218 +2023-10-02,TN,42,6975218 +2023-10-03,TN,38,6975218 +2023-10-04,TN,32,6975218 +2023-10-05,TN,31,6975218 +2023-10-06,TN,36,6975218 +2023-10-07,TN,36,6975218 +2023-10-08,TN,34,6975218 +2023-10-09,TN,34,6975218 +2023-10-10,TN,53,6975218 +2023-10-11,TN,29,6975218 +2023-10-12,TN,28,6975218 +2023-10-13,TN,31,6975218 +2023-10-14,TN,33,6975218 +2023-10-15,TN,31,6975218 +2023-10-16,TN,41,6975218 +2023-10-17,TN,36,6975218 +2023-10-18,TN,40,6975218 +2023-10-19,TN,35,6975218 +2023-10-20,TN,37,6975218 +2023-10-21,TN,30,6975218 +2023-10-22,TN,27,6975218 +2023-10-23,TN,40,6975218 +2023-10-24,TN,35,6975218 +2023-10-25,TN,47,6975218 +2023-10-26,TN,48,6975218 +2023-10-27,TN,33,6975218 +2023-10-28,TN,31,6975218 +2023-10-29,TN,30,6975218 +2023-10-30,TN,45,6975218 +2023-10-31,TN,42,6975218 +2023-11-01,TN,32,6975218 +2023-11-02,TN,38,6975218 +2023-11-03,TN,47,6975218 +2023-11-04,TN,44,6975218 +2023-11-05,TN,44,6975218 +2023-11-06,TN,54,6975218 +2023-11-07,TN,71,6975218 +2023-11-08,TN,56,6975218 +2023-11-09,TN,59,6975218 +2023-11-10,TN,33,6975218 +2023-11-11,TN,52,6975218 +2023-11-12,TN,49,6975218 +2023-11-13,TN,46,6975218 +2023-11-14,TN,49,6975218 +2023-11-15,TN,56,6975218 +2023-11-16,TN,39,6975218 +2023-11-17,TN,51,6975218 +2023-11-18,TN,44,6975218 +2023-11-19,TN,46,6975218 +2023-11-20,TN,46,6975218 +2023-11-21,TN,61,6975218 +2023-11-22,TN,44,6975218 +2023-11-23,TN,37,6975218 +2023-11-24,TN,52,6975218 +2023-11-25,TN,62,6975218 +2023-11-26,TN,45,6975218 +2023-11-27,TN,55,6975218 +2023-11-28,TN,49,6975218 +2023-11-29,TN,61,6975218 +2023-11-30,TN,58,6975218 +2023-12-01,TN,73,6975218 +2023-12-02,TN,52,6975218 +2023-12-03,TN,54,6975218 +2023-12-04,TN,58,6975218 +2023-12-05,TN,70,6975218 +2023-12-06,TN,62,6975218 +2023-12-07,TN,67,6975218 +2023-12-08,TN,50,6975218 +2023-12-09,TN,65,6975218 +2023-12-10,TN,60,6975218 +2023-12-11,TN,68,6975218 +2023-12-12,TN,79,6975218 +2023-12-13,TN,77,6975218 +2023-12-14,TN,76,6975218 +2023-12-15,TN,66,6975218 +2023-12-16,TN,56,6975218 +2023-12-17,TN,70,6975218 +2023-12-18,TN,80,6975218 +2023-12-19,TN,78,6975218 +2023-12-20,TN,89,6975218 +2023-12-21,TN,84,6975218 +2023-12-22,TN,69,6975218 +2023-12-23,TN,98,6975218 +2023-12-24,TN,93,6975218 +2023-12-25,TN,106,6975218 +2023-12-26,TN,123,6975218 +2023-12-27,TN,109,6975218 +2023-12-28,TN,102,6975218 +2023-12-29,TN,102,6975218 +2023-12-30,TN,91,6975218 +2023-12-31,TN,98,6975218 +2024-01-01,TN,96,6975218 +2024-01-02,TN,115,6975218 +2024-01-03,TN,102,6975218 +2024-01-04,TN,102,6975218 +2024-01-05,TN,104,6975218 +2024-01-06,TN,69,6975218 +2024-01-07,TN,63,6975218 +2024-01-08,TN,82,6975218 +2024-01-09,TN,83,6975218 +2024-01-10,TN,95,6975218 +2024-01-11,TN,88,6975218 +2024-01-12,TN,66,6975218 +2024-01-13,TN,54,6975218 +2024-01-14,TN,57,6975218 +2024-01-15,TN,51,6975218 +2024-01-16,TN,47,6975218 +2024-01-17,TN,73,6975218 +2024-01-18,TN,70,6975218 +2024-01-19,TN,40,6975218 +2022-12-31,TX,552,29527941 +2023-01-01,TX,535,29527941 +2023-01-02,TX,651,29527941 +2023-01-03,TX,535,29527941 +2023-01-04,TX,521,29527941 +2023-01-05,TX,591,29527941 +2023-01-06,TX,547,29527941 +2023-01-07,TX,466,29527941 +2023-01-08,TX,492,29527941 +2023-01-09,TX,494,29527941 +2023-01-10,TX,540,29527941 +2023-01-11,TX,499,29527941 +2023-01-12,TX,485,29527941 +2023-01-13,TX,475,29527941 +2023-01-14,TX,415,29527941 +2023-01-15,TX,369,29527941 +2023-01-16,TX,456,29527941 +2023-01-17,TX,411,29527941 +2023-01-18,TX,388,29527941 +2023-01-19,TX,441,29527941 +2023-01-20,TX,405,29527941 +2023-01-21,TX,344,29527941 +2023-01-22,TX,339,29527941 +2023-01-23,TX,401,29527941 +2023-01-24,TX,383,29527941 +2023-01-25,TX,380,29527941 +2023-01-26,TX,393,29527941 +2023-01-27,TX,378,29527941 +2023-01-28,TX,356,29527941 +2023-01-29,TX,303,29527941 +2023-01-30,TX,355,29527941 +2023-01-31,TX,295,29527941 +2023-02-01,TX,303,29527941 +2023-02-02,TX,310,29527941 +2023-02-03,TX,330,29527941 +2023-02-04,TX,270,29527941 +2023-02-05,TX,305,29527941 +2023-02-06,TX,298,29527941 +2023-02-07,TX,312,29527941 +2023-02-08,TX,337,29527941 +2023-02-09,TX,331,29527941 +2023-02-10,TX,331,29527941 +2023-02-11,TX,271,29527941 +2023-02-12,TX,260,29527941 +2023-02-13,TX,298,29527941 +2023-02-14,TX,310,29527941 +2023-02-15,TX,347,29527941 +2023-02-16,TX,294,29527941 +2023-02-17,TX,270,29527941 +2023-02-18,TX,258,29527941 +2023-02-19,TX,259,29527941 +2023-02-20,TX,293,29527941 +2023-02-21,TX,295,29527941 +2023-02-22,TX,326,29527941 +2023-02-23,TX,266,29527941 +2023-02-24,TX,287,29527941 +2023-02-25,TX,171,29527941 +2023-02-26,TX,264,29527941 +2023-02-27,TX,276,29527941 +2023-02-28,TX,273,29527941 +2023-03-01,TX,272,29527941 +2023-03-02,TX,267,29527941 +2023-03-03,TX,256,29527941 +2023-03-04,TX,219,29527941 +2023-03-05,TX,224,29527941 +2023-03-06,TX,244,29527941 +2023-03-07,TX,262,29527941 +2023-03-08,TX,229,29527941 +2023-03-09,TX,265,29527941 +2023-03-10,TX,212,29527941 +2023-03-11,TX,190,29527941 +2023-03-12,TX,194,29527941 +2023-03-13,TX,228,29527941 +2023-03-14,TX,213,29527941 +2023-03-15,TX,201,29527941 +2023-03-16,TX,211,29527941 +2023-03-17,TX,198,29527941 +2023-03-18,TX,175,29527941 +2023-03-19,TX,176,29527941 +2023-03-20,TX,193,29527941 +2023-03-21,TX,204,29527941 +2023-03-22,TX,210,29527941 +2023-03-23,TX,212,29527941 +2023-03-24,TX,204,29527941 +2023-03-25,TX,173,29527941 +2023-03-26,TX,178,29527941 +2023-03-27,TX,163,29527941 +2023-03-28,TX,187,29527941 +2023-03-29,TX,184,29527941 +2023-03-30,TX,185,29527941 +2023-03-31,TX,195,29527941 +2023-04-01,TX,169,29527941 +2023-04-02,TX,178,29527941 +2023-04-03,TX,196,29527941 +2023-04-04,TX,212,29527941 +2023-04-05,TX,175,29527941 +2023-04-06,TX,197,29527941 +2023-04-07,TX,151,29527941 +2023-04-08,TX,158,29527941 +2023-04-09,TX,175,29527941 +2023-04-10,TX,211,29527941 +2023-04-11,TX,201,29527941 +2023-04-12,TX,203,29527941 +2023-04-13,TX,174,29527941 +2023-04-14,TX,184,29527941 +2023-04-15,TX,169,29527941 +2023-04-16,TX,155,29527941 +2023-04-17,TX,165,29527941 +2023-04-18,TX,188,29527941 +2023-04-19,TX,166,29527941 +2023-04-20,TX,138,29527941 +2023-04-21,TX,159,29527941 +2023-04-22,TX,125,29527941 +2023-04-23,TX,121,29527941 +2023-04-24,TX,133,29527941 +2023-04-25,TX,122,29527941 +2023-04-26,TX,132,29527941 +2023-04-27,TX,167,29527941 +2023-04-28,TX,143,29527941 +2023-04-29,TX,135,29527941 +2023-04-30,TX,111,29527941 +2023-05-01,TX,155,29527941 +2023-05-02,TX,126,29527941 +2023-05-03,TX,133,29527941 +2023-05-04,TX,119,29527941 +2023-05-05,TX,129,29527941 +2023-05-06,TX,117,29527941 +2023-05-07,TX,98,29527941 +2023-05-08,TX,127,29527941 +2023-05-09,TX,123,29527941 +2023-05-10,TX,118,29527941 +2023-05-11,TX,103,29527941 +2023-05-12,TX,118,29527941 +2023-05-13,TX,85,29527941 +2023-05-14,TX,86,29527941 +2023-05-15,TX,120,29527941 +2023-05-16,TX,137,29527941 +2023-05-17,TX,106,29527941 +2023-05-18,TX,118,29527941 +2023-05-19,TX,89,29527941 +2023-05-20,TX,87,29527941 +2023-05-21,TX,90,29527941 +2023-05-22,TX,96,29527941 +2023-05-23,TX,106,29527941 +2023-05-24,TX,91,29527941 +2023-05-25,TX,91,29527941 +2023-05-26,TX,80,29527941 +2023-05-27,TX,68,29527941 +2023-05-28,TX,71,29527941 +2023-05-29,TX,96,29527941 +2023-05-30,TX,97,29527941 +2023-05-31,TX,99,29527941 +2023-06-01,TX,82,29527941 +2023-06-02,TX,87,29527941 +2023-06-03,TX,67,29527941 +2023-06-04,TX,63,29527941 +2023-06-05,TX,83,29527941 +2023-06-06,TX,90,29527941 +2023-06-07,TX,90,29527941 +2023-06-08,TX,86,29527941 +2023-06-09,TX,67,29527941 +2023-06-10,TX,62,29527941 +2023-06-11,TX,75,29527941 +2023-06-12,TX,79,29527941 +2023-06-13,TX,73,29527941 +2023-06-14,TX,71,29527941 +2023-06-15,TX,59,29527941 +2023-06-16,TX,56,29527941 +2023-06-17,TX,63,29527941 +2023-06-18,TX,47,29527941 +2023-06-19,TX,59,29527941 +2023-06-20,TX,61,29527941 +2023-06-21,TX,79,29527941 +2023-06-22,TX,51,29527941 +2023-06-23,TX,52,29527941 +2023-06-24,TX,70,29527941 +2023-06-25,TX,72,29527941 +2023-06-26,TX,84,29527941 +2023-06-27,TX,72,29527941 +2023-06-28,TX,77,29527941 +2023-06-29,TX,70,29527941 +2023-06-30,TX,63,29527941 +2023-07-01,TX,60,29527941 +2023-07-02,TX,67,29527941 +2023-07-03,TX,71,29527941 +2023-07-04,TX,53,29527941 +2023-07-05,TX,79,29527941 +2023-07-06,TX,71,29527941 +2023-07-07,TX,74,29527941 +2023-07-08,TX,75,29527941 +2023-07-09,TX,96,29527941 +2023-07-10,TX,103,29527941 +2023-07-11,TX,95,29527941 +2023-07-12,TX,83,29527941 +2023-07-13,TX,96,29527941 +2023-07-14,TX,102,29527941 +2023-07-15,TX,91,29527941 +2023-07-16,TX,80,29527941 +2023-07-17,TX,104,29527941 +2023-07-18,TX,97,29527941 +2023-07-19,TX,109,29527941 +2023-07-20,TX,156,29527941 +2023-07-21,TX,144,29527941 +2023-07-22,TX,133,29527941 +2023-07-23,TX,122,29527941 +2023-07-24,TX,125,29527941 +2023-07-25,TX,146,29527941 +2023-07-26,TX,125,29527941 +2023-07-27,TX,103,29527941 +2023-07-28,TX,118,29527941 +2023-07-29,TX,104,29527941 +2023-07-30,TX,114,29527941 +2023-07-31,TX,141,29527941 +2023-08-01,TX,155,29527941 +2023-08-02,TX,161,29527941 +2023-08-03,TX,152,29527941 +2023-08-04,TX,160,29527941 +2023-08-05,TX,134,29527941 +2023-08-06,TX,131,29527941 +2023-08-07,TX,136,29527941 +2023-08-08,TX,171,29527941 +2023-08-09,TX,163,29527941 +2023-08-10,TX,168,29527941 +2023-08-11,TX,171,29527941 +2023-08-12,TX,159,29527941 +2023-08-13,TX,166,29527941 +2023-08-14,TX,217,29527941 +2023-08-15,TX,170,29527941 +2023-08-16,TX,201,29527941 +2023-08-17,TX,205,29527941 +2023-08-18,TX,201,29527941 +2023-08-19,TX,191,29527941 +2023-08-20,TX,199,29527941 +2023-08-21,TX,263,29527941 +2023-08-22,TX,222,29527941 +2023-08-23,TX,209,29527941 +2023-08-24,TX,267,29527941 +2023-08-25,TX,238,29527941 +2023-08-26,TX,238,29527941 +2023-08-27,TX,284,29527941 +2023-08-28,TX,268,29527941 +2023-08-29,TX,270,29527941 +2023-08-30,TX,269,29527941 +2023-08-31,TX,297,29527941 +2023-09-01,TX,245,29527941 +2023-09-02,TX,249,29527941 +2023-09-03,TX,253,29527941 +2023-09-04,TX,289,29527941 +2023-09-05,TX,422,29527941 +2023-09-06,TX,401,29527941 +2023-09-07,TX,432,29527941 +2023-09-08,TX,401,29527941 +2023-09-09,TX,365,29527941 +2023-09-10,TX,256,29527941 +2023-09-11,TX,278,29527941 +2023-09-12,TX,279,29527941 +2023-09-13,TX,266,29527941 +2023-09-14,TX,270,29527941 +2023-09-15,TX,261,29527941 +2023-09-16,TX,206,29527941 +2023-09-17,TX,239,29527941 +2023-09-18,TX,244,29527941 +2023-09-19,TX,357,29527941 +2023-09-20,TX,362,29527941 +2023-09-21,TX,383,29527941 +2023-09-22,TX,345,29527941 +2023-09-23,TX,340,29527941 +2023-09-24,TX,193,29527941 +2023-09-25,TX,235,29527941 +2023-09-26,TX,202,29527941 +2023-09-27,TX,199,29527941 +2023-09-28,TX,187,29527941 +2023-09-29,TX,193,29527941 +2023-09-30,TX,172,29527941 +2023-10-01,TX,167,29527941 +2023-10-02,TX,169,29527941 +2023-10-03,TX,181,29527941 +2023-10-04,TX,199,29527941 +2023-10-05,TX,180,29527941 +2023-10-06,TX,183,29527941 +2023-10-07,TX,149,29527941 +2023-10-08,TX,186,29527941 +2023-10-09,TX,188,29527941 +2023-10-10,TX,176,29527941 +2023-10-11,TX,154,29527941 +2023-10-12,TX,153,29527941 +2023-10-13,TX,152,29527941 +2023-10-14,TX,135,29527941 +2023-10-15,TX,129,29527941 +2023-10-16,TX,147,29527941 +2023-10-17,TX,143,29527941 +2023-10-18,TX,148,29527941 +2023-10-19,TX,130,29527941 +2023-10-20,TX,154,29527941 +2023-10-21,TX,149,29527941 +2023-10-22,TX,166,29527941 +2023-10-23,TX,168,29527941 +2023-10-24,TX,202,29527941 +2023-10-25,TX,177,29527941 +2023-10-26,TX,187,29527941 +2023-10-27,TX,177,29527941 +2023-10-28,TX,168,29527941 +2023-10-29,TX,148,29527941 +2023-10-30,TX,135,29527941 +2023-10-31,TX,142,29527941 +2023-11-01,TX,159,29527941 +2023-11-02,TX,162,29527941 +2023-11-03,TX,169,29527941 +2023-11-04,TX,155,29527941 +2023-11-05,TX,176,29527941 +2023-11-06,TX,191,29527941 +2023-11-07,TX,200,29527941 +2023-11-08,TX,174,29527941 +2023-11-09,TX,202,29527941 +2023-11-10,TX,155,29527941 +2023-11-11,TX,130,29527941 +2023-11-12,TX,157,29527941 +2023-11-13,TX,164,29527941 +2023-11-14,TX,163,29527941 +2023-11-15,TX,145,29527941 +2023-11-16,TX,135,29527941 +2023-11-17,TX,138,29527941 +2023-11-18,TX,126,29527941 +2023-11-19,TX,179,29527941 +2023-11-20,TX,176,29527941 +2023-11-21,TX,196,29527941 +2023-11-22,TX,137,29527941 +2023-11-23,TX,123,29527941 +2023-11-24,TX,150,29527941 +2023-11-25,TX,137,29527941 +2023-11-26,TX,179,29527941 +2023-11-27,TX,186,29527941 +2023-11-28,TX,189,29527941 +2023-11-29,TX,192,29527941 +2023-11-30,TX,189,29527941 +2023-12-01,TX,185,29527941 +2023-12-02,TX,179,29527941 +2023-12-03,TX,161,29527941 +2023-12-04,TX,220,29527941 +2023-12-05,TX,156,29527941 +2023-12-06,TX,171,29527941 +2023-12-07,TX,216,29527941 +2023-12-08,TX,202,29527941 +2023-12-09,TX,170,29527941 +2023-12-10,TX,203,29527941 +2023-12-11,TX,220,29527941 +2023-12-12,TX,217,29527941 +2023-12-13,TX,225,29527941 +2023-12-14,TX,216,29527941 +2023-12-15,TX,217,29527941 +2023-12-16,TX,202,29527941 +2023-12-17,TX,279,29527941 +2023-12-18,TX,296,29527941 +2023-12-19,TX,259,29527941 +2023-12-20,TX,245,29527941 +2023-12-21,TX,259,29527941 +2023-12-22,TX,252,29527941 +2023-12-23,TX,242,29527941 +2023-12-24,TX,239,29527941 +2023-12-25,TX,253,29527941 +2023-12-26,TX,288,29527941 +2023-12-27,TX,306,29527941 +2023-12-28,TX,287,29527941 +2023-12-29,TX,302,29527941 +2023-12-30,TX,342,29527941 +2023-12-31,TX,313,29527941 +2024-01-01,TX,357,29527941 +2024-01-02,TX,311,29527941 +2024-01-03,TX,312,29527941 +2024-01-04,TX,313,29527941 +2024-01-05,TX,316,29527941 +2024-01-06,TX,281,29527941 +2024-01-07,TX,277,29527941 +2024-01-08,TX,279,29527941 +2024-01-09,TX,319,29527941 +2024-01-10,TX,300,29527941 +2024-01-11,TX,308,29527941 +2024-01-12,TX,273,29527941 +2024-01-13,TX,241,29527941 +2024-01-14,TX,273,29527941 +2024-01-15,TX,308,29527941 +2024-01-16,TX,335,29527941 +2024-01-17,TX,319,29527941 +2024-01-18,TX,330,29527941 +2024-01-19,TX,327,29527941 +2022-12-31,UT,38,3337975 +2023-01-01,UT,39,3337975 +2023-01-02,UT,36,3337975 +2023-01-03,UT,43,3337975 +2023-01-04,UT,45,3337975 +2023-01-05,UT,39,3337975 +2023-01-06,UT,38,3337975 +2023-01-07,UT,23,3337975 +2023-01-08,UT,14,3337975 +2023-01-09,UT,35,3337975 +2023-01-10,UT,33,3337975 +2023-01-11,UT,28,3337975 +2023-01-12,UT,31,3337975 +2023-01-13,UT,27,3337975 +2023-01-14,UT,19,3337975 +2023-01-15,UT,12,3337975 +2023-01-16,UT,16,3337975 +2023-01-17,UT,17,3337975 +2023-01-18,UT,24,3337975 +2023-01-19,UT,20,3337975 +2023-01-20,UT,18,3337975 +2023-01-21,UT,15,3337975 +2023-01-22,UT,20,3337975 +2023-01-23,UT,27,3337975 +2023-01-24,UT,21,3337975 +2023-01-25,UT,21,3337975 +2023-01-26,UT,13,3337975 +2023-01-27,UT,22,3337975 +2023-01-28,UT,14,3337975 +2023-01-29,UT,10,3337975 +2023-01-30,UT,13,3337975 +2023-01-31,UT,15,3337975 +2023-02-01,UT,23,3337975 +2023-02-02,UT,16,3337975 +2023-02-03,UT,19,3337975 +2023-02-04,UT,13,3337975 +2023-02-05,UT,16,3337975 +2023-02-06,UT,18,3337975 +2023-02-07,UT,23,3337975 +2023-02-08,UT,20,3337975 +2023-02-09,UT,30,3337975 +2023-02-10,UT,18,3337975 +2023-02-11,UT,18,3337975 +2023-02-12,UT,24,3337975 +2023-02-13,UT,29,3337975 +2023-02-14,UT,31,3337975 +2023-02-15,UT,21,3337975 +2023-02-16,UT,31,3337975 +2023-02-17,UT,24,3337975 +2023-02-18,UT,15,3337975 +2023-02-19,UT,15,3337975 +2023-02-20,UT,21,3337975 +2023-02-21,UT,28,3337975 +2023-02-22,UT,26,3337975 +2023-02-23,UT,30,3337975 +2023-02-24,UT,22,3337975 +2023-02-25,UT,24,3337975 +2023-02-26,UT,19,3337975 +2023-02-27,UT,42,3337975 +2023-02-28,UT,23,3337975 +2023-03-01,UT,31,3337975 +2023-03-02,UT,27,3337975 +2023-03-03,UT,31,3337975 +2023-03-04,UT,20,3337975 +2023-03-05,UT,22,3337975 +2023-03-06,UT,29,3337975 +2023-03-07,UT,34,3337975 +2023-03-08,UT,21,3337975 +2023-03-09,UT,19,3337975 +2023-03-10,UT,26,3337975 +2023-03-11,UT,15,3337975 +2023-03-12,UT,24,3337975 +2023-03-13,UT,22,3337975 +2023-03-14,UT,17,3337975 +2023-03-15,UT,21,3337975 +2023-03-16,UT,34,3337975 +2023-03-17,UT,20,3337975 +2023-03-18,UT,15,3337975 +2023-03-19,UT,15,3337975 +2023-03-20,UT,15,3337975 +2023-03-21,UT,29,3337975 +2023-03-22,UT,16,3337975 +2023-03-23,UT,21,3337975 +2023-03-24,UT,27,3337975 +2023-03-25,UT,17,3337975 +2023-03-26,UT,17,3337975 +2023-03-27,UT,19,3337975 +2023-03-28,UT,33,3337975 +2023-03-29,UT,23,3337975 +2023-03-30,UT,21,3337975 +2023-03-31,UT,27,3337975 +2023-04-01,UT,12,3337975 +2023-04-02,UT,10,3337975 +2023-04-03,UT,18,3337975 +2023-04-04,UT,15,3337975 +2023-04-05,UT,18,3337975 +2023-04-06,UT,17,3337975 +2023-04-07,UT,24,3337975 +2023-04-08,UT,12,3337975 +2023-04-09,UT,15,3337975 +2023-04-10,UT,17,3337975 +2023-04-11,UT,26,3337975 +2023-04-12,UT,22,3337975 +2023-04-13,UT,11,3337975 +2023-04-14,UT,14,3337975 +2023-04-15,UT,12,3337975 +2023-04-16,UT,12,3337975 +2023-04-17,UT,22,3337975 +2023-04-18,UT,22,3337975 +2023-04-19,UT,12,3337975 +2023-04-20,UT,18,3337975 +2023-04-21,UT,13,3337975 +2023-04-22,UT,13,3337975 +2023-04-23,UT,13,3337975 +2023-04-24,UT,20,3337975 +2023-04-25,UT,15,3337975 +2023-04-26,UT,10,3337975 +2023-04-27,UT,10,3337975 +2023-04-28,UT,14,3337975 +2023-04-29,UT,6,3337975 +2023-04-30,UT,8,3337975 +2023-05-01,UT,10,3337975 +2023-05-02,UT,10,3337975 +2023-05-03,UT,14,3337975 +2023-05-04,UT,12,3337975 +2023-05-05,UT,12,3337975 +2023-05-06,UT,7,3337975 +2023-05-07,UT,8,3337975 +2023-05-08,UT,10,3337975 +2023-05-09,UT,10,3337975 +2023-05-10,UT,25,3337975 +2023-05-11,UT,16,3337975 +2023-05-12,UT,10,3337975 +2023-05-13,UT,11,3337975 +2023-05-14,UT,15,3337975 +2023-05-15,UT,9,3337975 +2023-05-16,UT,11,3337975 +2023-05-17,UT,11,3337975 +2023-05-18,UT,17,3337975 +2023-05-19,UT,11,3337975 +2023-05-20,UT,6,3337975 +2023-05-21,UT,8,3337975 +2023-05-22,UT,5,3337975 +2023-05-23,UT,6,3337975 +2023-05-24,UT,12,3337975 +2023-05-25,UT,14,3337975 +2023-05-26,UT,11,3337975 +2023-05-27,UT,6,3337975 +2023-05-28,UT,10,3337975 +2023-05-29,UT,7,3337975 +2023-05-30,UT,12,3337975 +2023-05-31,UT,13,3337975 +2023-06-01,UT,10,3337975 +2023-06-02,UT,12,3337975 +2023-06-03,UT,13,3337975 +2023-06-04,UT,5,3337975 +2023-06-05,UT,14,3337975 +2023-06-06,UT,16,3337975 +2023-06-07,UT,7,3337975 +2023-06-08,UT,5,3337975 +2023-06-09,UT,8,3337975 +2023-06-10,UT,9,3337975 +2023-06-11,UT,3,3337975 +2023-06-12,UT,9,3337975 +2023-06-13,UT,7,3337975 +2023-06-14,UT,10,3337975 +2023-06-15,UT,13,3337975 +2023-06-16,UT,9,3337975 +2023-06-17,UT,4,3337975 +2023-06-18,UT,3,3337975 +2023-06-19,UT,8,3337975 +2023-06-20,UT,8,3337975 +2023-06-21,UT,7,3337975 +2023-06-22,UT,8,3337975 +2023-06-23,UT,11,3337975 +2023-06-24,UT,3,3337975 +2023-06-25,UT,8,3337975 +2023-06-26,UT,6,3337975 +2023-06-27,UT,3,3337975 +2023-06-28,UT,6,3337975 +2023-06-29,UT,10,3337975 +2023-06-30,UT,7,3337975 +2023-07-01,UT,5,3337975 +2023-07-02,UT,5,3337975 +2023-07-03,UT,6,3337975 +2023-07-04,UT,2,3337975 +2023-07-05,UT,6,3337975 +2023-07-06,UT,10,3337975 +2023-07-07,UT,8,3337975 +2023-07-08,UT,7,3337975 +2023-07-09,UT,4,3337975 +2023-07-10,UT,9,3337975 +2023-07-11,UT,6,3337975 +2023-07-12,UT,13,3337975 +2023-07-13,UT,11,3337975 +2023-07-14,UT,3,3337975 +2023-07-15,UT,1,3337975 +2023-07-16,UT,10,3337975 +2023-07-17,UT,10,3337975 +2023-07-18,UT,5,3337975 +2023-07-19,UT,6,3337975 +2023-07-20,UT,7,3337975 +2023-07-21,UT,9,3337975 +2023-07-22,UT,5,3337975 +2023-07-23,UT,4,3337975 +2023-07-24,UT,7,3337975 +2023-07-25,UT,8,3337975 +2023-07-26,UT,8,3337975 +2023-07-27,UT,10,3337975 +2023-07-28,UT,13,3337975 +2023-07-29,UT,3,3337975 +2023-07-30,UT,5,3337975 +2023-07-31,UT,8,3337975 +2023-08-01,UT,5,3337975 +2023-08-02,UT,8,3337975 +2023-08-03,UT,12,3337975 +2023-08-04,UT,11,3337975 +2023-08-05,UT,6,3337975 +2023-08-06,UT,4,3337975 +2023-08-07,UT,8,3337975 +2023-08-08,UT,11,3337975 +2023-08-09,UT,10,3337975 +2023-08-10,UT,9,3337975 +2023-08-11,UT,9,3337975 +2023-08-12,UT,11,3337975 +2023-08-13,UT,7,3337975 +2023-08-14,UT,7,3337975 +2023-08-15,UT,15,3337975 +2023-08-16,UT,13,3337975 +2023-08-17,UT,9,3337975 +2023-08-18,UT,10,3337975 +2023-08-19,UT,7,3337975 +2023-08-20,UT,7,3337975 +2023-08-21,UT,18,3337975 +2023-08-22,UT,19,3337975 +2023-08-23,UT,14,3337975 +2023-08-24,UT,16,3337975 +2023-08-25,UT,18,3337975 +2023-08-26,UT,10,3337975 +2023-08-27,UT,16,3337975 +2023-08-28,UT,11,3337975 +2023-08-29,UT,15,3337975 +2023-08-30,UT,16,3337975 +2023-08-31,UT,15,3337975 +2023-09-01,UT,19,3337975 +2023-09-02,UT,17,3337975 +2023-09-03,UT,14,3337975 +2023-09-04,UT,8,3337975 +2023-09-05,UT,23,3337975 +2023-09-06,UT,20,3337975 +2023-09-07,UT,24,3337975 +2023-09-08,UT,21,3337975 +2023-09-09,UT,14,3337975 +2023-09-10,UT,16,3337975 +2023-09-11,UT,25,3337975 +2023-09-12,UT,24,3337975 +2023-09-13,UT,20,3337975 +2023-09-14,UT,18,3337975 +2023-09-15,UT,17,3337975 +2023-09-16,UT,17,3337975 +2023-09-17,UT,17,3337975 +2023-09-18,UT,22,3337975 +2023-09-19,UT,21,3337975 +2023-09-20,UT,20,3337975 +2023-09-21,UT,20,3337975 +2023-09-22,UT,20,3337975 +2023-09-23,UT,13,3337975 +2023-09-24,UT,15,3337975 +2023-09-25,UT,30,3337975 +2023-09-26,UT,25,3337975 +2023-09-27,UT,32,3337975 +2023-09-28,UT,23,3337975 +2023-09-29,UT,17,3337975 +2023-09-30,UT,14,3337975 +2023-10-01,UT,22,3337975 +2023-10-02,UT,18,3337975 +2023-10-03,UT,26,3337975 +2023-10-04,UT,14,3337975 +2023-10-05,UT,27,3337975 +2023-10-06,UT,23,3337975 +2023-10-07,UT,20,3337975 +2023-10-08,UT,14,3337975 +2023-10-09,UT,24,3337975 +2023-10-10,UT,21,3337975 +2023-10-11,UT,20,3337975 +2023-10-12,UT,31,3337975 +2023-10-13,UT,27,3337975 +2023-10-14,UT,13,3337975 +2023-10-15,UT,9,3337975 +2023-10-16,UT,18,3337975 +2023-10-17,UT,17,3337975 +2023-10-18,UT,25,3337975 +2023-10-19,UT,21,3337975 +2023-10-20,UT,27,3337975 +2023-10-21,UT,13,3337975 +2023-10-22,UT,8,3337975 +2023-10-23,UT,12,3337975 +2023-10-24,UT,21,3337975 +2023-10-25,UT,21,3337975 +2023-10-26,UT,21,3337975 +2023-10-27,UT,27,3337975 +2023-10-28,UT,9,3337975 +2023-10-29,UT,21,3337975 +2023-10-30,UT,28,3337975 +2023-10-31,UT,17,3337975 +2023-11-01,UT,24,3337975 +2023-11-02,UT,17,3337975 +2023-11-03,UT,19,3337975 +2023-11-04,UT,21,3337975 +2023-11-05,UT,17,3337975 +2023-11-06,UT,25,3337975 +2023-11-07,UT,21,3337975 +2023-11-08,UT,28,3337975 +2023-11-09,UT,18,3337975 +2023-11-10,UT,22,3337975 +2023-11-11,UT,19,3337975 +2023-11-12,UT,25,3337975 +2023-11-13,UT,38,3337975 +2023-11-14,UT,28,3337975 +2023-11-15,UT,18,3337975 +2023-11-16,UT,23,3337975 +2023-11-17,UT,20,3337975 +2023-11-18,UT,24,3337975 +2023-11-19,UT,30,3337975 +2023-11-20,UT,33,3337975 +2023-11-21,UT,37,3337975 +2023-11-22,UT,30,3337975 +2023-11-23,UT,25,3337975 +2023-11-24,UT,26,3337975 +2023-11-25,UT,25,3337975 +2023-11-26,UT,25,3337975 +2023-11-27,UT,21,3337975 +2023-11-28,UT,40,3337975 +2023-11-29,UT,46,3337975 +2023-11-30,UT,36,3337975 +2023-12-01,UT,29,3337975 +2023-12-02,UT,30,3337975 +2023-12-03,UT,26,3337975 +2023-12-04,UT,45,3337975 +2023-12-05,UT,23,3337975 +2023-12-06,UT,32,3337975 +2023-12-07,UT,35,3337975 +2023-12-08,UT,18,3337975 +2023-12-09,UT,37,3337975 +2023-12-10,UT,15,3337975 +2023-12-11,UT,43,3337975 +2023-12-12,UT,41,3337975 +2023-12-13,UT,36,3337975 +2023-12-14,UT,43,3337975 +2023-12-15,UT,27,3337975 +2023-12-16,UT,24,3337975 +2023-12-17,UT,27,3337975 +2023-12-18,UT,29,3337975 +2023-12-19,UT,25,3337975 +2023-12-20,UT,34,3337975 +2023-12-21,UT,27,3337975 +2023-12-22,UT,35,3337975 +2023-12-23,UT,29,3337975 +2023-12-24,UT,19,3337975 +2023-12-25,UT,31,3337975 +2023-12-26,UT,40,3337975 +2023-12-27,UT,44,3337975 +2023-12-28,UT,38,3337975 +2023-12-29,UT,41,3337975 +2023-12-30,UT,26,3337975 +2023-12-31,UT,35,3337975 +2024-01-01,UT,34,3337975 +2024-01-02,UT,51,3337975 +2024-01-03,UT,40,3337975 +2024-01-04,UT,40,3337975 +2024-01-05,UT,29,3337975 +2024-01-06,UT,28,3337975 +2024-01-07,UT,32,3337975 +2024-01-08,UT,40,3337975 +2024-01-09,UT,25,3337975 +2024-01-10,UT,21,3337975 +2024-01-11,UT,19,3337975 +2024-01-12,UT,32,3337975 +2024-01-13,UT,21,3337975 +2024-01-14,UT,20,3337975 +2024-01-15,UT,22,3337975 +2024-01-16,UT,28,3337975 +2024-01-17,UT,18,3337975 +2024-01-18,UT,23,3337975 +2024-01-19,UT,26,3337975 +2022-12-31,VA,171,8642274 +2023-01-01,VA,155,8642274 +2023-01-02,VA,180,8642274 +2023-01-03,VA,192,8642274 +2023-01-04,VA,189,8642274 +2023-01-05,VA,198,8642274 +2023-01-06,VA,161,8642274 +2023-01-07,VA,136,8642274 +2023-01-08,VA,134,8642274 +2023-01-09,VA,163,8642274 +2023-01-10,VA,148,8642274 +2023-01-11,VA,141,8642274 +2023-01-12,VA,144,8642274 +2023-01-13,VA,140,8642274 +2023-01-14,VA,107,8642274 +2023-01-15,VA,121,8642274 +2023-01-16,VA,149,8642274 +2023-01-17,VA,153,8642274 +2023-01-18,VA,137,8642274 +2023-01-19,VA,120,8642274 +2023-01-20,VA,108,8642274 +2023-01-21,VA,103,8642274 +2023-01-22,VA,110,8642274 +2023-01-23,VA,105,8642274 +2023-01-24,VA,126,8642274 +2023-01-25,VA,117,8642274 +2023-01-26,VA,113,8642274 +2023-01-27,VA,88,8642274 +2023-01-28,VA,94,8642274 +2023-01-29,VA,87,8642274 +2023-01-30,VA,125,8642274 +2023-01-31,VA,119,8642274 +2023-02-01,VA,103,8642274 +2023-02-02,VA,89,8642274 +2023-02-03,VA,91,8642274 +2023-02-04,VA,83,8642274 +2023-02-05,VA,96,8642274 +2023-02-06,VA,100,8642274 +2023-02-07,VA,105,8642274 +2023-02-08,VA,81,8642274 +2023-02-09,VA,107,8642274 +2023-02-10,VA,111,8642274 +2023-02-11,VA,67,8642274 +2023-02-12,VA,70,8642274 +2023-02-13,VA,99,8642274 +2023-02-14,VA,69,8642274 +2023-02-15,VA,80,8642274 +2023-02-16,VA,88,8642274 +2023-02-17,VA,87,8642274 +2023-02-18,VA,67,8642274 +2023-02-19,VA,64,8642274 +2023-02-20,VA,58,8642274 +2023-02-21,VA,83,8642274 +2023-02-22,VA,77,8642274 +2023-02-23,VA,73,8642274 +2023-02-24,VA,51,8642274 +2023-02-25,VA,41,8642274 +2023-02-26,VA,71,8642274 +2023-02-27,VA,56,8642274 +2023-02-28,VA,57,8642274 +2023-03-01,VA,72,8642274 +2023-03-02,VA,59,8642274 +2023-03-03,VA,56,8642274 +2023-03-04,VA,64,8642274 +2023-03-05,VA,52,8642274 +2023-03-06,VA,54,8642274 +2023-03-07,VA,62,8642274 +2023-03-08,VA,49,8642274 +2023-03-09,VA,44,8642274 +2023-03-10,VA,59,8642274 +2023-03-11,VA,41,8642274 +2023-03-12,VA,37,8642274 +2023-03-13,VA,43,8642274 +2023-03-14,VA,64,8642274 +2023-03-15,VA,49,8642274 +2023-03-16,VA,31,8642274 +2023-03-17,VA,39,8642274 +2023-03-18,VA,33,8642274 +2023-03-19,VA,30,8642274 +2023-03-20,VA,29,8642274 +2023-03-21,VA,39,8642274 +2023-03-22,VA,40,8642274 +2023-03-23,VA,37,8642274 +2023-03-24,VA,38,8642274 +2023-03-25,VA,21,8642274 +2023-03-26,VA,34,8642274 +2023-03-27,VA,47,8642274 +2023-03-28,VA,41,8642274 +2023-03-29,VA,39,8642274 +2023-03-30,VA,27,8642274 +2023-03-31,VA,30,8642274 +2023-04-01,VA,24,8642274 +2023-04-02,VA,30,8642274 +2023-04-03,VA,34,8642274 +2023-04-04,VA,35,8642274 +2023-04-05,VA,36,8642274 +2023-04-06,VA,26,8642274 +2023-04-07,VA,31,8642274 +2023-04-08,VA,31,8642274 +2023-04-09,VA,22,8642274 +2023-04-10,VA,22,8642274 +2023-04-11,VA,32,8642274 +2023-04-12,VA,22,8642274 +2023-04-13,VA,24,8642274 +2023-04-14,VA,31,8642274 +2023-04-15,VA,21,8642274 +2023-04-16,VA,22,8642274 +2023-04-17,VA,42,8642274 +2023-04-18,VA,25,8642274 +2023-04-19,VA,25,8642274 +2023-04-20,VA,25,8642274 +2023-04-21,VA,18,8642274 +2023-04-22,VA,16,8642274 +2023-04-23,VA,11,8642274 +2023-04-24,VA,21,8642274 +2023-04-25,VA,17,8642274 +2023-04-26,VA,15,8642274 +2023-04-27,VA,18,8642274 +2023-04-28,VA,17,8642274 +2023-04-29,VA,22,8642274 +2023-04-30,VA,18,8642274 +2023-05-01,VA,22,8642274 +2023-05-02,VA,24,8642274 +2023-05-03,VA,16,8642274 +2023-05-04,VA,15,8642274 +2023-05-05,VA,10,8642274 +2023-05-06,VA,12,8642274 +2023-05-07,VA,20,8642274 +2023-05-08,VA,19,8642274 +2023-05-09,VA,19,8642274 +2023-05-10,VA,19,8642274 +2023-05-11,VA,19,8642274 +2023-05-12,VA,22,8642274 +2023-05-13,VA,16,8642274 +2023-05-14,VA,18,8642274 +2023-05-15,VA,11,8642274 +2023-05-16,VA,21,8642274 +2023-05-17,VA,19,8642274 +2023-05-18,VA,12,8642274 +2023-05-19,VA,15,8642274 +2023-05-20,VA,17,8642274 +2023-05-21,VA,14,8642274 +2023-05-22,VA,14,8642274 +2023-05-23,VA,10,8642274 +2023-05-24,VA,8,8642274 +2023-05-25,VA,12,8642274 +2023-05-26,VA,12,8642274 +2023-05-27,VA,14,8642274 +2023-05-28,VA,20,8642274 +2023-05-29,VA,21,8642274 +2023-05-30,VA,24,8642274 +2023-05-31,VA,14,8642274 +2023-06-01,VA,14,8642274 +2023-06-02,VA,11,8642274 +2023-06-03,VA,13,8642274 +2023-06-04,VA,12,8642274 +2023-06-05,VA,12,8642274 +2023-06-06,VA,8,8642274 +2023-06-07,VA,10,8642274 +2023-06-08,VA,12,8642274 +2023-06-09,VA,16,8642274 +2023-06-10,VA,13,8642274 +2023-06-11,VA,11,8642274 +2023-06-12,VA,20,8642274 +2023-06-13,VA,26,8642274 +2023-06-14,VA,19,8642274 +2023-06-15,VA,21,8642274 +2023-06-16,VA,11,8642274 +2023-06-17,VA,15,8642274 +2023-06-18,VA,18,8642274 +2023-06-19,VA,20,8642274 +2023-06-20,VA,17,8642274 +2023-06-21,VA,17,8642274 +2023-06-22,VA,15,8642274 +2023-06-23,VA,19,8642274 +2023-06-24,VA,16,8642274 +2023-06-25,VA,13,8642274 +2023-06-26,VA,19,8642274 +2023-06-27,VA,18,8642274 +2023-06-28,VA,17,8642274 +2023-06-29,VA,21,8642274 +2023-06-30,VA,18,8642274 +2023-07-01,VA,12,8642274 +2023-07-02,VA,18,8642274 +2023-07-03,VA,19,8642274 +2023-07-04,VA,24,8642274 +2023-07-05,VA,14,8642274 +2023-07-06,VA,18,8642274 +2023-07-07,VA,20,8642274 +2023-07-08,VA,22,8642274 +2023-07-09,VA,15,8642274 +2023-07-10,VA,19,8642274 +2023-07-11,VA,15,8642274 +2023-07-12,VA,14,8642274 +2023-07-13,VA,17,8642274 +2023-07-14,VA,20,8642274 +2023-07-15,VA,11,8642274 +2023-07-16,VA,15,8642274 +2023-07-17,VA,19,8642274 +2023-07-18,VA,20,8642274 +2023-07-19,VA,23,8642274 +2023-07-20,VA,18,8642274 +2023-07-21,VA,17,8642274 +2023-07-22,VA,21,8642274 +2023-07-23,VA,12,8642274 +2023-07-24,VA,17,8642274 +2023-07-25,VA,21,8642274 +2023-07-26,VA,18,8642274 +2023-07-27,VA,30,8642274 +2023-07-28,VA,33,8642274 +2023-07-29,VA,20,8642274 +2023-07-30,VA,21,8642274 +2023-07-31,VA,21,8642274 +2023-08-01,VA,35,8642274 +2023-08-02,VA,26,8642274 +2023-08-03,VA,27,8642274 +2023-08-04,VA,19,8642274 +2023-08-05,VA,26,8642274 +2023-08-06,VA,32,8642274 +2023-08-07,VA,41,8642274 +2023-08-08,VA,37,8642274 +2023-08-09,VA,33,8642274 +2023-08-10,VA,33,8642274 +2023-08-11,VA,34,8642274 +2023-08-12,VA,44,8642274 +2023-08-13,VA,51,8642274 +2023-08-14,VA,44,8642274 +2023-08-15,VA,39,8642274 +2023-08-16,VA,44,8642274 +2023-08-17,VA,41,8642274 +2023-08-18,VA,42,8642274 +2023-08-19,VA,33,8642274 +2023-08-20,VA,36,8642274 +2023-08-21,VA,58,8642274 +2023-08-22,VA,60,8642274 +2023-08-23,VA,62,8642274 +2023-08-24,VA,63,8642274 +2023-08-25,VA,58,8642274 +2023-08-26,VA,52,8642274 +2023-08-27,VA,53,8642274 +2023-08-28,VA,57,8642274 +2023-08-29,VA,46,8642274 +2023-08-30,VA,53,8642274 +2023-08-31,VA,57,8642274 +2023-09-01,VA,74,8642274 +2023-09-02,VA,56,8642274 +2023-09-03,VA,65,8642274 +2023-09-04,VA,76,8642274 +2023-09-05,VA,68,8642274 +2023-09-06,VA,71,8642274 +2023-09-07,VA,64,8642274 +2023-09-08,VA,79,8642274 +2023-09-09,VA,62,8642274 +2023-09-10,VA,57,8642274 +2023-09-11,VA,62,8642274 +2023-09-12,VA,65,8642274 +2023-09-13,VA,78,8642274 +2023-09-14,VA,64,8642274 +2023-09-15,VA,56,8642274 +2023-09-16,VA,57,8642274 +2023-09-17,VA,52,8642274 +2023-09-18,VA,94,8642274 +2023-09-19,VA,72,8642274 +2023-09-20,VA,71,8642274 +2023-09-21,VA,71,8642274 +2023-09-22,VA,66,8642274 +2023-09-23,VA,74,8642274 +2023-09-24,VA,55,8642274 +2023-09-25,VA,71,8642274 +2023-09-26,VA,63,8642274 +2023-09-27,VA,55,8642274 +2023-09-28,VA,66,8642274 +2023-09-29,VA,67,8642274 +2023-09-30,VA,61,8642274 +2023-10-01,VA,63,8642274 +2023-10-02,VA,71,8642274 +2023-10-03,VA,59,8642274 +2023-10-04,VA,64,8642274 +2023-10-05,VA,53,8642274 +2023-10-06,VA,56,8642274 +2023-10-07,VA,44,8642274 +2023-10-08,VA,56,8642274 +2023-10-09,VA,51,8642274 +2023-10-10,VA,71,8642274 +2023-10-11,VA,71,8642274 +2023-10-12,VA,68,8642274 +2023-10-13,VA,75,8642274 +2023-10-14,VA,65,8642274 +2023-10-15,VA,66,8642274 +2023-10-16,VA,72,8642274 +2023-10-17,VA,72,8642274 +2023-10-18,VA,56,8642274 +2023-10-19,VA,61,8642274 +2023-10-20,VA,65,8642274 +2023-10-21,VA,48,8642274 +2023-10-22,VA,57,8642274 +2023-10-23,VA,79,8642274 +2023-10-24,VA,71,8642274 +2023-10-25,VA,87,8642274 +2023-10-26,VA,54,8642274 +2023-10-27,VA,70,8642274 +2023-10-28,VA,63,8642274 +2023-10-29,VA,55,8642274 +2023-10-30,VA,63,8642274 +2023-10-31,VA,45,8642274 +2023-11-01,VA,48,8642274 +2023-11-02,VA,57,8642274 +2023-11-03,VA,52,8642274 +2023-11-04,VA,54,8642274 +2023-11-05,VA,78,8642274 +2023-11-06,VA,69,8642274 +2023-11-07,VA,69,8642274 +2023-11-08,VA,64,8642274 +2023-11-09,VA,67,8642274 +2023-11-10,VA,64,8642274 +2023-11-11,VA,54,8642274 +2023-11-12,VA,54,8642274 +2023-11-13,VA,58,8642274 +2023-11-14,VA,69,8642274 +2023-11-15,VA,71,8642274 +2023-11-16,VA,80,8642274 +2023-11-17,VA,64,8642274 +2023-11-18,VA,65,8642274 +2023-11-19,VA,59,8642274 +2023-11-20,VA,74,8642274 +2023-11-21,VA,70,8642274 +2023-11-22,VA,68,8642274 +2023-11-23,VA,75,8642274 +2023-11-24,VA,77,8642274 +2023-11-25,VA,86,8642274 +2023-11-26,VA,73,8642274 +2023-11-27,VA,107,8642274 +2023-11-28,VA,82,8642274 +2023-11-29,VA,78,8642274 +2023-11-30,VA,93,8642274 +2023-12-01,VA,92,8642274 +2023-12-02,VA,88,8642274 +2023-12-03,VA,88,8642274 +2023-12-04,VA,96,8642274 +2023-12-05,VA,87,8642274 +2023-12-06,VA,83,8642274 +2023-12-07,VA,80,8642274 +2023-12-08,VA,83,8642274 +2023-12-09,VA,72,8642274 +2023-12-10,VA,83,8642274 +2023-12-11,VA,93,8642274 +2023-12-12,VA,99,8642274 +2023-12-13,VA,109,8642274 +2023-12-14,VA,99,8642274 +2023-12-15,VA,100,8642274 +2023-12-16,VA,86,8642274 +2023-12-17,VA,101,8642274 +2023-12-18,VA,129,8642274 +2023-12-19,VA,122,8642274 +2023-12-20,VA,117,8642274 +2023-12-21,VA,129,8642274 +2023-12-22,VA,110,8642274 +2023-12-23,VA,123,8642274 +2023-12-24,VA,120,8642274 +2023-12-25,VA,126,8642274 +2023-12-26,VA,161,8642274 +2023-12-27,VA,161,8642274 +2023-12-28,VA,166,8642274 +2023-12-29,VA,165,8642274 +2023-12-30,VA,137,8642274 +2023-12-31,VA,131,8642274 +2024-01-01,VA,148,8642274 +2024-01-02,VA,147,8642274 +2024-01-03,VA,176,8642274 +2024-01-04,VA,126,8642274 +2024-01-05,VA,139,8642274 +2024-01-06,VA,130,8642274 +2024-01-07,VA,147,8642274 +2024-01-08,VA,132,8642274 +2024-01-09,VA,129,8642274 +2024-01-10,VA,133,8642274 +2024-01-11,VA,115,8642274 +2024-01-12,VA,109,8642274 +2024-01-13,VA,100,8642274 +2024-01-14,VA,92,8642274 +2024-01-15,VA,107,8642274 +2024-01-16,VA,108,8642274 +2024-01-17,VA,99,8642274 +2024-01-18,VA,88,8642274 +2024-01-19,VA,99,8642274 +2022-12-31,VI,3,107268 +2023-01-01,VI,0,107268 +2023-01-02,VI,1,107268 +2023-01-03,VI,1,107268 +2023-01-04,VI,0,107268 +2023-01-05,VI,0,107268 +2023-01-06,VI,1,107268 +2023-01-07,VI,0,107268 +2023-01-08,VI,0,107268 +2023-01-09,VI,2,107268 +2023-01-10,VI,2,107268 +2023-01-11,VI,1,107268 +2023-01-12,VI,0,107268 +2023-01-13,VI,1,107268 +2023-01-14,VI,0,107268 +2023-01-15,VI,0,107268 +2023-01-16,VI,0,107268 +2023-01-17,VI,1,107268 +2023-01-18,VI,3,107268 +2023-01-19,VI,0,107268 +2023-01-20,VI,0,107268 +2023-01-21,VI,3,107268 +2023-01-22,VI,1,107268 +2023-01-23,VI,1,107268 +2023-01-24,VI,0,107268 +2023-01-25,VI,0,107268 +2023-01-26,VI,1,107268 +2023-01-27,VI,1,107268 +2023-01-28,VI,2,107268 +2023-01-29,VI,1,107268 +2023-01-30,VI,2,107268 +2023-01-31,VI,0,107268 +2023-02-01,VI,1,107268 +2023-02-02,VI,2,107268 +2023-02-03,VI,2,107268 +2023-02-04,VI,1,107268 +2023-02-05,VI,0,107268 +2023-02-06,VI,0,107268 +2023-02-07,VI,1,107268 +2023-02-08,VI,2,107268 +2023-02-09,VI,0,107268 +2023-02-10,VI,1,107268 +2023-02-11,VI,0,107268 +2023-02-12,VI,0,107268 +2023-02-13,VI,0,107268 +2023-02-14,VI,0,107268 +2023-02-15,VI,1,107268 +2023-02-16,VI,0,107268 +2023-02-17,VI,0,107268 +2023-02-18,VI,0,107268 +2023-02-19,VI,0,107268 +2023-02-20,VI,1,107268 +2023-02-21,VI,0,107268 +2023-02-22,VI,0,107268 +2023-02-23,VI,0,107268 +2023-02-24,VI,0,107268 +2023-02-25,VI,1,107268 +2023-02-26,VI,0,107268 +2023-02-27,VI,0,107268 +2023-02-28,VI,0,107268 +2023-03-01,VI,0,107268 +2023-03-02,VI,0,107268 +2023-03-03,VI,1,107268 +2023-03-04,VI,0,107268 +2023-03-05,VI,0,107268 +2023-03-06,VI,2,107268 +2023-03-07,VI,0,107268 +2023-03-08,VI,2,107268 +2023-03-09,VI,0,107268 +2023-03-10,VI,0,107268 +2023-03-11,VI,0,107268 +2023-03-12,VI,0,107268 +2023-03-13,VI,0,107268 +2023-03-14,VI,0,107268 +2023-03-15,VI,0,107268 +2023-03-16,VI,0,107268 +2023-03-17,VI,1,107268 +2023-03-18,VI,1,107268 +2023-03-19,VI,0,107268 +2023-03-20,VI,1,107268 +2023-03-21,VI,0,107268 +2023-03-22,VI,0,107268 +2023-03-23,VI,0,107268 +2023-03-24,VI,0,107268 +2023-03-25,VI,1,107268 +2023-03-26,VI,0,107268 +2023-03-27,VI,0,107268 +2023-03-28,VI,0,107268 +2023-03-29,VI,0,107268 +2023-03-30,VI,0,107268 +2023-03-31,VI,0,107268 +2023-04-01,VI,1,107268 +2023-04-02,VI,0,107268 +2023-04-03,VI,1,107268 +2023-04-04,VI,1,107268 +2023-04-05,VI,0,107268 +2023-04-06,VI,0,107268 +2023-04-07,VI,0,107268 +2023-04-08,VI,1,107268 +2023-04-09,VI,0,107268 +2023-04-10,VI,0,107268 +2023-04-11,VI,0,107268 +2023-04-12,VI,0,107268 +2023-04-13,VI,0,107268 +2023-04-14,VI,0,107268 +2023-04-15,VI,0,107268 +2023-04-16,VI,0,107268 +2023-04-17,VI,0,107268 +2023-04-18,VI,0,107268 +2023-04-19,VI,0,107268 +2023-04-20,VI,0,107268 +2023-04-21,VI,0,107268 +2023-04-22,VI,0,107268 +2023-04-23,VI,0,107268 +2023-04-24,VI,0,107268 +2023-04-25,VI,0,107268 +2023-04-26,VI,0,107268 +2023-04-27,VI,0,107268 +2023-04-28,VI,0,107268 +2023-04-29,VI,2,107268 +2023-04-30,VI,0,107268 +2023-05-01,VI,1,107268 +2023-05-02,VI,1,107268 +2023-05-03,VI,0,107268 +2023-05-04,VI,2,107268 +2023-05-05,VI,1,107268 +2023-05-06,VI,0,107268 +2023-05-07,VI,0,107268 +2023-05-08,VI,0,107268 +2023-05-09,VI,0,107268 +2023-05-10,VI,2,107268 +2023-05-11,VI,0,107268 +2023-05-12,VI,2,107268 +2023-05-13,VI,0,107268 +2023-05-14,VI,1,107268 +2023-05-15,VI,0,107268 +2023-05-16,VI,0,107268 +2023-05-17,VI,0,107268 +2023-05-18,VI,0,107268 +2023-05-19,VI,0,107268 +2023-05-20,VI,0,107268 +2023-05-21,VI,0,107268 +2023-05-22,VI,0,107268 +2023-05-23,VI,0,107268 +2023-05-24,VI,2,107268 +2023-05-25,VI,0,107268 +2023-05-26,VI,1,107268 +2023-05-27,VI,0,107268 +2023-05-28,VI,0,107268 +2023-05-29,VI,1,107268 +2023-05-30,VI,0,107268 +2023-05-31,VI,0,107268 +2023-06-01,VI,1,107268 +2023-06-02,VI,0,107268 +2023-06-03,VI,2,107268 +2023-06-04,VI,1,107268 +2023-06-05,VI,2,107268 +2023-06-06,VI,0,107268 +2023-06-07,VI,0,107268 +2023-06-08,VI,1,107268 +2023-06-09,VI,0,107268 +2023-06-10,VI,1,107268 +2023-06-11,VI,0,107268 +2023-06-12,VI,0,107268 +2023-06-13,VI,0,107268 +2023-06-14,VI,0,107268 +2023-06-15,VI,0,107268 +2023-06-16,VI,1,107268 +2023-06-17,VI,0,107268 +2023-06-18,VI,0,107268 +2023-06-19,VI,0,107268 +2023-06-20,VI,0,107268 +2023-06-21,VI,0,107268 +2023-06-22,VI,0,107268 +2023-06-23,VI,0,107268 +2023-06-24,VI,0,107268 +2023-06-25,VI,0,107268 +2023-06-26,VI,1,107268 +2023-06-27,VI,0,107268 +2023-06-28,VI,0,107268 +2023-06-29,VI,0,107268 +2023-06-30,VI,0,107268 +2023-07-01,VI,0,107268 +2023-07-02,VI,0,107268 +2023-07-03,VI,0,107268 +2023-07-04,VI,0,107268 +2023-07-05,VI,0,107268 +2023-07-06,VI,0,107268 +2023-07-07,VI,0,107268 +2023-07-08,VI,1,107268 +2023-07-09,VI,1,107268 +2023-07-10,VI,0,107268 +2023-07-11,VI,0,107268 +2023-07-12,VI,0,107268 +2023-07-13,VI,0,107268 +2023-07-14,VI,0,107268 +2023-07-15,VI,0,107268 +2023-07-16,VI,1,107268 +2023-07-17,VI,0,107268 +2023-07-18,VI,0,107268 +2023-07-19,VI,0,107268 +2023-07-20,VI,1,107268 +2023-07-21,VI,0,107268 +2023-07-22,VI,0,107268 +2023-07-23,VI,0,107268 +2023-07-24,VI,0,107268 +2023-07-25,VI,0,107268 +2023-07-26,VI,0,107268 +2023-07-27,VI,1,107268 +2023-07-28,VI,0,107268 +2023-07-29,VI,0,107268 +2023-07-30,VI,0,107268 +2023-07-31,VI,0,107268 +2023-08-01,VI,0,107268 +2023-08-02,VI,1,107268 +2023-08-03,VI,1,107268 +2023-08-04,VI,0,107268 +2023-08-05,VI,0,107268 +2023-08-06,VI,0,107268 +2023-08-07,VI,0,107268 +2023-08-08,VI,1,107268 +2023-08-09,VI,1,107268 +2023-08-10,VI,0,107268 +2023-08-11,VI,0,107268 +2023-08-12,VI,0,107268 +2023-08-13,VI,0,107268 +2023-08-14,VI,1,107268 +2023-08-15,VI,2,107268 +2023-08-16,VI,1,107268 +2023-08-17,VI,0,107268 +2023-08-18,VI,1,107268 +2023-08-19,VI,0,107268 +2023-08-20,VI,0,107268 +2023-08-21,VI,0,107268 +2023-08-22,VI,0,107268 +2023-08-23,VI,0,107268 +2023-08-24,VI,0,107268 +2023-08-25,VI,1,107268 +2023-08-26,VI,0,107268 +2023-08-27,VI,0,107268 +2023-08-28,VI,0,107268 +2023-08-29,VI,0,107268 +2023-08-30,VI,0,107268 +2023-08-31,VI,1,107268 +2023-09-01,VI,0,107268 +2023-09-02,VI,0,107268 +2023-09-03,VI,0,107268 +2023-09-04,VI,0,107268 +2023-09-05,VI,0,107268 +2023-09-06,VI,0,107268 +2023-09-07,VI,0,107268 +2023-09-08,VI,0,107268 +2023-09-09,VI,0,107268 +2023-09-10,VI,0,107268 +2023-09-11,VI,0,107268 +2023-09-12,VI,0,107268 +2023-09-13,VI,0,107268 +2023-09-14,VI,0,107268 +2023-09-15,VI,0,107268 +2023-09-16,VI,0,107268 +2023-09-17,VI,0,107268 +2023-09-18,VI,0,107268 +2023-09-19,VI,0,107268 +2023-09-20,VI,0,107268 +2023-09-21,VI,0,107268 +2023-09-22,VI,0,107268 +2023-09-23,VI,0,107268 +2023-09-24,VI,1,107268 +2023-09-25,VI,0,107268 +2023-09-26,VI,0,107268 +2023-09-27,VI,0,107268 +2023-09-28,VI,0,107268 +2023-09-29,VI,0,107268 +2023-09-30,VI,0,107268 +2023-10-01,VI,0,107268 +2023-10-02,VI,0,107268 +2023-10-03,VI,0,107268 +2023-10-04,VI,0,107268 +2023-10-05,VI,0,107268 +2023-10-06,VI,0,107268 +2023-10-07,VI,0,107268 +2023-10-08,VI,0,107268 +2023-10-09,VI,0,107268 +2023-10-10,VI,0,107268 +2023-10-11,VI,0,107268 +2023-10-12,VI,0,107268 +2023-10-13,VI,0,107268 +2023-10-14,VI,0,107268 +2023-10-15,VI,0,107268 +2023-10-16,VI,0,107268 +2023-10-17,VI,0,107268 +2023-10-18,VI,0,107268 +2023-10-19,VI,0,107268 +2023-10-20,VI,0,107268 +2023-10-21,VI,0,107268 +2023-10-22,VI,0,107268 +2023-10-23,VI,0,107268 +2023-10-24,VI,0,107268 +2023-10-25,VI,0,107268 +2023-10-26,VI,0,107268 +2023-10-27,VI,1,107268 +2023-10-28,VI,0,107268 +2023-10-29,VI,0,107268 +2023-10-30,VI,0,107268 +2023-10-31,VI,0,107268 +2023-11-01,VI,0,107268 +2023-11-02,VI,0,107268 +2023-11-03,VI,0,107268 +2023-11-04,VI,1,107268 +2023-11-05,VI,0,107268 +2023-11-06,VI,0,107268 +2023-11-07,VI,0,107268 +2023-11-08,VI,0,107268 +2023-11-09,VI,0,107268 +2023-11-10,VI,0,107268 +2023-11-11,VI,0,107268 +2023-11-12,VI,0,107268 +2023-11-13,VI,0,107268 +2023-11-14,VI,0,107268 +2023-11-15,VI,0,107268 +2023-11-16,VI,0,107268 +2023-11-17,VI,0,107268 +2023-11-18,VI,0,107268 +2023-11-19,VI,0,107268 +2023-11-20,VI,0,107268 +2023-11-21,VI,0,107268 +2023-11-22,VI,0,107268 +2023-11-23,VI,0,107268 +2023-11-24,VI,0,107268 +2023-11-25,VI,0,107268 +2023-11-26,VI,0,107268 +2023-11-27,VI,0,107268 +2023-11-28,VI,0,107268 +2023-11-29,VI,0,107268 +2023-11-30,VI,0,107268 +2023-12-01,VI,0,107268 +2023-12-02,VI,0,107268 +2023-12-03,VI,0,107268 +2023-12-04,VI,0,107268 +2023-12-05,VI,0,107268 +2023-12-06,VI,0,107268 +2023-12-07,VI,0,107268 +2023-12-08,VI,0,107268 +2023-12-09,VI,0,107268 +2023-12-10,VI,0,107268 +2023-12-11,VI,0,107268 +2023-12-12,VI,0,107268 +2023-12-13,VI,0,107268 +2023-12-14,VI,0,107268 +2023-12-15,VI,0,107268 +2023-12-16,VI,0,107268 +2023-12-17,VI,1,107268 +2023-12-18,VI,0,107268 +2023-12-19,VI,0,107268 +2023-12-20,VI,0,107268 +2023-12-21,VI,0,107268 +2023-12-22,VI,1,107268 +2023-12-23,VI,0,107268 +2023-12-24,VI,2,107268 +2023-12-25,VI,0,107268 +2023-12-26,VI,0,107268 +2023-12-27,VI,0,107268 +2023-12-28,VI,0,107268 +2023-12-29,VI,0,107268 +2023-12-30,VI,0,107268 +2023-12-31,VI,0,107268 +2024-01-01,VI,0,107268 +2024-01-02,VI,1,107268 +2024-01-03,VI,0,107268 +2024-01-04,VI,0,107268 +2024-01-05,VI,0,107268 +2024-01-06,VI,0,107268 +2024-01-07,VI,0,107268 +2024-01-08,VI,0,107268 +2024-01-09,VI,0,107268 +2024-01-10,VI,0,107268 +2024-01-11,VI,1,107268 +2024-01-12,VI,0,107268 +2024-01-13,VI,0,107268 +2024-01-14,VI,0,107268 +2024-01-15,VI,0,107268 +2024-01-16,VI,0,107268 +2024-01-17,VI,0,107268 +2024-01-18,VI,0,107268 +2024-01-19,VI,0,107268 +2022-12-31,VT,6,645570 +2023-01-01,VT,3,645570 +2023-01-02,VT,5,645570 +2023-01-03,VT,10,645570 +2023-01-04,VT,7,645570 +2023-01-05,VT,7,645570 +2023-01-06,VT,4,645570 +2023-01-07,VT,4,645570 +2023-01-08,VT,5,645570 +2023-01-09,VT,5,645570 +2023-01-10,VT,4,645570 +2023-01-11,VT,2,645570 +2023-01-12,VT,6,645570 +2023-01-13,VT,7,645570 +2023-01-14,VT,8,645570 +2023-01-15,VT,7,645570 +2023-01-16,VT,6,645570 +2023-01-17,VT,5,645570 +2023-01-18,VT,8,645570 +2023-01-19,VT,5,645570 +2023-01-20,VT,8,645570 +2023-01-21,VT,2,645570 +2023-01-22,VT,17,645570 +2023-01-23,VT,8,645570 +2023-01-24,VT,3,645570 +2023-01-25,VT,3,645570 +2023-01-26,VT,6,645570 +2023-01-27,VT,9,645570 +2023-01-28,VT,7,645570 +2023-01-29,VT,5,645570 +2023-01-30,VT,7,645570 +2023-01-31,VT,4,645570 +2023-02-01,VT,7,645570 +2023-02-02,VT,6,645570 +2023-02-03,VT,12,645570 +2023-02-04,VT,6,645570 +2023-02-05,VT,5,645570 +2023-02-06,VT,6,645570 +2023-02-07,VT,7,645570 +2023-02-08,VT,5,645570 +2023-02-09,VT,7,645570 +2023-02-10,VT,6,645570 +2023-02-11,VT,6,645570 +2023-02-12,VT,6,645570 +2023-02-13,VT,6,645570 +2023-02-14,VT,3,645570 +2023-02-15,VT,11,645570 +2023-02-16,VT,7,645570 +2023-02-17,VT,4,645570 +2023-02-18,VT,3,645570 +2023-02-19,VT,9,645570 +2023-02-20,VT,7,645570 +2023-02-21,VT,6,645570 +2023-02-22,VT,3,645570 +2023-02-23,VT,5,645570 +2023-02-24,VT,4,645570 +2023-02-25,VT,9,645570 +2023-02-26,VT,8,645570 +2023-02-27,VT,3,645570 +2023-02-28,VT,7,645570 +2023-03-01,VT,4,645570 +2023-03-02,VT,7,645570 +2023-03-03,VT,5,645570 +2023-03-04,VT,7,645570 +2023-03-05,VT,7,645570 +2023-03-06,VT,2,645570 +2023-03-07,VT,4,645570 +2023-03-08,VT,9,645570 +2023-03-09,VT,5,645570 +2023-03-10,VT,2,645570 +2023-03-11,VT,2,645570 +2023-03-12,VT,7,645570 +2023-03-13,VT,4,645570 +2023-03-14,VT,6,645570 +2023-03-15,VT,5,645570 +2023-03-16,VT,4,645570 +2023-03-17,VT,2,645570 +2023-03-18,VT,2,645570 +2023-03-19,VT,1,645570 +2023-03-20,VT,4,645570 +2023-03-21,VT,2,645570 +2023-03-22,VT,4,645570 +2023-03-23,VT,4,645570 +2023-03-24,VT,6,645570 +2023-03-25,VT,5,645570 +2023-03-26,VT,5,645570 +2023-03-27,VT,3,645570 +2023-03-28,VT,3,645570 +2023-03-29,VT,0,645570 +2023-03-30,VT,6,645570 +2023-03-31,VT,0,645570 +2023-04-01,VT,2,645570 +2023-04-02,VT,2,645570 +2023-04-03,VT,1,645570 +2023-04-04,VT,5,645570 +2023-04-05,VT,2,645570 +2023-04-06,VT,3,645570 +2023-04-07,VT,2,645570 +2023-04-08,VT,6,645570 +2023-04-09,VT,5,645570 +2023-04-10,VT,1,645570 +2023-04-11,VT,2,645570 +2023-04-12,VT,4,645570 +2023-04-13,VT,3,645570 +2023-04-14,VT,2,645570 +2023-04-15,VT,2,645570 +2023-04-16,VT,0,645570 +2023-04-17,VT,3,645570 +2023-04-18,VT,3,645570 +2023-04-19,VT,4,645570 +2023-04-20,VT,3,645570 +2023-04-21,VT,2,645570 +2023-04-22,VT,1,645570 +2023-04-23,VT,4,645570 +2023-04-24,VT,1,645570 +2023-04-25,VT,0,645570 +2023-04-26,VT,3,645570 +2023-04-27,VT,1,645570 +2023-04-28,VT,0,645570 +2023-04-29,VT,2,645570 +2023-04-30,VT,2,645570 +2023-05-01,VT,2,645570 +2023-05-02,VT,2,645570 +2023-05-03,VT,1,645570 +2023-05-04,VT,0,645570 +2023-05-05,VT,1,645570 +2023-05-06,VT,1,645570 +2023-05-07,VT,1,645570 +2023-05-08,VT,3,645570 +2023-05-09,VT,0,645570 +2023-05-10,VT,1,645570 +2023-05-11,VT,2,645570 +2023-05-12,VT,4,645570 +2023-05-13,VT,0,645570 +2023-05-14,VT,0,645570 +2023-05-15,VT,2,645570 +2023-05-16,VT,1,645570 +2023-05-17,VT,0,645570 +2023-05-18,VT,3,645570 +2023-05-19,VT,1,645570 +2023-05-20,VT,0,645570 +2023-05-21,VT,2,645570 +2023-05-22,VT,3,645570 +2023-05-23,VT,3,645570 +2023-05-24,VT,0,645570 +2023-05-25,VT,4,645570 +2023-05-26,VT,2,645570 +2023-05-27,VT,1,645570 +2023-05-28,VT,2,645570 +2023-05-29,VT,1,645570 +2023-05-30,VT,3,645570 +2023-05-31,VT,1,645570 +2023-06-01,VT,2,645570 +2023-06-02,VT,1,645570 +2023-06-03,VT,0,645570 +2023-06-04,VT,1,645570 +2023-06-05,VT,2,645570 +2023-06-06,VT,1,645570 +2023-06-07,VT,2,645570 +2023-06-08,VT,1,645570 +2023-06-09,VT,4,645570 +2023-06-10,VT,2,645570 +2023-06-11,VT,3,645570 +2023-06-12,VT,4,645570 +2023-06-13,VT,1,645570 +2023-06-14,VT,0,645570 +2023-06-15,VT,0,645570 +2023-06-16,VT,2,645570 +2023-06-17,VT,2,645570 +2023-06-18,VT,3,645570 +2023-06-19,VT,0,645570 +2023-06-20,VT,2,645570 +2023-06-21,VT,3,645570 +2023-06-22,VT,3,645570 +2023-06-23,VT,6,645570 +2023-06-24,VT,3,645570 +2023-06-25,VT,3,645570 +2023-06-26,VT,1,645570 +2023-06-27,VT,1,645570 +2023-06-28,VT,1,645570 +2023-06-29,VT,0,645570 +2023-06-30,VT,0,645570 +2023-07-01,VT,1,645570 +2023-07-02,VT,1,645570 +2023-07-03,VT,1,645570 +2023-07-04,VT,0,645570 +2023-07-05,VT,2,645570 +2023-07-06,VT,1,645570 +2023-07-07,VT,1,645570 +2023-07-08,VT,0,645570 +2023-07-09,VT,1,645570 +2023-07-10,VT,0,645570 +2023-07-11,VT,2,645570 +2023-07-12,VT,2,645570 +2023-07-13,VT,2,645570 +2023-07-14,VT,2,645570 +2023-07-15,VT,2,645570 +2023-07-16,VT,1,645570 +2023-07-17,VT,0,645570 +2023-07-18,VT,1,645570 +2023-07-19,VT,2,645570 +2023-07-20,VT,0,645570 +2023-07-21,VT,1,645570 +2023-07-22,VT,2,645570 +2023-07-23,VT,2,645570 +2023-07-24,VT,3,645570 +2023-07-25,VT,2,645570 +2023-07-26,VT,1,645570 +2023-07-27,VT,2,645570 +2023-07-28,VT,0,645570 +2023-07-29,VT,0,645570 +2023-07-30,VT,0,645570 +2023-07-31,VT,3,645570 +2023-08-01,VT,0,645570 +2023-08-02,VT,4,645570 +2023-08-03,VT,3,645570 +2023-08-04,VT,2,645570 +2023-08-05,VT,4,645570 +2023-08-06,VT,3,645570 +2023-08-07,VT,2,645570 +2023-08-08,VT,6,645570 +2023-08-09,VT,3,645570 +2023-08-10,VT,4,645570 +2023-08-11,VT,3,645570 +2023-08-12,VT,4,645570 +2023-08-13,VT,5,645570 +2023-08-14,VT,2,645570 +2023-08-15,VT,5,645570 +2023-08-16,VT,4,645570 +2023-08-17,VT,8,645570 +2023-08-18,VT,3,645570 +2023-08-19,VT,0,645570 +2023-08-20,VT,2,645570 +2023-08-21,VT,4,645570 +2023-08-22,VT,5,645570 +2023-08-23,VT,5,645570 +2023-08-24,VT,5,645570 +2023-08-25,VT,3,645570 +2023-08-26,VT,2,645570 +2023-08-27,VT,2,645570 +2023-08-28,VT,0,645570 +2023-08-29,VT,4,645570 +2023-08-30,VT,6,645570 +2023-08-31,VT,5,645570 +2023-09-01,VT,1,645570 +2023-09-02,VT,3,645570 +2023-09-03,VT,7,645570 +2023-09-04,VT,7,645570 +2023-09-05,VT,5,645570 +2023-09-06,VT,4,645570 +2023-09-07,VT,2,645570 +2023-09-08,VT,6,645570 +2023-09-09,VT,3,645570 +2023-09-10,VT,2,645570 +2023-09-11,VT,4,645570 +2023-09-12,VT,4,645570 +2023-09-13,VT,4,645570 +2023-09-14,VT,8,645570 +2023-09-15,VT,1,645570 +2023-09-16,VT,5,645570 +2023-09-17,VT,2,645570 +2023-09-18,VT,5,645570 +2023-09-19,VT,5,645570 +2023-09-20,VT,9,645570 +2023-09-21,VT,5,645570 +2023-09-22,VT,3,645570 +2023-09-23,VT,4,645570 +2023-09-24,VT,6,645570 +2023-09-25,VT,4,645570 +2023-09-26,VT,9,645570 +2023-09-27,VT,11,645570 +2023-09-28,VT,8,645570 +2023-09-29,VT,9,645570 +2023-09-30,VT,6,645570 +2023-10-01,VT,6,645570 +2023-10-02,VT,4,645570 +2023-10-03,VT,4,645570 +2023-10-04,VT,3,645570 +2023-10-05,VT,6,645570 +2023-10-06,VT,7,645570 +2023-10-07,VT,3,645570 +2023-10-08,VT,4,645570 +2023-10-09,VT,3,645570 +2023-10-10,VT,4,645570 +2023-10-11,VT,6,645570 +2023-10-12,VT,7,645570 +2023-10-13,VT,4,645570 +2023-10-14,VT,1,645570 +2023-10-15,VT,6,645570 +2023-10-16,VT,4,645570 +2023-10-17,VT,4,645570 +2023-10-18,VT,7,645570 +2023-10-19,VT,6,645570 +2023-10-20,VT,12,645570 +2023-10-21,VT,7,645570 +2023-10-22,VT,2,645570 +2023-10-23,VT,4,645570 +2023-10-24,VT,3,645570 +2023-10-25,VT,3,645570 +2023-10-26,VT,7,645570 +2023-10-27,VT,7,645570 +2023-10-28,VT,0,645570 +2023-10-29,VT,2,645570 +2023-10-30,VT,6,645570 +2023-10-31,VT,9,645570 +2023-11-01,VT,2,645570 +2023-11-02,VT,3,645570 +2023-11-03,VT,3,645570 +2023-11-04,VT,9,645570 +2023-11-05,VT,6,645570 +2023-11-06,VT,3,645570 +2023-11-07,VT,6,645570 +2023-11-08,VT,3,645570 +2023-11-09,VT,7,645570 +2023-11-10,VT,9,645570 +2023-11-11,VT,4,645570 +2023-11-12,VT,3,645570 +2023-11-13,VT,5,645570 +2023-11-14,VT,4,645570 +2023-11-15,VT,4,645570 +2023-11-16,VT,10,645570 +2023-11-17,VT,8,645570 +2023-11-18,VT,5,645570 +2023-11-19,VT,10,645570 +2023-11-20,VT,10,645570 +2023-11-21,VT,4,645570 +2023-11-22,VT,6,645570 +2023-11-23,VT,6,645570 +2023-11-24,VT,8,645570 +2023-11-25,VT,4,645570 +2023-11-26,VT,4,645570 +2023-11-27,VT,8,645570 +2023-11-28,VT,7,645570 +2023-11-29,VT,6,645570 +2023-11-30,VT,9,645570 +2023-12-01,VT,5,645570 +2023-12-02,VT,7,645570 +2023-12-03,VT,8,645570 +2023-12-04,VT,5,645570 +2023-12-05,VT,7,645570 +2023-12-06,VT,7,645570 +2023-12-07,VT,6,645570 +2023-12-08,VT,7,645570 +2023-12-09,VT,7,645570 +2023-12-10,VT,5,645570 +2023-12-11,VT,3,645570 +2023-12-12,VT,7,645570 +2023-12-13,VT,5,645570 +2023-12-14,VT,6,645570 +2023-12-15,VT,8,645570 +2023-12-16,VT,7,645570 +2023-12-17,VT,12,645570 +2023-12-18,VT,9,645570 +2023-12-19,VT,3,645570 +2023-12-20,VT,10,645570 +2023-12-21,VT,6,645570 +2023-12-22,VT,7,645570 +2023-12-23,VT,4,645570 +2023-12-24,VT,9,645570 +2023-12-25,VT,8,645570 +2023-12-26,VT,7,645570 +2023-12-27,VT,8,645570 +2023-12-28,VT,5,645570 +2023-12-29,VT,15,645570 +2023-12-30,VT,6,645570 +2023-12-31,VT,11,645570 +2024-01-01,VT,4,645570 +2024-01-02,VT,16,645570 +2024-01-03,VT,8,645570 +2024-01-04,VT,8,645570 +2024-01-05,VT,11,645570 +2024-01-06,VT,9,645570 +2024-01-07,VT,3,645570 +2024-01-08,VT,5,645570 +2024-01-09,VT,11,645570 +2024-01-10,VT,8,645570 +2024-01-11,VT,4,645570 +2024-01-12,VT,8,645570 +2024-01-13,VT,7,645570 +2024-01-14,VT,4,645570 +2024-01-15,VT,7,645570 +2024-01-16,VT,7,645570 +2024-01-17,VT,5,645570 +2024-01-18,VT,3,645570 +2024-01-19,VT,10,645570 +2022-12-31,WA,59,7738692 +2023-01-01,WA,71,7738692 +2023-01-02,WA,75,7738692 +2023-01-03,WA,83,7738692 +2023-01-04,WA,74,7738692 +2023-01-05,WA,68,7738692 +2023-01-06,WA,60,7738692 +2023-01-07,WA,58,7738692 +2023-01-08,WA,63,7738692 +2023-01-09,WA,58,7738692 +2023-01-10,WA,66,7738692 +2023-01-11,WA,64,7738692 +2023-01-12,WA,52,7738692 +2023-01-13,WA,64,7738692 +2023-01-14,WA,56,7738692 +2023-01-15,WA,60,7738692 +2023-01-16,WA,61,7738692 +2023-01-17,WA,70,7738692 +2023-01-18,WA,59,7738692 +2023-01-19,WA,54,7738692 +2023-01-20,WA,51,7738692 +2023-01-21,WA,51,7738692 +2023-01-22,WA,43,7738692 +2023-01-23,WA,56,7738692 +2023-01-24,WA,53,7738692 +2023-01-25,WA,61,7738692 +2023-01-26,WA,49,7738692 +2023-01-27,WA,71,7738692 +2023-01-28,WA,56,7738692 +2023-01-29,WA,45,7738692 +2023-01-30,WA,64,7738692 +2023-01-31,WA,54,7738692 +2023-02-01,WA,56,7738692 +2023-02-02,WA,44,7738692 +2023-02-03,WA,60,7738692 +2023-02-04,WA,48,7738692 +2023-02-05,WA,47,7738692 +2023-02-06,WA,62,7738692 +2023-02-07,WA,72,7738692 +2023-02-08,WA,69,7738692 +2023-02-09,WA,60,7738692 +2023-02-10,WA,66,7738692 +2023-02-11,WA,57,7738692 +2023-02-12,WA,58,7738692 +2023-02-13,WA,54,7738692 +2023-02-14,WA,68,7738692 +2023-02-15,WA,60,7738692 +2023-02-16,WA,68,7738692 +2023-02-17,WA,47,7738692 +2023-02-18,WA,61,7738692 +2023-02-19,WA,42,7738692 +2023-02-20,WA,50,7738692 +2023-02-21,WA,58,7738692 +2023-02-22,WA,52,7738692 +2023-02-23,WA,56,7738692 +2023-02-24,WA,47,7738692 +2023-02-25,WA,47,7738692 +2023-02-26,WA,54,7738692 +2023-02-27,WA,77,7738692 +2023-02-28,WA,59,7738692 +2023-03-01,WA,47,7738692 +2023-03-02,WA,61,7738692 +2023-03-03,WA,65,7738692 +2023-03-04,WA,48,7738692 +2023-03-05,WA,42,7738692 +2023-03-06,WA,50,7738692 +2023-03-07,WA,53,7738692 +2023-03-08,WA,74,7738692 +2023-03-09,WA,51,7738692 +2023-03-10,WA,48,7738692 +2023-03-11,WA,37,7738692 +2023-03-12,WA,54,7738692 +2023-03-13,WA,38,7738692 +2023-03-14,WA,40,7738692 +2023-03-15,WA,54,7738692 +2023-03-16,WA,53,7738692 +2023-03-17,WA,39,7738692 +2023-03-18,WA,33,7738692 +2023-03-19,WA,46,7738692 +2023-03-20,WA,57,7738692 +2023-03-21,WA,51,7738692 +2023-03-22,WA,64,7738692 +2023-03-23,WA,55,7738692 +2023-03-24,WA,36,7738692 +2023-03-25,WA,30,7738692 +2023-03-26,WA,36,7738692 +2023-03-27,WA,49,7738692 +2023-03-28,WA,44,7738692 +2023-03-29,WA,54,7738692 +2023-03-30,WA,44,7738692 +2023-03-31,WA,52,7738692 +2023-04-01,WA,34,7738692 +2023-04-02,WA,39,7738692 +2023-04-03,WA,48,7738692 +2023-04-04,WA,37,7738692 +2023-04-05,WA,30,7738692 +2023-04-06,WA,27,7738692 +2023-04-07,WA,28,7738692 +2023-04-08,WA,25,7738692 +2023-04-09,WA,32,7738692 +2023-04-10,WA,30,7738692 +2023-04-11,WA,32,7738692 +2023-04-12,WA,25,7738692 +2023-04-13,WA,40,7738692 +2023-04-14,WA,26,7738692 +2023-04-15,WA,28,7738692 +2023-04-16,WA,19,7738692 +2023-04-17,WA,24,7738692 +2023-04-18,WA,32,7738692 +2023-04-19,WA,31,7738692 +2023-04-20,WA,41,7738692 +2023-04-21,WA,37,7738692 +2023-04-22,WA,31,7738692 +2023-04-23,WA,35,7738692 +2023-04-24,WA,33,7738692 +2023-04-25,WA,39,7738692 +2023-04-26,WA,35,7738692 +2023-04-27,WA,35,7738692 +2023-04-28,WA,34,7738692 +2023-04-29,WA,43,7738692 +2023-04-30,WA,36,7738692 +2023-05-01,WA,33,7738692 +2023-05-02,WA,39,7738692 +2023-05-03,WA,41,7738692 +2023-05-04,WA,25,7738692 +2023-05-05,WA,25,7738692 +2023-05-06,WA,16,7738692 +2023-05-07,WA,20,7738692 +2023-05-08,WA,22,7738692 +2023-05-09,WA,32,7738692 +2023-05-10,WA,29,7738692 +2023-05-11,WA,26,7738692 +2023-05-12,WA,26,7738692 +2023-05-13,WA,22,7738692 +2023-05-14,WA,27,7738692 +2023-05-15,WA,26,7738692 +2023-05-16,WA,18,7738692 +2023-05-17,WA,22,7738692 +2023-05-18,WA,24,7738692 +2023-05-19,WA,26,7738692 +2023-05-20,WA,11,7738692 +2023-05-21,WA,33,7738692 +2023-05-22,WA,32,7738692 +2023-05-23,WA,18,7738692 +2023-05-24,WA,29,7738692 +2023-05-25,WA,24,7738692 +2023-05-26,WA,26,7738692 +2023-05-27,WA,16,7738692 +2023-05-28,WA,18,7738692 +2023-05-29,WA,31,7738692 +2023-05-30,WA,19,7738692 +2023-05-31,WA,20,7738692 +2023-06-01,WA,21,7738692 +2023-06-02,WA,17,7738692 +2023-06-03,WA,18,7738692 +2023-06-04,WA,18,7738692 +2023-06-05,WA,22,7738692 +2023-06-06,WA,26,7738692 +2023-06-07,WA,29,7738692 +2023-06-08,WA,16,7738692 +2023-06-09,WA,15,7738692 +2023-06-10,WA,12,7738692 +2023-06-11,WA,13,7738692 +2023-06-12,WA,27,7738692 +2023-06-13,WA,17,7738692 +2023-06-14,WA,24,7738692 +2023-06-15,WA,16,7738692 +2023-06-16,WA,15,7738692 +2023-06-17,WA,20,7738692 +2023-06-18,WA,21,7738692 +2023-06-19,WA,16,7738692 +2023-06-20,WA,21,7738692 +2023-06-21,WA,21,7738692 +2023-06-22,WA,13,7738692 +2023-06-23,WA,19,7738692 +2023-06-24,WA,12,7738692 +2023-06-25,WA,20,7738692 +2023-06-26,WA,32,7738692 +2023-06-27,WA,28,7738692 +2023-06-28,WA,23,7738692 +2023-06-29,WA,29,7738692 +2023-06-30,WA,18,7738692 +2023-07-01,WA,21,7738692 +2023-07-02,WA,18,7738692 +2023-07-03,WA,21,7738692 +2023-07-04,WA,24,7738692 +2023-07-05,WA,37,7738692 +2023-07-06,WA,32,7738692 +2023-07-07,WA,19,7738692 +2023-07-08,WA,25,7738692 +2023-07-09,WA,20,7738692 +2023-07-10,WA,16,7738692 +2023-07-11,WA,26,7738692 +2023-07-12,WA,25,7738692 +2023-07-13,WA,16,7738692 +2023-07-14,WA,18,7738692 +2023-07-15,WA,27,7738692 +2023-07-16,WA,19,7738692 +2023-07-17,WA,23,7738692 +2023-07-18,WA,15,7738692 +2023-07-19,WA,24,7738692 +2023-07-20,WA,16,7738692 +2023-07-21,WA,19,7738692 +2023-07-22,WA,21,7738692 +2023-07-23,WA,16,7738692 +2023-07-24,WA,22,7738692 +2023-07-25,WA,24,7738692 +2023-07-26,WA,23,7738692 +2023-07-27,WA,18,7738692 +2023-07-28,WA,30,7738692 +2023-07-29,WA,23,7738692 +2023-07-30,WA,25,7738692 +2023-07-31,WA,27,7738692 +2023-08-01,WA,27,7738692 +2023-08-02,WA,23,7738692 +2023-08-03,WA,22,7738692 +2023-08-04,WA,27,7738692 +2023-08-05,WA,27,7738692 +2023-08-06,WA,29,7738692 +2023-08-07,WA,31,7738692 +2023-08-08,WA,30,7738692 +2023-08-09,WA,36,7738692 +2023-08-10,WA,22,7738692 +2023-08-11,WA,23,7738692 +2023-08-12,WA,31,7738692 +2023-08-13,WA,29,7738692 +2023-08-14,WA,47,7738692 +2023-08-15,WA,34,7738692 +2023-08-16,WA,26,7738692 +2023-08-17,WA,35,7738692 +2023-08-18,WA,30,7738692 +2023-08-19,WA,30,7738692 +2023-08-20,WA,38,7738692 +2023-08-21,WA,40,7738692 +2023-08-22,WA,43,7738692 +2023-08-23,WA,52,7738692 +2023-08-24,WA,38,7738692 +2023-08-25,WA,48,7738692 +2023-08-26,WA,34,7738692 +2023-08-27,WA,35,7738692 +2023-08-28,WA,44,7738692 +2023-08-29,WA,42,7738692 +2023-08-30,WA,45,7738692 +2023-08-31,WA,47,7738692 +2023-09-01,WA,42,7738692 +2023-09-02,WA,37,7738692 +2023-09-03,WA,39,7738692 +2023-09-04,WA,52,7738692 +2023-09-05,WA,35,7738692 +2023-09-06,WA,55,7738692 +2023-09-07,WA,50,7738692 +2023-09-08,WA,50,7738692 +2023-09-09,WA,59,7738692 +2023-09-10,WA,56,7738692 +2023-09-11,WA,51,7738692 +2023-09-12,WA,52,7738692 +2023-09-13,WA,46,7738692 +2023-09-14,WA,42,7738692 +2023-09-15,WA,49,7738692 +2023-09-16,WA,43,7738692 +2023-09-17,WA,62,7738692 +2023-09-18,WA,59,7738692 +2023-09-19,WA,56,7738692 +2023-09-20,WA,54,7738692 +2023-09-21,WA,49,7738692 +2023-09-22,WA,47,7738692 +2023-09-23,WA,34,7738692 +2023-09-24,WA,47,7738692 +2023-09-25,WA,50,7738692 +2023-09-26,WA,47,7738692 +2023-09-27,WA,65,7738692 +2023-09-28,WA,64,7738692 +2023-09-29,WA,53,7738692 +2023-09-30,WA,49,7738692 +2023-10-01,WA,30,7738692 +2023-10-02,WA,63,7738692 +2023-10-03,WA,49,7738692 +2023-10-04,WA,50,7738692 +2023-10-05,WA,68,7738692 +2023-10-06,WA,60,7738692 +2023-10-07,WA,54,7738692 +2023-10-08,WA,70,7738692 +2023-10-09,WA,59,7738692 +2023-10-10,WA,65,7738692 +2023-10-11,WA,49,7738692 +2023-10-12,WA,42,7738692 +2023-10-13,WA,41,7738692 +2023-10-14,WA,52,7738692 +2023-10-15,WA,48,7738692 +2023-10-16,WA,39,7738692 +2023-10-17,WA,35,7738692 +2023-10-18,WA,50,7738692 +2023-10-19,WA,51,7738692 +2023-10-20,WA,39,7738692 +2023-10-21,WA,44,7738692 +2023-10-22,WA,45,7738692 +2023-10-23,WA,31,7738692 +2023-10-24,WA,36,7738692 +2023-10-25,WA,30,7738692 +2023-10-26,WA,30,7738692 +2023-10-27,WA,26,7738692 +2023-10-28,WA,34,7738692 +2023-10-29,WA,22,7738692 +2023-10-30,WA,30,7738692 +2023-10-31,WA,41,7738692 +2023-11-01,WA,40,7738692 +2023-11-02,WA,37,7738692 +2023-11-03,WA,43,7738692 +2023-11-04,WA,28,7738692 +2023-11-05,WA,29,7738692 +2023-11-06,WA,31,7738692 +2023-11-07,WA,43,7738692 +2023-11-08,WA,45,7738692 +2023-11-09,WA,39,7738692 +2023-11-10,WA,35,7738692 +2023-11-11,WA,30,7738692 +2023-11-12,WA,37,7738692 +2023-11-13,WA,36,7738692 +2023-11-14,WA,35,7738692 +2023-11-15,WA,43,7738692 +2023-11-16,WA,35,7738692 +2023-11-17,WA,41,7738692 +2023-11-18,WA,31,7738692 +2023-11-19,WA,26,7738692 +2023-11-20,WA,37,7738692 +2023-11-21,WA,33,7738692 +2023-11-22,WA,33,7738692 +2023-11-23,WA,31,7738692 +2023-11-24,WA,31,7738692 +2023-11-25,WA,32,7738692 +2023-11-26,WA,36,7738692 +2023-11-27,WA,35,7738692 +2023-11-28,WA,44,7738692 +2023-11-29,WA,40,7738692 +2023-11-30,WA,32,7738692 +2023-12-01,WA,35,7738692 +2023-12-02,WA,36,7738692 +2023-12-03,WA,36,7738692 +2023-12-04,WA,49,7738692 +2023-12-05,WA,39,7738692 +2023-12-06,WA,53,7738692 +2023-12-07,WA,46,7738692 +2023-12-08,WA,38,7738692 +2023-12-09,WA,33,7738692 +2023-12-10,WA,40,7738692 +2023-12-11,WA,45,7738692 +2023-12-12,WA,33,7738692 +2023-12-13,WA,40,7738692 +2023-12-14,WA,41,7738692 +2023-12-15,WA,48,7738692 +2023-12-16,WA,32,7738692 +2023-12-17,WA,42,7738692 +2023-12-18,WA,43,7738692 +2023-12-19,WA,48,7738692 +2023-12-20,WA,52,7738692 +2023-12-21,WA,42,7738692 +2023-12-22,WA,47,7738692 +2023-12-23,WA,33,7738692 +2023-12-24,WA,48,7738692 +2023-12-25,WA,53,7738692 +2023-12-26,WA,47,7738692 +2023-12-27,WA,61,7738692 +2023-12-28,WA,54,7738692 +2023-12-29,WA,67,7738692 +2023-12-30,WA,51,7738692 +2023-12-31,WA,48,7738692 +2024-01-01,WA,63,7738692 +2024-01-02,WA,67,7738692 +2024-01-03,WA,65,7738692 +2024-01-04,WA,68,7738692 +2024-01-05,WA,71,7738692 +2024-01-06,WA,50,7738692 +2024-01-07,WA,48,7738692 +2024-01-08,WA,56,7738692 +2024-01-09,WA,57,7738692 +2024-01-10,WA,60,7738692 +2024-01-11,WA,42,7738692 +2024-01-12,WA,53,7738692 +2024-01-13,WA,46,7738692 +2024-01-14,WA,50,7738692 +2024-01-15,WA,54,7738692 +2024-01-16,WA,57,7738692 +2024-01-17,WA,60,7738692 +2024-01-18,WA,57,7738692 +2024-01-19,WA,71,7738692 +2022-12-31,WI,76,5895908 +2023-01-01,WI,86,5895908 +2023-01-02,WI,89,5895908 +2023-01-03,WI,100,5895908 +2023-01-04,WI,106,5895908 +2023-01-05,WI,85,5895908 +2023-01-06,WI,79,5895908 +2023-01-07,WI,73,5895908 +2023-01-08,WI,46,5895908 +2023-01-09,WI,92,5895908 +2023-01-10,WI,87,5895908 +2023-01-11,WI,77,5895908 +2023-01-12,WI,79,5895908 +2023-01-13,WI,80,5895908 +2023-01-14,WI,56,5895908 +2023-01-15,WI,59,5895908 +2023-01-16,WI,92,5895908 +2023-01-17,WI,93,5895908 +2023-01-18,WI,77,5895908 +2023-01-19,WI,90,5895908 +2023-01-20,WI,89,5895908 +2023-01-21,WI,70,5895908 +2023-01-22,WI,60,5895908 +2023-01-23,WI,81,5895908 +2023-01-24,WI,84,5895908 +2023-01-25,WI,75,5895908 +2023-01-26,WI,79,5895908 +2023-01-27,WI,77,5895908 +2023-01-28,WI,57,5895908 +2023-01-29,WI,62,5895908 +2023-01-30,WI,78,5895908 +2023-01-31,WI,74,5895908 +2023-02-01,WI,93,5895908 +2023-02-02,WI,77,5895908 +2023-02-03,WI,73,5895908 +2023-02-04,WI,51,5895908 +2023-02-05,WI,80,5895908 +2023-02-06,WI,77,5895908 +2023-02-07,WI,81,5895908 +2023-02-08,WI,67,5895908 +2023-02-09,WI,84,5895908 +2023-02-10,WI,70,5895908 +2023-02-11,WI,67,5895908 +2023-02-12,WI,70,5895908 +2023-02-13,WI,76,5895908 +2023-02-14,WI,81,5895908 +2023-02-15,WI,80,5895908 +2023-02-16,WI,85,5895908 +2023-02-17,WI,70,5895908 +2023-02-18,WI,63,5895908 +2023-02-19,WI,73,5895908 +2023-02-20,WI,85,5895908 +2023-02-21,WI,68,5895908 +2023-02-22,WI,65,5895908 +2023-02-23,WI,83,5895908 +2023-02-24,WI,69,5895908 +2023-02-25,WI,65,5895908 +2023-02-26,WI,61,5895908 +2023-02-27,WI,77,5895908 +2023-02-28,WI,62,5895908 +2023-03-01,WI,69,5895908 +2023-03-02,WI,57,5895908 +2023-03-03,WI,57,5895908 +2023-03-04,WI,53,5895908 +2023-03-05,WI,57,5895908 +2023-03-06,WI,70,5895908 +2023-03-07,WI,45,5895908 +2023-03-08,WI,56,5895908 +2023-03-09,WI,67,5895908 +2023-03-10,WI,63,5895908 +2023-03-11,WI,55,5895908 +2023-03-12,WI,70,5895908 +2023-03-13,WI,56,5895908 +2023-03-14,WI,66,5895908 +2023-03-15,WI,57,5895908 +2023-03-16,WI,70,5895908 +2023-03-17,WI,60,5895908 +2023-03-18,WI,51,5895908 +2023-03-19,WI,58,5895908 +2023-03-20,WI,45,5895908 +2023-03-21,WI,60,5895908 +2023-03-22,WI,66,5895908 +2023-03-23,WI,62,5895908 +2023-03-24,WI,65,5895908 +2023-03-25,WI,51,5895908 +2023-03-26,WI,57,5895908 +2023-03-27,WI,72,5895908 +2023-03-28,WI,66,5895908 +2023-03-29,WI,59,5895908 +2023-03-30,WI,66,5895908 +2023-03-31,WI,48,5895908 +2023-04-01,WI,55,5895908 +2023-04-02,WI,43,5895908 +2023-04-03,WI,61,5895908 +2023-04-04,WI,73,5895908 +2023-04-05,WI,58,5895908 +2023-04-06,WI,57,5895908 +2023-04-07,WI,54,5895908 +2023-04-08,WI,40,5895908 +2023-04-09,WI,50,5895908 +2023-04-10,WI,51,5895908 +2023-04-11,WI,53,5895908 +2023-04-12,WI,69,5895908 +2023-04-13,WI,64,5895908 +2023-04-14,WI,57,5895908 +2023-04-15,WI,54,5895908 +2023-04-16,WI,38,5895908 +2023-04-17,WI,47,5895908 +2023-04-18,WI,48,5895908 +2023-04-19,WI,36,5895908 +2023-04-20,WI,45,5895908 +2023-04-21,WI,47,5895908 +2023-04-22,WI,43,5895908 +2023-04-23,WI,33,5895908 +2023-04-24,WI,40,5895908 +2023-04-25,WI,43,5895908 +2023-04-26,WI,32,5895908 +2023-04-27,WI,41,5895908 +2023-04-28,WI,36,5895908 +2023-04-29,WI,33,5895908 +2023-04-30,WI,24,5895908 +2023-05-01,WI,32,5895908 +2023-05-02,WI,30,5895908 +2023-05-03,WI,38,5895908 +2023-05-04,WI,28,5895908 +2023-05-05,WI,25,5895908 +2023-05-06,WI,34,5895908 +2023-05-07,WI,35,5895908 +2023-05-08,WI,29,5895908 +2023-05-09,WI,39,5895908 +2023-05-10,WI,29,5895908 +2023-05-11,WI,23,5895908 +2023-05-12,WI,25,5895908 +2023-05-13,WI,28,5895908 +2023-05-14,WI,17,5895908 +2023-05-15,WI,38,5895908 +2023-05-16,WI,23,5895908 +2023-05-17,WI,26,5895908 +2023-05-18,WI,35,5895908 +2023-05-19,WI,32,5895908 +2023-05-20,WI,20,5895908 +2023-05-21,WI,25,5895908 +2023-05-22,WI,21,5895908 +2023-05-23,WI,23,5895908 +2023-05-24,WI,20,5895908 +2023-05-25,WI,22,5895908 +2023-05-26,WI,27,5895908 +2023-05-27,WI,14,5895908 +2023-05-28,WI,19,5895908 +2023-05-29,WI,29,5895908 +2023-05-30,WI,23,5895908 +2023-05-31,WI,28,5895908 +2023-06-01,WI,16,5895908 +2023-06-02,WI,23,5895908 +2023-06-03,WI,19,5895908 +2023-06-04,WI,15,5895908 +2023-06-05,WI,28,5895908 +2023-06-06,WI,23,5895908 +2023-06-07,WI,22,5895908 +2023-06-08,WI,25,5895908 +2023-06-09,WI,15,5895908 +2023-06-10,WI,14,5895908 +2023-06-11,WI,14,5895908 +2023-06-12,WI,12,5895908 +2023-06-13,WI,24,5895908 +2023-06-14,WI,17,5895908 +2023-06-15,WI,14,5895908 +2023-06-16,WI,13,5895908 +2023-06-17,WI,16,5895908 +2023-06-18,WI,17,5895908 +2023-06-19,WI,21,5895908 +2023-06-20,WI,19,5895908 +2023-06-21,WI,16,5895908 +2023-06-22,WI,12,5895908 +2023-06-23,WI,15,5895908 +2023-06-24,WI,12,5895908 +2023-06-25,WI,11,5895908 +2023-06-26,WI,13,5895908 +2023-06-27,WI,13,5895908 +2023-06-28,WI,11,5895908 +2023-06-29,WI,12,5895908 +2023-06-30,WI,9,5895908 +2023-07-01,WI,12,5895908 +2023-07-02,WI,15,5895908 +2023-07-03,WI,10,5895908 +2023-07-04,WI,13,5895908 +2023-07-05,WI,15,5895908 +2023-07-06,WI,11,5895908 +2023-07-07,WI,15,5895908 +2023-07-08,WI,12,5895908 +2023-07-09,WI,17,5895908 +2023-07-10,WI,19,5895908 +2023-07-11,WI,9,5895908 +2023-07-12,WI,14,5895908 +2023-07-13,WI,13,5895908 +2023-07-14,WI,14,5895908 +2023-07-15,WI,16,5895908 +2023-07-16,WI,12,5895908 +2023-07-17,WI,17,5895908 +2023-07-18,WI,17,5895908 +2023-07-19,WI,17,5895908 +2023-07-20,WI,12,5895908 +2023-07-21,WI,15,5895908 +2023-07-22,WI,11,5895908 +2023-07-23,WI,13,5895908 +2023-07-24,WI,20,5895908 +2023-07-25,WI,13,5895908 +2023-07-26,WI,21,5895908 +2023-07-27,WI,14,5895908 +2023-07-28,WI,12,5895908 +2023-07-29,WI,15,5895908 +2023-07-30,WI,20,5895908 +2023-07-31,WI,25,5895908 +2023-08-01,WI,20,5895908 +2023-08-02,WI,18,5895908 +2023-08-03,WI,20,5895908 +2023-08-04,WI,17,5895908 +2023-08-05,WI,25,5895908 +2023-08-06,WI,18,5895908 +2023-08-07,WI,27,5895908 +2023-08-08,WI,27,5895908 +2023-08-09,WI,24,5895908 +2023-08-10,WI,26,5895908 +2023-08-11,WI,27,5895908 +2023-08-12,WI,22,5895908 +2023-08-13,WI,31,5895908 +2023-08-14,WI,27,5895908 +2023-08-15,WI,27,5895908 +2023-08-16,WI,25,5895908 +2023-08-17,WI,27,5895908 +2023-08-18,WI,26,5895908 +2023-08-19,WI,28,5895908 +2023-08-20,WI,24,5895908 +2023-08-21,WI,31,5895908 +2023-08-22,WI,32,5895908 +2023-08-23,WI,48,5895908 +2023-08-24,WI,33,5895908 +2023-08-25,WI,29,5895908 +2023-08-26,WI,28,5895908 +2023-08-27,WI,26,5895908 +2023-08-28,WI,46,5895908 +2023-08-29,WI,31,5895908 +2023-08-30,WI,35,5895908 +2023-08-31,WI,37,5895908 +2023-09-01,WI,28,5895908 +2023-09-02,WI,37,5895908 +2023-09-03,WI,31,5895908 +2023-09-04,WI,33,5895908 +2023-09-05,WI,31,5895908 +2023-09-06,WI,32,5895908 +2023-09-07,WI,33,5895908 +2023-09-08,WI,27,5895908 +2023-09-09,WI,44,5895908 +2023-09-10,WI,38,5895908 +2023-09-11,WI,42,5895908 +2023-09-12,WI,41,5895908 +2023-09-13,WI,27,5895908 +2023-09-14,WI,48,5895908 +2023-09-15,WI,38,5895908 +2023-09-16,WI,40,5895908 +2023-09-17,WI,38,5895908 +2023-09-18,WI,56,5895908 +2023-09-19,WI,58,5895908 +2023-09-20,WI,51,5895908 +2023-09-21,WI,58,5895908 +2023-09-22,WI,55,5895908 +2023-09-23,WI,38,5895908 +2023-09-24,WI,35,5895908 +2023-09-25,WI,52,5895908 +2023-09-26,WI,65,5895908 +2023-09-27,WI,48,5895908 +2023-09-28,WI,60,5895908 +2023-09-29,WI,60,5895908 +2023-09-30,WI,52,5895908 +2023-10-01,WI,61,5895908 +2023-10-02,WI,49,5895908 +2023-10-03,WI,58,5895908 +2023-10-04,WI,45,5895908 +2023-10-05,WI,52,5895908 +2023-10-06,WI,57,5895908 +2023-10-07,WI,42,5895908 +2023-10-08,WI,30,5895908 +2023-10-09,WI,48,5895908 +2023-10-10,WI,39,5895908 +2023-10-11,WI,44,5895908 +2023-10-12,WI,45,5895908 +2023-10-13,WI,51,5895908 +2023-10-14,WI,40,5895908 +2023-10-15,WI,42,5895908 +2023-10-16,WI,64,5895908 +2023-10-17,WI,52,5895908 +2023-10-18,WI,34,5895908 +2023-10-19,WI,47,5895908 +2023-10-20,WI,61,5895908 +2023-10-21,WI,43,5895908 +2023-10-22,WI,47,5895908 +2023-10-23,WI,58,5895908 +2023-10-24,WI,75,5895908 +2023-10-25,WI,58,5895908 +2023-10-26,WI,50,5895908 +2023-10-27,WI,72,5895908 +2023-10-28,WI,49,5895908 +2023-10-29,WI,52,5895908 +2023-10-30,WI,57,5895908 +2023-10-31,WI,34,5895908 +2023-11-01,WI,59,5895908 +2023-11-02,WI,44,5895908 +2023-11-03,WI,45,5895908 +2023-11-04,WI,42,5895908 +2023-11-05,WI,52,5895908 +2023-11-06,WI,54,5895908 +2023-11-07,WI,63,5895908 +2023-11-08,WI,65,5895908 +2023-11-09,WI,74,5895908 +2023-11-10,WI,56,5895908 +2023-11-11,WI,65,5895908 +2023-11-12,WI,48,5895908 +2023-11-13,WI,65,5895908 +2023-11-14,WI,86,5895908 +2023-11-15,WI,67,5895908 +2023-11-16,WI,70,5895908 +2023-11-17,WI,80,5895908 +2023-11-18,WI,55,5895908 +2023-11-19,WI,54,5895908 +2023-11-20,WI,96,5895908 +2023-11-21,WI,72,5895908 +2023-11-22,WI,68,5895908 +2023-11-23,WI,60,5895908 +2023-11-24,WI,75,5895908 +2023-11-25,WI,78,5895908 +2023-11-26,WI,90,5895908 +2023-11-27,WI,117,5895908 +2023-11-28,WI,82,5895908 +2023-11-29,WI,87,5895908 +2023-11-30,WI,70,5895908 +2023-12-01,WI,62,5895908 +2023-12-02,WI,74,5895908 +2023-12-03,WI,74,5895908 +2023-12-04,WI,84,5895908 +2023-12-05,WI,78,5895908 +2023-12-06,WI,91,5895908 +2023-12-07,WI,84,5895908 +2023-12-08,WI,72,5895908 +2023-12-09,WI,86,5895908 +2023-12-10,WI,69,5895908 +2023-12-11,WI,79,5895908 +2023-12-12,WI,72,5895908 +2023-12-13,WI,72,5895908 +2023-12-14,WI,84,5895908 +2023-12-15,WI,99,5895908 +2023-12-16,WI,82,5895908 +2023-12-17,WI,87,5895908 +2023-12-18,WI,78,5895908 +2023-12-19,WI,97,5895908 +2023-12-20,WI,86,5895908 +2023-12-21,WI,94,5895908 +2023-12-22,WI,98,5895908 +2023-12-23,WI,89,5895908 +2023-12-24,WI,99,5895908 +2023-12-25,WI,108,5895908 +2023-12-26,WI,112,5895908 +2023-12-27,WI,112,5895908 +2023-12-28,WI,118,5895908 +2023-12-29,WI,114,5895908 +2023-12-30,WI,102,5895908 +2023-12-31,WI,110,5895908 +2024-01-01,WI,103,5895908 +2024-01-02,WI,107,5895908 +2024-01-03,WI,93,5895908 +2024-01-04,WI,92,5895908 +2024-01-05,WI,97,5895908 +2024-01-06,WI,87,5895908 +2024-01-07,WI,82,5895908 +2024-01-08,WI,88,5895908 +2024-01-09,WI,72,5895908 +2024-01-10,WI,59,5895908 +2024-01-11,WI,76,5895908 +2024-01-12,WI,64,5895908 +2024-01-13,WI,68,5895908 +2024-01-14,WI,45,5895908 +2024-01-15,WI,54,5895908 +2024-01-16,WI,66,5895908 +2024-01-17,WI,67,5895908 +2024-01-18,WI,65,5895908 +2024-01-19,WI,75,5895908 +2022-12-31,WV,47,1782959 +2023-01-01,WV,43,1782959 +2023-01-02,WV,49,1782959 +2023-01-03,WV,57,1782959 +2023-01-04,WV,39,1782959 +2023-01-05,WV,41,1782959 +2023-01-06,WV,39,1782959 +2023-01-07,WV,38,1782959 +2023-01-08,WV,39,1782959 +2023-01-09,WV,47,1782959 +2023-01-10,WV,42,1782959 +2023-01-11,WV,40,1782959 +2023-01-12,WV,39,1782959 +2023-01-13,WV,27,1782959 +2023-01-14,WV,27,1782959 +2023-01-15,WV,26,1782959 +2023-01-16,WV,39,1782959 +2023-01-17,WV,36,1782959 +2023-01-18,WV,35,1782959 +2023-01-19,WV,41,1782959 +2023-01-20,WV,32,1782959 +2023-01-21,WV,30,1782959 +2023-01-22,WV,28,1782959 +2023-01-23,WV,29,1782959 +2023-01-24,WV,37,1782959 +2023-01-25,WV,27,1782959 +2023-01-26,WV,25,1782959 +2023-01-27,WV,24,1782959 +2023-01-28,WV,36,1782959 +2023-01-29,WV,30,1782959 +2023-01-30,WV,21,1782959 +2023-01-31,WV,44,1782959 +2023-02-01,WV,29,1782959 +2023-02-02,WV,31,1782959 +2023-02-03,WV,32,1782959 +2023-02-04,WV,23,1782959 +2023-02-05,WV,24,1782959 +2023-02-06,WV,42,1782959 +2023-02-07,WV,19,1782959 +2023-02-08,WV,20,1782959 +2023-02-09,WV,29,1782959 +2023-02-10,WV,40,1782959 +2023-02-11,WV,15,1782959 +2023-02-12,WV,23,1782959 +2023-02-13,WV,34,1782959 +2023-02-14,WV,32,1782959 +2023-02-15,WV,29,1782959 +2023-02-16,WV,27,1782959 +2023-02-17,WV,24,1782959 +2023-02-18,WV,26,1782959 +2023-02-19,WV,26,1782959 +2023-02-20,WV,38,1782959 +2023-02-21,WV,34,1782959 +2023-02-22,WV,26,1782959 +2023-02-23,WV,25,1782959 +2023-02-24,WV,19,1782959 +2023-02-25,WV,34,1782959 +2023-02-26,WV,29,1782959 +2023-02-27,WV,31,1782959 +2023-02-28,WV,27,1782959 +2023-03-01,WV,29,1782959 +2023-03-02,WV,31,1782959 +2023-03-03,WV,14,1782959 +2023-03-04,WV,16,1782959 +2023-03-05,WV,17,1782959 +2023-03-06,WV,18,1782959 +2023-03-07,WV,25,1782959 +2023-03-08,WV,25,1782959 +2023-03-09,WV,28,1782959 +2023-03-10,WV,19,1782959 +2023-03-11,WV,15,1782959 +2023-03-12,WV,16,1782959 +2023-03-13,WV,18,1782959 +2023-03-14,WV,20,1782959 +2023-03-15,WV,14,1782959 +2023-03-16,WV,32,1782959 +2023-03-17,WV,21,1782959 +2023-03-18,WV,16,1782959 +2023-03-19,WV,13,1782959 +2023-03-20,WV,12,1782959 +2023-03-21,WV,22,1782959 +2023-03-22,WV,22,1782959 +2023-03-23,WV,23,1782959 +2023-03-24,WV,17,1782959 +2023-03-25,WV,12,1782959 +2023-03-26,WV,12,1782959 +2023-03-27,WV,23,1782959 +2023-03-28,WV,15,1782959 +2023-03-29,WV,16,1782959 +2023-03-30,WV,26,1782959 +2023-03-31,WV,10,1782959 +2023-04-01,WV,17,1782959 +2023-04-02,WV,13,1782959 +2023-04-03,WV,20,1782959 +2023-04-04,WV,17,1782959 +2023-04-05,WV,14,1782959 +2023-04-06,WV,12,1782959 +2023-04-07,WV,7,1782959 +2023-04-08,WV,13,1782959 +2023-04-09,WV,9,1782959 +2023-04-10,WV,15,1782959 +2023-04-11,WV,15,1782959 +2023-04-12,WV,16,1782959 +2023-04-13,WV,10,1782959 +2023-04-14,WV,8,1782959 +2023-04-15,WV,11,1782959 +2023-04-16,WV,14,1782959 +2023-04-17,WV,9,1782959 +2023-04-18,WV,8,1782959 +2023-04-19,WV,9,1782959 +2023-04-20,WV,4,1782959 +2023-04-21,WV,4,1782959 +2023-04-22,WV,5,1782959 +2023-04-23,WV,4,1782959 +2023-04-24,WV,6,1782959 +2023-04-25,WV,7,1782959 +2023-04-26,WV,7,1782959 +2023-04-27,WV,9,1782959 +2023-04-28,WV,6,1782959 +2023-04-29,WV,2,1782959 +2023-04-30,WV,7,1782959 +2023-05-01,WV,15,1782959 +2023-05-02,WV,12,1782959 +2023-05-03,WV,4,1782959 +2023-05-04,WV,8,1782959 +2023-05-05,WV,7,1782959 +2023-05-06,WV,3,1782959 +2023-05-07,WV,4,1782959 +2023-05-08,WV,5,1782959 +2023-05-09,WV,7,1782959 +2023-05-10,WV,9,1782959 +2023-05-11,WV,4,1782959 +2023-05-12,WV,3,1782959 +2023-05-13,WV,3,1782959 +2023-05-14,WV,6,1782959 +2023-05-15,WV,5,1782959 +2023-05-16,WV,6,1782959 +2023-05-17,WV,5,1782959 +2023-05-18,WV,5,1782959 +2023-05-19,WV,2,1782959 +2023-05-20,WV,3,1782959 +2023-05-21,WV,6,1782959 +2023-05-22,WV,8,1782959 +2023-05-23,WV,3,1782959 +2023-05-24,WV,3,1782959 +2023-05-25,WV,8,1782959 +2023-05-26,WV,4,1782959 +2023-05-27,WV,5,1782959 +2023-05-28,WV,4,1782959 +2023-05-29,WV,3,1782959 +2023-05-30,WV,6,1782959 +2023-05-31,WV,8,1782959 +2023-06-01,WV,2,1782959 +2023-06-02,WV,5,1782959 +2023-06-03,WV,2,1782959 +2023-06-04,WV,1,1782959 +2023-06-05,WV,1,1782959 +2023-06-06,WV,0,1782959 +2023-06-07,WV,8,1782959 +2023-06-08,WV,4,1782959 +2023-06-09,WV,4,1782959 +2023-06-10,WV,2,1782959 +2023-06-11,WV,7,1782959 +2023-06-12,WV,5,1782959 +2023-06-13,WV,6,1782959 +2023-06-14,WV,5,1782959 +2023-06-15,WV,0,1782959 +2023-06-16,WV,3,1782959 +2023-06-17,WV,2,1782959 +2023-06-18,WV,6,1782959 +2023-06-19,WV,4,1782959 +2023-06-20,WV,5,1782959 +2023-06-21,WV,3,1782959 +2023-06-22,WV,7,1782959 +2023-06-23,WV,1,1782959 +2023-06-24,WV,4,1782959 +2023-06-25,WV,3,1782959 +2023-06-26,WV,4,1782959 +2023-06-27,WV,4,1782959 +2023-06-28,WV,2,1782959 +2023-06-29,WV,3,1782959 +2023-06-30,WV,5,1782959 +2023-07-01,WV,6,1782959 +2023-07-02,WV,1,1782959 +2023-07-03,WV,3,1782959 +2023-07-04,WV,3,1782959 +2023-07-05,WV,5,1782959 +2023-07-06,WV,0,1782959 +2023-07-07,WV,4,1782959 +2023-07-08,WV,2,1782959 +2023-07-09,WV,1,1782959 +2023-07-10,WV,5,1782959 +2023-07-11,WV,4,1782959 +2023-07-12,WV,4,1782959 +2023-07-13,WV,2,1782959 +2023-07-14,WV,1,1782959 +2023-07-15,WV,7,1782959 +2023-07-16,WV,3,1782959 +2023-07-17,WV,5,1782959 +2023-07-18,WV,3,1782959 +2023-07-19,WV,6,1782959 +2023-07-20,WV,3,1782959 +2023-07-21,WV,4,1782959 +2023-07-22,WV,4,1782959 +2023-07-23,WV,5,1782959 +2023-07-24,WV,1,1782959 +2023-07-25,WV,3,1782959 +2023-07-26,WV,5,1782959 +2023-07-27,WV,6,1782959 +2023-07-28,WV,10,1782959 +2023-07-29,WV,6,1782959 +2023-07-30,WV,8,1782959 +2023-07-31,WV,10,1782959 +2023-08-01,WV,5,1782959 +2023-08-02,WV,5,1782959 +2023-08-03,WV,6,1782959 +2023-08-04,WV,13,1782959 +2023-08-05,WV,9,1782959 +2023-08-06,WV,5,1782959 +2023-08-07,WV,11,1782959 +2023-08-08,WV,5,1782959 +2023-08-09,WV,7,1782959 +2023-08-10,WV,9,1782959 +2023-08-11,WV,8,1782959 +2023-08-12,WV,14,1782959 +2023-08-13,WV,11,1782959 +2023-08-14,WV,8,1782959 +2023-08-15,WV,12,1782959 +2023-08-16,WV,13,1782959 +2023-08-17,WV,15,1782959 +2023-08-18,WV,11,1782959 +2023-08-19,WV,9,1782959 +2023-08-20,WV,10,1782959 +2023-08-21,WV,12,1782959 +2023-08-22,WV,23,1782959 +2023-08-23,WV,17,1782959 +2023-08-24,WV,8,1782959 +2023-08-25,WV,8,1782959 +2023-08-26,WV,15,1782959 +2023-08-27,WV,12,1782959 +2023-08-28,WV,17,1782959 +2023-08-29,WV,19,1782959 +2023-08-30,WV,21,1782959 +2023-08-31,WV,19,1782959 +2023-09-01,WV,21,1782959 +2023-09-02,WV,18,1782959 +2023-09-03,WV,14,1782959 +2023-09-04,WV,23,1782959 +2023-09-05,WV,23,1782959 +2023-09-06,WV,23,1782959 +2023-09-07,WV,29,1782959 +2023-09-08,WV,16,1782959 +2023-09-09,WV,22,1782959 +2023-09-10,WV,20,1782959 +2023-09-11,WV,17,1782959 +2023-09-12,WV,29,1782959 +2023-09-13,WV,20,1782959 +2023-09-14,WV,13,1782959 +2023-09-15,WV,23,1782959 +2023-09-16,WV,22,1782959 +2023-09-17,WV,26,1782959 +2023-09-18,WV,32,1782959 +2023-09-19,WV,29,1782959 +2023-09-20,WV,26,1782959 +2023-09-21,WV,23,1782959 +2023-09-22,WV,19,1782959 +2023-09-23,WV,23,1782959 +2023-09-24,WV,29,1782959 +2023-09-25,WV,25,1782959 +2023-09-26,WV,25,1782959 +2023-09-27,WV,27,1782959 +2023-09-28,WV,24,1782959 +2023-09-29,WV,24,1782959 +2023-09-30,WV,23,1782959 +2023-10-01,WV,21,1782959 +2023-10-02,WV,25,1782959 +2023-10-03,WV,37,1782959 +2023-10-04,WV,36,1782959 +2023-10-05,WV,21,1782959 +2023-10-06,WV,26,1782959 +2023-10-07,WV,23,1782959 +2023-10-08,WV,10,1782959 +2023-10-09,WV,22,1782959 +2023-10-10,WV,14,1782959 +2023-10-11,WV,28,1782959 +2023-10-12,WV,20,1782959 +2023-10-13,WV,16,1782959 +2023-10-14,WV,23,1782959 +2023-10-15,WV,23,1782959 +2023-10-16,WV,18,1782959 +2023-10-17,WV,19,1782959 +2023-10-18,WV,18,1782959 +2023-10-19,WV,25,1782959 +2023-10-20,WV,18,1782959 +2023-10-21,WV,12,1782959 +2023-10-22,WV,28,1782959 +2023-10-23,WV,22,1782959 +2023-10-24,WV,27,1782959 +2023-10-25,WV,25,1782959 +2023-10-26,WV,28,1782959 +2023-10-27,WV,22,1782959 +2023-10-28,WV,16,1782959 +2023-10-29,WV,18,1782959 +2023-10-30,WV,31,1782959 +2023-10-31,WV,23,1782959 +2023-11-01,WV,13,1782959 +2023-11-02,WV,28,1782959 +2023-11-03,WV,15,1782959 +2023-11-04,WV,25,1782959 +2023-11-05,WV,22,1782959 +2023-11-06,WV,24,1782959 +2023-11-07,WV,28,1782959 +2023-11-08,WV,27,1782959 +2023-11-09,WV,27,1782959 +2023-11-10,WV,34,1782959 +2023-11-11,WV,16,1782959 +2023-11-12,WV,16,1782959 +2023-11-13,WV,32,1782959 +2023-11-14,WV,37,1782959 +2023-11-15,WV,29,1782959 +2023-11-16,WV,27,1782959 +2023-11-17,WV,45,1782959 +2023-11-18,WV,37,1782959 +2023-11-19,WV,38,1782959 +2023-11-20,WV,38,1782959 +2023-11-21,WV,41,1782959 +2023-11-22,WV,33,1782959 +2023-11-23,WV,33,1782959 +2023-11-24,WV,53,1782959 +2023-11-25,WV,45,1782959 +2023-11-26,WV,32,1782959 +2023-11-27,WV,56,1782959 +2023-11-28,WV,44,1782959 +2023-11-29,WV,53,1782959 +2023-11-30,WV,35,1782959 +2023-12-01,WV,45,1782959 +2023-12-02,WV,50,1782959 +2023-12-03,WV,38,1782959 +2023-12-04,WV,44,1782959 +2023-12-05,WV,38,1782959 +2023-12-06,WV,39,1782959 +2023-12-07,WV,34,1782959 +2023-12-08,WV,35,1782959 +2023-12-09,WV,37,1782959 +2023-12-10,WV,40,1782959 +2023-12-11,WV,38,1782959 +2023-12-12,WV,38,1782959 +2023-12-13,WV,42,1782959 +2023-12-14,WV,33,1782959 +2023-12-15,WV,26,1782959 +2023-12-16,WV,36,1782959 +2023-12-17,WV,31,1782959 +2023-12-18,WV,51,1782959 +2023-12-19,WV,44,1782959 +2023-12-20,WV,38,1782959 +2023-12-21,WV,47,1782959 +2023-12-22,WV,45,1782959 +2023-12-23,WV,48,1782959 +2023-12-24,WV,37,1782959 +2023-12-25,WV,45,1782959 +2023-12-26,WV,54,1782959 +2023-12-27,WV,57,1782959 +2023-12-28,WV,51,1782959 +2023-12-29,WV,49,1782959 +2023-12-30,WV,42,1782959 +2023-12-31,WV,42,1782959 +2024-01-01,WV,63,1782959 +2024-01-02,WV,50,1782959 +2024-01-03,WV,52,1782959 +2024-01-04,WV,46,1782959 +2024-01-05,WV,51,1782959 +2024-01-06,WV,40,1782959 +2024-01-07,WV,39,1782959 +2024-01-08,WV,44,1782959 +2024-01-09,WV,38,1782959 +2024-01-10,WV,33,1782959 +2024-01-11,WV,35,1782959 +2024-01-12,WV,36,1782959 +2024-01-13,WV,35,1782959 +2024-01-14,WV,34,1782959 +2024-01-15,WV,31,1782959 +2024-01-16,WV,23,1782959 +2024-01-17,WV,29,1782959 +2024-01-18,WV,23,1782959 +2024-01-19,WV,18,1782959 +2022-12-31,WY,2,578803 +2023-01-01,WY,4,578803 +2023-01-02,WY,3,578803 +2023-01-03,WY,3,578803 +2023-01-04,WY,2,578803 +2023-01-05,WY,5,578803 +2023-01-06,WY,4,578803 +2023-01-07,WY,4,578803 +2023-01-08,WY,3,578803 +2023-01-09,WY,4,578803 +2023-01-10,WY,7,578803 +2023-01-11,WY,3,578803 +2023-01-12,WY,3,578803 +2023-01-13,WY,4,578803 +2023-01-14,WY,5,578803 +2023-01-15,WY,2,578803 +2023-01-16,WY,5,578803 +2023-01-17,WY,3,578803 +2023-01-18,WY,3,578803 +2023-01-19,WY,2,578803 +2023-01-20,WY,4,578803 +2023-01-21,WY,2,578803 +2023-01-22,WY,4,578803 +2023-01-23,WY,1,578803 +2023-01-24,WY,2,578803 +2023-01-25,WY,1,578803 +2023-01-26,WY,2,578803 +2023-01-27,WY,3,578803 +2023-01-28,WY,3,578803 +2023-01-29,WY,5,578803 +2023-01-30,WY,3,578803 +2023-01-31,WY,3,578803 +2023-02-01,WY,2,578803 +2023-02-02,WY,1,578803 +2023-02-03,WY,1,578803 +2023-02-04,WY,2,578803 +2023-02-05,WY,3,578803 +2023-02-06,WY,1,578803 +2023-02-07,WY,4,578803 +2023-02-08,WY,4,578803 +2023-02-09,WY,4,578803 +2023-02-10,WY,5,578803 +2023-02-11,WY,2,578803 +2023-02-12,WY,2,578803 +2023-02-13,WY,7,578803 +2023-02-14,WY,6,578803 +2023-02-15,WY,1,578803 +2023-02-16,WY,4,578803 +2023-02-17,WY,4,578803 +2023-02-18,WY,2,578803 +2023-02-19,WY,5,578803 +2023-02-20,WY,5,578803 +2023-02-21,WY,4,578803 +2023-02-22,WY,7,578803 +2023-02-23,WY,4,578803 +2023-02-24,WY,6,578803 +2023-02-25,WY,2,578803 +2023-02-26,WY,5,578803 +2023-02-27,WY,4,578803 +2023-02-28,WY,3,578803 +2023-03-01,WY,2,578803 +2023-03-02,WY,0,578803 +2023-03-03,WY,2,578803 +2023-03-04,WY,2,578803 +2023-03-05,WY,6,578803 +2023-03-06,WY,2,578803 +2023-03-07,WY,3,578803 +2023-03-08,WY,2,578803 +2023-03-09,WY,3,578803 +2023-03-10,WY,3,578803 +2023-03-11,WY,1,578803 +2023-03-12,WY,0,578803 +2023-03-13,WY,1,578803 +2023-03-14,WY,5,578803 +2023-03-15,WY,6,578803 +2023-03-16,WY,1,578803 +2023-03-17,WY,2,578803 +2023-03-18,WY,2,578803 +2023-03-19,WY,2,578803 +2023-03-20,WY,8,578803 +2023-03-21,WY,5,578803 +2023-03-22,WY,4,578803 +2023-03-23,WY,4,578803 +2023-03-24,WY,3,578803 +2023-03-25,WY,5,578803 +2023-03-26,WY,0,578803 +2023-03-27,WY,1,578803 +2023-03-28,WY,2,578803 +2023-03-29,WY,4,578803 +2023-03-30,WY,3,578803 +2023-03-31,WY,0,578803 +2023-04-01,WY,2,578803 +2023-04-02,WY,0,578803 +2023-04-03,WY,3,578803 +2023-04-04,WY,1,578803 +2023-04-05,WY,2,578803 +2023-04-06,WY,2,578803 +2023-04-07,WY,3,578803 +2023-04-08,WY,2,578803 +2023-04-09,WY,2,578803 +2023-04-10,WY,0,578803 +2023-04-11,WY,1,578803 +2023-04-12,WY,2,578803 +2023-04-13,WY,0,578803 +2023-04-14,WY,1,578803 +2023-04-15,WY,2,578803 +2023-04-16,WY,1,578803 +2023-04-17,WY,1,578803 +2023-04-18,WY,4,578803 +2023-04-19,WY,3,578803 +2023-04-20,WY,4,578803 +2023-04-21,WY,1,578803 +2023-04-22,WY,1,578803 +2023-04-23,WY,1,578803 +2023-04-24,WY,2,578803 +2023-04-25,WY,1,578803 +2023-04-26,WY,4,578803 +2023-04-27,WY,1,578803 +2023-04-28,WY,2,578803 +2023-04-29,WY,2,578803 +2023-04-30,WY,1,578803 +2023-05-01,WY,3,578803 +2023-05-02,WY,1,578803 +2023-05-03,WY,3,578803 +2023-05-04,WY,1,578803 +2023-05-05,WY,3,578803 +2023-05-06,WY,3,578803 +2023-05-07,WY,1,578803 +2023-05-08,WY,2,578803 +2023-05-09,WY,1,578803 +2023-05-10,WY,1,578803 +2023-05-11,WY,2,578803 +2023-05-12,WY,1,578803 +2023-05-13,WY,1,578803 +2023-05-14,WY,2,578803 +2023-05-15,WY,1,578803 +2023-05-16,WY,1,578803 +2023-05-17,WY,4,578803 +2023-05-18,WY,6,578803 +2023-05-19,WY,5,578803 +2023-05-20,WY,1,578803 +2023-05-21,WY,1,578803 +2023-05-22,WY,4,578803 +2023-05-23,WY,1,578803 +2023-05-24,WY,0,578803 +2023-05-25,WY,2,578803 +2023-05-26,WY,2,578803 +2023-05-27,WY,2,578803 +2023-05-28,WY,1,578803 +2023-05-29,WY,3,578803 +2023-05-30,WY,5,578803 +2023-05-31,WY,3,578803 +2023-06-01,WY,2,578803 +2023-06-02,WY,5,578803 +2023-06-03,WY,3,578803 +2023-06-04,WY,1,578803 +2023-06-05,WY,4,578803 +2023-06-06,WY,2,578803 +2023-06-07,WY,1,578803 +2023-06-08,WY,2,578803 +2023-06-09,WY,4,578803 +2023-06-10,WY,3,578803 +2023-06-11,WY,1,578803 +2023-06-12,WY,1,578803 +2023-06-13,WY,2,578803 +2023-06-14,WY,2,578803 +2023-06-15,WY,2,578803 +2023-06-16,WY,1,578803 +2023-06-17,WY,1,578803 +2023-06-18,WY,2,578803 +2023-06-19,WY,1,578803 +2023-06-20,WY,1,578803 +2023-06-21,WY,4,578803 +2023-06-22,WY,3,578803 +2023-06-23,WY,3,578803 +2023-06-24,WY,1,578803 +2023-06-25,WY,1,578803 +2023-06-26,WY,2,578803 +2023-06-27,WY,4,578803 +2023-06-28,WY,1,578803 +2023-06-29,WY,1,578803 +2023-06-30,WY,1,578803 +2023-07-01,WY,2,578803 +2023-07-02,WY,1,578803 +2023-07-03,WY,3,578803 +2023-07-04,WY,4,578803 +2023-07-05,WY,1,578803 +2023-07-06,WY,2,578803 +2023-07-07,WY,3,578803 +2023-07-08,WY,2,578803 +2023-07-09,WY,2,578803 +2023-07-10,WY,2,578803 +2023-07-11,WY,1,578803 +2023-07-12,WY,2,578803 +2023-07-13,WY,2,578803 +2023-07-14,WY,1,578803 +2023-07-15,WY,2,578803 +2023-07-16,WY,3,578803 +2023-07-17,WY,1,578803 +2023-07-18,WY,2,578803 +2023-07-19,WY,1,578803 +2023-07-20,WY,1,578803 +2023-07-21,WY,1,578803 +2023-07-22,WY,1,578803 +2023-07-23,WY,1,578803 +2023-07-24,WY,5,578803 +2023-07-25,WY,1,578803 +2023-07-26,WY,2,578803 +2023-07-27,WY,2,578803 +2023-07-28,WY,1,578803 +2023-07-29,WY,1,578803 +2023-07-30,WY,1,578803 +2023-07-31,WY,2,578803 +2023-08-01,WY,3,578803 +2023-08-02,WY,2,578803 +2023-08-03,WY,2,578803 +2023-08-04,WY,2,578803 +2023-08-05,WY,2,578803 +2023-08-06,WY,1,578803 +2023-08-07,WY,4,578803 +2023-08-08,WY,4,578803 +2023-08-09,WY,1,578803 +2023-08-10,WY,2,578803 +2023-08-11,WY,2,578803 +2023-08-12,WY,4,578803 +2023-08-13,WY,3,578803 +2023-08-14,WY,4,578803 +2023-08-15,WY,4,578803 +2023-08-16,WY,3,578803 +2023-08-17,WY,3,578803 +2023-08-18,WY,4,578803 +2023-08-19,WY,3,578803 +2023-08-20,WY,3,578803 +2023-08-21,WY,7,578803 +2023-08-22,WY,6,578803 +2023-08-23,WY,4,578803 +2023-08-24,WY,4,578803 +2023-08-25,WY,3,578803 +2023-08-26,WY,1,578803 +2023-08-27,WY,4,578803 +2023-08-28,WY,2,578803 +2023-08-29,WY,1,578803 +2023-08-30,WY,2,578803 +2023-08-31,WY,3,578803 +2023-09-01,WY,3,578803 +2023-09-02,WY,4,578803 +2023-09-03,WY,9,578803 +2023-09-04,WY,5,578803 +2023-09-05,WY,3,578803 +2023-09-06,WY,5,578803 +2023-09-07,WY,8,578803 +2023-09-08,WY,5,578803 +2023-09-09,WY,2,578803 +2023-09-10,WY,4,578803 +2023-09-11,WY,2,578803 +2023-09-12,WY,4,578803 +2023-09-13,WY,7,578803 +2023-09-14,WY,4,578803 +2023-09-15,WY,3,578803 +2023-09-16,WY,3,578803 +2023-09-17,WY,8,578803 +2023-09-18,WY,3,578803 +2023-09-19,WY,7,578803 +2023-09-20,WY,3,578803 +2023-09-21,WY,3,578803 +2023-09-22,WY,4,578803 +2023-09-23,WY,3,578803 +2023-09-24,WY,5,578803 +2023-09-25,WY,2,578803 +2023-09-26,WY,8,578803 +2023-09-27,WY,6,578803 +2023-09-28,WY,3,578803 +2023-09-29,WY,10,578803 +2023-09-30,WY,7,578803 +2023-10-01,WY,8,578803 +2023-10-02,WY,9,578803 +2023-10-03,WY,4,578803 +2023-10-04,WY,4,578803 +2023-10-05,WY,7,578803 +2023-10-06,WY,3,578803 +2023-10-07,WY,1,578803 +2023-10-08,WY,8,578803 +2023-10-09,WY,4,578803 +2023-10-10,WY,2,578803 +2023-10-11,WY,2,578803 +2023-10-12,WY,5,578803 +2023-10-13,WY,3,578803 +2023-10-14,WY,1,578803 +2023-10-15,WY,4,578803 +2023-10-16,WY,4,578803 +2023-10-17,WY,5,578803 +2023-10-18,WY,5,578803 +2023-10-19,WY,7,578803 +2023-10-20,WY,5,578803 +2023-10-21,WY,5,578803 +2023-10-22,WY,4,578803 +2023-10-23,WY,2,578803 +2023-10-24,WY,6,578803 +2023-10-25,WY,6,578803 +2023-10-26,WY,6,578803 +2023-10-27,WY,6,578803 +2023-10-28,WY,5,578803 +2023-10-29,WY,5,578803 +2023-10-30,WY,4,578803 +2023-10-31,WY,7,578803 +2023-11-01,WY,5,578803 +2023-11-02,WY,4,578803 +2023-11-03,WY,2,578803 +2023-11-04,WY,4,578803 +2023-11-05,WY,1,578803 +2023-11-06,WY,6,578803 +2023-11-07,WY,5,578803 +2023-11-08,WY,1,578803 +2023-11-09,WY,4,578803 +2023-11-10,WY,10,578803 +2023-11-11,WY,4,578803 +2023-11-12,WY,3,578803 +2023-11-13,WY,7,578803 +2023-11-14,WY,5,578803 +2023-11-15,WY,6,578803 +2023-11-16,WY,3,578803 +2023-11-17,WY,9,578803 +2023-11-18,WY,5,578803 +2023-11-19,WY,12,578803 +2023-11-20,WY,2,578803 +2023-11-21,WY,8,578803 +2023-11-22,WY,9,578803 +2023-11-23,WY,4,578803 +2023-11-24,WY,6,578803 +2023-11-25,WY,9,578803 +2023-11-26,WY,2,578803 +2023-11-27,WY,15,578803 +2023-11-28,WY,8,578803 +2023-11-29,WY,4,578803 +2023-11-30,WY,6,578803 +2023-12-01,WY,3,578803 +2023-12-02,WY,3,578803 +2023-12-03,WY,6,578803 +2023-12-04,WY,8,578803 +2023-12-05,WY,2,578803 +2023-12-06,WY,10,578803 +2023-12-07,WY,8,578803 +2023-12-08,WY,10,578803 +2023-12-09,WY,2,578803 +2023-12-10,WY,1,578803 +2023-12-11,WY,13,578803 +2023-12-12,WY,3,578803 +2023-12-13,WY,4,578803 +2023-12-14,WY,5,578803 +2023-12-15,WY,5,578803 +2023-12-16,WY,4,578803 +2023-12-17,WY,8,578803 +2023-12-18,WY,6,578803 +2023-12-19,WY,4,578803 +2023-12-20,WY,4,578803 +2023-12-21,WY,8,578803 +2023-12-22,WY,5,578803 +2023-12-23,WY,2,578803 +2023-12-24,WY,4,578803 +2023-12-25,WY,8,578803 +2023-12-26,WY,9,578803 +2023-12-27,WY,11,578803 +2023-12-28,WY,8,578803 +2023-12-29,WY,7,578803 +2023-12-30,WY,5,578803 +2023-12-31,WY,5,578803 +2024-01-01,WY,5,578803 +2024-01-02,WY,5,578803 +2024-01-03,WY,5,578803 +2024-01-04,WY,6,578803 +2024-01-05,WY,8,578803 +2024-01-06,WY,4,578803 +2024-01-07,WY,2,578803 +2024-01-08,WY,3,578803 +2024-01-09,WY,5,578803 +2024-01-10,WY,12,578803 +2024-01-11,WY,6,578803 +2024-01-12,WY,5,578803 +2024-01-13,WY,2,578803 +2024-01-14,WY,4,578803 +2024-01-15,WY,6,578803 +2024-01-16,WY,2,578803 +2024-01-17,WY,12,578803 +2024-01-18,WY,1,578803 +2024-01-19,WY,1,578803 diff --git a/cfaforecastrenewalww/inst/testdata/fake_nwss.csv b/cfaforecastrenewalww/inst/testdata/fake_nwss.csv new file mode 100644 index 00000000..73898c38 --- /dev/null +++ b/cfaforecastrenewalww/inst/testdata/fake_nwss.csv @@ -0,0 +1,3286 @@ +wwtp_jurisdiction,junk1,junk2,wwtp_name,county_names,lab_id,population_served,sample_location,sample_matrix,pcr_target_units,pcr_target,pcr_target_avg_conc,pcr_target_flowpop_lin,lod_sewage,pcr_target_below_lod,sample_collect_date,quality_flag +CA,A,YES,1,04971,1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,8.054115836944005,55.04513393435594,7.443448737491519,0,2023-01-01,NA +CA,A,YES,2,31809,1,30000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,7.8698405584687325,85.47494922884091,1.6125732477322323,0,2023-01-01,temperature not assessed upon arrival at the laboratory +CA,A,YES,4,12078,4,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,701.3091712313847,404.0086944333856,13.881587487408053,0,2023-01-01,> max temp and/or hold time +WA,B,Yes,6,31928,1,2000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,244.42352923698678,44.04065263553125,20.924849355634137,0,2023-01-01,NA +WA,B,Yes,7,07528,1,100000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,29.19971609624074,104.3650894301212,2.5731702128827867,0,2023-01-01,NA +WA,B,Yes,9,14396,2,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,257.5597420887679,226.42429315424206,10.130901996571637,0,2023-01-01,NA +NM,C,yes,10,27604,5,1000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,2.1236739877669955,40.53356746877808,0.4530527192221311,0,2023-01-01,NA +NM,C,yes,11,91578,6,10000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,2.1399793267291494,651.7571697903521,1.0887289571287273,0,2023-01-01,NA +CA,A,YES,1,04971,1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,318.5878534041641,32.51171069583552,1.9747551214710093,0,2023-01-02,no +CA,A,YES,2,31809,1,30000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,9.897117221594996,90.91045487095828,5.86592310408781,0,2023-01-02,no +CA,A,YES,4,12078,3,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,7.332069630582176,67.05837186719428,1.6708185559623274,0,2023-01-02,NA +CA,A,YES,4,12078,4,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,9.065560011477302,815.3348623734826,20.646824858007953,0,2023-01-02,NA +WA,B,Yes,6,31928,1,2000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,240.85122185566547,386.36572390749814,1.8340868130391876,0,2023-01-02,temperature not assessed upon arrival at the laboratory +WA,B,Yes,7,07528,1,100000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,544.0669587294154,25.439665117925003,2.382577502458453,0,2023-01-02,> max temp and/or hold time +WA,B,Yes,8,97385,2,50000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,77.42087123963306,13.356856415392215,5.520118250210656,0,2023-01-02,NA +WA,B,Yes,9,14396,2,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,456.3402279933906,6.459774947213775,1.071485091360489,0,2023-01-02,NA +NM,C,yes,11,91578,6,10000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,1.0622568511245791,32.127546724221176,0.15424185094347556,0,2023-01-02,NA +CA,A,YES,1,04971,1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,8.045477208790313,40.27750071592156,3.3258959869434412,0,2023-01-03,no +CA,A,YES,2,31809,1,30000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,276.04358187989425,10.60490126457747,13.406836622913755,0,2023-01-03,NA +CA,A,YES,4,12078,3,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,10.802883747691222,99.6879994674735,4.1228747821196965,0,2023-01-03,NA +CA,A,YES,4,12078,4,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,52.71543846184618,432.96599083032794,1.6987881432802636,0,2023-01-03,NA +CA,A,YES,5,34687,4,1000000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,6.885239603500818,229.74987074032768,10.82238345503649,0,2023-01-03,NA +WA,B,Yes,6,31928,1,2000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,28.351182973827616,266.95375529779506,4.623974785920688,0,2023-01-03,no +WA,B,Yes,7,07528,1,100000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,525.1236659332544,668.4903593460351,9.08483758036911,0,2023-01-03,NA +WA,B,Yes,8,97385,2,50000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,692.340538837637,5.063398393209281,21.38753865100015,0,2023-01-03,NA +WA,B,Yes,9,14396,2,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,39.93782388613959,11.69833491729379,4.959358574631709,0,2023-01-03,no +NM,C,yes,10,27604,5,1000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,1.0644811979504432,41.46761347133586,0.6577316500311907,0,2023-01-03,NA +NM,C,yes,11,91578,6,10000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,1.435179031423122,179.0196107307954,0.7831147395280831,0,2023-01-03,NA +ZZ,F,NO,15,98436,4,8472,wwtp,raw wastewater,copies/g dry sludge,sars-cov-2,48.8854542150505,785.5101763320581,11.481962595257894,0,2023-01-03,NA +CA,A,YES,1,04971,1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,1.7936991416491015,7.336498654648253,3.587398283298203,1,2023-01-04,NA +CA,A,YES,2,31809,1,30000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,5.639017094726396,59.20611278144642,9.425485444619234,0,2023-01-04,no +CA,A,YES,4,12078,3,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,141.3480424620658,193.41645063823643,3.7106659118350334,0,2023-01-04,NA +CA,A,YES,4,12078,4,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,8.860362666247195,89.9942777741431,8.713846998511125,0,2023-01-04,NA +WA,B,Yes,6,31928,1,2000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,20.354768660533676,7.798149164474054,15.21557641776394,0,2023-01-04,NA +WA,B,Yes,7,07528,1,100000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,7.81439055868008,690.6142401259643,3.5420380746438065,0,2023-01-04,NA +WA,B,Yes,8,97385,2,50000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,38.632604782682094,5.455289144363855,1.2897570562193899,0,2023-01-04,below loq +WA,B,Yes,9,14396,2,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,9.690787019938725,44.85481154601836,14.390826441300998,0,2023-01-04,NA +NM,C,yes,10,27604,5,1000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,2.0371437125447556,16.643658778352314,0.1018983983031235,0,2023-01-04,NA +NM,C,yes,11,91578,6,10000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,-0.14059865717500838,8.477074200774332,0.16043133848897279,1,2023-01-04,no +CA,A,YES,1,04971,1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,0.6741893206279964,20.52304747265837,1.3483786412559928,1,2023-01-05,no +CA,A,YES,2,31809,1,30000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,9.213432438093243,467.54870027586674,19.104719267310756,0,2023-01-05,no +CA,A,YES,4,12078,3,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,105.40816229939371,332.0959006655594,17.309586785263622,0,2023-01-05,no +CA,A,YES,4,12078,4,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,0.9693694950545131,8.274179546191354,1.9387389901090262,1,2023-01-05,no +WA,B,Yes,6,31928,1,2000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,293.372952930381,83.3920227790324,1.1330846161238484,0,2023-01-05,no +NM,C,yes,10,27604,5,1000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,0.05078059327057802,814.7988536447767,0.3518105889345592,1,2023-01-05,NA +NM,C,yes,11,91578,6,10000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,1.0543294986626754,77.89632981660215,0.7233458885830267,0,2023-01-05,NA +CA,A,YES,1,04971,1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,11.917227178713146,18.02822613418176,2.7315453798288956,0,2023-01-06,NA +CA,A,YES,2,31809,1,30000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,51.94043404667794,99.73155755071176,12.01622056070663,0,2023-01-06,y +CA,A,YES,4,12078,3,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,62.57132662203255,8.865505807767626,2.941917084707746,0,2023-01-06,NA +CA,A,YES,4,12078,4,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,32.244377683448256,220.47509528547852,11.775924849564442,0,2023-01-06,yes +WA,B,Yes,6,31928,1,2000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,661.1820611975214,9.235676726791054,3.908097932696782,0,2023-01-06,y +WA,B,Yes,7,07528,1,100000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,8.78196358452969,105.21353472717601,14.86860612818895,0,2023-01-06,NA +WA,B,Yes,9,14396,2,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,65.8794464791104,78.75667911237066,4.550292350271927,0,2023-01-06,result is not quantifiable +NM,C,yes,10,27604,5,1000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,0.7905438180592764,197.65608933880296,1.0915738137232576,1,2023-01-06,NA +NM,C,yes,11,91578,6,10000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,-0.18539681942192834,70.67471715756251,0.11563317624205283,1,2023-01-06,NA +CA,A,YES,1,04971,1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,521.4482122070327,177.2417430876511,1.0293360181042364,0,2023-01-07,NA +CA,A,YES,4,12078,3,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,339.87932515251276,760.3278706484415,19.170134988503573,0,2023-01-07,NA +CA,A,YES,4,12078,4,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,24.267629166826836,734.2385186628919,5.6382099008339335,0,2023-01-07,NA +WA,B,Yes,6,31928,1,2000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,177.4833931184256,43.96399978434991,1.3693087230193897,0,2023-01-07,NA +WA,B,Yes,7,07528,1,100000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,14.27431798158416,6.517668307294351,3.4008803156596836,0,2023-01-07,NA +WA,B,Yes,8,97385,2,50000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,137.20250183458862,308.88085874008095,1.8914415671146554,0,2023-01-07,no +NM,C,yes,10,27604,5,1000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,1.5574348710725703,36.94506053036365,0.015389978853004065,0,2023-01-07,NA +NM,C,yes,11,91578,6,10000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,1.421700131005064,18.303770404633134,1.2845080250231884,0,2023-01-07,NA +ZZ,F,NO,14,09634,3,8472,wwtp,raw wastewater,copies/g dry sludge,sars-cov-2,62.55157839741537,210.8539351550834,7.65256236552534,0,2023-01-07,NA +CA,A,YES,1,04971,1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,131.30679750544832,359.54013723174427,1.7967577817836142,0,2023-01-08,NA +CA,A,YES,2,31809,1,30000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,690.6411503137712,7.362639187526764,4.746511552418034,0,2023-01-08,no +CA,A,YES,4,12078,3,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,5.803335900572163,87.02906434858058,13.709835921006245,0,2023-01-08,NA +CA,A,YES,4,12078,4,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,152.32124636799452,32.25317457398982,14.221600706427989,0,2023-01-08,NA +WA,B,Yes,6,31928,1,2000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,6.408874139696166,12.407714498649254,8.69955762720997,0,2023-01-08,NA +WA,B,Yes,7,07528,1,100000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,6.452718763896252,79.10056984823339,1.46519908277987,0,2023-01-08,no +WA,B,Yes,8,97385,2,50000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,821.2964027322233,287.3360386844041,4.634604139930713,0,2023-01-08,NA +WA,B,Yes,9,14396,2,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,16.598803750091392,23.08901523781061,19.659377267354607,0,2023-01-08,NA +NM,C,yes,11,91578,6,10000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,1.2016890011336943,173.53867556998992,1.2759719511813978,0,2023-01-08,temperature not assessed upon arrival at the laboratory +CA,A,YES,1,04971,1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,10.145581141014883,38.471620515982444,4.204687765288971,0,2023-01-09,NA +CA,A,YES,2,31809,1,30000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,332.68665374034987,5.186752497468046,7.039870865907318,0,2023-01-09,no +CA,A,YES,4,12078,3,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,909.2718230213907,95.62537352340955,1.211119201600031,0,2023-01-09,no +CA,A,YES,4,12078,4,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,471.71923193370566,44.59725966999692,3.35533588059495,0,2023-01-09,NA +WA,B,Yes,6,31928,1,2000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,34.87247567690326,248.9636961803126,1.4960641475089012,0,2023-01-09,no +WA,B,Yes,7,07528,1,100000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,11.495592763655702,39.13385631233105,3.9814621547285354,0,2023-01-09,> max temp and/or hold time +WA,B,Yes,9,14396,2,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,65.61180498764986,136.0683646239188,4.314202773212136,0,2023-01-09,result is not quantifiable +NM,C,yes,10,27604,5,1000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,2.885415702225869,351.03049549927937,1.1103951101380294,0,2023-01-09,y +NM,C,yes,11,91578,6,10000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,2.780835821161669,159.95578342572534,0.6588162693304195,0,2023-01-09,NA +CA,A,YES,1,04971,1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,25.78457079057178,5.312387660424927,8.871589067317199,0,2023-01-10,NA +CA,A,YES,2,31809,1,30000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,9.927658223343428,388.0424407801104,18.9200986030612,0,2023-01-10,NA +CA,A,YES,4,12078,3,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,58.731333743180485,9.137731244097838,1.5513755587507887,0,2023-01-10,NA +CA,A,YES,5,34687,3,1000000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,6.400543374601076,191.5471770338321,1.3813037709408231,0,2023-01-10,NA +CA,A,YES,4,12078,4,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,615.6672698290056,391.83983760118497,22.694932696240812,0,2023-01-10,no +CA,A,YES,5,34687,4,1000000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,896.5532914720403,151.96565798603766,3.227220996362399,0,2023-01-10,no +WA,B,Yes,6,31928,1,2000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,12.337628290713585,81.97642740200946,10.31261223992233,0,2023-01-10,NA +WA,B,Yes,8,97385,2,50000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,10.656916381741485,22.895855658755295,1.0831517913830018,0,2023-01-10,NA +WA,B,Yes,9,14396,2,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,10.505560111445298,6.037383599591004,21.011120222890597,1,2023-01-10,NA +NM,C,yes,11,91578,6,10000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,2.8559477414250343,10.007681049446875,0.9733984415971332,0,2023-01-10,NA +CA,A,YES,1,04971,1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,12.286683603569443,355.21081413629145,24.573367207138887,1,2023-01-11,no +CA,A,YES,2,31809,1,30000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,6.811702797589217,71.10128114633655,4.9183009345096265,0,2023-01-11,NA +CA,A,YES,4,12078,3,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,5.628004007672834,59.63648010473265,6.072753827051153,0,2023-01-11,NA +CA,A,YES,4,12078,4,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,6.277535074850094,11.71195910581476,12.555070149700189,1,2023-01-11,NA +WA,B,Yes,6,31928,1,2000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,117.70121730042058,49.73018704466841,4.52632345989394,0,2023-01-11,NA +WA,B,Yes,7,07528,1,100000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,22.513746889067654,29.006369154559778,3.6456603526056863,0,2023-01-11,NA +WA,B,Yes,8,97385,2,50000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,6.699328104770948,53.68909630207695,18.258572955498895,0,2023-01-11,no +WA,B,Yes,9,14396,2,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,37.02286990746543,6.218667479820192,6.137656519134712,0,2023-01-11,NA +NM,C,yes,10,27604,5,1000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,1.9190310586915884,18.153400325556547,0.9659718998696941,0,2023-01-11,NA +NM,C,yes,11,91578,6,10000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,1.2764780702330636,8.637070751610635,0.46449944968220436,0,2023-01-11,NA +XX,D,ye,15,98436,10,1000000000,wwtp,raw wastewater,copies/l wastewater,FLUAV,12.694081385868751,7.329719106319113,1.0494477977485082,0,2023-01-11,NA +ZZ,F,NO,13,65174,2,8472,wwtp,raw wastewater,copies/g dry sludge,sars-cov-2,456.63354567581274,47.08633818823485,8.466017464898515,0,2023-01-11,NA +CA,A,YES,1,04971,1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,5.805642914082082,24.45507289087341,2.313825261175917,0,2023-01-12,NA +CA,A,YES,2,31809,1,30000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,19.44718987764599,40.203764632495684,1.0905164782503574,0,2023-01-12,no +CA,A,YES,4,12078,3,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,406.1682285142044,182.75552755410317,11.065053145208116,0,2023-01-12,NA +CA,A,YES,4,12078,4,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,66.32166767073055,16.749457921748586,5.45899388909348,0,2023-01-12,NA +WA,B,Yes,6,31928,1,2000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,8.509899618392536,103.06717296936746,2.3869633498675435,0,2023-01-12,NA +WA,B,Yes,7,07528,1,100000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,432.0649042180794,527.9723470794902,1.004104510783298,0,2023-01-12,NA +WA,B,Yes,8,97385,2,50000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,42.181350795398465,116.77287742885648,9.719964389544671,0,2023-01-12,NA +WA,B,Yes,9,14396,2,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,299.74807000174496,648.1111978177291,13.009797047536873,0,2023-01-12,y +NM,C,yes,11,91578,6,10000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,1.309822094411865,19.204585969094797,0.8375484672231703,0,2023-01-12,NA +CA,A,YES,1,04971,1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,164.05594243893796,395.07512339116994,6.521506611074547,0,2023-01-13,NA +CA,A,YES,2,31809,1,30000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,7.067189807481014,8.143104172197086,1.31190507988112,0,2023-01-13,NA +CA,A,YES,4,12078,4,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,20.668281743022384,6.767658180542428,5.350108435953022,0,2023-01-13,no +WA,B,Yes,6,31928,1,2000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,96.0092791625505,10.946085495005368,5.45077171046834,0,2023-01-13,NA +WA,B,Yes,7,07528,1,100000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,1.7295987093645164,26.87041153519793,3.459197418729033,1,2023-01-13,NA +WA,B,Yes,9,14396,2,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,9.034912516100114,22.351243840903013,6.19113281635205,0,2023-01-13,NA +NM,C,yes,10,27604,5,1000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,0.3250037772000478,47.458536978029834,0.626033772864029,1,2023-01-13,no +NM,C,yes,11,91578,6,10000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,2.404008614288464,66.19495041727531,0.8609710536047737,0,2023-01-13,NA +YY,E,No,12,32541,1,13,upstream,primary sludge,copies/g dry sludge,sars-cov-2,0.988911760903357,913.7650175746188,1.977823521806714,1,2023-01-13,NA +CA,A,YES,2,31809,1,30000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,139.9026637757234,19.35698296935395,2.6019121973694945,0,2023-01-14,below loq +CA,A,YES,4,12078,3,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,685.5529370076822,32.5081314819729,3.5254470765823758,0,2023-01-14,NA +CA,A,YES,4,12078,4,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,125.55114410035812,16.769759239273125,10.443100783639888,0,2023-01-14,NA +WA,B,Yes,6,31928,1,2000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,532.3347609753455,423.9301289145801,1.5906633424573682,0,2023-01-14,NA +WA,B,Yes,7,07528,1,100000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,141.22139840745226,19.457990196094233,1.1894997182825309,0,2023-01-14,NA +WA,B,Yes,8,97385,2,50000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,491.3249448660555,57.31987839122089,21.635482672228033,0,2023-01-14,NA +WA,B,Yes,9,14396,2,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,663.291603218385,415.5687611832833,1.085896864015427,0,2023-01-14,NA +NM,C,yes,10,27604,5,1000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,2.0077470638584316,28.769392752861677,1.2871716307244851,0,2023-01-14,NA +NM,C,yes,11,91578,6,10000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,2.4169543327984786,72.75685852787738,0.5125753166842177,0,2023-01-14,NA +CA,A,YES,1,04971,1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,2.8135112007183563,43.47218034808254,5.6270224014367125,1,2023-01-15,NA +CA,A,YES,2,31809,1,30000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,2.893614726205544,21.83701015300171,5.787229452411088,1,2023-01-15,NA +CA,A,YES,4,12078,3,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,11.158014543873952,19.259977815897816,1.6244820620583074,0,2023-01-15,temperature not assessed upon arrival at the laboratory +CA,A,YES,4,12078,4,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,177.41317655177008,177.32874626625346,8.404587197692639,0,2023-01-15,NA +WA,B,Yes,6,31928,1,2000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,541.8182179417457,10.901547157426906,1.5837425856449976,0,2023-01-15,NA +WA,B,Yes,7,07528,1,100000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,103.0228091253949,848.558656969157,6.5956000522480345,0,2023-01-15,NA +WA,B,Yes,8,97385,2,50000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,60.30230501674837,7.215824222592436,9.743599391588965,0,2023-01-15,NA +WA,B,Yes,9,14396,2,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,145.42306914087774,121.64141586332515,3.866020629940402,0,2023-01-15,result is not quantifiable +NM,C,yes,10,27604,5,1000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,2.403108102691187,14.04002632865471,1.3852148072601094,0,2023-01-15,temperature not assessed upon arrival at the laboratory +NM,C,yes,11,91578,6,10000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,1.0346387310851741,99.34613229408048,0.12024822764162499,0,2023-01-15,temperature not assessed upon arrival at the laboratory +XX,D,ye,13,65174,10,1000000000,wwtp,raw wastewater,copies/l wastewater,FLUAV,56.69014470402034,393.7601646806122,3.383593646869905,0,2023-01-15,NA +CA,A,YES,1,04971,1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,632.8401179640316,12.224419039706119,2.4220839813602884,0,2023-01-16,NA +CA,A,YES,2,31809,1,30000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,36.437595766791006,34.051180914187746,1.6254244912916882,0,2023-01-16,no +CA,A,YES,4,12078,3,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,297.3302317904181,401.17364384539303,9.87258502299475,0,2023-01-16,NA +CA,A,YES,4,12078,4,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,996.3301269518645,716.9768503635777,7.262153111508785,0,2023-01-16,no +WA,B,Yes,6,31928,1,2000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,224.30359201433757,388.66246571436386,1.2963794216212479,0,2023-01-16,no +WA,B,Yes,7,07528,1,100000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,86.18583858723275,18.98330712581169,8.454855376322739,0,2023-01-16,NA +WA,B,Yes,8,97385,2,50000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,39.787407589139285,9.321144696730963,12.862416580432402,0,2023-01-16,NA +WA,B,Yes,9,14396,2,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,70.43920442807422,10.107684327570373,3.3261656700476827,0,2023-01-16,NA +NM,C,yes,11,91578,6,10000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,0.8321668281694808,34.74190472778599,1.133196823833462,1,2023-01-16,below loq +XX,D,ye,15,98436,10,1000000000,wwtp,raw wastewater,copies/l wastewater,FLUAV,68.76978974336204,8.945084051899727,17.13221995466942,0,2023-01-16,NA +ZZ,F,NO,12,32541,1,8472,wwtp,raw wastewater,copies/g dry sludge,sars-cov-2,135.51672834177882,426.12127776912934,8.442434121409349,0,2023-01-16,NA +CA,A,YES,1,04971,1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,236.3829208832575,70.41303977777574,22.48688884133083,0,2023-01-17,no +CA,A,YES,2,31809,1,30000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,14.905461421620513,654.4029988440628,5.658387022894478,0,2023-01-17,no +CA,A,YES,5,34687,3,1000000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,14.96946780095108,7.52064900643304,1.3927662713952733,0,2023-01-17,no +CA,A,YES,4,12078,4,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,25.69083947943441,26.266272232406603,8.625654472821527,0,2023-01-17,NA +CA,A,YES,5,34687,4,1000000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,13.56862327150862,44.52048579470506,1.0049832763717805,0,2023-01-17,NA +WA,B,Yes,6,31928,1,2000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,78.17670563937182,40.49338892272207,3.2470445686183287,0,2023-01-17,NA +WA,B,Yes,7,07528,1,100000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,13.256884947615685,196.88346637585602,5.546666029155501,0,2023-01-17,y +WA,B,Yes,8,97385,2,50000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,2.987293679567218,115.24536163359764,5.974587359134436,1,2023-01-17,NA +WA,B,Yes,9,14396,2,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,2.8789863912248874,11.109698926579298,5.757972782449775,1,2023-01-17,NA +NM,C,yes,10,27604,5,1000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,1.143331880577684,30.683035959603508,0.7685363082971409,0,2023-01-17,NA +NM,C,yes,11,91578,6,10000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,2.9352758756073856,101.20949274243777,0.817111810674234,0,2023-01-17,no +CA,A,YES,1,04971,1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,289.68812960182566,356.71546463539164,5.989158818609282,0,2023-01-18,NA +CA,A,YES,2,31809,1,30000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,8.141488677344599,10.106787638088505,1.786335366416635,0,2023-01-18,NA +CA,A,YES,4,12078,3,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,348.18954712932003,566.3514558041516,9.564428529714396,0,2023-01-18,NA +WA,B,Yes,6,31928,1,2000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,70.31256445299974,444.63422358497667,1.5519225823961627,0,2023-01-18,no +WA,B,Yes,7,07528,1,100000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,237.28164446475813,216.03447864094858,18.301737767620455,0,2023-01-18,no +WA,B,Yes,8,97385,2,50000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,313.30894461015595,356.35107727233486,18.25696449276984,0,2023-01-18,> max temp and/or hold time +WA,B,Yes,9,14396,2,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,21.098923501980277,5.399623633367948,15.878066541258196,0,2023-01-18,NA +NM,C,yes,10,27604,5,1000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,2.3432421925110125,19.167766197915537,0.7435611458771272,0,2023-01-18,NA +NM,C,yes,11,91578,6,10000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,0.8541439983467669,42.17035049722412,1.1551739940107482,1,2023-01-18,NA +XX,D,ye,13,65174,10,1000000000,wwtp,raw wastewater,copies/l wastewater,FLUAV,3.0807037766533982,494.5700077765639,6.1614075533067965,1,2023-01-18,NA +YY,E,No,13,65174,2,13,upstream,primary sludge,copies/g dry sludge,sars-cov-2,414.3276152103089,601.7222517889131,2.122932988478446,0,2023-01-18,NA +CA,A,YES,1,04971,1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,7.79602795207444,19.92412929908597,1.4943600748960477,0,2023-01-19,NA +CA,A,YES,2,31809,1,30000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,306.13317174325095,464.775983801532,6.1760747272047585,0,2023-01-19,NA +CA,A,YES,4,12078,3,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,0.5027486094028235,462.13509119759544,1.005497218805647,1,2023-01-19,NA +WA,B,Yes,6,31928,1,2000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,215.49555011237982,289.71627111028477,21.433474267868558,0,2023-01-19,NA +WA,B,Yes,7,07528,1,100000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,1.7136822572700443,783.5772172028877,3.4273645145400886,1,2023-01-19,yes +WA,B,Yes,8,97385,2,50000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,29.574774722513,20.45645719529841,5.443076278674264,0,2023-01-19,NA +WA,B,Yes,9,14396,2,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,568.7106216236186,7.879249044194013,3.4905652020646643,0,2023-01-19,NA +NM,C,yes,10,27604,5,1000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,1.2236735182375196,16.81647738230983,0.18414728261815422,0,2023-01-19,NA +NM,C,yes,11,91578,6,10000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,2.0150771179599927,29.10049041164487,1.1291418930163737,0,2023-01-19,NA +CA,A,YES,1,04971,1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,103.2642046732852,5.814870566547347,11.602114739709226,0,2023-01-20,NA +CA,A,YES,2,31809,1,30000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,122.41214198032966,259.49349703379596,1.598403779569477,0,2023-01-20,NA +CA,A,YES,4,12078,3,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,81.86193115818583,41.86244658297052,20.232306962509405,0,2023-01-20,NA +CA,A,YES,4,12078,4,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,1.4251806032831906,286.24515648806636,2.8503612065663813,1,2023-01-20,no +WA,B,Yes,6,31928,1,2000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,201.23303389756353,16.451382197185772,20.021318134243305,0,2023-01-20,NA +WA,B,Yes,7,07528,1,100000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,756.7769895417883,160.70977903472937,5.548038483776634,0,2023-01-20,NA +WA,B,Yes,8,97385,2,50000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,104.14929192418167,69.4847962921983,19.109134845799755,0,2023-01-20,y +WA,B,Yes,9,14396,2,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,68.08611267500726,113.68409882934158,2.865003211968211,0,2023-01-20,NA +NM,C,yes,10,27604,5,1000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,1.843175810609984,49.523107462612565,0.4251905826721891,0,2023-01-20,no +NM,C,yes,11,91578,6,10000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,0.9145073336895877,168.02553578904363,0.007447682191439161,0,2023-01-20,NA +XX,D,ye,12,32541,10,1000000000,wwtp,raw wastewater,copies/l wastewater,FLUAV,803.4571253171747,136.55109830877655,4.7265355889827605,0,2023-01-20,temperature not assessed upon arrival at the laboratory +ZZ,F,NO,13,65174,2,8472,wwtp,raw wastewater,copies/g dry sludge,sars-cov-2,5.11580838822335,193.54000239526147,2.424713521902825,0,2023-01-20,NA +CA,A,YES,1,04971,1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,260.509256741051,749.4630810279345,6.307817618056269,0,2023-01-21,NA +CA,A,YES,2,31809,1,30000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,97.72824871596048,138.94851800465568,2.126669537839003,0,2023-01-21,NA +CA,A,YES,4,12078,4,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,134.998794085979,70.4671732544781,1.4395557466800735,0,2023-01-21,NA +WA,B,Yes,6,31928,1,2000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,5.158667463224353,232.2343659194519,3.611688522332628,0,2023-01-21,NA +WA,B,Yes,7,07528,1,100000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,7.742367365272937,11.541731418626943,6.054905700117429,0,2023-01-21,NA +WA,B,Yes,8,97385,2,50000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,13.682976182206449,26.597886093805492,4.7718765369549,0,2023-01-21,NA +WA,B,Yes,9,14396,2,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,406.83485287388635,24.02879102615582,1.5046238102057574,0,2023-01-21,no +NM,C,yes,10,27604,5,1000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,1.6137411930745136,183.0026740748744,1.1722579697564341,0,2023-01-21,NA +CA,A,YES,1,04971,1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,40.45204295439143,13.660265247606043,13.910212931525614,0,2023-01-22,NA +CA,A,YES,2,31809,1,30000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,321.62912370113264,30.23251957964165,5.276804697923777,0,2023-01-22,NA +CA,A,YES,4,12078,3,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,155.0613518200385,44.980610482006554,22.137322660998443,0,2023-01-22,NA +CA,A,YES,4,12078,4,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,10.759587967953939,54.71240692270756,21.519175935907878,1,2023-01-22,NA +WA,B,Yes,6,31928,1,2000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,269.083673256451,179.6342712848203,2.2292711832368153,0,2023-01-22,temperature not assessed upon arrival at the laboratory +WA,B,Yes,7,07528,1,100000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,0.5456469474753993,265.2781010391292,1.0912938949507986,1,2023-01-22,NA +WA,B,Yes,8,97385,2,50000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,238.10661965953364,805.6989709825211,3.098589615159992,0,2023-01-22,NA +WA,B,Yes,9,14396,2,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,466.72046938122975,977.874236607463,1.9765069242332014,0,2023-01-22,NA +NM,C,yes,10,27604,5,1000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,2.337993063809855,901.1432450089196,0.4391614700824327,0,2023-01-22,no +NM,C,yes,11,91578,6,10000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,2.2522941675025807,100.29423835344085,0.3948295896377767,0,2023-01-22,NA +XX,D,ye,12,32541,10,1000000000,wwtp,raw wastewater,copies/l wastewater,FLUAV,882.8295001437226,640.7885699797939,2.577651108783669,0,2023-01-22,no +XX,D,ye,13,65174,10,1000000000,wwtp,raw wastewater,copies/l wastewater,FLUAV,404.72664655904003,860.3990497627694,11.291638913382435,0,2023-01-22,NA +XX,D,ye,15,98436,10,1000000000,wwtp,raw wastewater,copies/l wastewater,FLUAV,21.437380096872687,120.20376617792512,9.087572955168046,0,2023-01-22,no +YY,E,No,14,09634,3,13,upstream,primary sludge,copies/g dry sludge,sars-cov-2,52.4904982368234,43.34837692043038,1.8407282030349492,0,2023-01-22,NA +CA,A,YES,1,04971,1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,17.666520139477633,10.127875083418793,19.803401555625793,0,2023-01-23,NA +CA,A,YES,2,31809,1,30000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,36.1060134606152,76.39784543054549,4.627565454833862,0,2023-01-23,NA +CA,A,YES,4,12078,3,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,5.5485088848553765,138.4158068122119,3.6685179725953256,0,2023-01-23,NA +CA,A,YES,4,12078,4,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,394.7123649531898,23.570814953547,5.588583688070053,0,2023-01-23,yes +WA,B,Yes,6,31928,1,2000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,290.6173745250686,304.1201720079703,2.477717183618308,0,2023-01-23,NA +WA,B,Yes,7,07528,1,100000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,320.3183862969877,395.0088214447861,8.157449812486812,0,2023-01-23,below loq +WA,B,Yes,8,97385,2,50000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,646.8810771253503,95.61209718916973,19.822252780052455,0,2023-01-23,NA +WA,B,Yes,9,14396,2,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,311.01625335114124,5.204735562398545,8.098384475075749,0,2023-01-23,no +NM,C,yes,10,27604,5,1000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,1.6667585450872147,58.783791392361124,0.7582909704443117,0,2023-01-23,NA +NM,C,yes,11,91578,6,10000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,0.6349732285274168,800.5142198789868,0.936003224191398,1,2023-01-23,NA +CA,A,YES,1,04971,1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,328.77787163502705,83.36518324074643,1.2192699469400203,0,2023-01-24,NA +CA,A,YES,2,31809,1,30000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,284.8536793579486,30.053574914421993,3.7727797575594777,0,2023-01-24,NA +CA,A,YES,4,12078,3,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,8.020263842534687,9.530036329157536,4.8581445181548935,0,2023-01-24,NA +CA,A,YES,5,34687,3,1000000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,27.591834380698437,580.8611473751317,7.009454448581375,0,2023-01-24,no +CA,A,YES,4,12078,4,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,13.409126779536637,364.3961722043428,23.35194035694984,0,2023-01-24,NA +CA,A,YES,5,34687,4,1000000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,23.791378883513556,569.4005964736075,15.608223318116881,0,2023-01-24,NA +WA,B,Yes,6,31928,1,2000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,135.07819512192518,37.357950613455586,1.0260045196785377,0,2023-01-24,NA +WA,B,Yes,7,07528,1,100000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,23.509761569662132,6.773093031915997,6.368645627704384,0,2023-01-24,no +WA,B,Yes,8,97385,2,50000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,8.90867326762054,31.22554152879125,1.6403981321468637,0,2023-01-24,NA +WA,B,Yes,9,14396,2,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,516.2856797551622,41.587346226683295,4.3657634509158605,0,2023-01-24,NA +NM,C,yes,10,27604,5,1000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,2.292145216000574,124.31395694627734,0.8806018005528857,0,2023-01-24,NA +NM,C,yes,11,91578,6,10000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,2.6632456647484126,183.56031882405125,0.3822003774740463,0,2023-01-24,NA +YY,E,No,12,32541,1,13,upstream,primary sludge,copies/g dry sludge,sars-cov-2,20.308589653879682,24.81607391430652,17.92523966687062,0,2023-01-24,no +CA,A,YES,1,04971,1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,138.33302679956105,360.73327421400006,21.9041912020723,0,2023-01-25,NA +CA,A,YES,4,12078,3,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,135.0965517596343,303.3282531353774,2.5437786616786906,0,2023-01-25,> max temp and/or hold time +CA,A,YES,4,12078,4,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,618.6090940077504,180.93925916697256,3.3630470829531594,0,2023-01-25,NA +WA,B,Yes,6,31928,1,2000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,277.5791282020149,9.880496307667432,5.090985261949685,0,2023-01-25,NA +WA,B,Yes,7,07528,1,100000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,49.77573075461759,6.512690230016329,1.1726964723402862,0,2023-01-25,no +WA,B,Yes,8,97385,2,50000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,6.0193935745246545,6.08939374475535,1.5321350896998966,0,2023-01-25,NA +WA,B,Yes,9,14396,2,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,548.4853958412981,817.5041793707269,11.98644542805899,0,2023-01-25,no +NM,C,yes,10,27604,5,1000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,1.480748537667162,31.448261185770857,1.1445946800508937,0,2023-01-25,no +NM,C,yes,11,91578,6,10000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,2.005172368484683,308.6894594474974,0.5266772836942144,0,2023-01-25,y +YY,E,No,12,32541,1,13,upstream,primary sludge,copies/g dry sludge,sars-cov-2,10.111626933394229,151.79571706844175,20.223253866788458,1,2023-01-25,NA +YY,E,No,15,98436,4,13,upstream,primary sludge,copies/g dry sludge,sars-cov-2,481.4358736157335,30.499865983027433,1.518807296004087,0,2023-01-25,result is not quantifiable +CA,A,YES,1,04971,1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,9.328578762817422,8.84809728269201,3.7340129757787976,0,2023-01-26,NA +CA,A,YES,2,31809,1,30000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,355.9679157333589,62.04743740549308,6.123814827844655,0,2023-01-26,NA +CA,A,YES,4,12078,3,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,32.49705444635645,23.88886046416477,5.100924666713219,0,2023-01-26,y +CA,A,YES,4,12078,4,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,51.362042353567304,45.2045845093206,9.803990573607825,0,2023-01-26,NA +WA,B,Yes,6,31928,1,2000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,6.799807848977796,8.67156408874369,1.627840855546493,0,2023-01-26,NA +WA,B,Yes,7,07528,1,100000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,333.52527371174165,720.4585624429182,5.365392848364999,0,2023-01-26,NA +WA,B,Yes,8,97385,2,50000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,26.181175405439532,724.4917420104347,12.852963089065417,0,2023-01-26,NA +WA,B,Yes,9,14396,2,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,29.47443345287017,623.5438410012663,3.7282945527925393,0,2023-01-26,NA +NM,C,yes,10,27604,5,1000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,2.9664432395583265,10.754979253186622,0.4415560387972022,0,2023-01-26,NA +NM,C,yes,11,91578,6,10000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,1.487929301198781,14.400617832464908,0.6915995313334659,0,2023-01-26,no +XX,D,ye,14,09634,10,1000000000,wwtp,raw wastewater,copies/l wastewater,FLUAV,34.3804254619772,420.02586967410815,5.037196334303159,0,2023-01-26,NA +CA,A,YES,1,04971,1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,6.624234663444247,676.3758121890099,13.248469326888493,1,2023-01-27,NA +CA,A,YES,2,31809,1,30000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,12.209407160343636,7.232133382092917,2.1601098912818673,0,2023-01-27,NA +CA,A,YES,4,12078,3,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,314.6375014637295,20.408566190230182,4.639711180604959,0,2023-01-27,NA +CA,A,YES,4,12078,4,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,9.425757644516645,80.14931063230614,19.628753309506365,0,2023-01-27,NA +WA,B,Yes,6,31928,1,2000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,26.945486801049366,478.1334514488874,9.26756794348223,0,2023-01-27,no +WA,B,Yes,7,07528,1,100000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,365.11403162240805,24.1085549809469,3.226935992785829,0,2023-01-27,no +WA,B,Yes,8,97385,2,50000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,396.21285625895035,23.282108069247435,11.383299456708617,0,2023-01-27,no +NM,C,yes,10,27604,5,1000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,2.5842191686971283,25.597940718539054,0.3989386997493572,0,2023-01-27,NA +NM,C,yes,11,91578,6,10000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,1.8075596249629944,478.42352367736515,0.1899299935386595,0,2023-01-27,NA +ZZ,F,NO,14,09634,3,8472,wwtp,raw wastewater,copies/g dry sludge,sars-cov-2,9.672377940423436,6.428477048138668,4.591763639719992,0,2023-01-27,no +CA,A,YES,1,04971,1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,217.18311574688119,210.68691679343732,1.083315522601008,0,2023-01-28,> max temp and/or hold time +CA,A,YES,2,31809,1,30000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,51.59143891731625,11.916425004334544,15.757811618162995,0,2023-01-28,NA +CA,A,YES,4,12078,3,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,299.94997972292424,74.89757745870757,20.711695926081383,0,2023-01-28,NA +CA,A,YES,4,12078,4,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,0.5684788354997882,435.598195141075,1.1369576709995763,1,2023-01-28,NA +WA,B,Yes,6,31928,1,2000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,149.72148140646118,64.08095433494701,4.943832960435076,0,2023-01-28,NA +WA,B,Yes,7,07528,1,100000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,657.0660361809229,37.48438675004846,3.3211668971862696,0,2023-01-28,NA +WA,B,Yes,8,97385,2,50000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,718.1161199756948,163.33976423764327,6.269041721580137,0,2023-01-28,NA +WA,B,Yes,9,14396,2,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,38.32790168254147,623.5758786648391,22.580147948169653,0,2023-01-28,NA +NM,C,yes,10,27604,5,1000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,1.0346842586094893,343.14621025625723,0.11433932555462889,0,2023-01-28,NA +NM,C,yes,11,91578,6,10000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,2.37709697209051,41.272380300827685,1.0102363278120257,0,2023-01-28,NA +YY,E,No,14,09634,3,13,upstream,primary sludge,copies/g dry sludge,sars-cov-2,730.0147753108231,55.529689312050664,1.3159731786348885,0,2023-01-28,no +ZZ,F,NO,13,65174,2,8472,wwtp,raw wastewater,copies/g dry sludge,sars-cov-2,207.31955275313456,23.65128861950823,11.51907119348711,0,2023-01-28,no +CA,A,YES,1,04971,1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,289.6888018012041,12.186631110177862,5.699175937236678,0,2023-01-29,no +CA,A,YES,2,31809,1,30000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,21.329204225856117,385.0533558978367,10.583829822675794,0,2023-01-29,NA +CA,A,YES,4,12078,3,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,53.11179734854606,23.24124229097715,3.2398640591945953,0,2023-01-29,no +WA,B,Yes,6,31928,1,2000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,301.31166839716354,148.24387063960305,1.087629233391115,0,2023-01-29,NA +WA,B,Yes,7,07528,1,100000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,15.479445618816932,8.136414652575812,2.6649134665521994,0,2023-01-29,y +WA,B,Yes,8,97385,2,50000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,14.705164177513977,495.25725951441257,21.170110466868074,0,2023-01-29,NA +WA,B,Yes,9,14396,2,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,143.248333281356,432.386337894861,2.487612286674729,0,2023-01-29,yes +NM,C,yes,10,27604,5,1000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,0.20041525681581643,69.04134018020609,0.5014452524797977,1,2023-01-29,NA +NM,C,yes,11,91578,6,10000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,2.5581268199589866,7.613930458539535,0.7010876893135397,0,2023-01-29,NA +CA,A,YES,1,04971,1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,2.4337899540452472,541.6026112926763,4.8675799080904945,1,2023-01-30,NA +CA,A,YES,4,12078,3,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,31.57216795771621,64.28640207766581,7.092061280498464,0,2023-01-30,NA +CA,A,YES,4,12078,4,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,22.591060831366768,26.722281332326776,5.808664988355861,0,2023-01-30,NA +WA,B,Yes,6,31928,1,2000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,21.473073860544346,95.16273227196038,1.5150120356366488,0,2023-01-30,NA +WA,B,Yes,7,07528,1,100000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,197.71560614442018,386.5913071762268,10.958507298542244,0,2023-01-30,NA +WA,B,Yes,8,97385,2,50000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,446.3323037045921,145.2491436823739,17.156970453045762,0,2023-01-30,NA +NM,C,yes,10,27604,5,1000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,2.893090891489194,63.642010489879496,0.3593943293178801,0,2023-01-30,NA +NM,C,yes,11,91578,6,10000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,0.8783642285197524,10.53940055434671,0.3008368551794367,0,2023-01-30,> max temp and/or hold time +XX,D,ye,12,32541,10,1000000000,wwtp,raw wastewater,copies/l wastewater,FLUAV,79.70782874204784,17.671732544338127,1.9559914962536087,0,2023-01-30,NA +CA,A,YES,1,04971,1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,13.82721164208279,6.021428455246692,1.0250892949476675,0,2023-01-31,NA +CA,A,YES,2,31809,1,30000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,1.835298210003826,9.100682890365364,3.670596420007652,1,2023-01-31,y +CA,A,YES,4,12078,3,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,1.672435573532772,7.64320342925198,3.344871147065544,1,2023-01-31,NA +CA,A,YES,5,34687,3,1000000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,6.448425465052048,26.641340333632552,15.023179396429876,0,2023-01-31,NA +CA,A,YES,4,12078,4,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,46.46574530469409,31.93189285934334,10.63677237194646,0,2023-01-31,NA +CA,A,YES,5,34687,4,1000000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,5.387921707544142,84.79424485209003,10.775843415088284,1,2023-01-31,below loq +WA,B,Yes,6,31928,1,2000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,31.133401616727127,568.0570635934372,2.859741665677186,0,2023-01-31,NA +WA,B,Yes,7,07528,1,100000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,678.2869411407843,53.58106806376892,12.889546726634627,0,2023-01-31,NA +WA,B,Yes,8,97385,2,50000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,612.1672577203768,28.43368588202369,13.604990112452253,0,2023-01-31,NA +WA,B,Yes,9,14396,2,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,849.3779358753316,6.409224577273975,24.22686551854024,0,2023-01-31,NA +NM,C,yes,10,27604,5,1000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,2.5379202952160353,39.339055282510536,1.2125602497941623,0,2023-01-31,no +NM,C,yes,11,91578,6,10000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,1.0727064699006164,22.575325140881382,0.22748404840855116,0,2023-01-31,NA +XX,D,ye,14,09634,10,1000000000,wwtp,raw wastewater,copies/l wastewater,FLUAV,391.888870161768,140.42276334509128,4.721303128622876,0,2023-01-31,NA +XX,D,ye,15,98436,10,1000000000,wwtp,raw wastewater,copies/l wastewater,FLUAV,92.87369611467575,26.305207506256373,10.835275255844284,0,2023-01-31,NA +CA,A,YES,1,04971,1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,66.73897564847593,6.38105523650712,3.8713058962796816,0,2023-02-01,NA +CA,A,YES,2,31809,1,30000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,188.61607843839352,46.19107449073388,1.239523788927882,0,2023-02-01,NA +CA,A,YES,4,12078,3,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,208.53271839797665,694.0037736798627,5.226708828886194,0,2023-02-01,NA +CA,A,YES,4,12078,4,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,73.476874788484,440.98584091397856,4.426868836864933,0,2023-02-01,NA +WA,B,Yes,6,31928,1,2000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,257.43834697052165,208.80187090085778,3.6797231858698405,0,2023-02-01,NA +WA,B,Yes,7,07528,1,100000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,955.3517728519003,141.43022160641425,4.764679986673232,0,2023-02-01,NA +WA,B,Yes,8,97385,2,50000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,68.97609646759618,498.110389601371,5.135349852059051,0,2023-02-01,NA +WA,B,Yes,9,14396,2,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,4.223326353869056,44.61407496300907,8.446652707738112,1,2023-02-01,NA +NM,C,yes,10,27604,5,1000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,0.102596266322803,947.6088251324358,0.4036262619867842,1,2023-02-01,NA +ZZ,F,NO,12,32541,1,8472,wwtp,raw wastewater,copies/g dry sludge,sars-cov-2,25.540771964804886,808.133160849064,4.558116694393982,0,2023-02-01,NA +ZZ,F,NO,14,09634,3,8472,wwtp,raw wastewater,copies/g dry sludge,sars-cov-2,84.23735448471687,12.541185989167685,11.701213170815196,0,2023-02-01,yes +CA,A,YES,1,04971,1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,13.047102928555004,51.050394457828354,20.101885729743387,0,2023-02-02,below loq +CA,A,YES,4,12078,4,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,13.55723029618432,9.944896930988406,15.63562992133033,0,2023-02-02,NA +WA,B,Yes,6,31928,1,2000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,5.6439838340373605,134.32277764467858,7.856527967929066,0,2023-02-02,no +WA,B,Yes,7,07528,1,100000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,191.22411483095232,16.477580532489196,13.9144867220376,0,2023-02-02,no +WA,B,Yes,8,97385,2,50000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,2.5195035918167683,453.979213280071,5.039007183633537,1,2023-02-02,result is not quantifiable +WA,B,Yes,9,14396,2,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,37.914159978131806,26.050805383285905,3.3186565309966913,0,2023-02-02,NA +NM,C,yes,10,27604,5,1000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,2.9413198948781702,322.6762550255326,1.245188607472911,0,2023-02-02,NA +NM,C,yes,11,91578,6,10000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,2.4128066466997202,96.41583338847116,0.09677275641250235,0,2023-02-02,NA +XX,D,ye,13,65174,10,1000000000,wwtp,raw wastewater,copies/l wastewater,FLUAV,341.8510038167221,952.3035479561282,10.27615425581342,0,2023-02-02,temperature not assessed upon arrival at the laboratory +YY,E,No,15,98436,4,13,upstream,primary sludge,copies/g dry sludge,sars-cov-2,7.133673799941099,54.85634227500369,6.050891649875597,0,2023-02-02,NA +CA,A,YES,2,31809,1,30000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,757.0573443619562,200.38345545665464,2.5626400078432092,0,2023-02-03,no +CA,A,YES,4,12078,3,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,18.41310152071136,34.804157183358846,2.9385001424293486,0,2023-02-03,NA +CA,A,YES,4,12078,4,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,11.306257022433117,8.688553699112347,16.30036057079285,0,2023-02-03,NA +WA,B,Yes,6,31928,1,2000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,152.20054977036764,132.4258669111194,20.336568256032432,0,2023-02-03,NA +WA,B,Yes,7,07528,1,100000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,917.9992475147316,26.198936877962097,19.49689599505458,0,2023-02-03,NA +WA,B,Yes,8,97385,2,50000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,11.691373103239751,66.77928913375712,1.4236894708754788,0,2023-02-03,temperature not assessed upon arrival at the laboratory +WA,B,Yes,9,14396,2,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,14.657741626252527,329.1452964917317,2.881426507331583,0,2023-02-03,NA +NM,C,yes,10,27604,5,1000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,2.63145526552871,5.4225789572658405,1.0253510815905353,0,2023-02-03,NA +NM,C,yes,11,91578,6,10000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,1.919555735563699,40.980532016287626,0.20842236567227088,0,2023-02-03,NA +XX,D,ye,12,32541,10,1000000000,wwtp,raw wastewater,copies/l wastewater,FLUAV,9.255631927427881,177.64107074714565,9.638119621319293,0,2023-02-03,NA +YY,E,No,13,65174,2,13,upstream,primary sludge,copies/g dry sludge,sars-cov-2,2.6032578243761786,924.83945106976,5.206515648752357,1,2023-02-03,no +ZZ,F,NO,12,32541,1,8472,wwtp,raw wastewater,copies/g dry sludge,sars-cov-2,980.3346685982729,541.5162006690184,2.715020621781234,0,2023-02-03,NA +ZZ,F,NO,13,65174,2,8472,wwtp,raw wastewater,copies/g dry sludge,sars-cov-2,9.87950269943077,14.502760975383495,4.267051083211353,0,2023-02-03,NA +CA,A,YES,1,04971,1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,25.71421568374014,238.04162383662378,10.183439487702529,0,2023-02-04,no +CA,A,YES,2,31809,1,30000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,487.248639541455,41.91247925009177,2.2927868555741258,0,2023-02-04,NA +CA,A,YES,4,12078,3,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,854.7881696976922,12.514281776092561,2.522963315695632,0,2023-02-04,NA +CA,A,YES,4,12078,4,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,96.78507582948151,7.615539810795813,1.5871102032286302,0,2023-02-04,NA +WA,B,Yes,6,31928,1,2000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,22.41267337829998,560.3655986299398,20.80987934302243,0,2023-02-04,NA +WA,B,Yes,7,07528,1,100000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,2.077655152688752,304.7435354640638,4.155310305377504,1,2023-02-04,NA +WA,B,Yes,8,97385,2,50000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,13.645220493328909,8.400301728103852,4.396813407116788,0,2023-02-04,NA +WA,B,Yes,9,14396,2,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,8.525360081020944,32.2712815392429,14.285514150686454,0,2023-02-04,no +NM,C,yes,10,27604,5,1000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,1.1984263686289522,250.5405711864802,0.9502600786005623,0,2023-02-04,NA +NM,C,yes,11,91578,6,10000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,0.10815536893350523,102.15710926817935,0.40918536459748645,1,2023-02-04,NA +XX,D,ye,12,32541,10,1000000000,wwtp,raw wastewater,copies/l wastewater,FLUAV,6.893554189617403,89.40184366041713,7.374746965403133,0,2023-02-04,no +CA,A,YES,1,04971,1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,689.8299461380375,88.05279343129827,3.073115833003546,0,2023-02-05,NA +CA,A,YES,4,12078,3,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,5.697621222918042,323.63889750588254,3.5917156404986654,0,2023-02-05,temperature not assessed upon arrival at the laboratory +CA,A,YES,4,12078,4,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,37.67655006669244,72.9683305233421,14.964856624870379,0,2023-02-05,NA +WA,B,Yes,6,31928,1,2000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,11.426687900057091,5.428435138898313,1.7767031915939124,0,2023-02-05,NA +WA,B,Yes,7,07528,1,100000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,362.00179859055584,78.43234977707188,3.0882382154765975,0,2023-02-05,NA +WA,B,Yes,8,97385,2,50000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,367.3555035252702,367.580224915589,3.891212284787295,0,2023-02-05,no +WA,B,Yes,9,14396,2,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,91.05034120233795,307.0591598404405,1.8426035872331117,0,2023-02-05,NA +NM,C,yes,10,27604,5,1000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,0.6486532266552174,856.294091366936,0.94968322231919855,1,2023-02-05,NA +NM,C,yes,11,91578,6,10000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,2.267563318248261,128.37634308763091,0.4334954699771545,0,2023-02-05,> max temp and/or hold time +YY,E,No,15,98436,4,13,upstream,primary sludge,copies/g dry sludge,sars-cov-2,43.51361807880693,348.58351428401477,5.66814556133341,0,2023-02-05,NA +CA,A,YES,1,04971,1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,487.1800743189516,26.80129255300873,13.729088207939094,0,2023-02-06,no +CA,A,YES,2,31809,1,30000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,18.313384417993927,156.02446006488861,4.340232292086359,0,2023-02-06,no +CA,A,YES,4,12078,3,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,6.749889852835903,11.032782852623546,1.7719265545339626,0,2023-02-06,no +CA,A,YES,4,12078,4,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,41.56934752978162,140.3156934178459,11.932798995077206,0,2023-02-06,NA +WA,B,Yes,6,31928,1,2000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,666.5607815248727,28.818359823642385,11.094828707941558,0,2023-02-06,NA +WA,B,Yes,7,07528,1,100000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,106.03623854459045,45.6325461531413,2.6145533186874212,0,2023-02-06,NA +WA,B,Yes,9,14396,2,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,205.06565525715305,6.077360065661159,2.8503741157220603,0,2023-02-06,no +NM,C,yes,10,27604,5,1000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,2.058593289408069,29.332446303741694,1.0127021012002795,0,2023-02-06,NA +NM,C,yes,11,91578,6,10000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,0.8577636471126031,208.83574776457928,1.2890701076005573,0,2023-02-06,NA +ZZ,F,NO,14,09634,3,8472,wwtp,raw wastewater,copies/g dry sludge,sars-cov-2,555.9169131090603,808.802189633116,5.733693854097275,0,2023-02-06,below loq +CA,A,YES,1,04971,1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,22.145805633858085,53.19228646653339,1.796493213395071,0,2023-02-07,y +CA,A,YES,2,31809,1,30000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,950.6634872825501,659.3661533790163,3.0556026411256902,0,2023-02-07,NA +CA,A,YES,4,12078,3,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,166.2955332025867,241.50062531616834,2.579510711822856,0,2023-02-07,NA +CA,A,YES,5,34687,3,1000000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,155.40602919052714,32.046009045815204,18.863957982039132,0,2023-02-07,NA +CA,A,YES,5,34687,4,1000000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,206.77874649475413,183.28262230424306,1.4683649240357233,0,2023-02-07,temperature not assessed upon arrival at the laboratory +WA,B,Yes,6,31928,1,2000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,36.469248641609774,29.543568799825657,2.114283464440757,0,2023-02-07,no +WA,B,Yes,8,97385,2,50000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,22.022334116785338,107.04278462449535,9.121124565340267,0,2023-02-07,NA +WA,B,Yes,9,14396,2,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,410.27409498421474,41.380242600640535,6.24075198143086,0,2023-02-07,NA +NM,C,yes,10,27604,5,1000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,0.83184270632383,420.90049742307593,0.49513981933024576,0,2023-02-07,yes +NM,C,yes,11,91578,6,10000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,2.1543317546093776,16.7590713602393,0.8372679660648364,0,2023-02-07,NA +CA,A,YES,1,04971,1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,77.42659147330004,6.05283506543072,2.349344073250793,0,2023-02-08,NA +CA,A,YES,2,31809,1,30000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,179.30789811696954,31.642211026259535,1.705674515325716,0,2023-02-08,NA +CA,A,YES,4,12078,3,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,41.22393527247582,239.60794281224048,2.5170843394669875,0,2023-02-08,NA +CA,A,YES,4,12078,4,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,83.21898933944021,545.6380254123185,20.712043538546645,0,2023-02-08,NA +WA,B,Yes,6,31928,1,2000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,52.21090787857168,20.898651744638073,5.634775619774309,0,2023-02-08,NA +WA,B,Yes,7,07528,1,100000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,275.0359828254286,542.3252812208773,10.403386930465565,0,2023-02-08,NA +WA,B,Yes,8,97385,2,50000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,1.3866677814403519,859.8939124291788,2.7733355628807037,1,2023-02-08,NA +WA,B,Yes,9,14396,2,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,577.4170779169992,593.9444444469693,14.507738773896499,0,2023-02-08,NA +NM,C,yes,10,27604,5,1000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,1.5803489299391544,199.99749472015387,0.924278089010746,0,2023-02-08,NA +NM,C,yes,11,91578,6,10000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,2.8900083835911192,693.689630374196,0.2958298063738046,0,2023-02-08,NA +CA,A,YES,1,04971,1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,812.9826106403942,36.26527894451485,9.318355394326483,0,2023-02-09,NA +CA,A,YES,2,31809,1,30000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,58.81496709419618,106.12022504455213,1.6002230106207778,0,2023-02-09,NA +CA,A,YES,4,12078,3,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,343.3431146412499,5.2824260648441035,2.3682424690322543,0,2023-02-09,NA +CA,A,YES,4,12078,4,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,171.43529648525683,119.01545720314303,2.2030530541532998,0,2023-02-09,NA +WA,B,Yes,6,31928,1,2000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,175.09298648009462,45.63914307590408,11.421617712844483,0,2023-02-09,NA +WA,B,Yes,7,07528,1,100000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,11.128947279213488,320.28560924790276,4.597474543500214,0,2023-02-09,no +WA,B,Yes,8,97385,2,50000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,124.2072445232873,247.33608554176058,1.5522000618540654,0,2023-02-09,NA +WA,B,Yes,9,14396,2,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,695.0059354522365,443.5532232315415,1.7527968676901575,0,2023-02-09,no +NM,C,yes,10,27604,5,1000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,0.9792318637749995,166.3738201916728,1.2802618594389807,1,2023-02-09,NA +NM,C,yes,11,91578,6,10000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,2.7309414036927997,240.20559592957258,0.3677788298311789,0,2023-02-09,NA +ZZ,F,NO,15,98436,4,8472,wwtp,raw wastewater,copies/g dry sludge,sars-cov-2,5.354270394091138,6.091304691687146,9.4510707743411,0,2023-02-09,NA +CA,A,YES,1,04971,1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,612.8199257092496,264.1565679134045,15.825119680643422,0,2023-02-10,NA +CA,A,YES,2,31809,1,30000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,25.068353989081764,50.0360958940333,22.128478717635208,0,2023-02-10,temperature not assessed upon arrival at the laboratory +CA,A,YES,4,12078,3,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,34.41752828189917,711.188002245272,1.4981778284877636,0,2023-02-10,NA +CA,A,YES,4,12078,4,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,20.122215416166394,180.6336568057654,5.255159084782216,0,2023-02-10,y +WA,B,Yes,6,31928,1,2000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,74.64798716531446,208.29080423748468,18.425343741512823,0,2023-02-10,NA +WA,B,Yes,7,07528,1,100000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,186.66745436312686,6.483236640978133,13.726380854494069,0,2023-02-10,NA +WA,B,Yes,8,97385,2,50000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,52.73500854807239,7.401569976963654,6.781785174795238,0,2023-02-10,NA +WA,B,Yes,9,14396,2,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,6.734919684982307,7.5459281864131365,13.469839369964614,1,2023-02-10,NA +NM,C,yes,10,27604,5,1000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,2.217883349300206,865.2267833512358,1.0060218392362998,0,2023-02-10,result is not quantifiable +NM,C,yes,11,91578,6,10000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,0.6585610419352896,8.534975385086046,0.9595910375992709,1,2023-02-10,no +CA,A,YES,1,04971,1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,314.7503986972577,355.80233751648694,12.63157077178409,0,2023-02-11,NA +CA,A,YES,2,31809,1,30000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,990.293899521586,632.6046303636238,4.981723547495451,0,2023-02-11,no +CA,A,YES,4,12078,3,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,40.37592283448573,8.643644183933917,1.5387259632940757,0,2023-02-11,NA +CA,A,YES,4,12078,4,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,96.49415443725236,17.610640342157396,1.98779600518458,0,2023-02-11,NA +WA,B,Yes,7,07528,1,100000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,19.852903882184243,9.350051289981593,23.981455675522536,0,2023-02-11,no +WA,B,Yes,8,97385,2,50000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,773.0257203484232,184.78035421131548,7.711455920129094,0,2023-02-11,NA +WA,B,Yes,9,14396,2,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,10.567557509692255,320.33545715281474,21.13511501938451,1,2023-02-11,NA +NM,C,yes,10,27604,5,1000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,2.1218191425620607,108.80888021324046,0.8123397334503972,0,2023-02-11,NA +ZZ,F,NO,13,65174,2,8472,wwtp,raw wastewater,copies/g dry sludge,sars-cov-2,98.56120607383399,105.47838717817903,12.532443569901066,0,2023-02-11,yes +CA,A,YES,2,31809,1,30000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,74.51655901889292,130.11577712144495,1.3595678562994715,0,2023-02-12,NA +CA,A,YES,4,12078,3,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,215.14603278230834,65.52484024894848,6.697337153094882,0,2023-02-12,NA +CA,A,YES,4,12078,4,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,74.31925342133682,161.7395412023269,12.662826954420847,0,2023-02-12,NA +WA,B,Yes,6,31928,1,2000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,421.72072251194186,563.6680830535669,4.678075101950242,0,2023-02-12,no +WA,B,Yes,7,07528,1,100000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,5.639828625431392,181.14037175474104,4.045415878992869,0,2023-02-12,NA +WA,B,Yes,8,97385,2,50000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,32.57290476214622,87.79570136496618,1.7099287048268954,0,2023-02-12,yes +WA,B,Yes,9,14396,2,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,20.56961440402346,35.47381997189633,10.958372698389978,0,2023-02-12,no +NM,C,yes,10,27604,5,1000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,2.7106199374743167,172.43078957093235,1.1374964536254133,0,2023-02-12,NA +NM,C,yes,11,91578,6,10000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,2.462552111121334,490.80322072405033,0.19742319554213886,0,2023-02-12,no +CA,A,YES,1,04971,1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,81.25881347500219,653.9280096040354,2.6648826415257783,0,2023-02-13,NA +CA,A,YES,2,31809,1,30000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,5.395411487557759,38.84213917064014,1.8958261608896645,0,2023-02-13,NA +CA,A,YES,4,12078,3,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,209.1094824154509,23.524237707806382,8.137972534741653,0,2023-02-13,yes +CA,A,YES,4,12078,4,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,177.16156686350635,12.252234182374197,1.6174961110324442,0,2023-02-13,> max temp and/or hold time +WA,B,Yes,6,31928,1,2000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,278.17211478829796,27.3960873379447,1.331808333535425,0,2023-02-13,NA +WA,B,Yes,7,07528,1,100000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,3.7319199370098715,18.553773453864867,7.463839874019743,1,2023-02-13,NA +WA,B,Yes,8,97385,2,50000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,11.847983775680005,29.47894443470502,11.828682416214651,0,2023-02-13,no +WA,B,Yes,9,14396,2,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,521.2964079072428,11.227856507337526,3.017533732170826,0,2023-02-13,result is not quantifiable +NM,C,yes,10,27604,5,1000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,1.446367431104645,312.2584376354574,1.129455517956333,0,2023-02-13,no +NM,C,yes,11,91578,6,10000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,1.2217211032603674,599.6263649041317,0.0571878782858908,0,2023-02-13,temperature not assessed upon arrival at the laboratory +YY,E,No,13,65174,2,13,upstream,primary sludge,copies/g dry sludge,sars-cov-2,447.35463144094143,20.659681230914632,16.69156854551457,0,2023-02-13,NA +CA,A,YES,1,04971,1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,2.50735666511393,333.1255535218914,5.01471333022786,1,2023-02-14,NA +CA,A,YES,2,31809,1,30000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,937.3949039579877,29.958018337706235,12.339335825863003,0,2023-02-14,NA +CA,A,YES,4,12078,3,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,670.6211184607217,280.7963060482757,4.29525458734857,0,2023-02-14,NA +CA,A,YES,4,12078,4,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,14.7833143140836,747.6107215278645,2.1505469190720947,0,2023-02-14,NA +CA,A,YES,5,34687,4,1000000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,36.3060279145444,146.18038775681904,4.6746096492268405,0,2023-02-14,no +WA,B,Yes,6,31928,1,2000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,31.99336511056609,25.07148468062684,9.068368050626622,0,2023-02-14,NA +WA,B,Yes,7,07528,1,100000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,840.6498215878155,6.7367829895379625,18.840587824147992,0,2023-02-14,NA +WA,B,Yes,8,97385,2,50000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,78.63149083020775,120.22155468207438,1.497532403535465,0,2023-02-14,NA +WA,B,Yes,9,14396,2,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,85.49147571760332,111.35377793707082,1.7770300173057934,0,2023-02-14,NA +NM,C,yes,10,27604,5,1000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,1.221399960068312,48.57641066448648,0.6229325396058031,0,2023-02-14,no +XX,D,ye,13,65174,10,1000000000,wwtp,raw wastewater,copies/l wastewater,FLUAV,603.8662595055229,73.81653689586987,1.597500410002734,0,2023-02-14,NA +XX,D,ye,15,98436,10,1000000000,wwtp,raw wastewater,copies/l wastewater,FLUAV,20.888749907285764,373.287549139169,24.00740101489395,0,2023-02-14,NA +YY,E,No,12,32541,1,13,upstream,primary sludge,copies/g dry sludge,sars-cov-2,5.286663714892587,20.0029813551299,1.0466216487692521,0,2023-02-14,NA +CA,A,YES,1,04971,1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,5.052700248787683,15.74826735545662,10.105400497575365,1,2023-02-15,no +CA,A,YES,2,31809,1,30000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,1.9352873893478986,60.52387303757406,3.870574778695797,1,2023-02-15,NA +CA,A,YES,4,12078,3,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,1.2842785703500454,15.983567608218957,2.568557140700091,1,2023-02-15,NA +CA,A,YES,4,12078,4,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,926.2736155542457,78.09869378954305,4.617464034106609,0,2023-02-15,NA +WA,B,Yes,6,31928,1,2000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,951.7652669873343,5.648094592120505,2.0522406592637883,0,2023-02-15,NA +WA,B,Yes,8,97385,2,50000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,107.34332857568265,55.11322470918748,22.90898687455756,0,2023-02-15,NA +WA,B,Yes,9,14396,2,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,137.54496302444423,79.67635678295045,1.5464088453180767,0,2023-02-15,NA +NM,C,yes,10,27604,5,1000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,0.7194720136818241,60.70034297118233,1.0205020093458053,1,2023-02-15,NA +NM,C,yes,11,91578,6,10000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,2.513197412630603,24.20735928613179,0.917511088033159,0,2023-02-15,NA +ZZ,F,NO,14,09634,3,8472,wwtp,raw wastewater,copies/g dry sludge,sars-cov-2,10.974171814623093,196.64847576389664,10.970368150392106,0,2023-02-15,yes +CA,A,YES,1,04971,1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,6.804398813682943,89.56254239127894,13.608797627365886,1,2023-02-16,NA +CA,A,YES,2,31809,1,30000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,71.30523320972318,514.3788429754185,1.301444470125622,0,2023-02-16,no +CA,A,YES,4,12078,4,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,0.7129218814336417,79.41054123174462,1.4258437628672833,1,2023-02-16,NA +WA,B,Yes,7,07528,1,100000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,247.9346152512209,62.690070085456796,9.756379214605827,0,2023-02-16,NA +WA,B,Yes,8,97385,2,50000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,229.6668748655777,523.4652870766724,17.79501819555069,0,2023-02-16,NA +WA,B,Yes,9,14396,2,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,74.76349542178585,216.0187867481684,4.960643116660774,0,2023-02-16,NA +NM,C,yes,10,27604,5,1000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,1.6078897112089805,231.466427409066,0.896783121677392,0,2023-02-16,NA +CA,A,YES,1,04971,1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,14.382556035028882,97.66500858852643,19.278770342928855,0,2023-02-17,NA +CA,A,YES,2,31809,1,30000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,148.79587342560575,70.03519617413565,2.0681671603404626,0,2023-02-17,no +CA,A,YES,4,12078,3,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,373.3957858548941,58.321648736481706,9.5168866792719,0,2023-02-17,NA +CA,A,YES,4,12078,4,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,69.96024832334722,934.9199936704985,2.428371848526688,0,2023-02-17,NA +WA,B,Yes,6,31928,1,2000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,338.40465021930845,5.694040859500567,24.211322702483272,0,2023-02-17,NA +WA,B,Yes,7,07528,1,100000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,8.874069917072676,68.23262260396105,9.336072463948186,0,2023-02-17,NA +WA,B,Yes,8,97385,2,50000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,97.760488028523,11.195296953677103,2.858427553957841,0,2023-02-17,NA +WA,B,Yes,9,14396,2,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,206.03755957505484,167.07250344667585,16.639227707234344,0,2023-02-17,NA +NM,C,yes,10,27604,5,1000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,1.4723001466134007,5.779227619791328,1.0073333470657468,0,2023-02-17,NA +ZZ,F,NO,13,65174,2,8472,wwtp,raw wastewater,copies/g dry sludge,sars-cov-2,3.4524376286360603,97.94643970382845,6.904875257272121,1,2023-02-17,no +CA,A,YES,1,04971,1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,9.475867017783791,246.73122089405535,18.951734035567583,1,2023-02-18,NA +CA,A,YES,2,31809,1,30000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,0.5108120441987868,9.022630079050423,1.0216240883975736,1,2023-02-18,NA +CA,A,YES,4,12078,3,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,20.184926664672165,78.63624546051453,1.1076634668362468,0,2023-02-18,no +CA,A,YES,4,12078,4,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,146.75359140523335,21.11498460899427,9.621866380642274,0,2023-02-18,no +WA,B,Yes,6,31928,1,2000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,38.98563161981508,33.558375698952865,15.445967914968106,0,2023-02-18,no +WA,B,Yes,7,07528,1,100000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,2.891382993385002,70.05784945520003,5.782765986770004,1,2023-02-18,NA +WA,B,Yes,8,97385,2,50000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,848.5065702481577,729.2342315675392,11.02093785964551,0,2023-02-18,NA +WA,B,Yes,9,14396,2,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,6.03136309909273,615.8848515659726,8.948666606790095,0,2023-02-18,NA +NM,C,yes,10,27604,5,1000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,1.639394892508407,231.0575441335458,0.6030825982265398,0,2023-02-18,NA +NM,C,yes,11,91578,6,10000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,2.9609059650615306,335.9459477829114,1.1348647749037513,0,2023-02-18,NA +CA,A,YES,2,31809,1,30000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,20.160594685608125,22.600771548372215,3.390728483551403,0,2023-02-19,no +CA,A,YES,4,12078,3,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,29.655738090674486,106.00019845899403,5.929483441053241,0,2023-02-19,y +WA,B,Yes,6,31928,1,2000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,404.35855572337414,26.083038440250597,3.0042637396147818,0,2023-02-19,NA +WA,B,Yes,7,07528,1,100000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,79.97864196009634,54.434921251423816,3.650589315100694,0,2023-02-19,no +WA,B,Yes,8,97385,2,50000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,16.50778866263999,18.296165891169654,20.986638153001977,0,2023-02-19,NA +NM,C,yes,10,27604,5,1000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,-0.0727433361020844,598.9170521670416,0.2282866595618968,1,2023-02-19,NA +NM,C,yes,11,91578,6,10000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,2.0608509293645128,223.04084460217635,0.8141227776840516,0,2023-02-19,NA +ZZ,F,NO,12,32541,1,8472,wwtp,raw wastewater,copies/g dry sludge,sars-cov-2,643.4869872696589,5.688777144880834,5.316157370467915,0,2023-02-19,> max temp and/or hold time +CA,A,YES,1,04971,1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,66.40146942636754,21.070560662823272,18.06404763401332,0,2023-02-20,NA +CA,A,YES,2,31809,1,30000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,707.3062970567546,28.682977566339932,12.083412623285835,0,2023-02-20,NA +CA,A,YES,4,12078,3,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,34.68781732675998,9.499033562696464,2.9413455274546685,0,2023-02-20,NA +CA,A,YES,4,12078,4,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,11.691595963414354,600.0035216992512,1.1364982692267527,0,2023-02-20,no +WA,B,Yes,6,31928,1,2000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,242.81364858996707,38.81710409648819,13.007714759961274,0,2023-02-20,NA +WA,B,Yes,7,07528,1,100000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,20.735184183433628,5.2715010947272365,17.07513663922713,0,2023-02-20,NA +WA,B,Yes,8,97385,2,50000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,709.0355360889283,712.8212752776209,2.284157856762076,0,2023-02-20,no +WA,B,Yes,9,14396,2,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,387.88931212789464,5.3855052925274975,1.0829834479726788,0,2023-02-20,NA +NM,C,yes,10,27604,5,1000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,2.3423627380433287,34.16583095894536,0.7768183518841436,0,2023-02-20,no +NM,C,yes,11,91578,6,10000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,1.446524457373096,398.1329993947551,1.0797008632439722,0,2023-02-20,NA +CA,A,YES,1,04971,1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,316.15662584248014,58.139235913183434,17.60328449458461,0,2023-02-21,NA +CA,A,YES,2,31809,1,30000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,945.6278147571411,19.587123060665945,5.827776761828387,0,2023-02-21,NA +CA,A,YES,4,12078,3,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,11.751380650249304,27.73154003333902,14.766252620080733,0,2023-02-21,NA +CA,A,YES,4,12078,4,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,35.70170755070612,332.7832436305292,2.7352553654792673,0,2023-02-21,no +CA,A,YES,5,34687,4,1000000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,0.91981564366402635,5.3899500110707645,1.8396312873280527,1,2023-02-21,NA +WA,B,Yes,6,31928,1,2000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,8.430851554331136,25.0406208007693,16.861703108662272,1,2023-02-21,NA +WA,B,Yes,7,07528,1,100000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,23.612069119147947,244.7397096523221,3.0087210472919703,0,2023-02-21,NA +WA,B,Yes,9,14396,2,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,29.026762828851798,30.11574618355358,2.0207345280466376,0,2023-02-21,no +NM,C,yes,10,27604,5,1000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,1.1829975069700929,263.21076865469865,0.30550454536117444,0,2023-02-21,NA +NM,C,yes,11,91578,6,10000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,1.7206183992625057,48.80636563084332,0.06449951725767869,0,2023-02-21,yes +CA,A,YES,1,04971,1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,97.43244440599466,166.25369812836306,3.073760381121263,0,2023-02-22,NA +CA,A,YES,2,31809,1,30000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,112.09852587468147,615.8718263421359,1.5460914490061697,0,2023-02-22,no +CA,A,YES,4,12078,3,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,34.544023681908016,164.20380110691042,22.600847159992487,0,2023-02-22,NA +CA,A,YES,4,12078,4,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,294.16792829310066,26.815602289518647,1.027936232116507,0,2023-02-22,NA +WA,B,Yes,6,31928,1,2000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,32.92332481271343,74.40943392735927,13.256448761245595,0,2023-02-22,no +WA,B,Yes,8,97385,2,50000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,115.08714931046507,19.5401219888647,5.900498537748314,0,2023-02-22,NA +NM,C,yes,10,27604,5,1000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,0.8832508037455562,27.159189533307664,1.267416502947841,0,2023-02-22,NA +NM,C,yes,11,91578,6,10000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,1.404593762310653,195.7373966043554,0.10079922306648723,0,2023-02-22,NA +XX,D,ye,14,09634,10,1000000000,wwtp,raw wastewater,copies/l wastewater,FLUAV,5.943205742281485,35.85674215492902,21.16260089753815,0,2023-02-22,NA +YY,E,No,14,09634,3,13,upstream,primary sludge,copies/g dry sludge,sars-cov-2,55.36847248791359,5.325337361832822,8.1040803604102,0,2023-02-22,NA +ZZ,F,NO,15,98436,4,8472,wwtp,raw wastewater,copies/g dry sludge,sars-cov-2,27.680975173456222,199.17938688580583,9.77673775845998,0,2023-02-22,NA +CA,A,YES,1,04971,1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,387.1038296292479,81.13681422221168,4.537393024553714,0,2023-02-23,NA +CA,A,YES,2,31809,1,30000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,14.259275701356149,39.090634850792306,1.6836949930209062,0,2023-02-23,NA +CA,A,YES,4,12078,3,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,90.14606118521341,97.3106471895911,2.0628197367307095,0,2023-02-23,NA +CA,A,YES,4,12078,4,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,13.988374881165887,42.448744393005995,16.472659883629504,0,2023-02-23,NA +WA,B,Yes,6,31928,1,2000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,29.04071020749954,679.8678525007043,13.900827737002743,0,2023-02-23,NA +WA,B,Yes,7,07528,1,100000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,5.169248792658407,37.52840148876902,7.626665024082168,0,2023-02-23,no +WA,B,Yes,8,97385,2,50000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,108.3418255271921,141.33735983396926,1.129357433824155,0,2023-02-23,NA +WA,B,Yes,9,14396,2,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,929.6224729077021,716.5820395919653,4.394683935597443,0,2023-02-23,no +NM,C,yes,11,91578,6,10000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,2.346817414418601,26.705028663072103,0.2301666473607025,0,2023-02-23,NA +ZZ,F,NO,12,32541,1,8472,wwtp,raw wastewater,copies/g dry sludge,sars-cov-2,34.42383486625209,112.59838281050702,4.55895449667454,0,2023-02-23,NA +CA,A,YES,1,04971,1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,10.859558090606194,467.0747242248433,23.913992786438158,0,2023-02-24,no +CA,A,YES,2,31809,1,30000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,23.771280144369904,988.8859103796827,24.474069180740113,0,2023-02-24,NA +CA,A,YES,4,12078,3,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,904.3690188816917,7.374260983279588,1.265157619811638,0,2023-02-24,no +CA,A,YES,4,12078,4,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,37.902686233067605,345.8782990879349,6.995083143513485,0,2023-02-24,NA +WA,B,Yes,6,31928,1,2000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,11.810749386814294,27.057706299663575,23.621498773628588,1,2023-02-24,NA +WA,B,Yes,8,97385,2,50000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,0.6486511843266478,27.874678397939704,1.2973023686532956,1,2023-02-24,NA +NM,C,yes,10,27604,5,1000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,2.3163271579421916,93.50154558575514,0.49602667596985195,0,2023-02-24,NA +NM,C,yes,11,91578,6,10000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,0.7799087919533654,911.5753066006426,0.5430949287835113,0,2023-02-24,temperature not assessed upon arrival at the laboratory +XX,D,ye,15,98436,10,1000000000,wwtp,raw wastewater,copies/l wastewater,FLUAV,130.62485930434323,6.542478137460546,23.934118638259893,0,2023-02-24,NA +CA,A,YES,1,04971,1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,128.54700185544306,205.41718468186758,3.8516288229128457,0,2023-02-25,NA +CA,A,YES,2,31809,1,30000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,119.5790878096687,8.169905190906652,9.119662308925404,0,2023-02-25,NA +CA,A,YES,4,12078,3,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,23.463825427129432,473.5851376032156,22.943329577823516,0,2023-02-25,NA +CA,A,YES,4,12078,4,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,42.98447119111173,67.56123793722364,5.407381181504064,0,2023-02-25,NA +WA,B,Yes,6,31928,1,2000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,43.011730368426605,28.301965846090543,5.600195710245945,0,2023-02-25,yes +WA,B,Yes,7,07528,1,100000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,11.007370762852444,373.50606885712034,12.47726264866389,0,2023-02-25,NA +WA,B,Yes,8,97385,2,50000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,117.8071881312598,765.0788528846027,12.846710556950349,0,2023-02-25,NA +WA,B,Yes,9,14396,2,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,112.15233616285764,107.30328168469553,1.403094955856213,0,2023-02-25,NA +NM,C,yes,10,27604,5,1000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,2.1532164987571236,175.2759059956653,0.7504881921872932,0,2023-02-25,NA +NM,C,yes,11,91578,6,10000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,0.8767313114455,5.019459525594294,0.12962278024237,0,2023-02-25,NA +CA,A,YES,1,04971,1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,22.112115170593434,79.0814556891465,7.82263396630389,0,2023-02-26,NA +CA,A,YES,2,31809,1,30000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,44.950472982339264,565.81078500947865,5.877299554035761,0,2023-02-26,NA +CA,A,YES,4,12078,3,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,26.222211538218698,40.40800042509997,1.514468978375766,0,2023-02-26,NA +CA,A,YES,4,12078,4,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,8.231360797851224,26.616218514023316,9.07636708084877,0,2023-02-26,no +WA,B,Yes,6,31928,1,2000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,15.23741314609261,37.88541115713193,17.823704546433635,0,2023-02-26,NA +WA,B,Yes,7,07528,1,100000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,33.96574276293469,591.2422003061563,21.7076332361784,0,2023-02-26,y +WA,B,Yes,8,97385,2,50000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,57.51497824796495,567.4880517387049,6.273113493197985,0,2023-02-26,NA +WA,B,Yes,9,14396,2,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,560.8382047719646,386.1777868759051,3.95251328396741,0,2023-02-26,NA +NM,C,yes,10,27604,5,1000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,2.8431479805823763,232.74950535627903,0.5667863789945409,0,2023-02-26,no +NM,C,yes,11,91578,6,10000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,1.1775674655735837,64.8460492809882,1.3541257709644852,0,2023-02-26,no +XX,D,ye,12,32541,10,1000000000,wwtp,raw wastewater,copies/l wastewater,FLUAV,619.2718309237938,12.321697259506582,2.287974642412762,0,2023-02-26,no +ZZ,F,NO,15,98436,4,8472,wwtp,raw wastewater,copies/g dry sludge,sars-cov-2,24.40671232256105,7.015319494607072,2.28897468183092,0,2023-02-26,no +CA,A,YES,1,04971,1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,30.137088470279455,494.0285027347975,3.0394003409320747,0,2023-02-27,NA +CA,A,YES,2,31809,1,30000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,346.88480645002824,29.153345555677355,6.8506876767237195,0,2023-02-27,NA +CA,A,YES,4,12078,3,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,21.260422831276216,145.11101166531353,4.372196502681745,0,2023-02-27,no +CA,A,YES,4,12078,4,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,258.0585440319528,7.549154753798491,10.819758561537075,0,2023-02-27,yes +WA,B,Yes,6,31928,1,2000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,34.137595827146306,37.07416218857916,6.16944287318849,0,2023-02-27,NA +WA,B,Yes,7,07528,1,100000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,12.944566632148454,114.44373622871511,24.257767746995423,0,2023-02-27,y +WA,B,Yes,8,97385,2,50000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,130.75385704627033,915.8212844171684,10.99284507461069,0,2023-02-27,no +WA,B,Yes,9,14396,2,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,116.24607081688374,57.90612418148004,12.744355773971424,0,2023-02-27,no +NM,C,yes,10,27604,5,1000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,0.005595987013185169,44.979667352843165,0.30662598267716634,1,2023-02-27,NA +NM,C,yes,11,91578,6,10000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,1.8084750711354933,793.6732721357164,1.0953155515166886,0,2023-02-27,NA +XX,D,ye,13,65174,10,1000000000,wwtp,raw wastewater,copies/l wastewater,FLUAV,10.044711123415624,35.234552561956214,6.215182247905489,0,2023-02-27,no +ZZ,F,NO,13,65174,2,8472,wwtp,raw wastewater,copies/g dry sludge,sars-cov-2,541.4693103569356,11.980790126112248,12.41203228598927,0,2023-02-27,NA +ZZ,F,NO,15,98436,4,8472,wwtp,raw wastewater,copies/g dry sludge,sars-cov-2,46.3017516255929,401.34065964227017,2.8771743421414504,0,2023-02-27,NA +CA,A,YES,1,04971,1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,543.1175903211706,615.6357607608519,4.409013104344052,0,2023-02-28,NA +CA,A,YES,2,31809,1,30000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,85.5619902645178,61.16045764553125,17.69091988168579,0,2023-02-28,NA +CA,A,YES,4,12078,3,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,0.6181858725929332,385.8952720073726,1.2363717451858665,1,2023-02-28,NA +CA,A,YES,5,34687,3,1000000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,130.10020066515787,81.37108472334596,1.6666854514132112,0,2023-02-28,no +CA,A,YES,4,12078,4,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,1.553954507639502,12.338739479627472,3.107909015279004,1,2023-02-28,NA +CA,A,YES,5,34687,4,1000000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,128.71749941402584,67.91444361127051,1.340638983554489,0,2023-02-28,NA +WA,B,Yes,6,31928,1,2000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,18.072438873574498,46.39689163176238,2.3856336000270364,0,2023-02-28,NA +WA,B,Yes,7,07528,1,100000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,776.8817927675503,605.8866364907634,2.4271991209794184,0,2023-02-28,NA +WA,B,Yes,8,97385,2,50000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,575.5730316193439,6.374169082600377,3.1532445476376303,0,2023-02-28,NA +WA,B,Yes,9,14396,2,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,0.6719868433150867,101.191083702492,1.3439736866301735,1,2023-02-28,NA +NM,C,yes,10,27604,5,1000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,1.8678757673687947,432.9844752199857,0.3307709049708068,0,2023-02-28,result is not quantifiable +NM,C,yes,11,91578,6,10000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,1.4936766562442374,225.21137830761992,0.5979644444040744,0,2023-02-28,> max temp and/or hold time +CA,A,YES,1,04971,1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,13.251298657542206,94.02223533504265,10.272813536625328,0,2023-03-01,NA +CA,A,YES,2,31809,1,30000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,27.641997164162607,5.885755335469401,11.103281157878275,0,2023-03-01,NA +CA,A,YES,4,12078,3,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,1.0964427217175736,10.64581672514099,2.1928854434351472,1,2023-03-01,NA +CA,A,YES,4,12078,4,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,27.06330655232275,164.0900723087505,5.620495308551656,0,2023-03-01,yes +WA,B,Yes,6,31928,1,2000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,19.73634411730031,989.2744700103444,11.20522870451425,0,2023-03-01,NA +WA,B,Yes,7,07528,1,100000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,7.976812872218228,47.314415431077194,2.9222343503083867,0,2023-03-01,NA +WA,B,Yes,8,97385,2,50000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,4.15853139341677,19.17618359511787,8.31706278683354,1,2023-03-01,NA +WA,B,Yes,9,14396,2,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,134.37588668681397,9.215290659066747,6.185416457115013,0,2023-03-01,NA +NM,C,yes,10,27604,5,1000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,2.243364369985031,64.30433149336938,0.151329038323999,0,2023-03-01,NA +NM,C,yes,11,91578,6,10000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,1.5200024747816658,14.806253538768813,0.7770802799905268,0,2023-03-01,NA +XX,D,ye,13,65174,10,1000000000,wwtp,raw wastewater,copies/l wastewater,FLUAV,2.17809668770798,12.901608802198007,4.35619337541596,1,2023-03-01,result is not quantifiable +ZZ,F,NO,13,65174,2,8472,wwtp,raw wastewater,copies/g dry sludge,sars-cov-2,20.042419609818673,23.134311576134916,3.0539194219217776,0,2023-03-01,y +CA,A,YES,1,04971,1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,6.080179057593754,7.901916299409575,5.366037941447647,0,2023-03-02,NA +CA,A,YES,2,31809,1,30000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,387.28243228948486,23.746695618457178,1.9040197991862475,0,2023-03-02,NA +CA,A,YES,4,12078,3,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,234.55384639831667,288.66270708710994,11.66091913371317,0,2023-03-02,> max temp and/or hold time +CA,A,YES,4,12078,4,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,256.00581559351707,34.98412759741163,2.160436218313202,0,2023-03-02,NA +WA,B,Yes,6,31928,1,2000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,540.1977643993337,20.170602201570407,1.938434520317956,0,2023-03-02,NA +WA,B,Yes,7,07528,1,100000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,6.150421962369688,715.9632004648928,12.300843924739375,1,2023-03-02,no +WA,B,Yes,8,97385,2,50000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,820.6963591939166,531.6833019877936,21.147996077303855,0,2023-03-02,NA +WA,B,Yes,9,14396,2,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,6.378505672957012,69.91021982186116,2.360122286989393,0,2023-03-02,NA +NM,C,yes,10,27604,5,1000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,1.0391115249281708,764.0875208455874,0.15867112951071605,0,2023-03-02,NA +ZZ,F,NO,12,32541,1,8472,wwtp,raw wastewater,copies/g dry sludge,sars-cov-2,511.7636628721869,281.0090468039806,14.462586308479416,0,2023-03-02,NA +CA,A,YES,1,04971,1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,31.088129916068763,5.6395919830043235,1.1282655157766144,0,2023-03-03,NA +CA,A,YES,2,31809,1,30000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,487.73104802072436,84.29561876624399,1.2397533322835683,0,2023-03-03,NA +CA,A,YES,4,12078,3,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,639.8905046167573,590.6370181521473,9.95762126006784,0,2023-03-03,NA +CA,A,YES,4,12078,4,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,20.634736890993377,66.56427348801235,2.272923082780746,0,2023-03-03,no +WA,B,Yes,7,07528,1,100000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,2.356085652054681,9.704598289962506,4.712171304109362,1,2023-03-03,NA +WA,B,Yes,8,97385,2,50000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,66.4141538875427,336.8803247983554,12.606261613708172,0,2023-03-03,no +NM,C,yes,10,27604,5,1000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,1.727915604906232,65.57369812338612,0.8969882975440178,0,2023-03-03,no +NM,C,yes,11,91578,6,10000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,2.7560900384656293,29.438978948273437,0.3098567983120942,0,2023-03-03,NA +XX,D,ye,15,98436,10,1000000000,wwtp,raw wastewater,copies/l wastewater,FLUAV,7.2534338613074265,97.15900174066766,2.193239806280088,0,2023-03-03,NA +YY,E,No,14,09634,3,13,upstream,primary sludge,copies/g dry sludge,sars-cov-2,53.0808598383249,185.50934354950854,2.237706241420627,0,2023-03-03,no +CA,A,YES,1,04971,1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,158.55850221202064,369.6975606751693,7.462109862894364,0,2023-03-04,NA +CA,A,YES,2,31809,1,30000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,20.2891763830902,963.2346018442207,2.238006509841936,0,2023-03-04,NA +CA,A,YES,4,12078,3,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,0.7980968204314328,182.5527435589447,1.5961936408628656,1,2023-03-04,NA +CA,A,YES,4,12078,4,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,664.7637958633509,583.4604648778959,15.780375594624859,0,2023-03-04,NA +WA,B,Yes,6,31928,1,2000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,37.98634280959712,8.829276085955533,2.0103281770498067,0,2023-03-04,NA +WA,B,Yes,7,07528,1,100000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,126.68664054876504,65.9004524077722,8.033146055245622,0,2023-03-04,NA +WA,B,Yes,8,97385,2,50000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,609.2873798183433,682.5951395055189,2.951329684226727,0,2023-03-04,result is not quantifiable +WA,B,Yes,9,14396,2,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,55.48096986853254,797.688853660138,21.132838031995462,0,2023-03-04,NA +NM,C,yes,10,27604,5,1000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,2.8440815785106186,268.1219705432606,0.41076340189033306,0,2023-03-04,NA +NM,C,yes,11,91578,6,10000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,1.622150077901525,43.11335886334251,0.22990452689370564,0,2023-03-04,NA +XX,D,ye,12,32541,10,1000000000,wwtp,raw wastewater,copies/l wastewater,FLUAV,5.721831327423401,141.12883722434464,1.2490657216384413,0,2023-03-04,NA +XX,D,ye,15,98436,10,1000000000,wwtp,raw wastewater,copies/l wastewater,FLUAV,121.65732906983988,44.32796012384547,3.6101735869168006,0,2023-03-04,NA +YY,E,No,15,98436,4,13,upstream,primary sludge,copies/g dry sludge,sars-cov-2,32.08771834830813,965.8801370063932,8.01383503824439,0,2023-03-04,NA +CA,A,YES,1,04971,1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,10.754474756704594,255.4304579860096,1.8140997306783964,0,2023-03-05,no +CA,A,YES,2,31809,1,30000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,10.196977342754817,219.5321422055375,20.393954685509634,1,2023-03-05,NA +CA,A,YES,4,12078,4,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,105.94947155961388,412.28575941770464,1.514415625279379,0,2023-03-05,NA +WA,B,Yes,6,31928,1,2000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,17.749761285487708,89.54948751524978,16.23452164317336,0,2023-03-05,NA +WA,B,Yes,7,07528,1,100000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,262.4013127219605,6.123293057995181,5.87538347456332,0,2023-03-05,NA +WA,B,Yes,8,97385,2,50000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,61.64656692897097,7.4667795113923905,3.468847532097106,0,2023-03-05,NA +WA,B,Yes,9,14396,2,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,260.07719685845444,937.3799728940805,6.950134989220923,0,2023-03-05,NA +NM,C,yes,10,27604,5,1000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,1.6858887823113662,5.939766859958962,0.9722122471057923,0,2023-03-05,no +XX,D,ye,13,65174,10,1000000000,wwtp,raw wastewater,copies/l wastewater,FLUAV,20.622349106252877,784.4847634001611,5.329832916642551,0,2023-03-05,NA +CA,A,YES,1,04971,1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,708.0987990107047,47.13318907166913,12.138428684072297,0,2023-03-06,NA +CA,A,YES,2,31809,1,30000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,166.27778468585075,6.704180736391196,2.9569887678886433,0,2023-03-06,NA +CA,A,YES,4,12078,3,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,171.262370903392,5.178892129960095,7.6234706034318735,0,2023-03-06,no +CA,A,YES,4,12078,4,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,800.5393389045784,6.511081282134894,3.572164238031614,0,2023-03-06,NA +WA,B,Yes,6,31928,1,2000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,52.91477174049062,708.8394604682445,12.223884690244677,0,2023-03-06,no +WA,B,Yes,7,07528,1,100000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,7.675313764011645,574.9331217191386,1.7960476616478152,0,2023-03-06,NA +WA,B,Yes,8,97385,2,50000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,11.24110834882159,38.80803895585481,11.134765333053068,0,2023-03-06,NA +WA,B,Yes,9,14396,2,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,386.3718485856084,59.52802925537838,3.4891688933973004,0,2023-03-06,no +NM,C,yes,10,27604,5,1000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,1.4983300327604037,37.28221301535899,0.0504959357037284,0,2023-03-06,no +NM,C,yes,11,91578,6,10000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,1.1105879856637835,96.42507484342136,0.8459054045110621,0,2023-03-06,NA +XX,D,ye,13,65174,10,1000000000,wwtp,raw wastewater,copies/l wastewater,FLUAV,9.95864097213848,147.3339873871709,17.522062159515226,0,2023-03-06,NA +CA,A,YES,1,04971,1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,199.9498140556388,11.84964334047132,14.718438267591178,0,2023-03-07,NA +CA,A,YES,2,31809,1,30000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,12.776397509492606,170.65313298110112,1.9406092463754114,0,2023-03-07,NA +CA,A,YES,4,12078,3,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,159.59510292136193,330.6761285137837,7.858918233856867,0,2023-03-07,no +CA,A,YES,5,34687,3,1000000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,48.38145539142506,269.2561623905531,1.7334650879066913,0,2023-03-07,NA +CA,A,YES,4,12078,4,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,89.64676414548772,19.23015744546207,11.888225770976586,0,2023-03-07,NA +CA,A,YES,5,34687,4,1000000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,10.801250955309504,211.80186275662714,5.668064994180599,0,2023-03-07,NA +WA,B,Yes,6,31928,1,2000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,3.331635676828732,12.42504001654992,6.663271353657464,1,2023-03-07,NA +WA,B,Yes,7,07528,1,100000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,60.02925612720606,953.9203569928756,1.9755224804730762,0,2023-03-07,NA +WA,B,Yes,8,97385,2,50000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,3.0961189331904264,145.80595693679248,6.192237866380853,1,2023-03-07,NA +WA,B,Yes,9,14396,2,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,5.212216432357146,21.264947301016928,1.545096233089596,0,2023-03-07,NA +NM,C,yes,10,27604,5,1000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,2.8838760753504773,15.46153313874573,0.11000438798829677,0,2023-03-07,NA +NM,C,yes,11,91578,6,10000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,2.518836016259436,730.4543968915425,0.27567691362752067,0,2023-03-07,NA +XX,D,ye,13,65174,10,1000000000,wwtp,raw wastewater,copies/l wastewater,FLUAV,13.844289844174835,7.96558167953937,9.465273653529986,0,2023-03-07,NA +ZZ,F,NO,14,09634,3,8472,wwtp,raw wastewater,copies/g dry sludge,sars-cov-2,49.45148321180406,8.920770676161167,4.046800888705728,0,2023-03-07,result is not quantifiable +CA,A,YES,1,04971,1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,802.3550464348742,93.8516436328436,1.7587376183625947,0,2023-03-08,NA +CA,A,YES,2,31809,1,30000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,2.159952547896308,28.466246255036687,4.319905095792616,1,2023-03-08,below loq +CA,A,YES,4,12078,4,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,232.73483961295574,358.7088840119746,1.9046654156512355,0,2023-03-08,no +WA,B,Yes,6,31928,1,2000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,171.53107787253276,61.2855673241315,1.0405184197279778,0,2023-03-08,NA +WA,B,Yes,7,07528,1,100000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,114.46735014828246,47.876108578585466,10.34259542701581,0,2023-03-08,no +WA,B,Yes,8,97385,2,50000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,63.86667489906438,545.917430737053,9.918897103472322,0,2023-03-08,no +WA,B,Yes,9,14396,2,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,61.244872584285595,309.0336564656152,11.671419070329925,0,2023-03-08,NA +NM,C,yes,10,27604,5,1000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,0.7565391353219517,5.153199587148225,0.9851042098721342,0,2023-03-08,NA +NM,C,yes,11,91578,6,10000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,1.0630752927414222,122.83769706181525,0.48640608893637927,0,2023-03-08,NA +ZZ,F,NO,12,32541,1,8472,wwtp,raw wastewater,copies/g dry sludge,sars-cov-2,105.0828108267289,345.9553078858336,8.595852981958881,0,2023-03-08,NA +CA,A,YES,1,04971,1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,565.5905896213546,10.326294021590266,7.371266777590111,0,2023-03-09,NA +CA,A,YES,4,12078,3,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,469.9823099610116,464.34409632261026,1.1712470116181852,0,2023-03-09,NA +CA,A,YES,4,12078,4,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,323.9137925394194,42.34021338734792,1.0838633980705725,0,2023-03-09,below loq +WA,B,Yes,6,31928,1,2000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,259.6496779886425,6.911801266572399,7.932910321294406,0,2023-03-09,NA +WA,B,Yes,8,97385,2,50000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,578.8966079683211,223.3565849925504,21.498945188837876,0,2023-03-09,NA +WA,B,Yes,9,14396,2,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,5.204118089750765,199.08774347279748,7.382827235613202,0,2023-03-09,no +NM,C,yes,10,27604,5,1000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,1.844154976779564,209.59504458005313,1.1378408523577748,0,2023-03-09,NA +NM,C,yes,11,91578,6,10000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,1.6383985512558712,17.596567858020265,0.4448796975590207,0,2023-03-09,NA +YY,E,No,15,98436,4,13,upstream,primary sludge,copies/g dry sludge,sars-cov-2,40.52569506764774,597.0461070668506,24.611684055472185,0,2023-03-09,NA +CA,A,YES,1,04971,1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,115.39074259807938,235.9585444770106,20.74287530120597,0,2023-03-10,NA +CA,A,YES,2,31809,1,30000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,89.02990216869499,16.925788538932313,22.610331041005825,0,2023-03-10,NA +CA,A,YES,4,12078,3,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,67.00459584147991,525.4351042892039,15.221872955596583,0,2023-03-10,NA +CA,A,YES,4,12078,4,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,22.756377746450454,276.67160206650755,2.9082271311034376,0,2023-03-10,NA +WA,B,Yes,6,31928,1,2000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,380.27475471881877,313.4671980769839,1.6153613178561694,0,2023-03-10,below loq +WA,B,Yes,7,07528,1,100000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,285.57390464234277,44.154441562154425,13.934770292319422,0,2023-03-10,NA +WA,B,Yes,8,97385,2,50000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,57.43177440612398,11.259515363518478,2.911966989171706,0,2023-03-10,> max temp and/or hold time +WA,B,Yes,9,14396,2,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,7.239302452608382,62.931420295175826,19.836324921305557,0,2023-03-10,no +NM,C,yes,10,27604,5,1000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,2.6030379164137893,11.05276606414447,0.489674123257978,0,2023-03-10,no +NM,C,yes,11,91578,6,10000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,2.4813635945997454,20.38099797885449,0.596586134062397,0,2023-03-10,no +XX,D,ye,12,32541,10,1000000000,wwtp,raw wastewater,copies/l wastewater,FLUAV,245.50156711035,522.9653391177062,3.641492565163893,0,2023-03-10,NA +ZZ,F,NO,12,32541,1,8472,wwtp,raw wastewater,copies/g dry sludge,sars-cov-2,559.8455976946192,879.4456019812421,1.4372698151744994,0,2023-03-10,no +CA,A,YES,1,04971,1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,458.2185722722606,81.68467683478113,1.567411435737819,0,2023-03-11,NA +CA,A,YES,2,31809,1,30000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,55.235690285138965,215.34485562578317,7.685079911428711,0,2023-03-11,NA +CA,A,YES,4,12078,3,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,5.406826800928464,15.168377128354015,10.813653601856927,1,2023-03-11,NA +CA,A,YES,4,12078,4,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,21.9756570087032,62.653535552088655,3.56946166559274,0,2023-03-11,result is not quantifiable +WA,B,Yes,6,31928,1,2000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,2.390514397851157,458.38269024565403,4.781028795702314,1,2023-03-11,NA +WA,B,Yes,8,97385,2,50000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,98.70913753253285,50.10212833124913,2.9115445215398714,0,2023-03-11,NA +WA,B,Yes,9,14396,2,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,23.87792051249501,18.242748377402133,3.551038992756499,0,2023-03-11,NA +NM,C,yes,10,27604,5,1000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,1.070377955537653,31.620155355594186,0.41858269516857316,0,2023-03-11,NA +NM,C,yes,11,91578,6,10000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,2.2923017477715026,658.8482334048955,0.9501279086318479,0,2023-03-11,NA +XX,D,ye,12,32541,10,1000000000,wwtp,raw wastewater,copies/l wastewater,FLUAV,203.69078928696254,224.565546299968,11.479071124886952,0,2023-03-11,no +YY,E,No,12,32541,1,13,upstream,primary sludge,copies/g dry sludge,sars-cov-2,658.7435725779864,174.6947199493657,1.8202812850905217,0,2023-03-11,no +CA,A,YES,1,04971,1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,166.94136827508945,5.539390170211123,7.808403195655328,0,2023-03-12,NA +CA,A,YES,2,31809,1,30000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,38.097816458513016,359.9083814029601,12.184099743365918,0,2023-03-12,NA +CA,A,YES,4,12078,3,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,65.61317595388444,7.65300102269132,1.7127518989253088,0,2023-03-12,NA +CA,A,YES,4,12078,4,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,837.5191638172039,590.3695105119665,3.9875164898391353,0,2023-03-12,NA +WA,B,Yes,6,31928,1,2000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,71.83034919697306,221.07819619424095,10.919114626007389,0,2023-03-12,result is not quantifiable +WA,B,Yes,7,07528,1,100000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,956.3555665398779,13.543869367290185,5.33486615691988,0,2023-03-12,NA +WA,B,Yes,8,97385,2,50000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,54.290699317116996,266.3683873273148,2.7221797773072467,0,2023-03-12,NA +WA,B,Yes,9,14396,2,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,11.185927461857894,24.369799059007654,22.371854923715787,1,2023-03-12,NA +NM,C,yes,10,27604,5,1000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,2.3784404982854386,170.8842741297347,0.849998262917388,0,2023-03-12,NA +NM,C,yes,11,91578,6,10000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,1.016659056729215,75.5043719699276,0.8281478466671701,0,2023-03-12,no +YY,E,No,15,98436,4,13,upstream,primary sludge,copies/g dry sludge,sars-cov-2,778.0238464588273,355.4013686945431,2.5603510524959283,0,2023-03-12,NA +ZZ,F,NO,13,65174,2,8472,wwtp,raw wastewater,copies/g dry sludge,sars-cov-2,125.58711763027108,45.51689176015359,2.914302253429205,0,2023-03-12,no +CA,A,YES,1,04971,1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,792.0931373110479,8.762107070715258,8.618496350940111,0,2023-03-13,NA +CA,A,YES,2,31809,1,30000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,159.0281480318035,68.20496172500553,10.428022760773471,0,2023-03-13,NA +CA,A,YES,4,12078,3,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,3.2983799017662783,306.0640508728707,6.5967598035325565,1,2023-03-13,no +CA,A,YES,4,12078,4,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,9.98339095161482,34.864716117518945,5.753836506429399,0,2023-03-13,no +WA,B,Yes,6,31928,1,2000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,743.4291658538455,5.196126844280465,5.321293787348545,0,2023-03-13,y +WA,B,Yes,7,07528,1,100000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,18.356768329311393,29.62237679124599,20.19612400874314,0,2023-03-13,yes +WA,B,Yes,8,97385,2,50000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,0.7922780187296575,269.37008786260884,1.584556037459315,1,2023-03-13,NA +WA,B,Yes,9,14396,2,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,876.9254257039869,272.58217800808154,7.795230180461602,0,2023-03-13,NA +NM,C,yes,10,27604,5,1000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,1.0770069803782623,769.29321512096806,0.6047048016464983,0,2023-03-13,NA +NM,C,yes,11,91578,6,10000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,1.4566462896534202,459.52707764671754,0.4822649262086211,0,2023-03-13,NA +XX,D,ye,15,98436,10,1000000000,wwtp,raw wastewater,copies/l wastewater,FLUAV,9.868216226742039,25.49901923062265,1.9760983842279234,0,2023-03-13,no +YY,E,No,12,32541,1,13,upstream,primary sludge,copies/g dry sludge,sars-cov-2,721.4422282670149,80.47655006843375,5.688116624209073,0,2023-03-13,NA +ZZ,F,NO,12,32541,1,8472,wwtp,raw wastewater,copies/g dry sludge,sars-cov-2,537.390257628136,6.989255606255752,7.648755225601417,0,2023-03-13,NA +ZZ,F,NO,15,98436,4,8472,wwtp,raw wastewater,copies/g dry sludge,sars-cov-2,8.69602602747301,53.66908111727376,10.681918430839763,0,2023-03-13,NA +CA,A,YES,1,04971,1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,4.374859641075281,57.47609650597885,8.749719282150561,1,2023-03-14,NA +CA,A,YES,2,31809,1,30000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,64.32185520236284,27.525742632583487,5.949257859119654,0,2023-03-14,NA +CA,A,YES,4,12078,3,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,94.18597636039269,17.31264694329305,1.650928910441701,0,2023-03-14,NA +CA,A,YES,5,34687,3,1000000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,5.154605568793737,45.54115125728395,1.3511942769922272,0,2023-03-14,NA +CA,A,YES,4,12078,4,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,8.065478695114393,34.53514417696152,12.342663245457915,0,2023-03-14,no +WA,B,Yes,6,31928,1,2000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,5.7764748265636,71.57390310027671,3.0665124249881885,0,2023-03-14,NA +WA,B,Yes,7,07528,1,100000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,11.48573709483161,21.99476838964128,2.194460242109824,0,2023-03-14,NA +WA,B,Yes,9,14396,2,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,355.14102579646215,104.58969984147521,24.70710080460524,0,2023-03-14,no +NM,C,yes,10,27604,5,1000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,1.8328398850112908,79.02239127853267,0.4863590129888156,0,2023-03-14,NA +NM,C,yes,11,91578,6,10000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,-0.29984502857005907,37.83263018880683,0.0011849670939221375,1,2023-03-14,NA +CA,A,YES,1,04971,1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,82.7827970998116,15.184501160544444,2.1389600988131803,0,2023-03-15,NA +CA,A,YES,2,31809,1,30000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,145.01237086618718,9.243972100308385,18.120945623976642,0,2023-03-15,NA +CA,A,YES,4,12078,3,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,201.37225586866074,133.49089612731532,20.40373805687369,0,2023-03-15,NA +CA,A,YES,4,12078,4,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,416.6376945073775,456.1133923164395,1.5711181571692232,0,2023-03-15,NA +WA,B,Yes,6,31928,1,2000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,284.3287479765909,28.52592986642656,22.186837444801466,0,2023-03-15,NA +WA,B,Yes,7,07528,1,100000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,8.135231557270036,54.923213551712514,1.111408555761005,0,2023-03-15,no +WA,B,Yes,8,97385,2,50000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,42.94670960686573,16.828683429572283,2.3721970864090842,0,2023-03-15,yes +WA,B,Yes,9,14396,2,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,13.767800328631848,11.962807425491464,6.175614834322937,0,2023-03-15,NA +NM,C,yes,10,27604,5,1000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,1.7065046481386805,11.672690095065569,0.6560135449180345,0,2023-03-15,NA +NM,C,yes,11,91578,6,10000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,-0.284092152142929,408.2523211827641,0.016937843521052185,1,2023-03-15,NA +YY,E,No,15,98436,4,13,upstream,primary sludge,copies/g dry sludge,sars-cov-2,5.071630630794381,114.6523272070523,4.058206601459443,0,2023-03-15,no +CA,A,YES,1,04971,1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,8.672654771899738,5.454841947027963,14.751477956518597,0,2023-03-16,NA +CA,A,YES,2,31809,1,30000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,151.190078222533,14.350251564232256,6.047182393249267,0,2023-03-16,NA +CA,A,YES,4,12078,3,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,746.8793810154516,8.94825593533036,8.238967662018773,0,2023-03-16,NA +CA,A,YES,4,12078,4,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,242.4215232054661,52.08075329406804,9.563141213236626,0,2023-03-16,NA +WA,B,Yes,6,31928,1,2000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,0.6745538529692778,37.600587307668086,1.3491077059385557,1,2023-03-16,NA +WA,B,Yes,8,97385,2,50000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,115.47646177048624,10.779420909122653,6.900927870555157,0,2023-03-16,result is not quantifiable +WA,B,Yes,9,14396,2,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,7.0492224913476695,441.4552022003286,10.44343344344846,0,2023-03-16,no +NM,C,yes,10,27604,5,1000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,1.7459086933780763,203.88899926378238,0.7586215325572967,0,2023-03-16,no +NM,C,yes,11,91578,6,10000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,1.012696823150673,36.42141033040396,1.3137268188146543,1,2023-03-16,NA +YY,E,No,13,65174,2,13,upstream,primary sludge,copies/g dry sludge,sars-cov-2,7.812046887665094,16.04185007257759,1.315709226715126,0,2023-03-16,NA +ZZ,F,NO,15,98436,4,8472,wwtp,raw wastewater,copies/g dry sludge,sars-cov-2,12.915631119573327,29.68503028376494,1.1527275517532478,0,2023-03-16,result is not quantifiable +CA,A,YES,1,04971,1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,29.246057749763843,41.93822503967432,1.7268634206436253,0,2023-03-17,NA +CA,A,YES,2,31809,1,30000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,418.5911633098013,11.349017968173655,18.623302053560778,0,2023-03-17,no +CA,A,YES,4,12078,3,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,32.47815102300223,45.495067959943505,6.67530593539439,0,2023-03-17,NA +CA,A,YES,4,12078,4,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,68.09484703366523,8.885580298373203,20.226112273482762,0,2023-03-17,NA +WA,B,Yes,6,31928,1,2000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,181.1970812008741,22.629917891822238,7.535959001159097,0,2023-03-17,no +WA,B,Yes,7,07528,1,100000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,12.045113240083257,76.51631358314398,4.309565587049435,0,2023-03-17,NA +WA,B,Yes,8,97385,2,50000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,37.43333461476963,43.71153066900172,6.467857006972642,0,2023-03-17,NA +NM,C,yes,11,91578,6,10000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,1.2656865624062994,31.79927921332804,0.5141618181695529,0,2023-03-17,NA +CA,A,YES,1,04971,1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,87.32050764429154,10.643799430398044,1.0545988000977582,0,2023-03-18,no +CA,A,YES,2,31809,1,30000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,236.27561467458713,11.346468637492807,1.0939118802364765,0,2023-03-18,NA +CA,A,YES,4,12078,3,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,24.57804612951748,13.962209618461099,7.386635370336105,0,2023-03-18,yes +CA,A,YES,4,12078,4,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,54.66123404859118,870.8917137446232,2.178376076261856,0,2023-03-18,NA +WA,B,Yes,6,31928,1,2000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,711.048704802888,15.912840127350169,12.26792564818291,0,2023-03-18,temperature not assessed upon arrival at the laboratory +WA,B,Yes,7,07528,1,100000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,52.44966939413459,41.58990286737903,7.521859898636171,0,2023-03-18,NA +WA,B,Yes,8,97385,2,50000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,28.477645977122325,320.93061534958946,13.27809985047202,0,2023-03-18,NA +WA,B,Yes,9,14396,2,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,15.03983031601969,166.12743752326423,14.102217641346385,0,2023-03-18,y +NM,C,yes,10,27604,5,1000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,1.1405868739354204,10.20683468723425,1.397275334725503,0,2023-03-18,NA +NM,C,yes,11,91578,6,10000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,1.5558413155724884,222.65473477418013,0.40373049898109475,0,2023-03-18,NA +XX,D,ye,13,65174,10,1000000000,wwtp,raw wastewater,copies/l wastewater,FLUAV,154.35689955294305,6.003268796897057,1.675676546858301,0,2023-03-18,NA +ZZ,F,NO,15,98436,4,8472,wwtp,raw wastewater,copies/g dry sludge,sars-cov-2,422.2602624817239,6.537008649073889,2.3841167229677063,0,2023-03-18,yes +CA,A,YES,1,04971,1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,0.5448361754382418,37.791788520690055,1.0896723508764836,1,2023-03-19,no +CA,A,YES,2,31809,1,30000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,57.40730587372734,6.523915972616801,1.2118490483690498,0,2023-03-19,NA +CA,A,YES,4,12078,3,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,112.28214599344166,5.252415834766401,20.9737217035241,0,2023-03-19,NA +WA,B,Yes,6,31928,1,2000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,602.437884751041,65.33820058960393,1.5164469049741234,0,2023-03-19,NA +WA,B,Yes,7,07528,1,100000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,1.0493017919728487,11.991998709886959,2.0986035839456973,1,2023-03-19,no +WA,B,Yes,8,97385,2,50000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,14.393362385182053,14.987570362790258,1.4018843284146667,0,2023-03-19,below loq +WA,B,Yes,9,14396,2,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,1.157377819215666,137.87988106317957,2.314755638431332,1,2023-03-19,NA +NM,C,yes,11,91578,6,10000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,0.747987181593174,14.92382571087265,0.9399303566055986,0,2023-03-19,NA +CA,A,YES,1,04971,1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,33.394745995145854,39.31634484551162,17.627843578230518,0,2023-03-20,NA +CA,A,YES,2,31809,1,30000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,9.52196414544461,147.77911723662717,1.6118943318815933,0,2023-03-20,no +CA,A,YES,4,12078,3,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,37.83188701131832,6.665076693388046,10.451909952591972,0,2023-03-20,NA +CA,A,YES,4,12078,4,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,330.6576067631166,10.748361280291071,14.501830465184495,0,2023-03-20,NA +WA,B,Yes,6,31928,1,2000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,228.32952542074057,7.82611746629333,6.080454033221211,0,2023-03-20,NA +WA,B,Yes,7,07528,1,100000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,302.9757143430111,73.62313410846662,14.76843661131516,0,2023-03-20,no +WA,B,Yes,8,97385,2,50000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,45.25748961757045,13.832287404477702,6.254063796138068,0,2023-03-20,NA +WA,B,Yes,9,14396,2,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,6.129455681347205,11.698155553402666,7.879565971805341,0,2023-03-20,NA +NM,C,yes,10,27604,5,1000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,1.1165284969060818,8.618499503896963,0.6303833952591443,0,2023-03-20,NA +NM,C,yes,11,91578,6,10000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,1.9560351435159358,7.438255034098769,0.075732766168991,0,2023-03-20,NA +YY,E,No,12,32541,1,13,upstream,primary sludge,copies/g dry sludge,sars-cov-2,465.303120157964,35.97048660814587,1.1708959359098903,0,2023-03-20,NA +CA,A,YES,1,04971,1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,72.91747979089877,19.917617521251366,13.47828358468021,0,2023-03-21,NA +CA,A,YES,2,31809,1,30000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,313.12689977402124,234.4836289389294,3.2489684484867616,0,2023-03-21,NA +CA,A,YES,4,12078,3,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,13.107769565670337,502.84632420253075,10.998370103008456,0,2023-03-21,NA +CA,A,YES,5,34687,3,1000000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,360.50471273431145,170.68100593650615,1.064561694471887,0,2023-03-21,NA +CA,A,YES,4,12078,4,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,172.02279554286577,16.389552616378825,1.220782363881426,0,2023-03-21,NA +WA,B,Yes,6,31928,1,2000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,19.65457220860151,5.869112201798803,2.7275385951921374,0,2023-03-21,NA +WA,B,Yes,7,07528,1,100000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,10.427298780866836,984.1298485363877,2.7310004809923707,0,2023-03-21,NA +WA,B,Yes,8,97385,2,50000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,128.2976956587911,192.31079137697452,22.64456253054075,0,2023-03-21,no +WA,B,Yes,9,14396,2,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,102.22377931229167,14.672695025758012,7.56476906147389,0,2023-03-21,NA +NM,C,yes,10,27604,5,1000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,0.9218065773274359,333.03823621581836,0.35576039809380383,0,2023-03-21,NA +CA,A,YES,1,04971,1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,996.1543331368099,9.02367826861503,1.2487248394080674,0,2023-03-22,NA +CA,A,YES,2,31809,1,30000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,28.17317301009663,68.19109898222287,1.4592920731543813,0,2023-03-22,no +CA,A,YES,4,12078,3,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,187.2979168351214,33.57970793645007,1.7222110475356054,0,2023-03-22,NA +CA,A,YES,4,12078,4,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,954.7525028816011,5.701453495837322,4.79201569728624,0,2023-03-22,no +WA,B,Yes,6,31928,1,2000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,164.65310289124676,730.3550505701782,8.864299185891197,0,2023-03-22,y +WA,B,Yes,7,07528,1,100000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,7.205023912719112,217.8595172006536,1.609053483034028,0,2023-03-22,NA +WA,B,Yes,8,97385,2,50000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,112.2541781344915,274.39449478828794,1.8739647149606258,0,2023-03-22,NA +WA,B,Yes,9,14396,2,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,12.840671326577535,141.80292033508474,18.895579088497218,0,2023-03-22,no +NM,C,yes,10,27604,5,1000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,1.6681673910296049,30.567115427868693,0.5623121544422687,0,2023-03-22,NA +NM,C,yes,11,91578,6,10000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,2.0086319652993643,51.234172119776375,0.17314343138760419,0,2023-03-22,NA +CA,A,YES,1,04971,1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,13.017321446475458,271.37718198121854,18.40013057788529,0,2023-03-23,temperature not assessed upon arrival at the laboratory +CA,A,YES,2,31809,1,30000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,12.28532546514711,39.6411003234242,2.334156796233545,0,2023-03-23,temperature not assessed upon arrival at the laboratory +CA,A,YES,4,12078,3,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,6.372810317545694,259.42962167841773,1.636533240568632,0,2023-03-23,no +CA,A,YES,4,12078,4,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,356.2624415052372,63.86701951262568,24.487303216378642,0,2023-03-23,result is not quantifiable +WA,B,Yes,6,31928,1,2000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,57.12229448416939,47.33230911495545,2.0752983845585478,0,2023-03-23,NA +WA,B,Yes,7,07528,1,100000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,952.02496221291,6.169410663772091,6.069574341988132,0,2023-03-23,NA +WA,B,Yes,8,97385,2,50000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,30.383111693070234,41.13844340094726,3.100305592096694,0,2023-03-23,NA +WA,B,Yes,9,14396,2,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,917.1907283739225,451.15560607275324,1.2791564289211648,0,2023-03-23,> max temp and/or hold time +NM,C,yes,10,27604,5,1000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,2.4320723687444628,813.6970080351902,0.5423803891722885,0,2023-03-23,no +NM,C,yes,11,91578,6,10000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,1.2186646237188727,357.3229187839913,0.7503414037883832,0,2023-03-23,NA +ZZ,F,NO,13,65174,2,8472,wwtp,raw wastewater,copies/g dry sludge,sars-cov-2,17.77012486270121,9.48241112751736,1.8752507121891457,0,2023-03-23,NA +ZZ,F,NO,15,98436,4,8472,wwtp,raw wastewater,copies/g dry sludge,sars-cov-2,16.69859560320987,969.319661596872,7.326203786400412,0,2023-03-23,below loq +CA,A,YES,1,04971,1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,57.19019343505626,10.285016207169908,22.79070573429898,0,2023-03-24,NA +CA,A,YES,4,12078,3,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,1.7376589193059462,967.3495267419621,3.4753178386118924,1,2023-03-24,no +CA,A,YES,4,12078,4,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,111.27166881702163,28.229952677729866,3.6216335717949595,0,2023-03-24,NA +WA,B,Yes,6,31928,1,2000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,18.995312252126684,22.258125279766134,3.039191399772452,0,2023-03-24,NA +WA,B,Yes,9,14396,2,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,84.76152159547529,134.01229597177553,1.0275912470560846,0,2023-03-24,NA +NM,C,yes,10,27604,5,1000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,0.9080500355697724,696.2142607043737,0.25105430589969824,0,2023-03-24,NA +NM,C,yes,11,91578,6,10000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,1.6927620546399462,420.194216131754,0.3426093350197461,0,2023-03-24,yes +CA,A,YES,1,04971,1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,218.27243814724895,312.00042051144555,20.229522333360077,0,2023-03-25,NA +CA,A,YES,2,31809,1,30000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,107.345665149764,515.9267700080054,1.470878840010913,0,2023-03-25,NA +CA,A,YES,4,12078,3,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,306.0684483908621,690.7429884465517,1.2472233358245872,0,2023-03-25,no +CA,A,YES,4,12078,4,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,0.5670101256865503,57.76235080693807,1.1340202513731006,1,2023-03-25,no +WA,B,Yes,6,31928,1,2000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,7.234204292279638,109.45436700055618,3.435598191380963,0,2023-03-25,no +WA,B,Yes,8,97385,2,50000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,38.52235263081736,777.3075990048837,14.728996531543899,0,2023-03-25,NA +WA,B,Yes,9,14396,2,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,474.04142777356236,12.102775609092566,4.962162065039853,0,2023-03-25,NA +NM,C,yes,10,27604,5,1000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,1.475351287403206,655.6370665812346,1.1120620138031492,0,2023-03-25,no +NM,C,yes,11,91578,6,10000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,2.463990881932199,649.0397208296008,1.3686791025529064,0,2023-03-25,NA +CA,A,YES,1,04971,1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,8.807374893730517,9.54018147503281,6.126507865610079,0,2023-03-26,NA +CA,A,YES,2,31809,1,30000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,23.992158576801295,6.373300968944614,1.521159136379448,0,2023-03-26,no +CA,A,YES,4,12078,3,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,47.52635632317084,181.881147912835,4.51645456715964,0,2023-03-26,NA +CA,A,YES,4,12078,4,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,66.12395141119353,129.66724813174386,8.132719979488547,0,2023-03-26,NA +WA,B,Yes,6,31928,1,2000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,5.656280519207332,98.92801300163985,12.594099870545627,0,2023-03-26,> max temp and/or hold time +WA,B,Yes,7,07528,1,100000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,23.956173284947624,75.01528595730731,14.819946123688243,0,2023-03-26,NA +WA,B,Yes,8,97385,2,50000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,43.06360214366511,81.6194646552056,2.1108575682177664,0,2023-03-26,NA +WA,B,Yes,9,14396,2,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,35.39760093547524,5.161523767680968,4.47058547308224,0,2023-03-26,y +NM,C,yes,10,27604,5,1000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,1.2548976256452007,203.42350103503762,0.7330238609212207,0,2023-03-26,NA +NM,C,yes,11,91578,6,10000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,2.0524242201251885,658.8376334456489,0.3035913003326015,0,2023-03-26,y +YY,E,No,12,32541,1,13,upstream,primary sludge,copies/g dry sludge,sars-cov-2,6.186967637837796,5.653437263417586,3.176220230720233,0,2023-03-26,NA +ZZ,F,NO,13,65174,2,8472,wwtp,raw wastewater,copies/g dry sludge,sars-cov-2,11.88220309531992,736.2853370081403,15.95434833305698,0,2023-03-26,NA +CA,A,YES,1,04971,1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,73.4268981868111,131.858283598738,3.4136857352345937,0,2023-03-27,NA +CA,A,YES,2,31809,1,30000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,163.13505553003236,593.1086259599754,15.773299121731014,0,2023-03-27,NA +CA,A,YES,4,12078,3,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,85.65401382193214,785.0530114973682,3.544452565324648,0,2023-03-27,temperature not assessed upon arrival at the laboratory +CA,A,YES,4,12078,4,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,187.9685878653195,7.1038412317222015,8.671424162848957,0,2023-03-27,NA +WA,B,Yes,6,31928,1,2000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,64.71314419233782,8.460165039118673,1.140055827278722,0,2023-03-27,NA +WA,B,Yes,7,07528,1,100000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,435.17056673604725,450.89257248527866,4.092584947130413,0,2023-03-27,NA +WA,B,Yes,9,14396,2,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,229.9112667285273,654.0125717777411,22.20932235768555,0,2023-03-27,no +NM,C,yes,10,27604,5,1000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,2.880356891852241,36.47758589399812,0.02842637124098375,0,2023-03-27,NA +NM,C,yes,11,91578,6,10000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,1.15437661131711,519.5254454148705,0.8683312283166003,0,2023-03-27,y +XX,D,ye,14,09634,10,1000000000,wwtp,raw wastewater,copies/l wastewater,FLUAV,3.8146868432017,30.897846842187118,7.6293736864034,1,2023-03-27,NA +YY,E,No,14,09634,3,13,upstream,primary sludge,copies/g dry sludge,sars-cov-2,5.188815762563365,15.646629999598368,2.0905499272838144,0,2023-03-27,NA +ZZ,F,NO,15,98436,4,8472,wwtp,raw wastewater,copies/g dry sludge,sars-cov-2,250.63839007114578,157.9402743172809,4.876193156274159,0,2023-03-27,y +CA,A,YES,1,04971,1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,6.682849019380353,282.9619057651956,1.0279225570177555,0,2023-03-28,NA +CA,A,YES,2,31809,1,30000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,213.46549262740135,14.512192256662717,2.5478249258982113,0,2023-03-28,NA +CA,A,YES,4,12078,3,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,91.85644941948355,7.196072391440902,17.642393700732026,0,2023-03-28,NA +CA,A,YES,5,34687,3,1000000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,7.469344247949058,652.0884766190582,1.6197019495186475,0,2023-03-28,NA +CA,A,YES,4,12078,4,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,226.99942738128578,50.93264171588683,2.6064533430635564,0,2023-03-28,NA +WA,B,Yes,8,97385,2,50000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,665.8514811378952,755.0423012322362,7.938225085174666,0,2023-03-28,NA +WA,B,Yes,9,14396,2,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,48.59211674562865,5.2251562326755145,17.601907520097537,0,2023-03-28,NA +NM,C,yes,10,27604,5,1000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,0.8566400384244849,211.58277546977004,1.157670034088466,1,2023-03-28,NA +NM,C,yes,11,91578,6,10000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,2.6479352590870193,57.70831070637592,0.6618860957312795,0,2023-03-28,NA +XX,D,ye,14,09634,10,1000000000,wwtp,raw wastewater,copies/l wastewater,FLUAV,149.27265666664286,46.34460042299492,5.582793719547046,0,2023-03-28,NA +ZZ,F,NO,12,32541,1,8472,wwtp,raw wastewater,copies/g dry sludge,sars-cov-2,977.1807953659874,12.53762415630151,7.683993277382071,0,2023-03-28,NA +CA,A,YES,1,04971,1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,75.62091664975829,21.40665496542848,13.264487438945563,0,2023-03-29,NA +CA,A,YES,2,31809,1,30000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,11.640484757373864,11.998540843913457,23.280969514747728,1,2023-03-29,NA +CA,A,YES,4,12078,4,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,113.73720836239401,689.1429047358099,6.2691009398844955,0,2023-03-29,NA +WA,B,Yes,6,31928,1,2000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,9.442671313031157,24.07732912344634,1.7767435381810266,0,2023-03-29,NA +WA,B,Yes,7,07528,1,100000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,31.374599281976742,10.236396073217696,5.520480739668748,0,2023-03-29,NA +WA,B,Yes,9,14396,2,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,576.5807544895031,60.46527738529,1.0903716745653873,0,2023-03-29,no +NM,C,yes,10,27604,5,1000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,1.5577447940461984,5.209059640059037,0.48220564594029025,0,2023-03-29,NA +NM,C,yes,11,91578,6,10000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,0.940607790472693,21.38394296561431,1.0015868878211114,0,2023-03-29,no +CA,A,YES,1,04971,1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,1.6324382532577906,819.4494291923656,3.264876506515581,1,2023-03-30,NA +CA,A,YES,2,31809,1,30000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,295.8762293645139,210.7452994240196,4.393247593749634,0,2023-03-30,NA +CA,A,YES,4,12078,3,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,115.83107833427295,261.62955050387285,2.773349989678891,0,2023-03-30,no +CA,A,YES,4,12078,4,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,311.30927035041526,359.20498471250187,1.0982649002560176,0,2023-03-30,NA +WA,B,Yes,6,31928,1,2000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,4.198291721915954,181.6276930973596,8.396583443831908,1,2023-03-30,NA +WA,B,Yes,7,07528,1,100000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,162.61942438771246,13.967393226659778,6.679199009904495,0,2023-03-30,NA +WA,B,Yes,8,97385,2,50000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,993.08251211322,451.9138054530801,2.6574128319761585,0,2023-03-30,NA +WA,B,Yes,9,14396,2,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,767.4509235267698,527.8894486960496,1.53821933637687,0,2023-03-30,NA +NM,C,yes,10,27604,5,1000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,0.9584380113906208,192.16632039797727,0.7851083590703626,0,2023-03-30,NA +NM,C,yes,11,91578,6,10000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,2.6730970202778264,58.49478013990041,0.29938504843655683,0,2023-03-30,NA +CA,A,YES,1,04971,1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,35.20532643073089,9.248725349979356,15.886088075205711,0,2023-03-31,NA +CA,A,YES,2,31809,1,30000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,23.272235002450206,251.209699858953,5.787394830010697,0,2023-03-31,NA +CA,A,YES,4,12078,3,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,40.3450457130837,43.140416280741945,2.401611349890003,0,2023-03-31,no +CA,A,YES,4,12078,4,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,594.2310981869983,240.48372233726306,1.427556274291066,0,2023-03-31,NA +WA,B,Yes,6,31928,1,2000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,3.9271169468506946,11.785732509393805,7.854233893701389,1,2023-03-31,NA +WA,B,Yes,7,07528,1,100000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,139.87865385486384,35.33839148486886,2.3945305890941455,0,2023-03-31,result is not quantifiable +WA,B,Yes,8,97385,2,50000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,8.709861124050093,273.64973133042974,6.907347630820922,0,2023-03-31,no +WA,B,Yes,9,14396,2,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,458.1604827140203,30.040551865401653,17.72887875047263,0,2023-03-31,NA +NM,C,yes,10,27604,5,1000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,1.2284040385101573,46.802110878164655,0.3969893846645802,0,2023-03-31,NA +NM,C,yes,11,91578,6,10000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,1.830424965912257,22.302548730182078,0.472855116934369,0,2023-03-31,NA +CA,A,YES,1,04971,1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,390.3741886882092,194.96633941221833,11.890457486370696,0,2023-04-01,NA +CA,A,YES,2,31809,1,30000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,677.777855128173,615.4807390980077,3.173075903139985,0,2023-04-01,NA +CA,A,YES,4,12078,3,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,5.535614015188141,303.4536495625179,2.240777235926934,0,2023-04-01,> max temp and/or hold time +CA,A,YES,4,12078,4,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,102.6499394427105,11.483475758272078,2.729616665672996,0,2023-04-01,temperature not assessed upon arrival at the laboratory +WA,B,Yes,6,31928,1,2000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,22.035526932123773,532.2928583348399,12.362716854022691,0,2023-04-01,NA +WA,B,Yes,7,07528,1,100000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,17.24232435262091,618.754418043131,10.266321621420415,0,2023-04-01,NA +WA,B,Yes,8,97385,2,50000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,375.1614950900082,118.9832474766205,1.2451104611579882,0,2023-04-01,NA +WA,B,Yes,9,14396,2,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,10.207469407197692,45.2633982257767,3.454524009409514,0,2023-04-01,no +NM,C,yes,11,91578,6,10000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,1.0283951710812824,21.703675808591377,0.11000523977801965,0,2023-04-01,NA +ZZ,F,NO,13,65174,2,8472,wwtp,raw wastewater,copies/g dry sludge,sars-cov-2,113.55153439549117,829.9229756073087,1.5817763749255775,0,2023-04-01,NA +CA,A,YES,1,04971,1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,9.059006455958267,10.381219237878499,18.118012911916534,1,2023-04-02,NA +CA,A,YES,2,31809,1,30000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,902.0031704675641,131.6142552918608,15.989720423775033,0,2023-04-02,no +CA,A,YES,4,12078,3,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,104.58872120685022,134.5517625017887,13.24140470741661,0,2023-04-02,NA +CA,A,YES,4,12078,4,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,9.06251770567413,7.481460176674117,1.016188578692917,0,2023-04-02,NA +WA,B,Yes,7,07528,1,100000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,61.19700925428539,390.96087912923343,1.126274580376372,0,2023-04-02,NA +WA,B,Yes,8,97385,2,50000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,133.09184702959703,809.3285296795337,1.4247325104833497,0,2023-04-02,NA +WA,B,Yes,9,14396,2,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,11.876502051636832,5.092561435270632,23.753004103273664,1,2023-04-02,NA +NM,C,yes,10,27604,5,1000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,1.8159284753134648,65.62728696383928,0.41625290153073263,0,2023-04-02,NA +NM,C,yes,11,91578,6,10000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,0.8759789176607697,14.134626581447831,0.37928209738656654,0,2023-04-02,no +YY,E,No,14,09634,3,13,upstream,primary sludge,copies/g dry sludge,sars-cov-2,892.5818822141072,597.1179775685647,1.7028082205099477,0,2023-04-02,no +ZZ,F,NO,14,09634,3,8472,wwtp,raw wastewater,copies/g dry sludge,sars-cov-2,6.415075406285594,691.4913909499812,2.6254389786583334,0,2023-04-02,result is not quantifiable +CA,A,YES,1,04971,1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,590.6204299820803,39.18326309363071,7.69840360708392,0,2023-04-03,NA +CA,A,YES,2,31809,1,30000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,2.631327104091619,6.2404841531535435,5.262654208183238,1,2023-04-03,NA +CA,A,YES,4,12078,3,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,61.40731305235723,47.69985938770851,3.3531032253677284,0,2023-04-03,no +CA,A,YES,4,12078,4,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,30.957677001713034,18.523321801049295,1.1622494476454377,0,2023-04-03,NA +WA,B,Yes,6,31928,1,2000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,52.854928898274046,34.83801358738989,2.0095851671085034,0,2023-04-03,NA +WA,B,Yes,7,07528,1,100000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,122.99160529962944,383.6699933199615,1.771693536707636,0,2023-04-03,NA +WA,B,Yes,8,97385,2,50000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,7.628436263214652,72.5113716240953,22.265583004160288,0,2023-04-03,NA +WA,B,Yes,9,14396,2,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,47.51985938214286,10.19962809411392,1.2029726257463753,0,2023-04-03,no +NM,C,yes,10,27604,5,1000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,0.8248913799990276,994.8913263067676,0.07850423572469814,0,2023-04-03,NA +ZZ,F,NO,15,98436,4,8472,wwtp,raw wastewater,copies/g dry sludge,sars-cov-2,0.6874122777675692,38.76866667444012,1.3748245555351384,1,2023-04-03,NA +CA,A,YES,1,04971,1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,282.5664507150931,99.44932473136679,5.496039422038657,0,2023-04-04,NA +CA,A,YES,2,31809,1,30000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,8.044405520601384,79.34261124258812,1.7966125018670736,0,2023-04-04,NA +CA,A,YES,4,12078,3,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,666.839185169513,83.17414267468308,3.7722753502525497,0,2023-04-04,NA +CA,A,YES,4,12078,4,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,33.55461428327824,48.54673289792136,24.655547465902714,0,2023-04-04,no +CA,A,YES,5,34687,4,1000000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,16.933691061375384,124.24622806242756,6.400005025784543,0,2023-04-04,NA +WA,B,Yes,6,31928,1,2000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,395.1139812730705,185.28633402259942,1.001562047386236,0,2023-04-04,no +WA,B,Yes,7,07528,1,100000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,273.97360842181405,54.92525291302878,23.104653273077734,0,2023-04-04,no +WA,B,Yes,8,97385,2,50000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,24.57186104436064,406.23102538643815,15.911118887002894,0,2023-04-04,NA +WA,B,Yes,9,14396,2,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,30.288662854491605,586.0733488729976,6.66564823095393,0,2023-04-04,no +NM,C,yes,10,27604,5,1000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,0.7813343484832055,28.262508357405633,0.41276006632862217,0,2023-04-04,NA +NM,C,yes,11,91578,6,10000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,2.5841551733243957,6.383875271867941,0.6604158868151668,0,2023-04-04,no +XX,D,ye,13,65174,10,1000000000,wwtp,raw wastewater,copies/l wastewater,FLUAV,12.24097679759742,259.835774879926,6.288169534860324,0,2023-04-04,no +CA,A,YES,1,04971,1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,56.97307164298722,224.66257416062479,16.17596585536359,0,2023-04-05,NA +CA,A,YES,2,31809,1,30000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,656.5186313137227,262.2870636845951,9.413836214999804,0,2023-04-05,NA +CA,A,YES,4,12078,3,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,281.1968791055341,26.382145664834148,14.269835324979727,0,2023-04-05,NA +WA,B,Yes,6,31928,1,2000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,162.3029335579853,190.31816555935592,13.890885193606142,0,2023-04-05,no +WA,B,Yes,7,07528,1,100000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,92.60940351013274,9.573634427819217,20.300804021995056,0,2023-04-05,NA +WA,B,Yes,8,97385,2,50000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,236.9413365799493,10.810678660381582,1.1963309078654965,0,2023-04-05,NA +WA,B,Yes,9,14396,2,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,13.859821831723332,5.011486146719104,2.915460265795362,0,2023-04-05,NA +NM,C,yes,10,27604,5,1000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,0.877964887214645,137.86288228712337,1.3009280926844788,0,2023-04-05,NA +NM,C,yes,11,91578,6,10000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,1.206329039074767,125.86265159892605,0.13583909249172982,0,2023-04-05,NA +XX,D,ye,14,09634,10,1000000000,wwtp,raw wastewater,copies/l wastewater,FLUAV,141.0083181632142,42.050694411795675,1.2056073206531754,0,2023-04-05,NA +YY,E,No,12,32541,1,13,upstream,primary sludge,copies/g dry sludge,sars-cov-2,8.144157949838752,169.114630237328,16.288315899677503,1,2023-04-05,result is not quantifiable +CA,A,YES,1,04971,1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,784.899042119334,8.014518989701141,1.7527365477504029,0,2023-04-06,y +CA,A,YES,2,31809,1,30000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,686.3739121168077,520.7600338812931,1.035478213127512,0,2023-04-06,NA +CA,A,YES,4,12078,3,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,43.98289272819491,246.17292256584577,7.1031679448104725,0,2023-04-06,NA +CA,A,YES,4,12078,4,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,10.290987568805631,154.3023899425953,18.203789941116487,0,2023-04-06,temperature not assessed upon arrival at the laboratory +WA,B,Yes,6,31928,1,2000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,14.811490243479987,153.5776136831542,3.567332910465447,0,2023-04-06,NA +WA,B,Yes,7,07528,1,100000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,310.3037333418046,415.0895832394591,5.655518525854642,0,2023-04-06,NA +WA,B,Yes,8,97385,2,50000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,54.16668213393648,31.230577136063825,1.7814287155048465,0,2023-04-06,no +WA,B,Yes,9,14396,2,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,150.47218012962094,134.7708971958526,2.7450708219113484,0,2023-04-06,NA +NM,C,yes,10,27604,5,1000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,-0.08468168105296528,167.881279757593,0.2163483146110159,1,2023-04-06,NA +NM,C,yes,11,91578,6,10000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,2.6601309025395805,52.69835054701574,0.30088095555892774,0,2023-04-06,NA +XX,D,ye,15,98436,10,1000000000,wwtp,raw wastewater,copies/l wastewater,FLUAV,189.53955135429854,55.03975651892324,2.089502131319954,0,2023-04-06,result is not quantifiable +YY,E,No,15,98436,4,13,upstream,primary sludge,copies/g dry sludge,sars-cov-2,28.44680575494976,110.11677746001274,18.54001408001815,0,2023-04-06,NA +ZZ,F,NO,15,98436,4,8472,wwtp,raw wastewater,copies/g dry sludge,sars-cov-2,15.421219635348143,44.5465336286134,2.23838377880263,0,2023-04-06,NA +CA,A,YES,1,04971,1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,157.90319031704828,163.90882472260637,7.625228932162711,0,2023-04-07,NA +CA,A,YES,2,31809,1,30000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,97.22649124671644,44.19433824984998,13.792100458386194,0,2023-04-07,NA +CA,A,YES,4,12078,3,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,742.5301161811412,96.08187004252646,9.563721710577955,0,2023-04-07,NA +CA,A,YES,4,12078,4,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,2.0734235714452525,237.5448258708884,4.146847142890505,1,2023-04-07,NA +WA,B,Yes,7,07528,1,100000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,26.591199012501473,245.26811495172652,8.044375025053975,0,2023-04-07,NA +NM,C,yes,10,27604,5,1000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,1.1877605601436416,5.494219691665465,0.71801639586818,0,2023-04-07,NA +NM,C,yes,11,91578,6,10000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,0.90893612691211,88.93943915043704,0.918834486417499,0,2023-04-07,NA +YY,E,No,15,98436,4,13,upstream,primary sludge,copies/g dry sludge,sars-cov-2,29.550402383983954,138.05347414608397,10.087206793189631,0,2023-04-07,NA +CA,A,YES,1,04971,1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,18.741526594607375,6.286134977955453,17.90925875056528,0,2023-04-08,NA +CA,A,YES,2,31809,1,30000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,10.95544846226623,623.814563326829,1.0293773503157166,0,2023-04-08,NA +CA,A,YES,4,12078,4,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,33.12918380831049,182.23242552557838,8.09494836959698,0,2023-04-08,NA +WA,B,Yes,6,31928,1,2000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,17.136366411063207,21.315640844407163,6.9185139639129,0,2023-04-08,NA +WA,B,Yes,7,07528,1,100000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,5.128511242236564,5.281547217787373,10.257022484473127,1,2023-04-08,no +WA,B,Yes,8,97385,2,50000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,32.19031427500802,7.309612769675325,9.441944671146873,0,2023-04-08,NA +WA,B,Yes,9,14396,2,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,9.940517816982343,61.251441078010764,20.46870828258581,0,2023-04-08,NA +NM,C,yes,10,27604,5,1000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,1.988085110539044,35.12573439298503,1.1900892215698746,0,2023-04-08,NA +NM,C,yes,11,91578,6,10000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,2.721213357522774,160.52755976629774,0.04755359979858107,0,2023-04-08,NA +CA,A,YES,1,04971,1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,8.166963197060474,177.94206519240126,6.618345313066703,0,2023-04-09,NA +CA,A,YES,2,31809,1,30000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,35.45993972342169,8.782671193805756,4.058230294305921,0,2023-04-09,no +CA,A,YES,4,12078,3,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,13.443515035138622,112.4095320568888,3.7663030252902274,0,2023-04-09,NA +CA,A,YES,4,12078,4,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,9.939894313577529,7.042971287123867,3.3933854298476804,0,2023-04-09,no +WA,B,Yes,6,31928,1,2000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,345.4451451656114,252.91117545767608,3.7285623790989244,0,2023-04-09,no +WA,B,Yes,7,07528,1,100000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,10.251599505709105,176.32960024160525,5.2113048708093785,0,2023-04-09,NA +WA,B,Yes,8,97385,2,50000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,219.33327973276917,603.8714293824142,14.336688842087373,0,2023-04-09,NA +WA,B,Yes,9,14396,2,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,7.386628538775972,152.15326808391075,14.773257077551945,1,2023-04-09,below loq +NM,C,yes,10,27604,5,1000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,1.4400818720278807,877.7463129615602,0.4718051830855049,0,2023-04-09,NA +NM,C,yes,11,91578,6,10000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,2.99143111388315,93.34884540577853,1.2526475927219374,0,2023-04-09,NA +CA,A,YES,1,04971,1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,210.509691295845,624.5578615281554,17.273425323465588,0,2023-04-10,NA +CA,A,YES,2,31809,1,30000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,7.981315561174949,23.5008393519363,15.962631122349897,1,2023-04-10,NA +CA,A,YES,4,12078,3,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,280.89462552241105,63.812339046785254,3.3159000389611912,0,2023-04-10,NA +CA,A,YES,4,12078,4,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,5.966880202506393,12.019470260487012,11.933760405012785,1,2023-04-10,no +WA,B,Yes,6,31928,1,2000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,212.792744025519,8.641291054872614,19.541754477321188,0,2023-04-10,no +WA,B,Yes,7,07528,1,100000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,407.0690347711487,572.9397991612419,6.106600781824925,0,2023-04-10,NA +WA,B,Yes,8,97385,2,50000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,748.0140924187915,54.17746384125275,7.915502347281119,0,2023-04-10,NA +WA,B,Yes,9,14396,2,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,31.194882177750348,29.752836382850525,24.31877190845533,0,2023-04-10,no +NM,C,yes,10,27604,5,1000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,2.130917536411431,200.10127217216137,1.2554158041900918,0,2023-04-10,NA +NM,C,yes,11,91578,6,10000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,0.5442098394960652,5.235970725204678,0.8452398351600463,1,2023-04-10,no +YY,E,No,13,65174,2,13,upstream,primary sludge,copies/g dry sludge,sars-cov-2,568.5349439951062,9.032124404231801,6.168961041623295,0,2023-04-10,NA +CA,A,YES,1,04971,1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,260.17284607415934,327.2116063875679,1.4571587493996616,0,2023-04-11,> max temp and/or hold time +CA,A,YES,2,31809,1,30000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,358.55680488694117,8.957589110390598,1.7569015144119247,0,2023-04-11,NA +CA,A,YES,4,12078,3,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,406.3571721031981,36.864848287358505,16.294351953601957,0,2023-04-11,no +CA,A,YES,5,34687,3,1000000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,203.39061378638357,10.844214941466674,7.3445374451332475,0,2023-04-11,NA +CA,A,YES,4,12078,4,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,90.95001272827207,6.521336946477955,10.628731818735114,0,2023-04-11,NA +CA,A,YES,5,34687,4,1000000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,23.022500399652195,15.98885833376444,3.372872193228345,0,2023-04-11,NA +WA,B,Yes,6,31928,1,2000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,615.708771482301,10.135763825325489,4.685961340492325,0,2023-04-11,no +WA,B,Yes,9,14396,2,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,856.7944959452399,42.743068785412426,1.3621775676569894,0,2023-04-11,NA +NM,C,yes,10,27604,5,1000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,1.566919860727531,190.36538584518604,0.9379017625838088,0,2023-04-11,no +NM,C,yes,11,91578,6,10000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,0.7070201646950343,49.24820297105888,1.3411337598480602,0,2023-04-11,NA +XX,D,ye,12,32541,10,1000000000,wwtp,raw wastewater,copies/l wastewater,FLUAV,60.521081381691936,255.0753427869043,1.027922545462062,0,2023-04-11,NA +CA,A,YES,1,04971,1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,5.236194326347224,533.1325503441246,6.9827168044249746,0,2023-04-12,no +CA,A,YES,2,31809,1,30000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,173.7741754320949,92.49540081415049,7.51063601193581,0,2023-04-12,NA +CA,A,YES,4,12078,3,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,858.3921294290185,37.546161748685506,2.6179545510764006,0,2023-04-12,NA +CA,A,YES,4,12078,4,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,263.4972474779873,32.654446175887905,17.04319310830586,0,2023-04-12,NA +WA,B,Yes,6,31928,1,2000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,0.8456355914108287,559.3976421163684,1.6912711828216573,1,2023-04-12,NA +WA,B,Yes,7,07528,1,100000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,10.663283101159395,9.818850502214255,17.411733308140732,0,2023-04-12,NA +NM,C,yes,10,27604,5,1000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,1.7327672781433205,10.553875947373328,0.8390867291582444,0,2023-04-12,> max temp and/or hold time +NM,C,yes,11,91578,6,10000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,2.3668723550445976,49.788526386792086,1.23394135854962,0,2023-04-12,NA +YY,E,No,14,09634,3,13,upstream,primary sludge,copies/g dry sludge,sars-cov-2,20.59993907975133,60.826298845929806,10.409717401982743,0,2023-04-12,temperature not assessed upon arrival at the laboratory +CA,A,YES,2,31809,1,30000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,36.456793445491606,133.4512864441959,2.375645011570705,0,2023-04-13,y +CA,A,YES,4,12078,3,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,5.068797859436806,468.7450638551754,1.1052477073450997,0,2023-04-13,NA +CA,A,YES,4,12078,4,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,13.771251472672594,223.4474870717352,1.583510367075877,0,2023-04-13,NA +WA,B,Yes,6,31928,1,2000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,36.229840491977434,5.135799331018692,14.868361534317362,0,2023-04-13,NA +WA,B,Yes,7,07528,1,100000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,423.80803371533824,855.5827435678136,10.87464033537561,0,2023-04-13,NA +WA,B,Yes,8,97385,2,50000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,35.23487612225432,7.435625948970397,2.647883691412648,0,2023-04-13,NA +WA,B,Yes,9,14396,2,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,123.74672714461803,117.55612791022045,1.3853878162251763,0,2023-04-13,NA +NM,C,yes,10,27604,5,1000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,1.2082654469046061,30.764177147366887,0.7688326627692044,0,2023-04-13,no +NM,C,yes,11,91578,6,10000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,1.6605960167796854,26.436376681889204,1.3065795707026098,0,2023-04-13,NA +YY,E,No,14,09634,3,13,upstream,primary sludge,copies/g dry sludge,sars-cov-2,275.9744969282582,21.377571481712348,1.010752110202523,0,2023-04-13,no +CA,A,YES,1,04971,1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,7.927165967825946,52.418847144635976,1.9441287429439593,0,2023-04-14,NA +CA,A,YES,2,31809,1,30000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,345.0026009254806,610.9094157788714,21.65532245034835,0,2023-04-14,NA +CA,A,YES,4,12078,3,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,54.848557710253914,10.778600344944579,7.0418453780458234,0,2023-04-14,NA +CA,A,YES,4,12078,4,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,90.80459905549722,458.30345159200976,14.255520480805934,0,2023-04-14,NA +WA,B,Yes,6,31928,1,2000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,12.19918549690248,867.137211880195,24.39837099380496,1,2023-04-14,no +WA,B,Yes,7,07528,1,100000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,510.23596515904586,88.49005281787859,1.2078826773626496,0,2023-04-14,> max temp and/or hold time +WA,B,Yes,8,97385,2,50000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,0.6403686891705347,39.879257885907286,1.2807373783410694,1,2023-04-14,no +WA,B,Yes,9,14396,2,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,9.235689635328649,15.075804230677768,3.858557330572206,0,2023-04-14,no +NM,C,yes,10,27604,5,1000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,0.7353618396165423,75.71212528265467,1.073746787008171,0,2023-04-14,NA +NM,C,yes,11,91578,6,10000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,0.29820943051127224,5.970127846185665,0.5992394261752534,1,2023-04-14,NA +XX,D,ye,13,65174,10,1000000000,wwtp,raw wastewater,copies/l wastewater,FLUAV,18.50771349156326,6.865548277964143,1.4564122026922453,0,2023-04-14,temperature not assessed upon arrival at the laboratory +CA,A,YES,1,04971,1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,8.498960817154165,6.087806077690802,3.7936991995095233,0,2023-04-15,result is not quantifiable +CA,A,YES,4,12078,3,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,112.03237309292703,997.4318247637414,3.34361692518484,0,2023-04-15,NA +CA,A,YES,4,12078,4,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,287.5741900028177,423.6972701578573,1.4350865331338685,0,2023-04-15,no +WA,B,Yes,6,31928,1,2000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,156.14758749256313,50.93273759615766,6.332029487304983,0,2023-04-15,no +WA,B,Yes,7,07528,1,100000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,584.9495823822291,266.6015781169515,18.674273295970064,0,2023-04-15,NA +WA,B,Yes,8,97385,2,50000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,337.74159169207536,6.0430450612580815,15.368369161646344,0,2023-04-15,NA +WA,B,Yes,9,14396,2,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,5.748251202931816,496.80250214986035,16.88011734288282,0,2023-04-15,NA +NM,C,yes,11,91578,6,10000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,1.2462283024205552,87.58114737405828,0.33310987430756855,0,2023-04-15,NA +YY,E,No,14,09634,3,13,upstream,primary sludge,copies/g dry sludge,sars-cov-2,944.06667727823606,7.206019361456571,2.6178037103464837,0,2023-04-15,NA +CA,A,YES,1,04971,1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,161.50883552236422,89.71084760429939,10.168423259482495,0,2023-04-16,NA +CA,A,YES,2,31809,1,30000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,407.0664727349443,190.82759804800338,2.1732174927564163,0,2023-04-16,NA +CA,A,YES,4,12078,3,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,40.4696085533005,574.726610762378,2.136833852975637,0,2023-04-16,no +CA,A,YES,4,12078,4,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,77.76803004100108,11.598447367637489,2.155812915197988,0,2023-04-16,NA +WA,B,Yes,6,31928,1,2000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,5.983885870929228,8.643478324248626,5.049567206405092,0,2023-04-16,no +WA,B,Yes,7,07528,1,100000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,199.3719151313511,37.95426709020617,1.282954534721593,0,2023-04-16,NA +WA,B,Yes,8,97385,2,50000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,742.3159420994318,119.96543086817792,16.101745965449375,0,2023-04-16,NA +WA,B,Yes,9,14396,2,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,913.2399637271544,46.276083423789125,1.3941584923529649,0,2023-04-16,below loq +NM,C,yes,10,27604,5,1000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,0.5950777326007958,86.73939982911452,0.8961077282647769,1,2023-04-16,NA +NM,C,yes,11,91578,6,10000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,2.06359058493283,254.07422677371417,1.1323271208132573,0,2023-04-16,NA +CA,A,YES,1,04971,1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,24.00532686771313,22.516942505563232,21.438766889349207,0,2023-04-17,NA +CA,A,YES,2,31809,1,30000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,726.3991549581713,135.67180416410423,19.777441676963882,0,2023-04-17,yes +CA,A,YES,4,12078,3,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,73.71514994002796,250.18833821853778,4.655085368654688,0,2023-04-17,NA +CA,A,YES,4,12078,4,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,212.0499053192169,45.70888002158401,3.8323957435389917,0,2023-04-17,NA +WA,B,Yes,7,07528,1,100000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,36.91496996190142,10.181505770466218,1.1696587670041114,0,2023-04-17,NA +WA,B,Yes,8,97385,2,50000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,13.512082844840123,5.092843082069778,6.0443829012413826,0,2023-04-17,NA +WA,B,Yes,9,14396,2,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,15.872450803078664,39.76769498859967,4.792835186121277,0,2023-04-17,NA +NM,C,yes,10,27604,5,1000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,0.908731451548176,29.31256850765844,0.251487901369854,0,2023-04-17,NA +NM,C,yes,11,91578,6,10000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,2.2757745663987134,301.68947550489986,0.9170896350419486,0,2023-04-17,NA +XX,D,ye,15,98436,10,1000000000,wwtp,raw wastewater,copies/l wastewater,FLUAV,59.440063125912026,12.829456701048255,18.53837422465829,0,2023-04-17,NA +CA,A,YES,1,04971,1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,348.3430684735925,932.7512717430938,14.691412369816117,0,2023-04-18,NA +CA,A,YES,2,31809,1,30000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,43.96389147827063,38.480136789613034,14.138988990024531,0,2023-04-18,no +CA,A,YES,4,12078,3,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,13.88590534616682,342.31577683221275,2.7378015670030256,0,2023-04-18,NA +CA,A,YES,5,34687,3,1000000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,208.92445271460898,8.600500193064741,11.118884992419307,0,2023-04-18,no +CA,A,YES,4,12078,4,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,6.94019823559976,68.41697875014958,1.9055291744456355,0,2023-04-18,NA +WA,B,Yes,6,31928,1,2000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,13.4503632605554,254.5920922936517,2.6663471761631388,0,2023-04-18,> max temp and/or hold time +WA,B,Yes,7,07528,1,100000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,807.7392465244916,614.2415974460437,2.286769765716975,0,2023-04-18,temperature not assessed upon arrival at the laboratory +WA,B,Yes,9,14396,2,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,10.875544854966329,6.053766521066263,21.751089709932657,1,2023-04-18,no +NM,C,yes,10,27604,5,1000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,1.4382452846572475,273.3319108650942,0.6413824638384955,0,2023-04-18,> max temp and/or hold time +NM,C,yes,11,91578,6,10000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,1.2827799745155766,11.048393673034747,0.606054305742153,0,2023-04-18,no +CA,A,YES,2,31809,1,30000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,774.7874894453848,578.7270854760085,17.652621929971264,0,2023-04-19,NA +CA,A,YES,4,12078,3,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,39.87209606119167,455.3794883219907,3.6141314578966,0,2023-04-19,no +CA,A,YES,4,12078,4,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,0.8533681658379263,6.2881898288526985,1.7067363316758526,1,2023-04-19,NA +WA,B,Yes,6,31928,1,2000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,29.60183330479927,31.83194169451296,2.4089308437328163,0,2023-04-19,NA +WA,B,Yes,7,07528,1,100000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,385.1344412943056,14.478873211245618,8.011947625255246,0,2023-04-19,NA +WA,B,Yes,8,97385,2,50000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,73.91484148955173,212.71143837360657,3.9514052984561774,0,2023-04-19,NA +NM,C,yes,11,91578,6,10000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,2.3520362646560886,23.54649657151886,1.1598250939846282,0,2023-04-19,result is not quantifiable +CA,A,YES,1,04971,1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,568.4551169471282,921.4530009141888,3.7972934877373823,0,2023-04-20,NA +CA,A,YES,2,31809,1,30000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,806.547589143575,14.994390482282718,6.750795610258758,0,2023-04-20,NA +CA,A,YES,4,12078,3,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,40.63167718674632,17.45569937552425,2.15511720890374,0,2023-04-20,NA +CA,A,YES,4,12078,4,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,58.4431880225128,472.1210584034307,3.4646010229846405,0,2023-04-20,NA +WA,B,Yes,6,31928,1,2000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,10.757643754868367,11.520459777562253,7.317821054770153,0,2023-04-20,NA +WA,B,Yes,7,07528,1,100000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,5.9496975108143895,5.474188636301651,11.899395021628779,1,2023-04-20,NA +WA,B,Yes,8,97385,2,50000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,908.6021800642861,16.483099788200132,1.555071776820289,0,2023-04-20,NA +WA,B,Yes,9,14396,2,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,644.8842998330048,69.35506398978191,1.6938206997456873,0,2023-04-20,NA +NM,C,yes,10,27604,5,1000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,2.5334149625788744,27.261158148393246,0.37509153020391683,0,2023-04-20,yes +NM,C,yes,11,91578,6,10000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,2.941097591722281,679.062851968885,0.17291375899896033,0,2023-04-20,no +CA,A,YES,2,31809,1,30000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,101.15457702347922,298.9739075596262,5.264925508606661,0,2023-04-21,NA +CA,A,YES,4,12078,3,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,7.55927910341746,5.329766717444594,15.11855820683492,1,2023-04-21,no +CA,A,YES,4,12078,4,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,295.0191891574346,422.8627541338376,18.209965662118226,0,2023-04-21,no +WA,B,Yes,6,31928,1,2000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,59.559794658800776,29.904944570019108,1.0617176709785725,0,2023-04-21,NA +WA,B,Yes,7,07528,1,100000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,247.59165333276297,8.324596449026497,17.129344994037808,0,2023-04-21,NA +WA,B,Yes,8,97385,2,50000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,57.77226390074322,75.79684638401724,1.2486808612905065,0,2023-04-21,NA +WA,B,Yes,9,14396,2,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,27.91482353238682,26.100411002431038,6.08262970393365,0,2023-04-21,NA +NM,C,yes,10,27604,5,1000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,2.779110769501942,112.43778301886368,0.8877713432926129,0,2023-04-21,NA +NM,C,yes,11,91578,6,10000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,1.4378321970710723,35.383774517479615,0.5853837074404942,0,2023-04-21,> max temp and/or hold time +XX,D,ye,13,65174,10,1000000000,wwtp,raw wastewater,copies/l wastewater,FLUAV,10.59635486519744,64.80369788335476,7.676105734217961,0,2023-04-21,NA +ZZ,F,NO,14,09634,3,8472,wwtp,raw wastewater,copies/g dry sludge,sars-cov-2,71.21869289502744,64.33093604601123,6.72586369003842,0,2023-04-21,NA +CA,A,YES,1,04971,1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,466.6239673139718,219.33386254534756,3.664561808956291,0,2023-04-22,NA +CA,A,YES,4,12078,3,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,59.51861739707618,684.3346843782483,7.779887130863979,0,2023-04-22,no +CA,A,YES,4,12078,4,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,165.2922469404885,877.9425951443376,10.497201658873347,0,2023-04-22,NA +WA,B,Yes,6,31928,1,2000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,145.97438394249232,10.660303599195432,2.849215690422492,0,2023-04-22,no +WA,B,Yes,7,07528,1,100000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,11.915879076145051,9.453228808724623,23.831758152290103,1,2023-04-22,no +WA,B,Yes,8,97385,2,50000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,19.39331606016249,205.11370668937406,5.561320915090677,0,2023-04-22,NA +WA,B,Yes,9,14396,2,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,17.448034732148663,96.33420914521396,21.088515987791205,0,2023-04-22,NA +NM,C,yes,10,27604,5,1000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,2.5671182394754624,412.4273434061986,0.963801868393986,0,2023-04-22,NA +NM,C,yes,11,91578,6,10000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,0.7466774140958314,941.4454140130463,1.2450075180193803,0,2023-04-22,NA +YY,E,No,15,98436,4,13,upstream,primary sludge,copies/g dry sludge,sars-cov-2,106.55875600423985,289.3561016811968,3.0190568337992536,0,2023-04-22,NA +CA,A,YES,1,04971,1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,265.93446063582985,5.607476230855946,10.197305945712793,0,2023-04-23,NA +CA,A,YES,2,31809,1,30000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,7.933859824227034,57.924267231524674,16.349396700287905,0,2023-04-23,NA +CA,A,YES,4,12078,3,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,306.716276603354,7.106070449235682,8.063096325263846,0,2023-04-23,NA +CA,A,YES,4,12078,4,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,5.7286766628454036,6.779905346699579,10.968482081244277,0,2023-04-23,NA +WA,B,Yes,6,31928,1,2000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,146.70236042004032,6.8535270810878455,13.005670127403205,0,2023-04-23,no +WA,B,Yes,7,07528,1,100000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,272.2439857253243,8.048514132881587,10.401522145955388,0,2023-04-23,NA +WA,B,Yes,9,14396,2,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,158.51992667301744,656.3601447637814,2.194692330189646,0,2023-04-23,NA +NM,C,yes,10,27604,5,1000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,2.9694905749137868,230.36090532042041,0.8886398335621462,0,2023-04-23,no +NM,C,yes,11,91578,6,10000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,0.9853264727448121,52.3367275498159,1.1415405377124621,0,2023-04-23,no +ZZ,F,NO,12,32541,1,8472,wwtp,raw wastewater,copies/g dry sludge,sars-cov-2,126.70636487097767,27.091078868267534,1.8130008671178994,0,2023-04-23,> max temp and/or hold time +ZZ,F,NO,15,98436,4,8472,wwtp,raw wastewater,copies/g dry sludge,sars-cov-2,202.85589279337665,238.0645044353233,21.07363752699312,0,2023-04-23,NA +CA,A,YES,2,31809,1,30000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,546.2003090392154,14.490361702307968,1.3065851736404275,0,2023-04-24,y +CA,A,YES,4,12078,3,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,39.679812621724764,66.957830126471407,1.577139506665979,0,2023-04-24,NA +CA,A,YES,4,12078,4,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,5.001308020393117,30.5427521764067,1.276197561202989,0,2023-04-24,temperature not assessed upon arrival at the laboratory +WA,B,Yes,6,31928,1,2000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,414.00886661055074,114.32925175080292,15.064028828347864,0,2023-04-24,NA +WA,B,Yes,8,97385,2,50000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,22.084385136755607,757.9400271638747,15.970967418189986,0,2023-04-24,NA +WA,B,Yes,9,14396,2,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,419.6124654495961,26.78539625776327,7.402992630022404,0,2023-04-24,NA +NM,C,yes,10,27604,5,1000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,2.7237786649441036,5.371053942839231,0.9670568755731058,0,2023-04-24,NA +NM,C,yes,11,91578,6,10000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,0.982673105654751,658.8051892997945,1.1845849746079036,0,2023-04-24,NA +CA,A,YES,1,04971,1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,11.963077032320644,13.399709308986886,7.498009327668975,0,2023-04-25,NA +CA,A,YES,2,31809,1,30000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,12.769511481447745,18.569695911188614,7.889490440456316,0,2023-04-25,NA +CA,A,YES,4,12078,3,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,402.5991942368238,14.904477059006823,1.1965216993894612,0,2023-04-25,no +CA,A,YES,5,34687,3,1000000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,20.710669975083402,348.86604366503803,16.512048932158514,0,2023-04-25,NA +CA,A,YES,4,12078,4,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,9.125275349863035,223.81019103758862,2.0164338562299036,0,2023-04-25,no +CA,A,YES,5,34687,4,1000000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,258.21853046745724,11.857382727308176,1.3864765605864577,0,2023-04-25,y +WA,B,Yes,6,31928,1,2000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,61.524173281211475,662.3507885573871,9.460303540576735,0,2023-04-25,NA +WA,B,Yes,7,07528,1,100000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,497.18806946389896,637.5170932275527,1.8595980986798208,0,2023-04-25,NA +WA,B,Yes,8,97385,2,50000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,55.87414826717504,88.42594736326919,16.08146154265202,0,2023-04-25,NA +WA,B,Yes,9,14396,2,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,89.56842239127599,64.22847365518726,10.634424557095306,0,2023-04-25,NA +NM,C,yes,10,27604,5,1000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,1.3376795067847622,13.303674086686142,0.9418230659180908,0,2023-04-25,NA +NM,C,yes,11,91578,6,10000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,2.907029589954394,106.01484596999951,0.6401694449687754,0,2023-04-25,NA +YY,E,No,13,65174,2,13,upstream,primary sludge,copies/g dry sludge,sars-cov-2,21.875653019734887,33.11192470972023,1.07229367976199,0,2023-04-25,NA +CA,A,YES,1,04971,1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,66.21163639175714,114.48596232947426,16.12191225075471,0,2023-04-26,NA +CA,A,YES,2,31809,1,30000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,6.629022509031395,9.595463056578318,13.25804501806279,1,2023-04-26,NA +CA,A,YES,4,12078,3,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,217.23853819488096,10.31363779327352,3.052167508140189,0,2023-04-26,NA +CA,A,YES,4,12078,4,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,147.8106706816599,9.652858417257933,1.5527913057744365,0,2023-04-26,NA +WA,B,Yes,7,07528,1,100000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,6.296221235584299,7.115636788104664,10.387813111522187,0,2023-04-26,NA +WA,B,Yes,8,97385,2,50000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,27.46919277375994,456.47292187041234,4.411504863466449,0,2023-04-26,NA +NM,C,yes,10,27604,5,1000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,1.4664156180624237,659.6567691595407,0.33705174460432563,0,2023-04-26,NA +YY,E,No,13,65174,2,13,upstream,primary sludge,copies/g dry sludge,sars-cov-2,60.70509365653131,101.47081384689383,1.1615174290288617,0,2023-04-26,below loq +CA,A,YES,1,04971,1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,208.04588021116533,103.55688479513707,2.691806067533322,0,2023-04-27,NA +CA,A,YES,2,31809,1,30000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,53.274180656979944,820.6814423366915,11.919816966529458,0,2023-04-27,NA +CA,A,YES,4,12078,3,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,575.1924668955329,11.920612056191986,8.524966641800178,0,2023-04-27,no +CA,A,YES,4,12078,4,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,0.801535748563595,21.94619927781503,1.60307149712719,1,2023-04-27,NA +WA,B,Yes,6,31928,1,2000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,8.325609824673485,270.8679649084886,5.321569026385628,0,2023-04-27,NA +WA,B,Yes,7,07528,1,100000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,5.382393185970981,19.014623933202657,1.4033406539427198,0,2023-04-27,NA +WA,B,Yes,8,97385,2,50000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,91.25817134557516,331.62674903296255,1.4324917708791804,0,2023-04-27,NA +WA,B,Yes,9,14396,2,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,280.81347867539483,6.520918067681479,2.775740578136018,0,2023-04-27,NA +NM,C,yes,10,27604,5,1000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,1.2553339133621488,26.884360791717008,1.149406491947094,0,2023-04-27,NA +NM,C,yes,11,91578,6,10000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,1.5322295469537799,169.48498742663392,0.8582923829102322,0,2023-04-27,NA +YY,E,No,12,32541,1,13,upstream,primary sludge,copies/g dry sludge,sars-cov-2,79.44765142043451,222.308652960011,23.64480588964088,0,2023-04-27,NA +ZZ,F,NO,12,32541,1,8472,wwtp,raw wastewater,copies/g dry sludge,sars-cov-2,9.669034640536697,22.33185092635469,19.338069281073395,1,2023-04-27,NA +ZZ,F,NO,15,98436,4,8472,wwtp,raw wastewater,copies/g dry sludge,sars-cov-2,73.08836970536736,38.1529044790854,22.798485293123537,0,2023-04-27,NA +CA,A,YES,1,04971,1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,6.999970333652621,291.4020800306635,1.7604127194300565,0,2023-04-28,NA +CA,A,YES,2,31809,1,30000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,371.0363863962996,53.260900973447896,2.5671821277396587,0,2023-04-28,> max temp and/or hold time +CA,A,YES,4,12078,3,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,844.9449301454397,502.2418617689685,1.631595402698108,0,2023-04-28,> max temp and/or hold time +CA,A,YES,4,12078,4,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,38.34077595815648,280.4878000645076,1.1387535898468688,0,2023-04-28,result is not quantifiable +WA,B,Yes,6,31928,1,2000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,511.7817037076505,429.95146517260093,2.986924182627039,0,2023-04-28,no +WA,B,Yes,7,07528,1,100000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,70.34241432333175,40.298566499919026,1.9687390811274348,0,2023-04-28,result is not quantifiable +WA,B,Yes,8,97385,2,50000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,13.058763427320049,833.8737705892236,2.736195264833119,0,2023-04-28,NA +WA,B,Yes,9,14396,2,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,5.396061369342731,22.71059618985424,7.186845957444637,0,2023-04-28,NA +NM,C,yes,10,27604,5,1000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,2.1708674061943305,6.989954766345039,0.6195850219436966,0,2023-04-28,no +XX,D,ye,14,09634,10,1000000000,wwtp,raw wastewater,copies/l wastewater,FLUAV,850.4514179664667,335.642098053034,4.393836808862517,0,2023-04-28,NA +CA,A,YES,1,04971,1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,560.0658426399126,100.00078493635858,11.271197957537696,0,2023-04-29,NA +CA,A,YES,2,31809,1,30000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,488.1045363416398,24.620903291639102,2.0183846522814695,0,2023-04-29,temperature not assessed upon arrival at the laboratory +CA,A,YES,4,12078,3,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,641.3257808273241,325.7785282678551,2.270722328822303,0,2023-04-29,NA +WA,B,Yes,6,31928,1,2000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,64.80996664030987,7.188380813577274,3.1961157943147254,0,2023-04-29,NA +WA,B,Yes,8,97385,2,50000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,7.18554509694876,5.3870090990504425,14.37109019389752,1,2023-04-29,NA +WA,B,Yes,9,14396,2,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,5.97086222214866,12.52765858411627,4.811423536639933,0,2023-04-29,no +NM,C,yes,10,27604,5,1000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,1.4177799625198153,6.286229313895517,0.7070417098917016,0,2023-04-29,NA +NM,C,yes,11,91578,6,10000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,2.369719720530965,72.22293718435151,1.0266707417994965,0,2023-04-29,NA +YY,E,No,14,09634,3,13,upstream,primary sludge,copies/g dry sludge,sars-cov-2,413.6396632378768,24.20334514929526,3.5206417060830546,0,2023-04-29,NA +CA,A,YES,1,04971,1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,3.32450934958347,235.98845261349894,6.64901869916694,1,2023-04-30,NA +CA,A,YES,2,31809,1,30000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,432.84917078058385,6.319487844386457,3.8899588593964083,0,2023-04-30,below loq +CA,A,YES,4,12078,3,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,18.45668065328468,5.644103603863737,13.720615491710742,0,2023-04-30,no +CA,A,YES,4,12078,4,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,14.00983196989704,850.5684832964836,22.078730981681296,0,2023-04-30,no +WA,B,Yes,6,31928,1,2000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,0.824104984255467,77.63224155256582,1.648209968510934,1,2023-04-30,yes +WA,B,Yes,7,07528,1,100000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,827.4937747266428,5.428272347592286,4.356713600577065,0,2023-04-30,NA +WA,B,Yes,8,97385,2,50000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,698.7745753713236,698.803125916308,1.4319671221737449,0,2023-04-30,no +WA,B,Yes,9,14396,2,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,5.358059856342436,33.07476108777929,5.06766761755592,0,2023-04-30,NA +NM,C,yes,10,27604,5,1000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,2.6813715780406335,15.05178904848824,0.6896286272687399,0,2023-04-30,temperature not assessed upon arrival at the laboratory +NM,C,yes,11,91578,6,10000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,1.3182920676305083,8.521220101289806,0.1617059898946307,0,2023-04-30,no +CA,A,YES,1,04971,1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,126.39909080021351,157.10491649611788,3.067204511505263,0,2023-05-01,NA +CA,A,YES,4,12078,3,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,180.07925754475085,7.279911081740505,1.5229264195104935,0,2023-05-01,NA +CA,A,YES,4,12078,4,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,11.66831183899276,46.16363058138029,13.962847005760967,0,2023-05-01,NA +WA,B,Yes,6,31928,1,2000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,26.69352868165472,649.1344404868371,8.844742015201016,0,2023-05-01,no +WA,B,Yes,7,07528,1,100000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,4.125173737123623,10.927394438026713,8.250347474247246,1,2023-05-01,NA +WA,B,Yes,8,97385,2,50000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,2.069070292431558,72.79373184044034,4.138140584863116,1,2023-05-01,NA +WA,B,Yes,9,14396,2,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,284.89234776819956,259.5699931303272,16.005252726491367,0,2023-05-01,NA +NM,C,yes,10,27604,5,1000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,2.3517199062499174,14.360895813156974,1.3296240203832916,0,2023-05-01,yes +NM,C,yes,11,91578,6,10000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,2.5386329288283753,295.43051467768817,0.7309938220791863,0,2023-05-01,NA +ZZ,F,NO,12,32541,1,8472,wwtp,raw wastewater,copies/g dry sludge,sars-cov-2,5.094366390743734,16.672166739194523,16.302630258421793,0,2023-05-01,no +ZZ,F,NO,13,65174,2,8472,wwtp,raw wastewater,copies/g dry sludge,sars-cov-2,359.22207666562974,91.00063333575055,1.1828553936228068,0,2023-05-01,yes +CA,A,YES,1,04971,1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,13.167240820226265,9.647033797931563,11.831287615485943,0,2023-05-02,no +CA,A,YES,2,31809,1,30000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,194.45846088210806,205.4973725477047,2.8874883364653505,0,2023-05-02,no +CA,A,YES,4,12078,3,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,58.45601230437733,15.617335284955422,9.725898991741676,0,2023-05-02,no +CA,A,YES,4,12078,4,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,1.1159132292358338,17.81804116754442,2.2318264584716676,1,2023-05-02,y +CA,A,YES,5,34687,4,1000000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,10.793151927887916,74.9405348976295,5.1902510946435445,0,2023-05-02,NA +WA,B,Yes,6,31928,1,2000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,13.592826008421673,6.611016298249312,7.401449649309691,0,2023-05-02,NA +WA,B,Yes,7,07528,1,100000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,172.37057991253843,19.933849268276305,22.042262043503793,0,2023-05-02,no +WA,B,Yes,8,97385,2,50000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,20.18807652956671,649.1425764540309,5.588368409462939,0,2023-05-02,NA +NM,C,yes,10,27604,5,1000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,2.9515590864751067,545.9635747566659,0.8247335456963463,0,2023-05-02,NA +NM,C,yes,11,91578,6,10000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,1.6397095225841265,16.745792519220874,0.7778295030992146,0,2023-05-02,NA +CA,A,YES,1,04971,1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,75.45453801139261,174.94212865353848,2.1148952660069806,0,2023-05-03,NA +CA,A,YES,2,31809,1,30000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,798.9596874998856,86.14722796498161,1.4098484908518343,0,2023-05-03,no +CA,A,YES,4,12078,3,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,4.4230710158255615,61.276040709658425,8.846142031651123,1,2023-05-03,y +CA,A,YES,4,12078,4,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,6.033512992915349,283.12071476660077,1.1524204864120626,0,2023-05-03,NA +WA,B,Yes,6,31928,1,2000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,361.82174869275235,412.1726882019008,3.392967811549041,0,2023-05-03,NA +WA,B,Yes,7,07528,1,100000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,11.70915083854198,5.4517105541978195,3.998170760729833,0,2023-05-03,NA +WA,B,Yes,9,14396,2,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,5.682255156783968,6.697510679194023,8.949831096621802,0,2023-05-03,NA +NM,C,yes,10,27604,5,1000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,2.8065377188350977,141.18746211251073,0.11029372080973322,0,2023-05-03,no +NM,C,yes,11,91578,6,10000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,1.6045755223818543,308.83979426045056,0.2874724726472874,0,2023-05-03,no +ZZ,F,NO,12,32541,1,8472,wwtp,raw wastewater,copies/g dry sludge,sars-cov-2,16.479547177592877,133.90982813149452,22.68334622677171,0,2023-05-03,NA +CA,A,YES,1,04971,1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,15.586661702644017,486.2775228649737,15.35829976263435,0,2023-05-04,NA +CA,A,YES,2,31809,1,30000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,13.869096496141317,371.89552269272076,5.788525413467363,0,2023-05-04,NA +CA,A,YES,4,12078,3,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,323.2076513997515,397.9307153994006,8.641007325263786,0,2023-05-04,NA +WA,B,Yes,6,31928,1,2000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,18.74289910238316,33.31537370201077,18.825149889096664,0,2023-05-04,NA +WA,B,Yes,7,07528,1,100000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,87.56096558150305,210.6593961449894,19.355792201443624,0,2023-05-04,NA +WA,B,Yes,8,97385,2,50000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,52.63655482296249,853.6217859408173,14.75972634458482,0,2023-05-04,NA +WA,B,Yes,9,14396,2,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,1.0908618823912202,9.601131820134302,2.1817237647824403,1,2023-05-04,no +NM,C,yes,11,91578,6,10000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,0.9236604871123559,63.72798769754329,1.3647248749582441,0,2023-05-04,> max temp and/or hold time +XX,D,ye,13,65174,10,1000000000,wwtp,raw wastewater,copies/l wastewater,FLUAV,329.0310724879845,147.48107985659834,15.179999526067473,0,2023-05-04,NA +XX,D,ye,14,09634,10,1000000000,wwtp,raw wastewater,copies/l wastewater,FLUAV,2.3325059816367673,156.0210348452466,4.6650119632735345,1,2023-05-04,NA +ZZ,F,NO,12,32541,1,8472,wwtp,raw wastewater,copies/g dry sludge,sars-cov-2,6.974594799887846,38.691175090662064,1.0999467854799458,0,2023-05-04,NA +CA,A,YES,1,04971,1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,741.2838545573932,6.512754463154311,18.960706734517032,0,2023-05-05,NA +CA,A,YES,2,31809,1,30000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,11.175276552688192,13.847475497747844,10.31159381756311,0,2023-05-05,NA +CA,A,YES,4,12078,3,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,353.2196122637675,11.076161672400303,8.306734923461548,0,2023-05-05,no +CA,A,YES,4,12078,4,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,38.685208699574964,152.87902704525837,1.7687885507785361,0,2023-05-05,NA +WA,B,Yes,6,31928,1,2000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,13.662184846720443,5.678396098094882,18.780388831150216,0,2023-05-05,y +WA,B,Yes,7,07528,1,100000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,516.2452340163961,197.2847081127134,2.3450897766945604,0,2023-05-05,yes +WA,B,Yes,8,97385,2,50000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,190.0890489367773,75.11816457143435,2.9705270402936423,0,2023-05-05,NA +NM,C,yes,10,27604,5,1000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,0.994311687737122,406.842475936896,0.13516827114263688,0,2023-05-05,no +NM,C,yes,11,91578,6,10000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,1.6097605683829808,60.0350054120879,0.8733447425219474,0,2023-05-05,NA +XX,D,ye,12,32541,10,1000000000,wwtp,raw wastewater,copies/l wastewater,FLUAV,248.2688759987132,14.829613550991244,1.782822424751423,0,2023-05-05,no +YY,E,No,13,65174,2,13,upstream,primary sludge,copies/g dry sludge,sars-cov-2,11.682221377701298,13.542731459362583,1.509893392242752,0,2023-05-05,no +ZZ,F,NO,15,98436,4,8472,wwtp,raw wastewater,copies/g dry sludge,sars-cov-2,39.78230528490684,14.023513374605809,4.308838293737673,0,2023-05-05,NA +CA,A,YES,1,04971,1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,8.48954291484976,39.35578831757263,2.0469024097072297,0,2023-05-06,below loq +CA,A,YES,2,31809,1,30000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,3.0539834050350025,15.148250438030558,6.107966810070005,1,2023-05-06,NA +CA,A,YES,4,12078,3,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,3.1581856888921447,39.377965667019836,6.316371377784289,1,2023-05-06,no +CA,A,YES,4,12078,4,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,20.871524659166692,29.45033010567461,1.971245204586767,0,2023-05-06,no +WA,B,Yes,6,31928,1,2000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,18.657603638747016,880.1788810601715,8.115614147593085,0,2023-05-06,result is not quantifiable +WA,B,Yes,7,07528,1,100000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,58.11789037373,41.069861023623936,2.861250908142004,0,2023-05-06,below loq +WA,B,Yes,8,97385,2,50000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,392.40289205674054,59.34956624736275,9.6707308731978,0,2023-05-06,no +WA,B,Yes,9,14396,2,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,0.5426373123151723,104.21961163671229,1.0852746246303446,1,2023-05-06,NA +NM,C,yes,10,27604,5,1000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,2.1876565716043546,110.02870458460215,0.6014996503675683,0,2023-05-06,no +XX,D,ye,12,32541,10,1000000000,wwtp,raw wastewater,copies/l wastewater,FLUAV,11.43292290286606,27.506365272225754,13.759174550953487,0,2023-05-06,NA +XX,D,ye,13,65174,10,1000000000,wwtp,raw wastewater,copies/l wastewater,FLUAV,18.747462442743863,19.946895779862693,6.063474053678778,0,2023-05-06,NA +CA,A,YES,1,04971,1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,58.809195500389826,152.84300810289068,3.3717870985386202,0,2023-05-07,y +CA,A,YES,2,31809,1,30000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,683.4899880001176,35.58329693674288,1.8396085882704407,0,2023-05-07,NA +CA,A,YES,4,12078,3,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,9.713375570415083,198.90980468351847,1.5988946509832203,0,2023-05-07,NA +CA,A,YES,4,12078,4,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,8.968834536113757,325.85665461325084,16.96107512552476,0,2023-05-07,NA +WA,B,Yes,6,31928,1,2000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,8.63832294978206,223.73394586163096,1.15097615979303,0,2023-05-07,NA +WA,B,Yes,7,07528,1,100000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,12.688701856368318,13.700831847692132,1.136715437320594,0,2023-05-07,NA +WA,B,Yes,9,14396,2,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,7.9375420614033985,35.53685806500322,2.843405936463906,0,2023-05-07,NA +NM,C,yes,10,27604,5,1000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,1.9472627478277935,18.988839218789366,1.1774012303820522,0,2023-05-07,NA +ZZ,F,NO,15,98436,4,8472,wwtp,raw wastewater,copies/g dry sludge,sars-cov-2,16.779834316342004,28.0722399216928,15.65463712014979,0,2023-05-07,NA +CA,A,YES,1,04971,1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,130.27569233977755,439.6737693684355,23.251322844723248,0,2023-05-08,NA +CA,A,YES,2,31809,1,30000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,361.40112906072727,61.22342197409292,2.576477774840847,0,2023-05-08,NA +CA,A,YES,4,12078,3,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,32.39996799701914,28.82829484546444,4.0052456437600075,0,2023-05-08,NA +CA,A,YES,4,12078,4,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,981.1537183969033,56.872459904927226,6.327830340071864,0,2023-05-08,y +WA,B,Yes,6,31928,1,2000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,948.0332822374847,119.12293194091615,3.9237460646628537,0,2023-05-08,NA +WA,B,Yes,7,07528,1,100000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,181.4727165945616,12.78211127132978,3.090225890113611,0,2023-05-08,NA +WA,B,Yes,8,97385,2,50000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,6.235097734426509,54.60141209914501,1.256086550622904,0,2023-05-08,NA +WA,B,Yes,9,14396,2,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,157.56654965758685,345.8669487554043,11.677685306674013,0,2023-05-08,NA +NM,C,yes,10,27604,5,1000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,2.213811515799708,110.26595043811086,0.34809492625701544,0,2023-05-08,yes +NM,C,yes,11,91578,6,10000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,0.839409857789925,6.0737698525946096,0.7609343773047139,0,2023-05-08,NA +XX,D,ye,12,32541,10,1000000000,wwtp,raw wastewater,copies/l wastewater,FLUAV,41.921410512945954,105.30362489461278,3.6400012197255998,0,2023-05-08,no +ZZ,F,NO,12,32541,1,8472,wwtp,raw wastewater,copies/g dry sludge,sars-cov-2,449.02431591294146,187.4924694541619,1.1981959121509067,0,2023-05-08,NA +CA,A,YES,4,12078,3,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,98.06797389660449,181.97194459847933,1.2716100953697005,0,2023-05-09,temperature not assessed upon arrival at the laboratory +CA,A,YES,5,34687,3,1000000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,77.14820809183166,38.91736205274438,1.4736650396075555,0,2023-05-09,NA +CA,A,YES,4,12078,4,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,245.5138293428475,164.2946506646567,20.19720452417,0,2023-05-09,NA +CA,A,YES,5,34687,4,1000000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,156.4988208352484,70.89738715513944,7.359126277521304,0,2023-05-09,NA +WA,B,Yes,6,31928,1,2000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,4.864758820217579,8.53583206474093,9.729517640435159,1,2023-05-09,no +WA,B,Yes,7,07528,1,100000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,47.15517728386585,26.762066148870552,20.85864963610736,0,2023-05-09,NA +WA,B,Yes,8,97385,2,50000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,32.14412432226787,11.652339440842086,18.08013099489817,0,2023-05-09,NA +NM,C,yes,10,27604,5,1000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,2.1551480430457852,42.125682768141,0.5341347284309143,0,2023-05-09,NA +NM,C,yes,11,91578,6,10000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,2.0330957113603785,69.72372775796367,0.7489104741935365,0,2023-05-09,NA +XX,D,ye,15,98436,10,1000000000,wwtp,raw wastewater,copies/l wastewater,FLUAV,200.40669661042503,71.87017168243563,14.558700816918398,0,2023-05-09,NA +YY,E,No,12,32541,1,13,upstream,primary sludge,copies/g dry sludge,sars-cov-2,14.203805318442566,598.1663393564133,8.932650809999693,0,2023-05-09,NA +ZZ,F,NO,12,32541,1,8472,wwtp,raw wastewater,copies/g dry sludge,sars-cov-2,56.78812704308477,523.7215636578719,1.32218861626182,0,2023-05-09,NA +CA,A,YES,2,31809,1,30000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,37.41443871089028,488.5071841160147,6.288618476744448,0,2023-05-10,NA +CA,A,YES,4,12078,3,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,527.3317932016605,797.739683766454,1.2187930442349697,0,2023-05-10,result is not quantifiable +CA,A,YES,4,12078,4,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,10.360323733417687,12.317566209683534,1.019241933572425,0,2023-05-10,NA +WA,B,Yes,7,07528,1,100000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,72.85325077217195,11.411298160491015,15.265403207738379,0,2023-05-10,NA +WA,B,Yes,8,97385,2,50000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,85.33539173719784,507.56408911990434,1.2245979644892824,0,2023-05-10,no +WA,B,Yes,9,14396,2,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,31.91187496794521,103.67627382303348,21.780300092317898,0,2023-05-10,NA +NM,C,yes,10,27604,5,1000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,2.256087680867849,716.8324822039457,0.1624529144404517,0,2023-05-10,NA +NM,C,yes,11,91578,6,10000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,1.6946341906499007,153.16098499686217,0.8807744661738537,0,2023-05-10,NA +XX,D,ye,14,09634,10,1000000000,wwtp,raw wastewater,copies/l wastewater,FLUAV,550.8416991192717,220.78692628989512,1.9839118171639367,0,2023-05-10,NA +CA,A,YES,1,04971,1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,303.5259117307216,618.6713389578282,13.139319300179181,0,2023-05-11,no +CA,A,YES,4,12078,3,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,14.157814898817636,145.50583381018333,22.964901658773055,0,2023-05-11,NA +CA,A,YES,4,12078,4,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,24.589538905387833,5.265624781223151,1.8268296547535512,0,2023-05-11,no +WA,B,Yes,6,31928,1,2000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,3.2747882985805314,132.74505034721957,6.549576597161063,1,2023-05-11,NA +WA,B,Yes,7,07528,1,100000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,767.6927853645723,17.446844663230237,6.076995664662751,0,2023-05-11,no +WA,B,Yes,8,97385,2,50000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,38.19039495843281,370.8668858669339,7.1230665054547,0,2023-05-11,NA +WA,B,Yes,9,14396,2,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,41.48044540948232,720.9077048625485,22.71658315627536,0,2023-05-11,NA +NM,C,yes,10,27604,5,1000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,0.8832715233524635,329.5936831023259,1.298288819136148,0,2023-05-11,NA +NM,C,yes,11,91578,6,10000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,-0.01763037982498822,16.65580503404038,0.283399615838993,1,2023-05-11,NA +YY,E,No,13,65174,2,13,upstream,primary sludge,copies/g dry sludge,sars-cov-2,4.2674466851261865,107.37397914674295,8.534893370252373,1,2023-05-11,NA +CA,A,YES,1,04971,1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,10.540565710845435,5.703475703147575,21.08113142169087,1,2023-05-12,NA +CA,A,YES,2,31809,1,30000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,6.176377152174395,8.977679302540572,14.16075939728461,0,2023-05-12,no +CA,A,YES,4,12078,3,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,5.919047393158567,6.1100449574325,11.838094786317134,1,2023-05-12,no +CA,A,YES,4,12078,4,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,89.01507878773202,90.89799674311114,18.04901604920424,0,2023-05-12,NA +WA,B,Yes,6,31928,1,2000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,84.05133484366335,169.769693874769,8.330007810549052,0,2023-05-12,NA +WA,B,Yes,7,07528,1,100000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,80.30837048290714,64.50397368036465,1.7180404273157999,0,2023-05-12,NA +WA,B,Yes,8,97385,2,50000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,10.105348153839827,319.00157343516423,17.44609141322325,0,2023-05-12,NA +WA,B,Yes,9,14396,2,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,45.23805430212266,63.268854860535626,2.00038865752301,0,2023-05-12,NA +NM,C,yes,10,27604,5,1000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,2.7727142243940746,59.19572435742954,1.293431219229691,0,2023-05-12,NA +NM,C,yes,11,91578,6,10000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,2.513870024088659,390.06918434304947,1.3715217165676923,0,2023-05-12,NA +YY,E,No,15,98436,4,13,upstream,primary sludge,copies/g dry sludge,sars-cov-2,118.49650899461251,755.5811420789239,3.2084720002359366,0,2023-05-12,NA +CA,A,YES,1,04971,1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,86.93925031392622,61.31553298100391,10.500151659860256,0,2023-05-13,NA +CA,A,YES,2,31809,1,30000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,80.71946716865867,48.19330701311014,6.2000010031220585,0,2023-05-13,NA +CA,A,YES,4,12078,3,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,7.685255306842818,141.11393191180213,9.361953642604531,0,2023-05-13,NA +CA,A,YES,4,12078,4,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,2.84828471109639,86.44569869581473,5.69656942219278,1,2023-05-13,no +WA,B,Yes,6,31928,1,2000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,53.35432921810096,76.09744425125925,3.2217477893878095,0,2023-05-13,NA +WA,B,Yes,7,07528,1,100000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,44.05353332111659,6.383799670237423,15.335222288649632,0,2023-05-13,no +WA,B,Yes,8,97385,2,50000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,20.55823156009283,759.1218225293253,14.462911970732762,0,2023-05-13,NA +WA,B,Yes,9,14396,2,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,8.766971067118003,53.63153133026417,1.3551263755757346,0,2023-05-13,NA +NM,C,yes,10,27604,5,1000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,0.13992624809277923,67.4151650674816,0.44095624375676046,1,2023-05-13,NA +NM,C,yes,11,91578,6,10000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,2.4996948486577666,37.62228090742334,0.922143074652857,0,2023-05-13,NA +CA,A,YES,1,04971,1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,279.89140422897793,192.9022700619561,20.297971158600266,0,2023-05-14,NA +CA,A,YES,2,31809,1,30000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,95.72865997906074,360.9305932737754,1.8166472786359893,0,2023-05-14,NA +WA,B,Yes,6,31928,1,2000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,17.235530400186455,11.779515497397066,1.129976611539121,0,2023-05-14,yes +WA,B,Yes,7,07528,1,100000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,566.4508540992459,25.072809968821453,1.5430419674286542,0,2023-05-14,NA +WA,B,Yes,8,97385,2,50000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,184.34488325197583,30.50313170331635,3.5099003371340842,0,2023-05-14,NA +WA,B,Yes,9,14396,2,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,210.25185574870903,17.61984870946503,3.968916190055598,0,2023-05-14,NA +NM,C,yes,10,27604,5,1000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,2.187349112546333,63.03431492831927,1.0403607361695468,0,2023-05-14,NA +NM,C,yes,11,91578,6,10000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,0.7276552961029552,159.9749967513903,0.3889270374039342,0,2023-05-14,NA +YY,E,No,15,98436,4,13,upstream,primary sludge,copies/g dry sludge,sars-cov-2,224.89046221967178,12.571410317774037,1.941650621102451,0,2023-05-14,NA +CA,A,YES,1,04971,1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,601.9975510440462,201.68876689786737,19.109713023668867,0,2023-05-15,temperature not assessed upon arrival at the laboratory +CA,A,YES,2,31809,1,30000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,137.52745890879558,61.84841375647781,2.541117757157155,0,2023-05-15,NA +CA,A,YES,4,12078,3,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,92.76228205183253,224.8689656855861,4.281389532706772,0,2023-05-15,NA +CA,A,YES,4,12078,4,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,6.496335623626201,308.70920355142766,12.586762232582274,0,2023-05-15,no +WA,B,Yes,6,31928,1,2000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,1.920274836196945,36.17410598623839,3.84054967239389,1,2023-05-15,NA +WA,B,Yes,7,07528,1,100000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,90.66270866804192,688.2992784003794,8.705428392425011,0,2023-05-15,NA +WA,B,Yes,8,97385,2,50000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,6.207504081379959,8.145467700184918,1.7294984743859478,0,2023-05-15,NA +WA,B,Yes,9,14396,2,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,12.84516449429904,259.84301461088285,17.68759057168942,0,2023-05-15,NA +NM,C,yes,10,27604,5,1000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,2.061315101812813,6.788622441013434,0.2741676437894175,0,2023-05-15,NA +CA,A,YES,1,04971,1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,5.399639999551275,32.131818045827,2.5192556599572704,0,2023-05-16,NA +CA,A,YES,2,31809,1,30000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,1.0235557830273876,43.76413723367602,2.047111566054775,1,2023-05-16,y +CA,A,YES,4,12078,3,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,13.387766204253701,277.4527851775533,1.2126745870033109,0,2023-05-16,no +CA,A,YES,5,34687,3,1000000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,187.96946367831058,9.145998926904923,5.776146985459205,0,2023-05-16,NA +CA,A,YES,4,12078,4,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,5.295518334926672,183.71463183977792,2.0008245980858104,0,2023-05-16,NA +CA,A,YES,5,34687,4,1000000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,41.122978067821876,331.4796985381598,9.73235755340418,0,2023-05-16,NA +WA,B,Yes,6,31928,1,2000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,16.695131362918914,10.359659802230343,4.501303872754907,0,2023-05-16,NA +WA,B,Yes,8,97385,2,50000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,379.60719267211874,181.27518393367768,1.2118963868273491,0,2023-05-16,NA +WA,B,Yes,9,14396,2,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,547.4886863228286,267.72195797462825,2.1648210003607096,0,2023-05-16,no +NM,C,yes,10,27604,5,1000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,1.584619295354954,340.182472180515,0.35370921650938636,0,2023-05-16,yes +NM,C,yes,11,91578,6,10000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,2.0522546658718404,6.429704448885619,1.0638227873978812,0,2023-05-16,NA +YY,E,No,12,32541,1,13,upstream,primary sludge,copies/g dry sludge,sars-cov-2,92.55554447468218,23.049969073329304,11.273647997186174,0,2023-05-16,NA +ZZ,F,NO,13,65174,2,8472,wwtp,raw wastewater,copies/g dry sludge,sars-cov-2,458.38772461500673,220.28882526822002,5.09503330805962,0,2023-05-16,NA +CA,A,YES,1,04971,1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,38.82271578473764,377.3869222461186,2.863484552043326,0,2023-05-17,NA +CA,A,YES,2,31809,1,30000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,533.82351620114,201.42108675455356,4.093114662273232,0,2023-05-17,NA +CA,A,YES,4,12078,3,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,31.037287283097793,84.27945039529483,6.60680139509126,0,2023-05-17,NA +CA,A,YES,4,12078,4,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,16.554535831429487,41.703645760139906,15.608276062813811,0,2023-05-17,NA +WA,B,Yes,7,07528,1,100000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,61.66912487355205,99.38564447215045,3.853657968874788,0,2023-05-17,no +WA,B,Yes,8,97385,2,50000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,66.28883930178358,146.38678359820517,1.043387202856135,0,2023-05-17,NA +NM,C,yes,10,27604,5,1000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,1.7072513163600087,252.59310689235096,0.2302776602657698,0,2023-05-17,NA +NM,C,yes,11,91578,6,10000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,2.7542050251615855,72.11520528842085,0.30954828118112226,0,2023-05-17,NA +CA,A,YES,1,04971,1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,146.38831947568443,172.829198192071,16.482343278862913,0,2023-05-18,NA +CA,A,YES,2,31809,1,30000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,170.85233999728462,824.0343047927632,19.6829976099525,0,2023-05-18,NA +CA,A,YES,4,12078,3,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,7.9759428813570645,34.47343438519275,1.7095585022603272,0,2023-05-18,no +CA,A,YES,4,12078,4,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,98.62745715877868,337.88697048484835,1.0217936875566813,0,2023-05-18,NA +WA,B,Yes,6,31928,1,2000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,11.942679211434587,5.023072392959766,23.885358422869174,1,2023-05-18,NA +WA,B,Yes,7,07528,1,100000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,15.57074686720341,66.6084569864403,1.0102680931909986,0,2023-05-18,NA +WA,B,Yes,8,97385,2,50000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,115.19549892752735,11.947496419935781,6.937774673620826,0,2023-05-18,no +WA,B,Yes,9,14396,2,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,458.9667691766944,251.60448122958704,1.0843813554143147,0,2023-05-18,NA +NM,C,yes,10,27604,5,1000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,1.7262490973599864,50.30404214251418,1.1249683398208015,0,2023-05-18,no +NM,C,yes,11,91578,6,10000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,0.9365110531554846,17.15031289097754,1.0809558264919896,0,2023-05-18,> max temp and/or hold time +XX,D,ye,13,65174,10,1000000000,wwtp,raw wastewater,copies/l wastewater,FLUAV,210.80761851824843,287.35172223030366,11.934813779736402,0,2023-05-18,NA +ZZ,F,NO,14,09634,3,8472,wwtp,raw wastewater,copies/g dry sludge,sars-cov-2,117.31670738617805,6.7324995979285776,1.6006026423009314,0,2023-05-18,NA +CA,A,YES,1,04971,1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,5.002846167617119,16.50332136529176,10.005692335234238,1,2023-05-19,NA +CA,A,YES,2,31809,1,30000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,326.704266388954,122.16568638209436,21.297482952603538,0,2023-05-19,NA +CA,A,YES,4,12078,3,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,342.3795291297284,387.38743382059675,17.481051890464474,0,2023-05-19,yes +CA,A,YES,4,12078,4,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,97.9774273823614,48.03146276657064,21.14791392988001,0,2023-05-19,y +WA,B,Yes,6,31928,1,2000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,714.8342642953518,235.96193355710287,7.0795660658003365,0,2023-05-19,NA +WA,B,Yes,7,07528,1,100000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,58.514475210232284,91.41389635339901,6.281084954651419,0,2023-05-19,NA +WA,B,Yes,8,97385,2,50000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,389.20984975977086,9.441802101067266,2.7749218085374316,0,2023-05-19,no +WA,B,Yes,9,14396,2,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,726.4147623903082,11.55853160602998,1.0202411109188378,0,2023-05-19,NA +NM,C,yes,10,27604,5,1000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,1.47716638850826,102.4861834271557,0.45063035944366436,0,2023-05-19,NA +NM,C,yes,11,91578,6,10000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,1.9463969624931354,531.8437995782391,1.0707841044927238,0,2023-05-19,NA +XX,D,ye,14,09634,10,1000000000,wwtp,raw wastewater,copies/l wastewater,FLUAV,0.6544447770136405,237.2453060303681,1.308889554027281,1,2023-05-19,no +ZZ,F,NO,13,65174,2,8472,wwtp,raw wastewater,copies/g dry sludge,sars-cov-2,5.571504410881499,132.47972817095504,4.538088873799303,0,2023-05-19,NA +CA,A,YES,1,04971,1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,865.8282311572634,176.39108944087667,6.302458811424311,0,2023-05-20,no +CA,A,YES,2,31809,1,30000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,43.27012656860755,35.65428403389397,21.601541410835775,0,2023-05-20,NA +CA,A,YES,4,12078,3,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,11.176882799062037,114.49353270803404,2.6892557683893807,0,2023-05-20,no +CA,A,YES,4,12078,4,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,64.09693070446394,14.045765575504465,23.499639399314944,0,2023-05-20,NA +WA,B,Yes,6,31928,1,2000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,23.17371196027208,297.86042718993485,1.6758473699931842,0,2023-05-20,NA +WA,B,Yes,7,07528,1,100000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,972.280654799704,23.812419066904784,2.429494382129149,0,2023-05-20,yes +WA,B,Yes,8,97385,2,50000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,6.224001936494755,11.768823647538094,1.854639846797819,0,2023-05-20,NA +WA,B,Yes,9,14396,2,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,61.976473249966254,19.83300420202743,5.51233798991324,0,2023-05-20,> max temp and/or hold time +NM,C,yes,10,27604,5,1000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,1.8126858771910022,99.4704369426305,0.37831636117792217,0,2023-05-20,NA +NM,C,yes,11,91578,6,10000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,0.42135747552725544,36.218266362726645,0.7223874711912367,1,2023-05-20,NA +CA,A,YES,4,12078,3,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,25.176064587169314,8.749725675189737,2.972238149968307,0,2023-05-21,NA +WA,B,Yes,6,31928,1,2000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,207.43738029840407,202.4754836026557,11.998745582439804,0,2023-05-21,NA +WA,B,Yes,7,07528,1,100000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,377.73790317071206,104.85055810273369,8.269438247389818,0,2023-05-21,no +WA,B,Yes,8,97385,2,50000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,1.700260252672952,596.1879120370844,3.400520505345904,1,2023-05-21,no +WA,B,Yes,9,14396,2,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,447.9017539107904,19.476964168560965,1.1981223994391035,0,2023-05-21,no +NM,C,yes,10,27604,5,1000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,0.8361058589334085,251.62088669283023,1.3340876872346699,0,2023-05-21,below loq +NM,C,yes,11,91578,6,10000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,2.4134725757443474,54.397842822300255,0.6634579459126085,0,2023-05-21,NA +XX,D,ye,14,09634,10,1000000000,wwtp,raw wastewater,copies/l wastewater,FLUAV,10.529050520304677,187.92614562312716,21.058101040609355,1,2023-05-21,NA +ZZ,F,NO,13,65174,2,8472,wwtp,raw wastewater,copies/g dry sludge,sars-cov-2,20.221795493143,9.18249545716989,13.502515544071704,0,2023-05-21,y +CA,A,YES,1,04971,1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,224.07955465704714,11.129784849158769,4.19206971903038,0,2023-05-22,NA +CA,A,YES,2,31809,1,30000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,17.227265721236904,16.310306791247932,3.8318192444096533,0,2023-05-22,no +CA,A,YES,4,12078,3,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,5.416210971962392,158.93929503159652,22.63014239011,0,2023-05-22,NA +CA,A,YES,4,12078,4,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,690.3106551816034,126.24830605679335,1.5738251300994728,0,2023-05-22,NA +WA,B,Yes,6,31928,1,2000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,60.43232693939857,9.252286612271343,2.8299955511694965,0,2023-05-22,NA +WA,B,Yes,7,07528,1,100000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,257.3259781819269,134.68426273691202,4.1632297907193765,0,2023-05-22,NA +WA,B,Yes,8,97385,2,50000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,503.1231310317763,14.934335221462257,12.714965557029682,0,2023-05-22,NA +NM,C,yes,10,27604,5,1000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,2.479271463446173,620.1731397388947,0.5052738168418361,0,2023-05-22,NA +NM,C,yes,11,91578,6,10000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,2.8515420599499866,358.7257262274633,0.5522092591357017,0,2023-05-22,NA +XX,D,ye,15,98436,10,1000000000,wwtp,raw wastewater,copies/l wastewater,FLUAV,6.92430328345902,8.32637682440617,13.84860656691804,1,2023-05-22,NA +CA,A,YES,1,04971,1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,56.435957943803174,73.85178932618149,18.18520482551056,0,2023-05-23,NA +CA,A,YES,2,31809,1,30000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,161.6044909954615,123.73649218406017,3.384065937696514,0,2023-05-23,y +CA,A,YES,4,12078,3,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,10.479848556861334,61.804290624058126,6.717100142360066,0,2023-05-23,NA +CA,A,YES,5,34687,3,1000000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,25.4518426449602,416.0125171300613,1.5321394978884033,0,2023-05-23,NA +CA,A,YES,5,34687,4,1000000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,11.009050182354105,16.136309499503383,5.195299066956687,0,2023-05-23,NA +WA,B,Yes,6,31928,1,2000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,205.7110952452072,64.03836991156005,17.558536165241293,0,2023-05-23,NA +WA,B,Yes,7,07528,1,100000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,943.5097989713016,22.581348882518306,1.5557746700474782,0,2023-05-23,NA +NM,C,yes,10,27604,5,1000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,2.3654620298956432,986.6868929949203,0.8976708226206057,0,2023-05-23,NA +NM,C,yes,11,91578,6,10000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,1.452505402225905,36.767085819680275,0.3895632432815658,0,2023-05-23,no +XX,D,ye,13,65174,10,1000000000,wwtp,raw wastewater,copies/l wastewater,FLUAV,79.51439331851611,116.41006735740858,1.425510980027306,0,2023-05-23,no +YY,E,No,15,98436,4,13,upstream,primary sludge,copies/g dry sludge,sars-cov-2,14.120612150036221,10.741090077316265,1.8167211342504983,0,2023-05-23,NA +CA,A,YES,1,04971,1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,13.157355805362196,153.7932692351134,1.7738913709877437,0,2023-05-24,> max temp and/or hold time +CA,A,YES,4,12078,3,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,678.6659932379766,316.4186639963307,14.43938837529447,0,2023-05-24,> max temp and/or hold time +CA,A,YES,4,12078,4,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,353.161636752946,908.4946554755223,1.3593237787583339,0,2023-05-24,NA +WA,B,Yes,7,07528,1,100000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,1.3046726332691492,14.3868594416138,2.6093452665382983,1,2023-05-24,NA +WA,B,Yes,8,97385,2,50000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,7.667605903532735,89.84240879127282,1.1433547113784146,0,2023-05-24,NA +WA,B,Yes,9,14396,2,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,0.5663851050805276,60.22345435443492,1.1327702101610553,1,2023-05-24,NA +NM,C,yes,10,27604,5,1000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,2.630794991864196,11.354910558745384,0.4394786512526222,0,2023-05-24,temperature not assessed upon arrival at the laboratory +NM,C,yes,11,91578,6,10000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,1.3659314242448546,564.994895593238,0.8180575550493451,0,2023-05-24,NA +XX,D,ye,14,09634,10,1000000000,wwtp,raw wastewater,copies/l wastewater,FLUAV,466.82126726335855,375.24762154527144,11.354567670230887,0,2023-05-24,no +XX,D,ye,15,98436,10,1000000000,wwtp,raw wastewater,copies/l wastewater,FLUAV,5.928705041844908,30.778312441424227,4.898101180132712,0,2023-05-24,NA +CA,A,YES,1,04971,1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,5.827507281480294,5.614635812615721,17.492705146845655,0,2023-05-25,NA +CA,A,YES,2,31809,1,30000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,13.265199701080418,31.76781092867949,1.6080240462660593,0,2023-05-25,no +CA,A,YES,4,12078,4,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,645.6671326734727,589.4555183412973,7.807287819761643,0,2023-05-25,NA +WA,B,Yes,6,31928,1,2000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,349.5167938668359,25.86408497094788,15.825950140538298,0,2023-05-25,NA +WA,B,Yes,7,07528,1,100000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,548.6871718439456,803.649667019898,1.0128926168559382,0,2023-05-25,NA +WA,B,Yes,8,97385,2,50000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,3.829662447173397,312.3559209687922,7.659324894346794,1,2023-05-25,NA +WA,B,Yes,9,14396,2,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,9.42944798022602,848.0390132364623,19.558386048783497,0,2023-05-25,NA +NM,C,yes,10,27604,5,1000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,1.96330969549419,759.0108581672927,1.363036717235462,0,2023-05-25,NA +NM,C,yes,11,91578,6,10000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,1.7902229704332997,9.584140924318472,0.09765845791197622,0,2023-05-25,NA +XX,D,ye,14,09634,10,1000000000,wwtp,raw wastewater,copies/l wastewater,FLUAV,11.21521171365811,10.970808917565472,1.1312616681199354,0,2023-05-25,no +YY,E,No,14,09634,3,13,upstream,primary sludge,copies/g dry sludge,sars-cov-2,7.193708758757231,5.438973019979676,6.0027614817347335,0,2023-05-25,NA +ZZ,F,NO,14,09634,3,8472,wwtp,raw wastewater,copies/g dry sludge,sars-cov-2,589.8304754443087,5.666264516833046,17.20577582410742,0,2023-05-25,no +CA,A,YES,1,04971,1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,991.974730854174,43.804695804123156,13.012253586755072,0,2023-05-26,NA +CA,A,YES,2,31809,1,30000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,378.1602834322613,115.22029745676069,1.9134601811942624,0,2023-05-26,NA +CA,A,YES,4,12078,3,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,131.47962047171535,7.95167619177637,3.2539325590800914,0,2023-05-26,no +CA,A,YES,4,12078,4,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,4.871339657308557,276.835630332145,9.742679314617114,1,2023-05-26,NA +WA,B,Yes,6,31928,1,2000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,167.7634954092627,6.0900000862294705,19.694815188868027,0,2023-05-26,NA +WA,B,Yes,7,07528,1,100000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,529.8337410202203,9.257286224278664,2.999637328639855,0,2023-05-26,NA +WA,B,Yes,8,97385,2,50000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,1.4642815174766652,12.846074209754176,2.9285630349533305,1,2023-05-26,temperature not assessed upon arrival at the laboratory +WA,B,Yes,9,14396,2,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,530.9828578883064,28.04638542003842,1.9591868482759995,0,2023-05-26,temperature not assessed upon arrival at the laboratory +NM,C,yes,10,27604,5,1000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,2.0189747099278117,10.646618118320449,0.7889289448609544,0,2023-05-26,NA +NM,C,yes,11,91578,6,10000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,2.7772207276456293,35.9539774374944,0.46530360395174264,0,2023-05-26,NA +CA,A,YES,2,31809,1,30000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,99.57409850571689,13.574340638667277,14.079707711456251,0,2023-05-27,NA +CA,A,YES,4,12078,3,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,986.7938542706584,337.7414654496874,2.1272876736818094,0,2023-05-27,no +CA,A,YES,4,12078,4,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,365.1770960675602,62.42673834659085,2.9582669741327647,0,2023-05-27,no +WA,B,Yes,6,31928,1,2000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,1.0605107171198536,156.97081213040195,2.121021434239707,1,2023-05-27,NA +WA,B,Yes,7,07528,1,100000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,38.345292718282764,15.155838212038033,1.7875345085445717,0,2023-05-27,NA +WA,B,Yes,8,97385,2,50000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,495.0485653504598,377.71226434092694,11.313420636300823,0,2023-05-27,no +WA,B,Yes,9,14396,2,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,13.426268200807078,57.322657589918315,13.152248812699622,0,2023-05-27,NA +NM,C,yes,11,91578,6,10000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,2.0642273546961536,15.417255018459796,0.4673947760383755,0,2023-05-27,no +YY,E,No,12,32541,1,13,upstream,primary sludge,copies/g dry sludge,sars-cov-2,7.3164172061154895,557.1742679189549,1.9524293333390506,0,2023-05-27,NA +CA,A,YES,1,04971,1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,3.8722209834809966,11.874904724137725,7.744441966961993,1,2023-05-28,below loq +CA,A,YES,2,31809,1,30000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,21.936760903134747,19.794408077824063,1.1226962892471302,0,2023-05-28,NA +CA,A,YES,4,12078,3,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,40.355277797323424,74.58141950163451,3.3607064342505204,0,2023-05-28,NA +CA,A,YES,4,12078,4,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,7.144707824488737,79.09343780565374,14.289415648977474,1,2023-05-28,> max temp and/or hold time +WA,B,Yes,6,31928,1,2000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,55.853159062227604,14.153578694682196,3.065119460530618,0,2023-05-28,> max temp and/or hold time +WA,B,Yes,7,07528,1,100000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,8.070145798836876,584.105481233125,2.180590108263856,0,2023-05-28,NA +WA,B,Yes,8,97385,2,50000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,33.29576778231581,12.231001844402927,6.537464487887805,0,2023-05-28,NA +WA,B,Yes,9,14396,2,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,3.7124315408858783,74.40141061408208,7.424863081771757,1,2023-05-28,no +NM,C,yes,10,27604,5,1000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,1.029972037423926,18.47967392886831,0.3405261310890953,0,2023-05-28,NA +NM,C,yes,11,91578,6,10000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,1.6402786292281981,29.39195712530409,1.021584954359083,0,2023-05-28,NA +XX,D,ye,15,98436,10,1000000000,wwtp,raw wastewater,copies/l wastewater,FLUAV,6.7353571136104655,20.18522634249294,4.7166385892979905,0,2023-05-28,y +CA,A,YES,1,04971,1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,134.56052411216203,68.35616771771406,4.597724848363917,0,2023-05-29,NA +CA,A,YES,2,31809,1,30000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,38.32774357283795,239.03622818680398,2.4594250664667268,0,2023-05-29,NA +CA,A,YES,4,12078,3,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,37.18596863004385,333.3327361472142,23.514420672209603,0,2023-05-29,below loq +WA,B,Yes,6,31928,1,2000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,6.066718246921654,11.888644589169925,24.419671805509402,0,2023-05-29,NA +WA,B,Yes,7,07528,1,100000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,546.7645325569501,30.2974890176503,13.407256988971396,0,2023-05-29,no +WA,B,Yes,8,97385,2,50000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,326.3635938769475,66.14295827663285,1.0995961395590341,0,2023-05-29,NA +WA,B,Yes,9,14396,2,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,208.9471435907558,47.574825124400824,1.4811143205074937,0,2023-05-29,no +NM,C,yes,10,27604,5,1000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,0.9867017544669734,495.91035241684705,1.0015188640956445,0,2023-05-29,no +NM,C,yes,11,91578,6,10000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,2.4208474598233396,236.12772663733344,0.13853508931180694,0,2023-05-29,NA +XX,D,ye,13,65174,10,1000000000,wwtp,raw wastewater,copies/l wastewater,FLUAV,101.5355234047676,65.96363830818757,1.7456421268735094,0,2023-05-29,NA +CA,A,YES,1,04971,1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,5.221786941619451,6.320443859538269,1.3314827910739935,0,2023-05-30,NA +CA,A,YES,2,31809,1,30000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,5.4767140165053885,456.7943792752749,11.167911237568681,0,2023-05-30,no +CA,A,YES,4,12078,3,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,378.4095712252915,17.198805020550573,2.937680568360228,0,2023-05-30,NA +CA,A,YES,5,34687,3,1000000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,312.6415446018471,42.71621020543016,1.3528602411149588,0,2023-05-30,no +CA,A,YES,4,12078,4,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,266.734588365075,44.11942178084142,1.5323376762292367,0,2023-05-30,no +CA,A,YES,5,34687,4,1000000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,119.61929568297784,6.52683576212407,1.2073754919590003,0,2023-05-30,no +WA,B,Yes,6,31928,1,2000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,1.8852302477603475,7.937877360545863,3.770460495520695,1,2023-05-30,no +WA,B,Yes,7,07528,1,100000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,167.8438037873305,6.218423548969813,1.9473666862941972,0,2023-05-30,NA +WA,B,Yes,8,97385,2,50000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,379.87529571674537,510.9568071417825,9.814214778442148,0,2023-05-30,no +WA,B,Yes,9,14396,2,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,159.1555547971404,11.408958476852641,4.63802897536972,0,2023-05-30,no +NM,C,yes,10,27604,5,1000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,1.4244503997867242,636.6102338319649,1.3323751716457437,0,2023-05-30,NA +NM,C,yes,11,91578,6,10000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,2.348900539073965,265.00410017408274,1.1208406918094636,0,2023-05-30,NA +CA,A,YES,1,04971,1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,35.06678316756629,913.5850921445049,1.581489785807367,0,2023-05-31,no +CA,A,YES,2,31809,1,30000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,6.788670108930944,32.55140313025375,2.1148840441344183,0,2023-05-31,no +CA,A,YES,4,12078,3,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,356.63090139635034,5.161968779103229,4.9108181978990695,0,2023-05-31,NA +WA,B,Yes,6,31928,1,2000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,7.612295819363786,87.49678097601002,4.165463805121776,0,2023-05-31,NA +WA,B,Yes,7,07528,1,100000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,34.864450448943174,110.15511485909215,14.200678210066382,0,2023-05-31,NA +WA,B,Yes,8,97385,2,50000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,810.1698709521145,6.1924220586359775,2.0396679250337595,0,2023-05-31,NA +WA,B,Yes,9,14396,2,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,79.68138298025984,534.5467810030315,7.123387275963566,0,2023-05-31,NA +NM,C,yes,10,27604,5,1000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,2.267094910693879,250.04743788629807,1.1203952035060318,0,2023-05-31,yes +NM,C,yes,11,91578,6,10000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,2.7647472858786264,6.697650855796543,0.7337328822890496,0,2023-05-31,NA +YY,E,No,12,32541,1,13,upstream,primary sludge,copies/g dry sludge,sars-cov-2,1.508570766117019,249.12826657532884,3.017141532234038,1,2023-05-31,no +YY,E,No,15,98436,4,13,upstream,primary sludge,copies/g dry sludge,sars-cov-2,0.5016624541325644,233.46805700096917,1.0033249082651288,1,2023-05-31,no +ZZ,F,NO,13,65174,2,8472,wwtp,raw wastewater,copies/g dry sludge,sars-cov-2,1.587440160403535,10.826080746808305,3.17488032080707,1,2023-05-31,NA +CA,A,YES,1,04971,1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,13.972497746966296,14.097585562510597,9.951165894532037,0,2023-06-01,NA +CA,A,YES,2,31809,1,30000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,1.515951171779795,719.0218563150918,3.03190234355959,1,2023-06-01,NA +CA,A,YES,4,12078,3,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,34.909237143175204,438.10319466849637,1.3356094954826512,0,2023-06-01,NA +CA,A,YES,4,12078,4,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,150.61814398332416,864.2637625218005,6.29583678487963,0,2023-06-01,NA +WA,B,Yes,6,31928,1,2000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,0.727634762225632,17.279227732343113,1.455269524451264,1,2023-06-01,no +WA,B,Yes,7,07528,1,100000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,763.5676275813757,10.97850518974091,1.0368043157678366,0,2023-06-01,NA +WA,B,Yes,8,97385,2,50000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,23.698391231596837,70.26352210580887,4.07599234105755,0,2023-06-01,no +WA,B,Yes,9,14396,2,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,359.62260382232,22.118748611621715,3.455018984597424,0,2023-06-01,NA +NM,C,yes,10,27604,5,1000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,1.688179851478964,5.5537513950694635,0.5978474845941443,0,2023-06-01,NA +YY,E,No,14,09634,3,13,upstream,primary sludge,copies/g dry sludge,sars-cov-2,285.20356230514494,216.35311504250504,18.90268738220765,0,2023-06-01,NA +ZZ,F,NO,13,65174,2,8472,wwtp,raw wastewater,copies/g dry sludge,sars-cov-2,550.9440558422646,23.46526231208123,1.1513467002791757,0,2023-06-01,below loq +ZZ,F,NO,14,09634,3,8472,wwtp,raw wastewater,copies/g dry sludge,sars-cov-2,34.837547209052516,28.51469798716336,1.3485567981938167,0,2023-06-01,NA +CA,A,YES,2,31809,1,30000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,5.296707135123079,21.680451295324353,1.7775894748199987,0,2023-06-02,NA +CA,A,YES,4,12078,3,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,43.64208253448855,14.49551958430133,1.6330255395129818,0,2023-06-02,NA +CA,A,YES,4,12078,4,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,836.8859951463978,517.9705193798546,10.206687698574452,0,2023-06-02,NA +WA,B,Yes,6,31928,1,2000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,9.581694540998116,35.339916865405414,2.212154984091819,0,2023-06-02,no +WA,B,Yes,7,07528,1,100000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,19.00877280010673,39.04269708050778,2.1440993763137417,0,2023-06-02,> max temp and/or hold time +WA,B,Yes,8,97385,2,50000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,54.479634030446505,186.7864698323426,1.2682035243195369,0,2023-06-02,no +WA,B,Yes,9,14396,2,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,9.905724325888672,5.812244610696417,1.882614647443275,0,2023-06-02,y +NM,C,yes,10,27604,5,1000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,1.2432119505761525,17.58209191177872,0.8550715687252866,0,2023-06-02,NA +NM,C,yes,11,91578,6,10000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,1.815074206467147,150.94430679649136,0.05102253671692746,0,2023-06-02,NA +XX,D,ye,12,32541,10,1000000000,wwtp,raw wastewater,copies/l wastewater,FLUAV,15.583975896526454,35.09575240906895,8.52197005996017,0,2023-06-02,NA +XX,D,ye,15,98436,10,1000000000,wwtp,raw wastewater,copies/l wastewater,FLUAV,166.5735936980469,6.007480448932445,1.5947377304376358,0,2023-06-02,NA +ZZ,F,NO,13,65174,2,8472,wwtp,raw wastewater,copies/g dry sludge,sars-cov-2,6.483390620419577,6.037862384258953,12.966781240839154,1,2023-06-02,NA +CA,A,YES,1,04971,1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,8.233667313492495,11.157350694770544,6.377286299468939,0,2023-06-03,NA +CA,A,YES,2,31809,1,30000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,62.62875801068984,48.16834973602615,8.880278724493799,0,2023-06-03,NA +CA,A,YES,4,12078,3,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,41.996889218785476,49.18066052573325,3.7841308685879853,0,2023-06-03,NA +CA,A,YES,4,12078,4,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,62.24539243563918,6.467022556505043,7.136041076672717,0,2023-06-03,NA +WA,B,Yes,6,31928,1,2000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,201.1190019381625,803.5687448561665,2.910816655821985,0,2023-06-03,no +WA,B,Yes,7,07528,1,100000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,9.317970433407892,79.58635354300762,17.686328657184458,0,2023-06-03,no +WA,B,Yes,8,97385,2,50000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,32.69782210936447,202.251393605709,24.76359191204226,0,2023-06-03,NA +WA,B,Yes,9,14396,2,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,192.85464151594854,27.485843949453407,1.0771288495798297,0,2023-06-03,NA +NM,C,yes,10,27604,5,1000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,1.4865833084094948,143.88884643564074,0.7337568668258807,0,2023-06-03,> max temp and/or hold time +ZZ,F,NO,14,09634,3,8472,wwtp,raw wastewater,copies/g dry sludge,sars-cov-2,712.9684328408249,71.67527384237853,5.5823669887677125,0,2023-06-03,NA +ZZ,F,NO,15,98436,4,8472,wwtp,raw wastewater,copies/g dry sludge,sars-cov-2,373.7809535728842,892.4585610944084,2.1202805308129706,0,2023-06-03,NA +CA,A,YES,1,04971,1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,132.28786729786012,471.13289773261994,14.410948003082948,0,2023-06-04,NA +CA,A,YES,2,31809,1,30000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,608.1624186407511,182.16934793933143,19.792049842872213,0,2023-06-04,NA +CA,A,YES,4,12078,3,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,40.80286855358536,6.69256491712004,2.7374797916921185,0,2023-06-04,NA +CA,A,YES,4,12078,4,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,952.1059272072401,289.6967453790776,19.32159666054628,0,2023-06-04,y +WA,B,Yes,6,31928,1,2000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,61.497654027123,7.689517568693169,19.451344022838473,0,2023-06-04,NA +WA,B,Yes,7,07528,1,100000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,35.20450218876082,259.1377842843348,14.778420024247932,0,2023-06-04,NA +WA,B,Yes,8,97385,2,50000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,399.7662075827858,13.356542199642641,10.07272661715923,0,2023-06-04,NA +WA,B,Yes,9,14396,2,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,5.930362983278411,9.301301229524176,11.860725966556823,1,2023-06-04,NA +NM,C,yes,11,91578,6,10000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,2.854972211928456,6.80583155596977,0.27278464095540755,0,2023-06-04,NA +CA,A,YES,2,31809,1,30000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,526.136999955998,15.730854338540544,4.089646781455904,0,2023-06-05,NA +CA,A,YES,4,12078,3,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,6.844054311840791,399.0874489680176,8.578828924279405,0,2023-06-05,NA +CA,A,YES,4,12078,4,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,0.9296375391970718,498.4942102258899,1.8592750783941436,1,2023-06-05,no +WA,B,Yes,6,31928,1,2000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,176.46542197081473,29.774537553392246,22.70633993464678,0,2023-06-05,NA +WA,B,Yes,7,07528,1,100000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,55.09997165158521,435.69652136071284,20.884488594928698,0,2023-06-05,NA +WA,B,Yes,8,97385,2,50000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,20.545348506220172,12.23726359501874,21.294893666235208,0,2023-06-05,NA +WA,B,Yes,9,14396,2,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,439.28891851672006,24.043649607263855,1.2711770861894394,0,2023-06-05,NA +NM,C,yes,10,27604,5,1000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,0.8875332369367497,25.842034740804994,1.3903810684866273,0,2023-06-05,NA +NM,C,yes,11,91578,6,10000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,1.8385540176452062,182.88487967734133,0.9324301082147635,0,2023-06-05,NA +XX,D,ye,13,65174,10,1000000000,wwtp,raw wastewater,copies/l wastewater,FLUAV,426.5908635212914,706.0485744070917,9.96379440464718,0,2023-06-05,NA +CA,A,YES,2,31809,1,30000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,11.900402320004803,97.29911073758969,2.4005833423474856,0,2023-06-06,result is not quantifiable +CA,A,YES,4,12078,3,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,10.682256464117884,568.6887163026446,21.36451292823577,1,2023-06-06,NA +CA,A,YES,5,34687,3,1000000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,81.85957802207197,83.23412626543427,1.3769070744124532,0,2023-06-06,NA +CA,A,YES,4,12078,4,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,36.4058925791464,103.58390912401481,17.60766003242909,0,2023-06-06,y +CA,A,YES,5,34687,4,1000000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,63.94551785554418,15.142031209569508,9.670893898383353,0,2023-06-06,no +WA,B,Yes,6,31928,1,2000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,10.913569591085322,923.0893848666866,2.805014712206869,0,2023-06-06,NA +WA,B,Yes,7,07528,1,100000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,116.96956128708953,385.00922420219285,2.8307271099282527,0,2023-06-06,NA +WA,B,Yes,8,97385,2,50000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,76.4782921017086,569.897751390256,2.162429472820231,0,2023-06-06,NA +WA,B,Yes,9,14396,2,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,71.12925953653036,20.11666132138429,17.04042056836225,0,2023-06-06,y +NM,C,yes,10,27604,5,1000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,0.17997388303781894,34.142966604232114,0.48100387870180017,1,2023-06-06,below loq +NM,C,yes,11,91578,6,10000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,1.983422810565965,615.1604056597208,1.0187510479982729,0,2023-06-06,no +XX,D,ye,14,09634,10,1000000000,wwtp,raw wastewater,copies/l wastewater,FLUAV,132.4987004617313,7.457542086002927,3.850330322224466,0,2023-06-06,NA +CA,A,YES,2,31809,1,30000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,13.600956632682392,25.468650715100587,2.1603784156008996,0,2023-06-07,NA +CA,A,YES,4,12078,3,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,254.2680917642392,74.7197956895409,1.580777428402586,0,2023-06-07,NA +CA,A,YES,4,12078,4,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,140.94060637208315,31.41196530123296,2.8915801519667164,0,2023-06-07,y +WA,B,Yes,6,31928,1,2000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,115.14437982438227,259.62731002001436,3.9533099562772613,0,2023-06-07,y +WA,B,Yes,7,07528,1,100000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,18.077506889821134,7.312712445502879,1.4098629475335127,0,2023-06-07,NA +WA,B,Yes,8,97385,2,50000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,6.678251444820117,313.16051846518445,1.380460822205801,0,2023-06-07,temperature not assessed upon arrival at the laboratory +NM,C,yes,10,27604,5,1000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,2.0358023647105266,466.24152666522247,0.6920410070791201,0,2023-06-07,NA +NM,C,yes,11,91578,6,10000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,0.975472920103439,481.0035747455745,0.4159823289141282,0,2023-06-07,NA +YY,E,No,12,32541,1,13,upstream,primary sludge,copies/g dry sludge,sars-cov-2,9.568992150208635,118.15140896883022,2.1581517007215854,0,2023-06-07,no +YY,E,No,14,09634,3,13,upstream,primary sludge,copies/g dry sludge,sars-cov-2,30.926231489878194,26.258052652986226,3.9176038065078678,0,2023-06-07,NA +CA,A,YES,1,04971,1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,11.883770711884882,159.78548776673784,8.191422399765973,0,2023-06-08,NA +CA,A,YES,2,31809,1,30000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,126.89996827381593,482.7721858378786,18.793764830715944,0,2023-06-08,NA +CA,A,YES,4,12078,3,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,943.3173009704533,915.5855832440617,6.131705549868085,0,2023-06-08,NA +CA,A,YES,4,12078,4,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,21.07469011246089,28.415295751450465,1.7074938991039184,0,2023-06-08,NA +WA,B,Yes,6,31928,1,2000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,508.63097888114214,94.68757126886175,2.3541902565484705,0,2023-06-08,no +WA,B,Yes,7,07528,1,100000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,109.6680712298033,863.3328518462861,13.742428389953183,0,2023-06-08,no +WA,B,Yes,8,97385,2,50000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,35.139587424846226,368.58733888552797,15.568194273004142,0,2023-06-08,NA +NM,C,yes,10,27604,5,1000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,0.22234682385734467,269.75788812737926,0.5233768195213259,1,2023-06-08,NA +YY,E,No,12,32541,1,13,upstream,primary sludge,copies/g dry sludge,sars-cov-2,229.46070830973937,126.1243274727436,2.5726370982422115,0,2023-06-08,yes +CA,A,YES,1,04971,1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,3.062617732302472,20.095139119442187,6.125235464604944,1,2023-06-09,no +CA,A,YES,2,31809,1,30000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,14.99482175162784,27.642011895134065,2.124766466611782,0,2023-06-09,NA +CA,A,YES,4,12078,3,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,11.789867095225627,687.8972397954828,2.089113452787408,0,2023-06-09,NA +CA,A,YES,4,12078,4,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,41.91950171517967,14.275640351758339,2.969261759832721,0,2023-06-09,NA +WA,B,Yes,7,07528,1,100000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,17.42630355157437,6.296463518944592,2.5709912899294305,0,2023-06-09,NA +WA,B,Yes,8,97385,2,50000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,44.003281443487644,195.71617623138138,1.8764866213109237,0,2023-06-09,NA +WA,B,Yes,9,14396,2,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,25.009858255387,381.88514295630955,9.648044176517505,0,2023-06-09,NA +CA,A,YES,1,04971,1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,60.104711478529254,5.608352642439963,7.698766320975435,0,2023-06-10,temperature not assessed upon arrival at the laboratory +CA,A,YES,2,31809,1,30000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,283.72081502729395,61.17307478977554,1.9065543992621838,0,2023-06-10,no +WA,B,Yes,6,31928,1,2000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,18.782601692338034,48.753391987420954,7.565954378759333,0,2023-06-10,NA +WA,B,Yes,7,07528,1,100000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,10.010433900160992,133.7631996077972,8.590093445320287,0,2023-06-10,NA +WA,B,Yes,8,97385,2,50000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,28.89087391037751,272.2018064308127,21.58855170631366,0,2023-06-10,NA +WA,B,Yes,9,14396,2,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,111.11916460797119,91.86809124335616,2.1479185639774268,0,2023-06-10,NA +NM,C,yes,10,27604,5,1000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,1.5625441357302254,219.64139618292072,0.5399611413393856,0,2023-06-10,NA +CA,A,YES,1,04971,1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,121.00486682545225,41.39264660940628,17.858118605185556,0,2023-06-11,NA +CA,A,YES,2,31809,1,30000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,23.44553278245965,528.998961467369,1.5363655321803267,0,2023-06-11,NA +CA,A,YES,4,12078,3,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,588.5074755501734,76.30126411457383,1.6871129964446332,0,2023-06-11,NA +CA,A,YES,4,12078,4,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,73.67077163216811,83.52714931578771,1.8318110350598291,0,2023-06-11,NA +WA,B,Yes,6,31928,1,2000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,0.6693982665750879,10.292607930286017,1.3387965331501759,1,2023-06-11,temperature not assessed upon arrival at the laboratory +WA,B,Yes,8,97385,2,50000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,42.550114392622625,681.7586675214868,4.648718058870017,0,2023-06-11,NA +WA,B,Yes,9,14396,2,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,32.76545867332434,13.479016682337873,17.824594600676868,0,2023-06-11,> max temp and/or hold time +NM,C,yes,10,27604,5,1000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,0.8733548539688414,6.675014915544343,0.6171885055370274,0,2023-06-11,NA +CA,A,YES,1,04971,1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,285.1635796114686,104.64656733085897,4.308534565625693,0,2023-06-12,NA +CA,A,YES,2,31809,1,30000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,5.233186119306241,7.618266032282597,23.061502623610284,0,2023-06-12,temperature not assessed upon arrival at the laboratory +CA,A,YES,4,12078,3,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,237.82564783004125,25.348732999615176,22.067398786458455,0,2023-06-12,no +CA,A,YES,4,12078,4,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,1.0898653483344545,310.52225163605294,2.179730696668909,1,2023-06-12,NA +WA,B,Yes,6,31928,1,2000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,389.38191718475406,7.008811392579709,20.113979348349748,0,2023-06-12,NA +WA,B,Yes,7,07528,1,100000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,352.2319245936304,475.19404667448543,2.4129736696837196,0,2023-06-12,no +WA,B,Yes,9,14396,2,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,729.015437060445,155.60368602802595,19.888816687860707,0,2023-06-12,NA +NM,C,yes,10,27604,5,1000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,0.99030485467691,552.6546764206508,0.7824865050612662,0,2023-06-12,NA +ZZ,F,NO,15,98436,4,8472,wwtp,raw wastewater,copies/g dry sludge,sars-cov-2,355.17335552924874,282.6157002195035,11.989751891524934,0,2023-06-12,> max temp and/or hold time +CA,A,YES,1,04971,1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,327.3311918923494,55.86301140342441,4.117629955751652,0,2023-06-13,NA +CA,A,YES,2,31809,1,30000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,12.645851740232095,12.250317573578705,2.7556767544995036,0,2023-06-13,NA +CA,A,YES,4,12078,3,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,38.577844880152924,208.79175751641623,1.3242995768691284,0,2023-06-13,NA +CA,A,YES,5,34687,3,1000000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,430.54759923790124,155.37376305710086,5.839301650531405,0,2023-06-13,NA +CA,A,YES,4,12078,4,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,24.957791548171297,5.096551697428779,2.3363615092088788,0,2023-06-13,NA +CA,A,YES,5,34687,4,1000000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,224.93943929076912,6.587789139525146,13.85145302819917,0,2023-06-13,y +WA,B,Yes,6,31928,1,2000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,153.78256820392357,706.7575380511578,2.6355720853319444,0,2023-06-13,NA +WA,B,Yes,7,07528,1,100000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,35.56895130202935,869.6243511299224,1.1159277964630634,0,2023-06-13,> max temp and/or hold time +WA,B,Yes,8,97385,2,50000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,11.770452943110248,550.2062120897756,20.65010434655936,0,2023-06-13,no +WA,B,Yes,9,14396,2,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,2.5011947447358183,254.85062849047918,5.0023894894716365,1,2023-06-13,NA +NM,C,yes,10,27604,5,1000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,1.8631339738384503,315.8740492521134,0.6689151188799155,0,2023-06-13,y +CA,A,YES,1,04971,1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,290.0672745142428,144.404870087013,4.451449957611034,0,2023-06-14,NA +CA,A,YES,2,31809,1,30000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,16.028982312614566,51.34796045413794,3.2534928211240675,0,2023-06-14,NA +CA,A,YES,4,12078,3,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,476.86259349282665,94.87257794986905,2.346696669484884,0,2023-06-14,NA +CA,A,YES,4,12078,4,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,8.073682558792928,617.4310528096794,4.411020559274714,0,2023-06-14,NA +WA,B,Yes,6,31928,1,2000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,6.854654178250884,48.698481971886935,13.507424191121693,0,2023-06-14,NA +WA,B,Yes,7,07528,1,100000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,7.330677080461552,6.5541242649198885,12.575126666509739,0,2023-06-14,result is not quantifiable +WA,B,Yes,8,97385,2,50000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,530.8186158484637,552.5916505571174,10.13650176743089,0,2023-06-14,NA +NM,C,yes,10,27604,5,1000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,1.020238662681467,686.1767397826148,0.8363593834168237,0,2023-06-14,no +CA,A,YES,1,04971,1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,47.08489285130636,610.0219388403381,5.917075486246098,0,2023-06-15,NA +CA,A,YES,4,12078,3,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,128.07236382595138,11.088441552719832,4.786570568124821,0,2023-06-15,NA +CA,A,YES,4,12078,4,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,51.940207929063405,66.61736732068331,1.5319561812298486,0,2023-06-15,NA +WA,B,Yes,7,07528,1,100000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,394.35460880823456,74.83382130364674,1.2552475089365511,0,2023-06-15,NA +WA,B,Yes,8,97385,2,50000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,88.37531813769647,86.5633549910392,1.0227723330132934,0,2023-06-15,NA +WA,B,Yes,9,14396,2,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,6.118990619360798,12.338876242870473,17.61455195530809,0,2023-06-15,y +NM,C,yes,10,27604,5,1000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,2.0997474128107205,37.09554813270325,1.1295356203660243,0,2023-06-15,result is not quantifiable +ZZ,F,NO,13,65174,2,8472,wwtp,raw wastewater,copies/g dry sludge,sars-cov-2,876.5439157117215,5.4985824773766625,1.1105540378198477,0,2023-06-15,below loq +CA,A,YES,1,04971,1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,96.40070617203892,9.540281193184393,2.460538013144499,0,2023-06-16,NA +CA,A,YES,2,31809,1,30000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,30.745887653535338,40.39990930219769,1.2584581808865403,0,2023-06-16,NA +CA,A,YES,4,12078,3,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,326.1686291754285,9.027917226699811,1.7426155385998634,0,2023-06-16,NA +CA,A,YES,4,12078,4,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,0.5593016709940662,997.3048093491204,1.1186033419881325,1,2023-06-16,no +WA,B,Yes,6,31928,1,2000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,206.42663647470448,113.39032598840141,2.8484698537192648,0,2023-06-16,NA +WA,B,Yes,8,97385,2,50000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,199.39179407633213,18.637236456939593,3.6198657874814373,0,2023-06-16,NA +WA,B,Yes,9,14396,2,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,67.21571665198742,60.454562200299954,1.253875575772465,0,2023-06-16,NA +NM,C,yes,10,27604,5,1000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,0.5315909549165555,13.432250803008639,0.8326209505805368,1,2023-06-16,NA +CA,A,YES,1,04971,1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,24.243481229112778,10.742240797003861,12.503952415457558,0,2023-06-17,NA +CA,A,YES,2,31809,1,30000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,129.02244789511738,872.8264222783479,1.2937972283220098,0,2023-06-17,NA +CA,A,YES,4,12078,3,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,19.202142281370364,281.7738490632108,18.49878979060863,0,2023-06-17,no +CA,A,YES,4,12078,4,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,267.1772320770139,283.3219094070632,4.7952413049252085,0,2023-06-17,below loq +WA,B,Yes,6,31928,1,2000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,707.2777943480771,20.010889073161017,4.417778919847446,0,2023-06-17,NA +WA,B,Yes,7,07528,1,100000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,249.18297437869177,75.63524890757763,1.0134570427090221,0,2023-06-17,NA +WA,B,Yes,8,97385,2,50000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,12.511607239973387,31.643297365810483,13.890598604129396,0,2023-06-17,NA +WA,B,Yes,9,14396,2,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,725.2914339140082,389.8173416338911,17.656540386041577,0,2023-06-17,NA +NM,C,yes,10,27604,5,1000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,2.6035949997497414,52.55743023107519,1.3034855888862011,0,2023-06-17,no +XX,D,ye,12,32541,10,1000000000,wwtp,raw wastewater,copies/l wastewater,FLUAV,3.551696321115769,363.81072843299665,7.103392642231538,1,2023-06-17,yes +YY,E,No,12,32541,1,13,upstream,primary sludge,copies/g dry sludge,sars-cov-2,0.8719804376559966,199.258319353223,1.7439608753119933,1,2023-06-17,NA +CA,A,YES,1,04971,1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,493.18207031912567,198.36030538085393,11.390638088057084,0,2023-06-18,no +CA,A,YES,4,12078,3,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,10.239433466885268,186.49099476058652,3.815655671269626,0,2023-06-18,NA +CA,A,YES,4,12078,4,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,762.4383045645158,7.93007959004813,6.55945934270004,0,2023-06-18,NA +WA,B,Yes,6,31928,1,2000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,10.946442971256268,18.84947505608084,19.360184424947917,0,2023-06-18,temperature not assessed upon arrival at the laboratory +WA,B,Yes,7,07528,1,100000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,138.48873849463055,6.210036367710981,23.02270432984408,0,2023-06-18,NA +WA,B,Yes,8,97385,2,50000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,68.18129501708528,636.4360708669876,3.976490040389193,0,2023-06-18,> max temp and/or hold time +WA,B,Yes,9,14396,2,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,5.092428372926272,16.749984199040675,11.513200876027977,0,2023-06-18,below loq +NM,C,yes,10,27604,5,1000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,0.8132566987145542,283.4539101729675,1.2749129796385201,0,2023-06-18,NA +ZZ,F,NO,13,65174,2,8472,wwtp,raw wastewater,copies/g dry sludge,sars-cov-2,11.919390909306907,18.25160800895212,5.987155710738186,0,2023-06-18,NA +CA,A,YES,2,31809,1,30000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,16.413278186494708,557.0287627462893,11.124221027496533,0,2023-06-19,NA +CA,A,YES,4,12078,4,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,352.1447868959927,205.73655578096108,1.0720537335709446,0,2023-06-19,NA +WA,B,Yes,6,31928,1,2000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,374.0508766582659,90.65592422139603,10.86256029300896,0,2023-06-19,NA +WA,B,Yes,8,97385,2,50000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,24.413282644546193,6.541034095251058,1.5185342188897863,0,2023-06-19,NA +WA,B,Yes,9,14396,2,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,7.96247128952236,5.1127695060926746,20.7011423623064,0,2023-06-19,NA +NM,C,yes,10,27604,5,1000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,2.114615439274312,301.8907701648655,1.2934485863661191,0,2023-06-19,NA +YY,E,No,15,98436,4,13,upstream,primary sludge,copies/g dry sludge,sars-cov-2,176.20526497799898,118.24237960363114,2.62778584693363,0,2023-06-19,no +CA,A,YES,1,04971,1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,47.75410667127288,79.12621599215444,1.1900373986193729,0,2023-06-20,NA +CA,A,YES,2,31809,1,30000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,9.023033899452097,420.46672596680327,13.114104684698134,0,2023-06-20,no +CA,A,YES,5,34687,3,1000000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,120.9820317206792,19.331675462979547,1.3783793404269271,0,2023-06-20,NA +CA,A,YES,4,12078,4,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,42.81274813058854,615.0390138682561,2.9807606475266275,0,2023-06-20,NA +CA,A,YES,5,34687,4,1000000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,78.30046637852257,77.11992688210815,1.3940077611922677,0,2023-06-20,no +WA,B,Yes,6,31928,1,2000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,359.71523993282176,18.04105087748291,3.420390813494028,0,2023-06-20,NA +WA,B,Yes,7,07528,1,100000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,134.9184555785401,6.015218783136929,18.091983979090053,0,2023-06-20,NA +WA,B,Yes,8,97385,2,50000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,40.58464947505558,16.72207900135216,4.996880888324421,0,2023-06-20,NA +WA,B,Yes,9,14396,2,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,8.712438388020946,41.57281884427929,2.3936630325035706,0,2023-06-20,NA +NM,C,yes,10,27604,5,1000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,2.7055329675294355,323.8979782096462,1.3370017135812675,0,2023-06-20,y +YY,E,No,15,98436,4,13,upstream,primary sludge,copies/g dry sludge,sars-cov-2,14.230612504706135,8.525170199153212,5.0783112615298664,0,2023-06-20,NA +CA,A,YES,1,04971,1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,195.9009104592535,15.002948692432616,9.991368118457647,0,2023-06-21,no +CA,A,YES,2,31809,1,30000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,1.6322364991686873,51.227410727669735,3.2644729983373746,1,2023-06-21,NA +CA,A,YES,4,12078,3,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,8.693123787825622,10.50273468997773,17.386247575651243,1,2023-06-21,y +CA,A,YES,4,12078,4,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,355.4555689696,14.227900598002725,1.7821634279790772,0,2023-06-21,NA +WA,B,Yes,6,31928,1,2000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,4.736655109835559,429.94574969881927,9.473310219671118,1,2023-06-21,NA +WA,B,Yes,7,07528,1,100000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,76.31153414614397,54.212895716393824,4.264312604579561,0,2023-06-21,NA +WA,B,Yes,8,97385,2,50000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,56.87447362903516,77.8773615882523,2.9558917972820824,0,2023-06-21,NA +WA,B,Yes,9,14396,2,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,507.67862177300105,43.84437371969059,6.637964823671057,0,2023-06-21,NA +NM,C,yes,10,27604,5,1000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,1.0957946669000724,132.79246838405473,0.24721385261018308,0,2023-06-21,NA +XX,D,ye,13,65174,10,1000000000,wwtp,raw wastewater,copies/l wastewater,FLUAV,535.0612124923401,14.88779989022269,1.0175370486570117,0,2023-06-21,NA +ZZ,F,NO,12,32541,1,8472,wwtp,raw wastewater,copies/g dry sludge,sars-cov-2,92.04823957784674,105.27608813768465,6.354727925909786,0,2023-06-21,result is not quantifiable +CA,A,YES,1,04971,1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,4.0966415673043555,113.83743480845315,8.193283134608711,1,2023-06-22,NA +CA,A,YES,2,31809,1,30000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,755.6838964661431,25.841406253783493,1.0669738415142123,0,2023-06-22,NA +CA,A,YES,4,12078,3,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,5.2735262579433675,5.024803706471183,4.553443879760379,0,2023-06-22,NA +CA,A,YES,4,12078,4,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,7.156672565160005,623.973695366069,22.51487421049501,0,2023-06-22,NA +WA,B,Yes,6,31928,1,2000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,8.992182457854184,14.809806208201698,23.595774142103373,0,2023-06-22,y +WA,B,Yes,7,07528,1,100000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,1.4331672247577871,61.16376930720631,2.8663344495155743,1,2023-06-22,no +WA,B,Yes,9,14396,2,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,13.017216666448709,13.87179699720965,3.0531750791318997,0,2023-06-22,NA +NM,C,yes,10,27604,5,1000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,1.797251673030202,124.24819547058351,0.06283733342548625,0,2023-06-22,NA +CA,A,YES,4,12078,3,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,5.135728220290362,312.59403384743507,10.271456440580724,1,2023-06-23,result is not quantifiable +CA,A,YES,4,12078,4,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,67.08078916346847,31.16735525249866,2.215895170346125,0,2023-06-23,NA +WA,B,Yes,6,31928,1,2000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,40.26537589282479,5.067980493229841,5.882660757539129,0,2023-06-23,temperature not assessed upon arrival at the laboratory +WA,B,Yes,7,07528,1,100000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,29.834157181516616,6.920032520834492,5.7332918756321956,0,2023-06-23,no +WA,B,Yes,8,97385,2,50000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,0.5687362779708394,281.72745082116097,1.1374725559416787,1,2023-06-23,NA +WA,B,Yes,9,14396,2,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,6.819582019032745,67.34153167788038,4.6077769154798105,0,2023-06-23,NA +NM,C,yes,10,27604,5,1000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,1.8487678253931676,181.0674901555772,0.5803354062340011,0,2023-06-23,NA +CA,A,YES,1,04971,1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,22.573421285399924,949.051520476134,3.535377539088544,0,2023-06-24,NA +CA,A,YES,2,31809,1,30000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,36.01724900850814,66.45012333656123,4.813987441054439,0,2023-06-24,NA +CA,A,YES,4,12078,3,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,1.3701263498336447,12.995674882375479,2.7402526996672893,1,2023-06-24,no +CA,A,YES,4,12078,4,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,39.0601815465359,146.26379364286205,7.3734661718433445,0,2023-06-24,NA +WA,B,Yes,6,31928,1,2000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,35.41768613729615,19.636905021236487,3.9432958243875627,0,2023-06-24,NA +WA,B,Yes,7,07528,1,100000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,236.90829424349357,587.4427466962778,3.085508730195386,0,2023-06-24,NA +WA,B,Yes,9,14396,2,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,13.415781230257416,7.213108871712538,7.362647293832722,0,2023-06-24,NA +NM,C,yes,10,27604,5,1000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,2.7502898996938634,328.0745989915488,0.3057106491806088,0,2023-06-24,NA +ZZ,F,NO,14,09634,3,8472,wwtp,raw wastewater,copies/g dry sludge,sars-cov-2,105.80960096490658,11.562744615665789,1.892417700394112,0,2023-06-24,NA +CA,A,YES,2,31809,1,30000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,360.53486840122713,58.04753166732912,24.48676277190495,0,2023-06-25,no +CA,A,YES,4,12078,3,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,57.001978822594914,24.08694105052301,1.0740039329689395,0,2023-06-25,no +CA,A,YES,4,12078,4,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,404.99895139434614,464.8077795841589,1.8381548839451483,0,2023-06-25,NA +WA,B,Yes,7,07528,1,100000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,39.30576416239907,13.877391380207115,3.5712683822510995,0,2023-06-25,NA +WA,B,Yes,8,97385,2,50000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,256.64517687093763,131.22630703182492,2.4270669053691187,0,2023-06-25,no +WA,B,Yes,9,14396,2,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,23.08971854717595,29.39148566330611,11.739269555410605,0,2023-06-25,NA +NM,C,yes,10,27604,5,1000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,2.0281958725645226,414.6658256512925,0.03742905822700909,0,2023-06-25,NA +YY,E,No,14,09634,3,13,upstream,primary sludge,copies/g dry sludge,sars-cov-2,50.43147030955524,19.246992883249067,1.278092430524568,0,2023-06-25,no +CA,A,YES,1,04971,1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,347.2523830430573,351.4116188477411,1.6635794733977365,0,2023-06-26,NA +CA,A,YES,2,31809,1,30000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,32.93097374839386,264.9210308309461,9.60879112807307,0,2023-06-26,NA +CA,A,YES,4,12078,3,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,120.4089807074322,379.0345638302019,2.073322534112873,0,2023-06-26,NA +CA,A,YES,4,12078,4,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,5.666734590454033,85.1577688336309,18.748850145837707,0,2023-06-26,NA +WA,B,Yes,6,31928,1,2000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,1.5402819170272406,499.0401982824324,3.080563834054481,1,2023-06-26,NA +WA,B,Yes,7,07528,1,100000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,288.1637919185413,105.40843484814033,4.219076069016244,0,2023-06-26,no +WA,B,Yes,8,97385,2,50000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,468.4055980259085,262.3001824338929,2.288263443343838,0,2023-06-26,no +WA,B,Yes,9,14396,2,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,25.772206663073405,548.9215665578598,23.805388556193233,0,2023-06-26,NA +NM,C,yes,10,27604,5,1000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,1.8623296058461054,34.99450696431354,0.352523027551261,0,2023-06-26,NA +YY,E,No,12,32541,1,13,upstream,primary sludge,copies/g dry sludge,sars-cov-2,343.96101779487975,892.075321397832,1.5274963739633212,0,2023-06-26,NA +YY,E,No,15,98436,4,13,upstream,primary sludge,copies/g dry sludge,sars-cov-2,7.640105529076845,38.40294952200265,1.3191710103020269,0,2023-06-26,NA +CA,A,YES,1,04971,1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,25.858403322348636,28.242645711496458,19.453488209921662,0,2023-06-27,NA +CA,A,YES,2,31809,1,30000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,6.527701927414233,97.41680701824544,1.1779758750978262,0,2023-06-27,NA +CA,A,YES,4,12078,3,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,145.2537352652396,51.51766661928613,14.797983985323617,0,2023-06-27,NA +CA,A,YES,5,34687,3,1000000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,308.7304353844812,726.8952835119471,3.2389757395493923,0,2023-06-27,NA +CA,A,YES,5,34687,4,1000000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,162.67518982289297,52.163829077902925,9.20442696528458,0,2023-06-27,yes +WA,B,Yes,6,31928,1,2000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,6.580445849806655,514.4973499555462,2.632942593288797,0,2023-06-27,NA +WA,B,Yes,7,07528,1,100000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,561.6685264021344,41.938125086921914,10.794632304113174,0,2023-06-27,no +WA,B,Yes,8,97385,2,50000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,860.7507307414419,7.919437326687023,3.0485024200049144,0,2023-06-27,NA +WA,B,Yes,9,14396,2,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,6.842042023414739,26.058051029784174,6.305415906974324,0,2023-06-27,no +NM,C,yes,10,27604,5,1000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,1.7511935228716389,6.683664832791913,0.22621961001700228,0,2023-06-27,no +YY,E,No,14,09634,3,13,upstream,primary sludge,copies/g dry sludge,sars-cov-2,450.0801336718615,20.431200098282122,10.862714948262134,0,2023-06-27,NA +YY,E,No,15,98436,4,13,upstream,primary sludge,copies/g dry sludge,sars-cov-2,99.08870644987405,25.502120275088153,12.062691408859417,0,2023-06-27,NA +CA,A,YES,1,04971,1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,123.69060013469947,61.01617619804707,8.720083252613676,0,2023-06-28,result is not quantifiable +CA,A,YES,2,31809,1,30000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,419.5831583043475,34.13489458550083,1.2849580658789475,0,2023-06-28,no +CA,A,YES,4,12078,3,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,10.19717305340525,7.199868196918408,7.9395260535548005,0,2023-06-28,result is not quantifiable +WA,B,Yes,6,31928,1,2000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,6.970411553977127,62.109602951048046,13.940823107954254,1,2023-06-28,no +WA,B,Yes,7,07528,1,100000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,1.3181976021646793,505.0195162610059,2.6363952043293586,1,2023-06-28,y +WA,B,Yes,8,97385,2,50000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,10.632058162242386,5.570716655002732,4.146333689829419,0,2023-06-28,NA +WA,B,Yes,9,14396,2,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,150.57668842337895,477.5711913410926,1.3460807304855096,0,2023-06-28,NA +NM,C,yes,10,27604,5,1000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,0.9033928155809902,161.43382929294324,0.44263177142665533,0,2023-06-28,NA +XX,D,ye,12,32541,10,1000000000,wwtp,raw wastewater,copies/l wastewater,FLUAV,121.1832095034962,264.05871371249475,14.254201931375112,0,2023-06-28,no +ZZ,F,NO,15,98436,4,8472,wwtp,raw wastewater,copies/g dry sludge,sars-cov-2,134.32700543224544,880.1088259873993,5.621333870877718,0,2023-06-28,no +CA,A,YES,1,04971,1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,10.019380902282103,12.758316383889646,3.589310259088568,0,2023-06-29,NA +CA,A,YES,2,31809,1,30000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,91.69756387532672,128.66140050586372,14.70479749208368,0,2023-06-29,NA +CA,A,YES,4,12078,3,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,139.53594836684155,106.25971844335412,10.217041855811175,0,2023-06-29,NA +WA,B,Yes,7,07528,1,100000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,16.819192352482006,6.070556723228853,3.9123650072669274,0,2023-06-29,yes +WA,B,Yes,9,14396,2,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,21.126614604830475,59.87436626025763,1.4226935223249029,0,2023-06-29,NA +NM,C,yes,10,27604,5,1000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,0.5358503621367183,443.97048479687,0.8368803578006996,1,2023-06-29,NA +CA,A,YES,1,04971,1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,935.1444950109765,12.244724479173952,1.7206828159565872,0,2023-06-30,NA +CA,A,YES,2,31809,1,30000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,47.4629536695786,97.82043438787936,22.995244828101182,0,2023-06-30,NA +CA,A,YES,4,12078,3,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,797.1064905835335,165.06325746313107,1.8848399967633076,0,2023-06-30,no +CA,A,YES,4,12078,4,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,260.0967527466577,8.514264526642851,19.950241007885037,0,2023-06-30,NA +WA,B,Yes,6,31928,1,2000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,59.606529040235486,13.554890260760516,1.0991749590798126,0,2023-06-30,no +WA,B,Yes,7,07528,1,100000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,123.06335772231505,635.4874928373218,1.5822877992657438,0,2023-06-30,NA +WA,B,Yes,9,14396,2,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,881.6070844290954,46.9554165391308,12.58741764853157,0,2023-06-30,NA +NM,C,yes,10,27604,5,1000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,2.5357034746103144,28.78557982021822,0.9666688324633175,0,2023-06-30,y +XX,D,ye,14,09634,10,1000000000,wwtp,raw wastewater,copies/l wastewater,FLUAV,80.1355922819374,66.67531865379503,3.7774497343840188,0,2023-06-30,no +CA,A,YES,1,04971,1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,73.32340920826366,287.4803390320116,2.0635163304229067,0,2023-07-01,NA +CA,A,YES,2,31809,1,30000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,6.4782058806812906,6.677409850309035,2.7587163215254455,0,2023-07-01,NA +CA,A,YES,4,12078,3,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,394.820425160619,10.737720690994108,10.016948287136834,0,2023-07-01,no +CA,A,YES,4,12078,4,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,26.5855880947208,450.4488909674384,1.6664221402164379,0,2023-07-01,> max temp and/or hold time +WA,B,Yes,6,31928,1,2000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,153.8329133244241,780.1954930519188,7.401264069928704,0,2023-07-01,NA +WA,B,Yes,7,07528,1,100000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,81.47913521782827,273.41766712791224,8.229475996770763,0,2023-07-01,NA +WA,B,Yes,8,97385,2,50000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,37.499458980375174,662.4381225095182,6.641178921768606,0,2023-07-01,NA +NM,C,yes,10,27604,5,1000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,1.167443414751288,27.128075644561925,0.5353775674270493,0,2023-07-01,NA +CA,A,YES,1,04971,1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,0.6849727543487996,523.395297367423,1.3699455086975991,1,2023-07-02,NA +CA,A,YES,2,31809,1,30000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,22.628337118962513,139.740109475956,5.753838485743138,0,2023-07-02,NA +CA,A,YES,4,12078,3,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,201.3080764182664,27.459737280572067,6.269831521960649,0,2023-07-02,NA +CA,A,YES,4,12078,4,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,173.8478495365214,168.39542754887853,10.47424942993786,0,2023-07-02,NA +WA,B,Yes,6,31928,1,2000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,52.894157673521846,68.62193593354726,14.340681581393689,0,2023-07-02,NA +WA,B,Yes,7,07528,1,100000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,620.1195118994862,792.7971470940889,1.2977074229133851,0,2023-07-02,NA +WA,B,Yes,8,97385,2,50000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,77.8722936583329,93.13241511939898,6.983720628634834,0,2023-07-02,NA +WA,B,Yes,9,14396,2,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,508.24537856214647,53.92116524292217,3.046084398056569,0,2023-07-02,temperature not assessed upon arrival at the laboratory +XX,D,ye,12,32541,10,1000000000,wwtp,raw wastewater,copies/l wastewater,FLUAV,253.33711308398824,27.903078533313465,5.527711625888085,0,2023-07-02,no +YY,E,No,12,32541,1,13,upstream,primary sludge,copies/g dry sludge,sars-cov-2,34.10417962535124,7.970811703101307,22.989497987213454,0,2023-07-02,no +ZZ,F,NO,13,65174,2,8472,wwtp,raw wastewater,copies/g dry sludge,sars-cov-2,47.257333084367744,336.21179188521495,10.599278147601924,0,2023-07-02,NA +CA,A,YES,1,04971,1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,511.61411497329766,62.63682789928954,3.5404402095624605,0,2023-07-03,no +CA,A,YES,2,31809,1,30000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,12.079188456705287,274.53273208614485,5.159820029652694,0,2023-07-03,no +CA,A,YES,4,12078,3,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,8.620905662401379,94.18590327765146,3.245520132421641,0,2023-07-03,no +CA,A,YES,4,12078,4,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,805.0150596209197,231.84544435593202,12.702953864616344,0,2023-07-03,NA +WA,B,Yes,6,31928,1,2000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,12.90274086211937,51.73050385640109,16.77301103168526,0,2023-07-03,NA +WA,B,Yes,8,97385,2,50000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,80.41021519837274,82.3179377927694,12.966163958950181,0,2023-07-03,NA +WA,B,Yes,9,14396,2,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,0.7254631359668282,134.53923557184794,1.4509262719336564,1,2023-07-03,NA +NM,C,yes,10,27604,5,1000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,1.0942372531148883,5.019826003581729,0.1745549185646807,0,2023-07-03,result is not quantifiable +XX,D,ye,13,65174,10,1000000000,wwtp,raw wastewater,copies/l wastewater,FLUAV,94.70899048057963,16.950965000573742,1.4846722158905687,0,2023-07-03,NA +CA,A,YES,1,04971,1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,541.1218770752313,203.98987755029955,13.794798866774372,0,2023-07-04,NA +CA,A,YES,2,31809,1,30000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,964.80251664486,5.979174028952507,1.7372752734722674,0,2023-07-04,NA +CA,A,YES,4,12078,3,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,2.2464255786250718,156.4078657032445,4.4928511572501435,1,2023-07-04,NA +CA,A,YES,5,34687,3,1000000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,5.764812504115516,16.010407671971542,2.522489568055847,0,2023-07-04,NA +CA,A,YES,4,12078,4,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,38.77522629708733,551.0091137853318,5.177804735926379,0,2023-07-04,NA +CA,A,YES,5,34687,4,1000000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,92.45319518796069,211.00627981764913,1.0630241799353948,0,2023-07-04,y +WA,B,Yes,6,31928,1,2000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,5.71730667710701,128.30161526042383,1.062009612397215,0,2023-07-04,NA +WA,B,Yes,7,07528,1,100000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,9.022295226804387,38.267147500222585,1.096554063900201,0,2023-07-04,NA +WA,B,Yes,8,97385,2,50000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,7.1855617422750395,238.64321994623378,24.948522449367708,0,2023-07-04,no +WA,B,Yes,9,14396,2,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,872.500768528626,23.209781316233617,3.4714224852702955,0,2023-07-04,NA +NM,C,yes,10,27604,5,1000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,2.205753418835823,729.3038344539345,0.6481232022218308,0,2023-07-04,NA +CA,A,YES,1,04971,1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,24.388026570905993,981.6321747909421,6.177275606147465,0,2023-07-05,NA +CA,A,YES,2,31809,1,30000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,1.467196440896244,44.00637812140559,2.934392881792488,1,2023-07-05,NA +CA,A,YES,4,12078,3,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,128.17503571814547,25.165812619467378,15.17053341652229,0,2023-07-05,NA +CA,A,YES,4,12078,4,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,5.451822114409701,20.205016414519534,10.903644228819402,1,2023-07-05,NA +WA,B,Yes,6,31928,1,2000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,11.73034715944187,84.68716716139197,5.966234129206577,0,2023-07-05,y +WA,B,Yes,7,07528,1,100000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,522.8385479253805,562.2846787794747,2.09709201378588,0,2023-07-05,NA +WA,B,Yes,8,97385,2,50000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,6.4313523920190665,36.943126024186554,12.862704784038133,1,2023-07-05,temperature not assessed upon arrival at the laboratory +WA,B,Yes,9,14396,2,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,12.864683829500173,22.67078490153635,7.54645635035426,0,2023-07-05,NA +NM,C,yes,10,27604,5,1000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,1.0298742399578338,12.342390581073865,0.8969216590753566,0,2023-07-05,NA +XX,D,ye,12,32541,10,1000000000,wwtp,raw wastewater,copies/l wastewater,FLUAV,73.44500631493693,249.26700291515954,14.974617073455041,0,2023-07-05,NA +XX,D,ye,14,09634,10,1000000000,wwtp,raw wastewater,copies/l wastewater,FLUAV,88.0957200243151,49.35655188234011,1.7431022134926317,0,2023-07-05,NA +CA,A,YES,1,04971,1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,28.11953184261253,99.94044777851639,2.794650281477016,0,2023-07-06,NA +CA,A,YES,2,31809,1,30000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,30.972396985100428,355.1743926214724,16.592770105492104,0,2023-07-06,NA +CA,A,YES,4,12078,3,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,110.88732137150963,46.57913353205974,6.799222658245407,0,2023-07-06,NA +CA,A,YES,4,12078,4,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,10.810892868038199,45.479450095491096,6.350961749916545,0,2023-07-06,NA +WA,B,Yes,6,31928,1,2000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,431.95980409977653,249.1233884171567,2.306193950373202,0,2023-07-06,NA +WA,B,Yes,7,07528,1,100000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,14.325913434796774,574.5090079837199,3.957075095058098,0,2023-07-06,NA +WA,B,Yes,8,97385,2,50000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,5.438830094490895,34.791333425308,6.3323059600616185,0,2023-07-06,no +WA,B,Yes,9,14396,2,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,563.740963601475,499.7263855499281,1.4060925996297213,0,2023-07-06,no +NM,C,yes,10,27604,5,1000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,1.7706822675849168,265.23716818162796,0.03442370094880236,0,2023-07-06,temperature not assessed upon arrival at the laboratory +XX,D,ye,12,32541,10,1000000000,wwtp,raw wastewater,copies/l wastewater,FLUAV,2.5847369933086686,29.66124820755884,5.169473986617337,1,2023-07-06,NA +XX,D,ye,13,65174,10,1000000000,wwtp,raw wastewater,copies/l wastewater,FLUAV,26.63346976043322,8.67257834087213,23.985556361989577,0,2023-07-06,NA +CA,A,YES,1,04971,1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,625.5325312472202,319.7882667185706,1.9388145516085369,0,2023-07-07,NA +CA,A,YES,2,31809,1,30000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,47.97279393350384,6.991200607959283,1.9455734103948752,0,2023-07-07,NA +CA,A,YES,4,12078,3,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,0.6097012913996386,327.3817841745552,1.2194025827992772,1,2023-07-07,no +CA,A,YES,4,12078,4,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,8.544613002047246,60.00665993245423,2.087722036346646,0,2023-07-07,NA +WA,B,Yes,6,31928,1,2000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,425.50824230123834,6.138754643428855,2.0057416967729966,0,2023-07-07,no +WA,B,Yes,8,97385,2,50000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,408.2131108694158,24.88359197995236,1.310224579040975,0,2023-07-07,NA +NM,C,yes,10,27604,5,1000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,2.14317304353045,48.17837093966867,0.4604364302803231,0,2023-07-07,NA +YY,E,No,12,32541,1,13,upstream,primary sludge,copies/g dry sludge,sars-cov-2,463.82171291832583,252.32382020955413,5.4561223884982555,0,2023-07-07,NA +CA,A,YES,1,04971,1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,12.351905330391771,210.4768920078485,24.703810660783542,1,2023-07-08,NA +CA,A,YES,2,31809,1,30000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,343.79973653813323,9.32316508132063,1.3377158337599355,0,2023-07-08,NA +CA,A,YES,4,12078,3,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,581.463890424258,136.32987898727944,1.114863081095604,0,2023-07-08,NA +CA,A,YES,4,12078,4,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,74.60890573734395,103.23745886051009,20.135359095930284,0,2023-07-08,NA +WA,B,Yes,6,31928,1,2000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,602.7127270151725,6.004293640181676,7.663232666804708,0,2023-07-08,no +WA,B,Yes,7,07528,1,100000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,297.0581854990987,87.00971840561509,3.655792091289433,0,2023-07-08,no +WA,B,Yes,8,97385,2,50000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,35.719003467421444,8.001521621226889,8.229038028298687,0,2023-07-08,no +WA,B,Yes,9,14396,2,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,1.7600391847403285,57.84305345949273,3.520078369480657,1,2023-07-08,NA +NM,C,yes,10,27604,5,1000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,2.1306073878869287,91.64527014911167,0.7190565489447202,0,2023-07-08,NA +XX,D,ye,12,32541,10,1000000000,wwtp,raw wastewater,copies/l wastewater,FLUAV,348.82188241797206,889.217266262356,5.259852934836894,0,2023-07-08,y +YY,E,No,14,09634,3,13,upstream,primary sludge,copies/g dry sludge,sars-cov-2,64.33551230566621,632.2985114943104,1.0665990601799857,0,2023-07-08,no +CA,A,YES,2,31809,1,30000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,814.6729448971579,336.05459647921606,1.8202442211066545,0,2023-07-09,NA +CA,A,YES,4,12078,3,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,17.803513416152697,36.11234936089526,1.1964883403527566,0,2023-07-09,NA +CA,A,YES,4,12078,4,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,233.7981150339279,70.0817301721835,1.942927603951384,0,2023-07-09,NA +WA,B,Yes,6,31928,1,2000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,612.4352581138744,29.843983187984794,1.2299931978878929,0,2023-07-09,temperature not assessed upon arrival at the laboratory +WA,B,Yes,7,07528,1,100000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,315.6748254322807,134.41602251060337,5.803950062245853,0,2023-07-09,NA +WA,B,Yes,8,97385,2,50000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,123.65065711858405,39.63490926700756,3.9503809820070024,0,2023-07-09,NA +WA,B,Yes,9,14396,2,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,634.770707659623,35.18521269132205,2.4758387584201498,0,2023-07-09,NA +NM,C,yes,10,27604,5,1000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,1.6042037818604424,12.161913275339137,0.18617333656848944,0,2023-07-09,NA +CA,A,YES,1,04971,1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,2.218836283267302,73.69835255749938,4.437672566534604,1,2023-07-10,NA +CA,A,YES,2,31809,1,30000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,750.4006625631381,10.987394412929502,4.4171387871148005,0,2023-07-10,result is not quantifiable +CA,A,YES,4,12078,3,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,262.8860756367084,53.071899700697266,1.027000195027039,0,2023-07-10,NA +CA,A,YES,4,12078,4,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,358.0377903236937,225.4261899225438,3.9951340659237347,0,2023-07-10,NA +WA,B,Yes,6,31928,1,2000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,45.9915006417231,49.86104211584604,4.123890548280911,0,2023-07-10,> max temp and/or hold time +WA,B,Yes,7,07528,1,100000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,7.6602368357954616,39.80057291750455,15.320473671590923,1,2023-07-10,NA +WA,B,Yes,8,97385,2,50000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,3.418148370054517,509.31244504896495,6.836296740109034,1,2023-07-10,no +WA,B,Yes,9,14396,2,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,132.73999383105556,300.9897037628022,9.965656080620311,0,2023-07-10,NA +NM,C,yes,10,27604,5,1000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,1.8835014744010268,710.6242742600398,0.25699016613869846,0,2023-07-10,NA +ZZ,F,NO,13,65174,2,8472,wwtp,raw wastewater,copies/g dry sludge,sars-cov-2,186.63211464763253,6.448344206809252,8.678303120380205,0,2023-07-10,no +CA,A,YES,1,04971,1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,7.717464574326779,16.383796256828802,20.529840694664493,0,2023-07-11,NA +CA,A,YES,2,31809,1,30000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,24.00880480813905,70.22797057025903,3.4655121624057426,0,2023-07-11,result is not quantifiable +CA,A,YES,4,12078,3,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,16.739955666498375,312.73707079100194,3.035946335104121,0,2023-07-11,> max temp and/or hold time +CA,A,YES,5,34687,3,1000000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,0.931657731939781,70.43588600329262,1.863315463879562,1,2023-07-11,NA +CA,A,YES,5,34687,4,1000000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,48.51465102658729,803.8174893268102,1.183470875692719,0,2023-07-11,NA +WA,B,Yes,6,31928,1,2000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,5.1713765252420965,58.38233223227598,11.457025196809154,0,2023-07-11,yes +WA,B,Yes,7,07528,1,100000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,6.502173144813194,193.10186158070346,12.309034225780419,0,2023-07-11,no +WA,B,Yes,8,97385,2,50000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,741.01402495434,72.46487149825553,11.48150388753033,0,2023-07-11,NA +WA,B,Yes,9,14396,2,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,527.1209458543116,872.595872515886,1.374753289006661,0,2023-07-11,NA +NM,C,yes,10,27604,5,1000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,1.6039125356778468,12.188942844163753,1.3120061798142253,0,2023-07-11,no +CA,A,YES,1,04971,1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,7.944992394163731,837.4203115687657,1.5976617777047457,0,2023-07-12,no +CA,A,YES,2,31809,1,30000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,2.353228452672452,987.1544036992674,4.706456905344904,1,2023-07-12,no +CA,A,YES,4,12078,3,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,11.396949210275352,34.44058334128715,7.468245802137186,0,2023-07-12,no +CA,A,YES,4,12078,4,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,13.00250556256381,317.8975971043451,16.314870169073192,0,2023-07-12,NA +WA,B,Yes,7,07528,1,100000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,408.76322610566086,992.0951990148831,12.419737437951905,0,2023-07-12,no +WA,B,Yes,8,97385,2,50000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,19.636444571235103,268.17966791176303,6.588590792565492,0,2023-07-12,no +WA,B,Yes,9,14396,2,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,455.13644102804267,7.293477578141697,10.528096080942063,0,2023-07-12,NA +NM,C,yes,10,27604,5,1000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,1.6298608661646992,173.86684834859736,0.30464524380989333,0,2023-07-12,NA +CA,A,YES,1,04971,1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,41.51428591660013,81.41641651292139,1.584614391186242,0,2023-07-13,no +CA,A,YES,2,31809,1,30000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,72.54495511424763,230.61234580545207,19.02097722321938,0,2023-07-13,temperature not assessed upon arrival at the laboratory +CA,A,YES,4,12078,3,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,124.43408364890477,230.1286855378592,3.5217228195229016,0,2023-07-13,NA +CA,A,YES,4,12078,4,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,0.7344417610142682,38.882240648787075,1.4688835220285363,1,2023-07-13,no +WA,B,Yes,7,07528,1,100000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,728.9839767856851,389.70662879942984,13.009210467392592,0,2023-07-13,NA +NM,C,yes,10,27604,5,1000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,1.9933259983291647,36.60256515326269,0.29711714902320474,0,2023-07-13,no +XX,D,ye,13,65174,10,1000000000,wwtp,raw wastewater,copies/l wastewater,FLUAV,124.0738871020695,258.9940426039666,19.097747416186202,0,2023-07-13,NA +CA,A,YES,1,04971,1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,0.93826933952755,44.69264572935639,1.8765386790551,1,2023-07-14,no +CA,A,YES,2,31809,1,30000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,55.52731665842245,5.895663003002946,22.51125104773069,0,2023-07-14,NA +CA,A,YES,4,12078,3,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,164.08102342886792,308.02984168192944,2.4975765827769427,0,2023-07-14,NA +CA,A,YES,4,12078,4,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,45.14404398527416,119.93273812538193,4.745574413654393,0,2023-07-14,no +WA,B,Yes,6,31928,1,2000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,8.044557502955271,14.756592287965516,20.99737213635358,0,2023-07-14,NA +WA,B,Yes,7,07528,1,100000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,1.1133885489551105,7.71278967281845,2.226777097910221,1,2023-07-14,NA +WA,B,Yes,8,97385,2,50000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,83.10478438773698,623.0606796022838,17.0193196034174,0,2023-07-14,NA +WA,B,Yes,9,14396,2,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,22.202168411106786,743.803278964884,5.8296330179847065,0,2023-07-14,y +NM,C,yes,10,27604,5,1000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,2.185250461847421,11.011194730903643,1.247676260823159,0,2023-07-14,NA +CA,A,YES,1,04971,1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,795.655576312077,708.0869856489144,23.358835684662168,0,2023-07-15,NA +CA,A,YES,4,12078,3,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,6.707720784480135,362.72722244038005,1.9658402755819568,0,2023-07-15,y +CA,A,YES,4,12078,4,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,78.5145417591039,19.872184032401016,5.933856526543314,0,2023-07-15,NA +WA,B,Yes,6,31928,1,2000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,48.145194368623656,152.0628129617066,5.441635315770852,0,2023-07-15,NA +WA,B,Yes,7,07528,1,100000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,101.06928551938962,47.10168137117944,2.101542040267802,0,2023-07-15,no +WA,B,Yes,8,97385,2,50000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,69.31315305819089,182.00764014746503,18.15433067907769,0,2023-07-15,NA +WA,B,Yes,9,14396,2,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,8.142074611877137,5.805846186768318,1.2860421542955445,0,2023-07-15,NA +NM,C,yes,10,27604,5,1000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,1.5815131185445985,65.9818477228319,0.6665179534596019,0,2023-07-15,> max temp and/or hold time +CA,A,YES,1,04971,1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,6.551935780466369,13.333930645682143,13.103871560932738,1,2023-07-16,no +CA,A,YES,2,31809,1,30000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,3.044330667966795,7.32693770316833,6.08866133593359,1,2023-07-16,NA +CA,A,YES,4,12078,3,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,770.7282120328325,56.95659592164818,17.30392034646923,0,2023-07-16,NA +CA,A,YES,4,12078,4,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,95.66168209559994,9.0079802045799,1.9141521256105298,0,2023-07-16,NA +WA,B,Yes,6,31928,1,2000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,17.53093797199904,9.109771037353486,1.412627070427465,0,2023-07-16,no +WA,B,Yes,7,07528,1,100000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,73.75315379886283,302.9004350515071,12.134994101840299,0,2023-07-16,NA +WA,B,Yes,8,97385,2,50000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,6.155250822860765,66.46328090667852,8.734357406664934,0,2023-07-16,no +NM,C,yes,10,27604,5,1000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,1.041509542176899,229.37451077843812,0.9579136299379967,0,2023-07-16,NA +YY,E,No,15,98436,4,13,upstream,primary sludge,copies/g dry sludge,sars-cov-2,8.492050618662649,420.8303385238243,16.984101237325298,1,2023-07-16,NA +CA,A,YES,1,04971,1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,5.882346411121828,39.322479253267844,11.764692822243656,1,2023-07-17,> max temp and/or hold time +CA,A,YES,2,31809,1,30000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,9.033386126282563,108.05455560068502,8.777395398940188,0,2023-07-17,NA +CA,A,YES,4,12078,4,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,211.3941266521302,6.4292960956101455,10.973809774102156,0,2023-07-17,NA +WA,B,Yes,7,07528,1,100000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,173.09189944929298,41.11433051978895,10.159206211965113,0,2023-07-17,NA +WA,B,Yes,8,97385,2,50000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,588.0695150705761,8.633242750827845,3.5355390464383674,0,2023-07-17,NA +WA,B,Yes,9,14396,2,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,105.21452258280651,10.65218739155434,24.343530859116047,0,2023-07-17,y +NM,C,yes,10,27604,5,1000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,2.5837419662659045,239.43027677959032,0.2760732676271765,0,2023-07-17,NA +XX,D,ye,15,98436,10,1000000000,wwtp,raw wastewater,copies/l wastewater,FLUAV,10.08711490288661,121.55540654601802,20.17422980577322,1,2023-07-17,NA +CA,A,YES,1,04971,1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,241.68723320654166,111.96442647581554,19.774130720183855,0,2023-07-18,NA +CA,A,YES,2,31809,1,30000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,537.9248750681627,822.5197847312589,22.020642895941357,0,2023-07-18,NA +CA,A,YES,4,12078,3,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,16.226026094539854,611.7953876096274,13.514793961665061,0,2023-07-18,temperature not assessed upon arrival at the laboratory +CA,A,YES,5,34687,4,1000000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,36.62244984087406,430.9258004560411,2.759467631177355,0,2023-07-18,no +WA,B,Yes,6,31928,1,2000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,63.22908977775509,436.962517804828,1.009390111624778,0,2023-07-18,NA +WA,B,Yes,7,07528,1,100000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,750.8610767918537,256.8698596470396,1.8428080930087778,0,2023-07-18,NA +WA,B,Yes,8,97385,2,50000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,601.7329980312988,110.95795974497264,1.3633029722287286,0,2023-07-18,no +WA,B,Yes,9,14396,2,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,1.4767467385567152,234.06219282230043,2.9534934771134305,1,2023-07-18,NA +CA,A,YES,1,04971,1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,43.394035193624006,39.46900061049787,5.129002133042138,0,2023-07-19,NA +CA,A,YES,2,31809,1,30000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,12.144038358853544,130.19728200548795,16.189449004203126,0,2023-07-19,NA +CA,A,YES,4,12078,3,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,65.42278306616743,224.07515066658064,5.575897845450405,0,2023-07-19,NA +CA,A,YES,4,12078,4,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,2.0094458540818056,746.467128002413,4.018891708163611,1,2023-07-19,NA +WA,B,Yes,6,31928,1,2000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,475.0985020274341,25.94211370112956,9.867254826761892,0,2023-07-19,NA +WA,B,Yes,8,97385,2,50000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,10.644001481437686,36.573517141692264,1.1271975957925,0,2023-07-19,no +WA,B,Yes,9,14396,2,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,14.516678699373639,141.83595631243017,1.5557635594648263,0,2023-07-19,NA +NM,C,yes,10,27604,5,1000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,1.7596387160318898,118.68572725080334,0.6839470365147324,0,2023-07-19,NA +ZZ,F,NO,12,32541,1,8472,wwtp,raw wastewater,copies/g dry sludge,sars-cov-2,19.879466600947246,169.81487827120927,3.6896504606912592,0,2023-07-19,NA +CA,A,YES,2,31809,1,30000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,5.0225912503747265,419.06460655529287,2.617504050003626,0,2023-07-20,NA +CA,A,YES,4,12078,3,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,93.16860177145843,300.7999900496941,5.984573058392557,0,2023-07-20,no +CA,A,YES,4,12078,4,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,42.79508070595576,80.41527350366636,8.058769680438006,0,2023-07-20,NA +WA,B,Yes,6,31928,1,2000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,128.24910665912122,387.5257651979432,4.303074273201593,0,2023-07-20,temperature not assessed upon arrival at the laboratory +WA,B,Yes,7,07528,1,100000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,537.1873457887094,5.304618012230567,18.14733567138234,0,2023-07-20,> max temp and/or hold time +WA,B,Yes,8,97385,2,50000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,119.93842043929429,114.92858920274679,14.032907908478409,0,2023-07-20,NA +WA,B,Yes,9,14396,2,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,17.18420005425334,249.64294557907263,2.4579698189272334,0,2023-07-20,NA +NM,C,yes,10,27604,5,1000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,2.7543753621461144,7.987570144254859,1.1471414867309968,0,2023-07-20,no +XX,D,ye,12,32541,10,1000000000,wwtp,raw wastewater,copies/l wastewater,FLUAV,70.97089695594413,100.77192193153839,2.0160185123712093,0,2023-07-20,NA +ZZ,F,NO,13,65174,2,8472,wwtp,raw wastewater,copies/g dry sludge,sars-cov-2,472.72050106819825,422.81727722072645,1.1035821955921314,0,2023-07-20,NA +CA,A,YES,1,04971,1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,577.5598577313433,163.07337147206727,24.214569522151354,0,2023-07-21,no +CA,A,YES,2,31809,1,30000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,266.897260359998,223.4530678946011,22.06620546840118,0,2023-07-21,NA +CA,A,YES,4,12078,3,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,405.9456914943519,278.3879406999624,4.534869060789636,0,2023-07-21,NA +CA,A,YES,4,12078,4,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,216.85011118147364,11.271527034164327,5.186482146010251,0,2023-07-21,temperature not assessed upon arrival at the laboratory +WA,B,Yes,6,31928,1,2000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,74.39118804514018,614.1825810621549,1.028601411528418,0,2023-07-21,result is not quantifiable +WA,B,Yes,7,07528,1,100000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,387.3704205231332,464.6320905644908,12.200819044143627,0,2023-07-21,NA +WA,B,Yes,8,97385,2,50000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,8.22510757052565,779.8759706479922,1.7575766448674532,0,2023-07-21,NA +NM,C,yes,10,27604,5,1000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,-0.05119827491285073,26.97305319474855,0.24983172075113044,1,2023-07-21,NA +XX,D,ye,13,65174,10,1000000000,wwtp,raw wastewater,copies/l wastewater,FLUAV,504.32812637403566,5.83155458514248,2.420854667589885,0,2023-07-21,NA +XX,D,ye,15,98436,10,1000000000,wwtp,raw wastewater,copies/l wastewater,FLUAV,563.9541838219717,130.74024183188638,6.379283749680133,0,2023-07-21,no +ZZ,F,NO,15,98436,4,8472,wwtp,raw wastewater,copies/g dry sludge,sars-cov-2,34.423170413279976,284.7916691874159,2.875191943404999,0,2023-07-21,NA +CA,A,YES,1,04971,1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,11.032938404219838,67.90345189717881,7.6546364904309225,0,2023-07-22,NA +CA,A,YES,2,31809,1,30000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,86.06362261142885,25.49200522379626,9.323497288504242,0,2023-07-22,NA +CA,A,YES,4,12078,3,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,4.215090567519388,15.991860059954055,8.430181135038776,1,2023-07-22,temperature not assessed upon arrival at the laboratory +CA,A,YES,4,12078,4,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,1.211994686232142,13.025174350814847,2.423989372464284,1,2023-07-22,NA +WA,B,Yes,6,31928,1,2000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,131.90106228947778,101.83769940905518,9.82648318242834,0,2023-07-22,no +WA,B,Yes,7,07528,1,100000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,92.60776366705345,7.161859873871535,4.347341025077192,0,2023-07-22,NA +WA,B,Yes,8,97385,2,50000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,246.705412559002,38.15815691645869,8.669886521405825,0,2023-07-22,no +WA,B,Yes,9,14396,2,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,192.08745255336368,6.099214804938713,4.629318364001758,0,2023-07-22,NA +NM,C,yes,10,27604,5,1000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,2.1479632656729564,386.096158413021,0.6962755053899595,0,2023-07-22,NA +XX,D,ye,12,32541,10,1000000000,wwtp,raw wastewater,copies/l wastewater,FLUAV,923.4490724658855,29.578513120980205,4.855949844833705,0,2023-07-22,NA +YY,E,No,14,09634,3,13,upstream,primary sludge,copies/g dry sludge,sars-cov-2,10.798486582741294,757.1323226902997,21.596973165482588,1,2023-07-22,NA +CA,A,YES,2,31809,1,30000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,349.66652388334256,5.973007269086334,3.1100791023289265,0,2023-07-23,no +CA,A,YES,4,12078,3,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,4.8442883977067765,198.30799799749943,9.688576795413553,1,2023-07-23,NA +CA,A,YES,4,12078,4,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,430.2736317767041,6.2208215486945395,13.798099441223014,0,2023-07-23,result is not quantifiable +WA,B,Yes,7,07528,1,100000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,518.9170735925353,854.1811095960346,17.49815503215251,0,2023-07-23,no +WA,B,Yes,9,14396,2,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,6.886271912337521,84.91545507777077,8.84182279211746,0,2023-07-23,below loq +NM,C,yes,10,27604,5,1000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,1.0908938669681871,5.45394528060175,1.1451872047714888,0,2023-07-23,no +XX,D,ye,15,98436,10,1000000000,wwtp,raw wastewater,copies/l wastewater,FLUAV,230.41056809693274,402.98400962142017,2.838318575520138,0,2023-07-23,NA +CA,A,YES,1,04971,1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,421.5581390603822,50.35463879070723,8.61281044196096,0,2023-07-24,y +CA,A,YES,2,31809,1,30000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,13.931704961820937,33.50447991282662,7.00103565994306,0,2023-07-24,NA +CA,A,YES,4,12078,3,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,70.68597390973369,5.149639862998421,1.1925513163121158,0,2023-07-24,NA +CA,A,YES,4,12078,4,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,12.410294366260937,51.76608303310153,13.589369036717457,0,2023-07-24,NA +WA,B,Yes,6,31928,1,2000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,5.126477751661954,11.940671189758673,2.689051997922301,0,2023-07-24,NA +WA,B,Yes,7,07528,1,100000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,35.444322398416176,822.1245737359479,1.3704801396102488,0,2023-07-24,NA +WA,B,Yes,9,14396,2,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,19.678224499034048,15.670833550807297,5.566075820590167,0,2023-07-24,NA +NM,C,yes,10,27604,5,1000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,1.2896805336781794,8.997528693520168,1.164342497798732,0,2023-07-24,NA +CA,A,YES,1,04971,1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,23.610997025519655,5.371442831117368,16.501544238849036,0,2023-07-25,NA +CA,A,YES,4,12078,3,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,11.131632377366053,495.84583303313366,8.18280331494476,0,2023-07-25,NA +CA,A,YES,5,34687,3,1000000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,210.61745521349232,45.49156443572035,22.77546631120279,0,2023-07-25,NA +CA,A,YES,4,12078,4,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,35.572668333924135,666.6232906241524,3.173564589181408,0,2023-07-25,NA +CA,A,YES,5,34687,4,1000000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,46.034555134965295,6.9041689710217256,9.083707699348228,0,2023-07-25,NA +WA,B,Yes,6,31928,1,2000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,230.26210868762553,35.81418044984833,1.6929321809334588,0,2023-07-25,NA +WA,B,Yes,7,07528,1,100000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,48.1848695828013,362.5466632522034,11.04271122445443,0,2023-07-25,NA +WA,B,Yes,8,97385,2,50000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,56.84958442586768,17.272331132916392,1.4266905228561024,0,2023-07-25,NA +WA,B,Yes,9,14396,2,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,19.726375677269136,15.557311260099098,3.981193447017898,0,2023-07-25,NA +NM,C,yes,10,27604,5,1000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,1.7810502996272863,25.67138528128818,0.7728682348177237,0,2023-07-25,NA +YY,E,No,13,65174,2,13,upstream,primary sludge,copies/g dry sludge,sars-cov-2,10.047924691736624,11.555097645033824,12.015321395023786,0,2023-07-25,NA +CA,A,YES,1,04971,1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,7.4285751551321955,19.457111516742547,7.053586036128444,0,2023-07-26,temperature not assessed upon arrival at the laboratory +CA,A,YES,2,31809,1,30000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,2.022878459375225,367.9357253557759,4.04575691875045,1,2023-07-26,NA +CA,A,YES,4,12078,4,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,605.2738581265361,13.228818256721318,2.200025417772529,0,2023-07-26,NA +WA,B,Yes,6,31928,1,2000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,918.4555018609133,47.42556023969875,1.561819227217992,0,2023-07-26,> max temp and/or hold time +WA,B,Yes,7,07528,1,100000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,9.870542766401227,22.99169488312762,8.284825151691335,0,2023-07-26,no +WA,B,Yes,8,97385,2,50000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,45.5517567571074,25.743014750312746,1.2046951089329523,0,2023-07-26,NA +WA,B,Yes,9,14396,2,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,987.3083082079538,9.290153493600062,1.3437724561565907,0,2023-07-26,no +NM,C,yes,10,27604,5,1000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,2.6981669463675733,579.0400872135936,1.1842199545573608,0,2023-07-26,NA +ZZ,F,NO,13,65174,2,8472,wwtp,raw wastewater,copies/g dry sludge,sars-cov-2,683.1767472521793,959.9423931079921,1.8497728700884701,0,2023-07-26,NA +CA,A,YES,1,04971,1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,5.055534203854524,176.16206933310832,16.59448203988224,0,2023-07-27,> max temp and/or hold time +CA,A,YES,2,31809,1,30000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,18.34817059311526,30.198938215788566,4.084743957726863,0,2023-07-27,no +CA,A,YES,4,12078,3,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,25.393595958767254,42.04473143028779,20.468704754309428,0,2023-07-27,NA +WA,B,Yes,6,31928,1,2000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,10.260974833426713,47.098409991349065,1.238724105245997,0,2023-07-27,NA +WA,B,Yes,7,07528,1,100000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,61.439719294020065,658.5149958042917,13.38389749484834,0,2023-07-27,no +WA,B,Yes,8,97385,2,50000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,69.44356844778974,421.4201693986762,2.3585611383696983,0,2023-07-27,NA +WA,B,Yes,9,14396,2,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,17.20340881764183,411.1027015651457,1.1114410453881693,0,2023-07-27,no +NM,C,yes,10,27604,5,1000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,1.4660105951254385,29.833140201273768,1.283289265605,0,2023-07-27,no +XX,D,ye,14,09634,10,1000000000,wwtp,raw wastewater,copies/l wastewater,FLUAV,1.1144662421971845,6.3929155639487805,2.228932484394369,1,2023-07-27,NA +YY,E,No,15,98436,4,13,upstream,primary sludge,copies/g dry sludge,sars-cov-2,74.96824753548066,359.24262787918093,2.087121568031942,0,2023-07-27,temperature not assessed upon arrival at the laboratory +CA,A,YES,1,04971,1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,6.757122856022711,482.460205052603,10.015110580420062,0,2023-07-28,NA +CA,A,YES,4,12078,3,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,523.004904845772,77.67660235298708,12.556092808646966,0,2023-07-28,NA +CA,A,YES,4,12078,4,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,11.965686775859371,42.07324912883769,23.931373551718742,1,2023-07-28,NA +WA,B,Yes,6,31928,1,2000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,26.869646565182435,193.4692064575791,9.6319546219826,0,2023-07-28,no +WA,B,Yes,7,07528,1,100000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,43.11517432171161,8.71907065410205,18.625036578631903,0,2023-07-28,temperature not assessed upon arrival at the laboratory +WA,B,Yes,8,97385,2,50000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,780.0696724720883,130.89778247621842,2.7780691144942384,0,2023-07-28,NA +NM,C,yes,10,27604,5,1000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,0.17922483080784876,178.41650913675426,0.48025482647182993,1,2023-07-28,temperature not assessed upon arrival at the laboratory +XX,D,ye,14,09634,10,1000000000,wwtp,raw wastewater,copies/l wastewater,FLUAV,93.87893829512821,335.2062089623892,3.7080859082445232,0,2023-07-28,NA +CA,A,YES,1,04971,1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,18.784296198219966,24.456558953248408,1.2534572274074924,0,2023-07-29,NA +CA,A,YES,2,31809,1,30000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,726.1220317055539,28.831370274962772,1.6912704261075246,0,2023-07-29,NA +CA,A,YES,4,12078,4,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,11.575306369723137,109.52895431551734,15.21304891369186,0,2023-07-29,NA +WA,B,Yes,6,31928,1,2000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,24.388756391739967,26.720527097323632,3.199955392493262,0,2023-07-29,NA +WA,B,Yes,7,07528,1,100000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,481.1296333761557,989.5569134642733,13.032247132356186,0,2023-07-29,NA +WA,B,Yes,8,97385,2,50000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,693.8417724731394,790.0467927326773,1.89720897724016,0,2023-07-29,no +NM,C,yes,10,27604,5,1000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,0.7118998726735573,81.83300294458198,0.5326940922739297,0,2023-07-29,NA +XX,D,ye,12,32541,10,1000000000,wwtp,raw wastewater,copies/l wastewater,FLUAV,8.737336974037659,389.52437870189783,6.544890674740152,0,2023-07-29,NA +YY,E,No,14,09634,3,13,upstream,primary sludge,copies/g dry sludge,sars-cov-2,217.51626595412512,16.637332328320927,11.644643906398457,0,2023-07-29,NA +YY,E,No,15,98436,4,13,upstream,primary sludge,copies/g dry sludge,sars-cov-2,8.391443390627675,21.816466090463543,3.2620521602127983,0,2023-07-29,no +CA,A,YES,1,04971,1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,43.089152719699264,435.73082145092775,3.6013387596174287,0,2023-07-30,NA +CA,A,YES,2,31809,1,30000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,293.07747474889976,640.4133163904908,2.550628153414425,0,2023-07-30,NA +CA,A,YES,4,12078,3,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,112.6451622683913,55.690792692252025,7.422539146040794,0,2023-07-30,NA +WA,B,Yes,6,31928,1,2000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,83.05580532971635,13.75681947578676,3.468712824091568,0,2023-07-30,no +WA,B,Yes,7,07528,1,100000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,35.92465897535307,6.113370963494267,2.0107761649688167,0,2023-07-30,NA +WA,B,Yes,8,97385,2,50000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,181.06509947668224,12.659505068382138,2.518004628254172,0,2023-07-30,NA +WA,B,Yes,9,14396,2,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,150.53654307805084,325.2854402693327,3.9992681270118213,0,2023-07-30,NA +NM,C,yes,10,27604,5,1000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,0.7054785764378129,22.157444364143263,0.9116653199364343,0,2023-07-30,NA +ZZ,F,NO,14,09634,3,8472,wwtp,raw wastewater,copies/g dry sludge,sars-cov-2,108.36145123957724,86.89442270686818,11.39560045291121,0,2023-07-30,NA +CA,A,YES,4,12078,4,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,246.6032919435724,287.6997057887416,8.944527262332093,0,2023-07-31,NA +WA,B,Yes,6,31928,1,2000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,35.0804527865654,9.815623595834188,4.506925619391673,0,2023-07-31,temperature not assessed upon arrival at the laboratory +WA,B,Yes,7,07528,1,100000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,47.030914535691025,129.80799855966578,1.3235553513674838,0,2023-07-31,NA +WA,B,Yes,8,97385,2,50000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,2.7111607469026726,42.07629323981842,5.422321493805345,1,2023-07-31,NA +WA,B,Yes,9,14396,2,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,8.5644405503772,716.9936997202635,3.322350533295187,0,2023-07-31,NA +NM,C,yes,10,27604,5,1000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,2.0518639222874664,106.4044310689322,0.9368685615044754,0,2023-07-31,yes +YY,E,No,14,09634,3,13,upstream,primary sludge,copies/g dry sludge,sars-cov-2,3.074861961872334,27.031670850394182,6.149723923744668,1,2023-07-31,result is not quantifiable +CA,A,YES,1,04971,1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,5.982668029827039,71.39805501927842,13.681632332433592,0,2023-08-01,NA +CA,A,YES,2,31809,1,30000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,303.015158055623,339.7455181400534,4.660378211910215,0,2023-08-01,NA +CA,A,YES,4,12078,3,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,16.24632418137527,539.1877904601992,11.755171264652056,0,2023-08-01,no +CA,A,YES,5,34687,3,1000000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,599.3820574248351,273.0288163965346,1.6131250103135448,0,2023-08-01,y +CA,A,YES,4,12078,4,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,118.03992962940161,128.80524355785863,2.1903224377883364,0,2023-08-01,NA +CA,A,YES,5,34687,4,1000000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,10.189133119631624,68.87700797893143,11.297255204351748,0,2023-08-01,no +WA,B,Yes,6,31928,1,2000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,15.592550369843522,16.27795028653531,1.3230353037470421,0,2023-08-01,NA +WA,B,Yes,7,07528,1,100000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,716.1763495974984,20.27189355355651,11.220105425189498,0,2023-08-01,NA +WA,B,Yes,8,97385,2,50000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,85.60667181953598,82.31974912944196,3.3031764400461694,0,2023-08-01,NA +WA,B,Yes,9,14396,2,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,450.9262821458641,53.7502517972468,1.0729790148397356,0,2023-08-01,NA +NM,C,yes,10,27604,5,1000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,2.36791362753137,44.87393750816078,0.5413630134151237,0,2023-08-01,result is not quantifiable +XX,D,ye,12,32541,10,1000000000,wwtp,raw wastewater,copies/l wastewater,FLUAV,205.38702868053082,399.0007566622886,2.708092710837074,0,2023-08-01,NA +XX,D,ye,15,98436,10,1000000000,wwtp,raw wastewater,copies/l wastewater,FLUAV,43.14571988113972,118.28744838665774,16.9769537344861,0,2023-08-01,NA +CA,A,YES,1,04971,1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,29.89881095401264,644.8783031094963,2.1379496979228128,0,2023-08-02,NA +CA,A,YES,2,31809,1,30000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,8.186167928932948,394.9724924521999,3.707995046001653,0,2023-08-02,> max temp and/or hold time +CA,A,YES,4,12078,4,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,12.170372509019106,318.8893881369137,24.340745018038213,1,2023-08-02,NA +WA,B,Yes,6,31928,1,2000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,61.40776120705407,306.820905000891,6.367177273734145,0,2023-08-02,no +WA,B,Yes,7,07528,1,100000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,48.59629266678792,10.85427701445372,1.8291309007478727,0,2023-08-02,NA +WA,B,Yes,9,14396,2,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,118.74761913373607,37.40420679540226,10.14468370963547,0,2023-08-02,no +NM,C,yes,10,27604,5,1000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,1.490027103269226,5.067015045749847,0.5489066064132921,0,2023-08-02,NA +YY,E,No,15,98436,4,13,upstream,primary sludge,copies/g dry sludge,sars-cov-2,42.04476991549186,325.9380082818229,2.425107733760121,0,2023-08-02,NA +CA,A,YES,1,04971,1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,15.245052164050056,14.601654948065194,9.130847682327424,0,2023-08-03,NA +CA,A,YES,2,31809,1,30000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,28.279628909864392,16.735452337914275,15.49792768069906,0,2023-08-03,no +CA,A,YES,4,12078,3,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,5.394507993401724,7.318649408462229,2.068053759693033,0,2023-08-03,NA +CA,A,YES,4,12078,4,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,559.611448701473,295.1955902450851,1.7182769404791116,0,2023-08-03,no +WA,B,Yes,6,31928,1,2000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,54.86459826169503,109.74105034032581,19.512330040985805,0,2023-08-03,NA +WA,B,Yes,7,07528,1,100000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,422.30532314703635,896.24649708455,4.842478528490544,0,2023-08-03,NA +WA,B,Yes,8,97385,2,50000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,709.6846424252865,13.64311829474672,8.333672140923492,0,2023-08-03,NA +WA,B,Yes,9,14396,2,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,19.569510877394052,210.54941598732407,22.693754511360808,0,2023-08-03,no +NM,C,yes,10,27604,5,1000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,2.410808354353311,11.615967931815392,0.755495903351384,0,2023-08-03,no +CA,A,YES,1,04971,1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,445.18973523111055,46.58244883444312,1.69920384070378,0,2023-08-04,NA +CA,A,YES,2,31809,1,30000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,105.68271227819572,5.714044703782743,2.7817956882960715,0,2023-08-04,NA +CA,A,YES,4,12078,3,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,664.3227869998262,16.488534852363777,2.3779864402641393,0,2023-08-04,NA +CA,A,YES,4,12078,4,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,860.136571198302,34.78123378571127,20.158468136558824,0,2023-08-04,no +WA,B,Yes,7,07528,1,100000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,195.5846328836593,101.03447072107053,1.1277045609481247,0,2023-08-04,no +WA,B,Yes,8,97385,2,50000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,642.8127922668028,881.9735410060316,4.554575222819634,0,2023-08-04,NA +WA,B,Yes,9,14396,2,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,153.88225875925394,845.5560405496877,3.92411194136486,0,2023-08-04,NA +NM,C,yes,10,27604,5,1000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,1.5618679384954453,14.026741047240066,0.9101024937788217,0,2023-08-04,no +ZZ,F,NO,15,98436,4,8472,wwtp,raw wastewater,copies/g dry sludge,sars-cov-2,137.42857743819567,83.27254839131045,12.127263966420896,0,2023-08-04,temperature not assessed upon arrival at the laboratory +CA,A,YES,1,04971,1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,56.64386164261395,8.884665829339795,5.669307914328272,0,2023-08-05,NA +CA,A,YES,2,31809,1,30000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,310.41131633214593,13.900424476349487,4.193320265882613,0,2023-08-05,NA +CA,A,YES,4,12078,3,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,66.73533042657527,201.94219172452438,5.555692745960596,0,2023-08-05,NA +CA,A,YES,4,12078,4,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,99.44260825530226,7.507257005132422,20.78476980672308,0,2023-08-05,NA +WA,B,Yes,6,31928,1,2000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,344.82023192989226,29.91248398658464,11.593194698942327,0,2023-08-05,no +WA,B,Yes,7,07528,1,100000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,43.506825387979426,835.0557327517798,16.20126377502058,0,2023-08-05,NA +WA,B,Yes,8,97385,2,50000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,8.057314815169914,36.3726138374796,21.029956471540032,0,2023-08-05,NA +WA,B,Yes,9,14396,2,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,0.9458951422454772,84.20342107698912,1.8917902844909544,1,2023-08-05,NA +NM,C,yes,10,27604,5,1000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,0.959469186055834,21.991334951854444,0.1237061645273106,0,2023-08-05,NA +CA,A,YES,2,31809,1,30000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,78.17453789973618,56.090228252421475,2.210850689544784,0,2023-08-06,no +CA,A,YES,4,12078,3,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,6.57066470470062,12.342880249439874,5.013772210792979,0,2023-08-06,temperature not assessed upon arrival at the laboratory +CA,A,YES,4,12078,4,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,208.66887747331415,942.4172132133331,6.930758092021518,0,2023-08-06,NA +WA,B,Yes,6,31928,1,2000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,510.5978868626329,25.740680663632325,5.486129249767782,0,2023-08-06,NA +WA,B,Yes,7,07528,1,100000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,959.8816387141374,35.89664655296101,2.6801398818610838,0,2023-08-06,NA +WA,B,Yes,8,97385,2,50000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,803.058662597642,20.33453061479167,5.669344535538341,0,2023-08-06,no +WA,B,Yes,9,14396,2,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,26.52573139239787,594.3197774401526,21.212798466869295,0,2023-08-06,NA +NM,C,yes,10,27604,5,1000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,1.5172420872841843,964.3411698335758,0.44376776207618857,0,2023-08-06,NA +XX,D,ye,13,65174,10,1000000000,wwtp,raw wastewater,copies/l wastewater,FLUAV,944.5552973111352,94.59366857818313,15.187647319159383,0,2023-08-06,no +XX,D,ye,14,09634,10,1000000000,wwtp,raw wastewater,copies/l wastewater,FLUAV,21.687447988086134,40.033703572755435,12.236921135810197,0,2023-08-06,NA +XX,D,ye,15,98436,10,1000000000,wwtp,raw wastewater,copies/l wastewater,FLUAV,285.2317977204103,20.3901775074221,8.418250484956513,0,2023-08-06,NA +YY,E,No,12,32541,1,13,upstream,primary sludge,copies/g dry sludge,sars-cov-2,9.76752281538091,146.3428825559688,1.084729442891947,0,2023-08-06,below loq +ZZ,F,NO,13,65174,2,8472,wwtp,raw wastewater,copies/g dry sludge,sars-cov-2,64.89526905834938,914.9629465728397,7.231917260081632,0,2023-08-06,NA +CA,A,YES,1,04971,1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,25.482224251359003,994.4385402519111,2.869294462719715,0,2023-08-07,NA +CA,A,YES,2,31809,1,30000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,2.9146177115473964,76.63341768548509,5.829235423094793,1,2023-08-07,no +CA,A,YES,4,12078,4,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,109.08994189893532,6.875008365746965,23.225017484203427,0,2023-08-07,NA +WA,B,Yes,6,31928,1,2000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,28.868053917653118,169.48296376806599,7.970682783262692,0,2023-08-07,no +WA,B,Yes,7,07528,1,100000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,12.045847462263154,411.04806738167974,24.09169492452631,1,2023-08-07,NA +WA,B,Yes,8,97385,2,50000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,32.100826571581784,157.72216380509755,1.1003112715966439,0,2023-08-07,NA +WA,B,Yes,9,14396,2,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,929.1921951736591,20.91807099616335,1.4551659518078803,0,2023-08-07,NA +NM,C,yes,10,27604,5,1000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,2.8374080788950238,11.193954612574963,0.19166715569739182,0,2023-08-07,NA +YY,E,No,12,32541,1,13,upstream,primary sludge,copies/g dry sludge,sars-cov-2,9.757533389558919,10.324515391238647,7.695903126280461,0,2023-08-07,NA +CA,A,YES,1,04971,1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,43.06626276789402,6.304198094739177,19.154037997448203,0,2023-08-08,NA +CA,A,YES,2,31809,1,30000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,10.950776866206521,785.9975485294962,19.501502038716477,0,2023-08-08,no +CA,A,YES,4,12078,3,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,20.9229537998017,81.42974638609589,1.4841507364848099,0,2023-08-08,no +CA,A,YES,5,34687,3,1000000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,989.4411817956612,15.57693983588628,3.063510998152033,0,2023-08-08,result is not quantifiable +CA,A,YES,4,12078,4,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,9.53920795675469,8.37315100720299,14.723137279033994,0,2023-08-08,no +CA,A,YES,5,34687,4,1000000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,372.13978502278394,25.62414703813156,1.2460822277499688,0,2023-08-08,NA +WA,B,Yes,6,31928,1,2000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,4.774678912302408,96.25169246591742,9.549357824604815,1,2023-08-08,NA +WA,B,Yes,8,97385,2,50000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,14.599289830479231,158.40317672488013,15.75508105360311,0,2023-08-08,NA +WA,B,Yes,9,14396,2,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,1.1187305313155609,59.14976110857724,2.2374610626311218,1,2023-08-08,NA +NM,C,yes,10,27604,5,1000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,0.9212160717450832,946.9310894094828,1.1479778273903374,0,2023-08-08,NA +XX,D,ye,14,09634,10,1000000000,wwtp,raw wastewater,copies/l wastewater,FLUAV,287.0561376044087,38.05066844093249,6.667666654777346,0,2023-08-08,NA +ZZ,F,NO,13,65174,2,8472,wwtp,raw wastewater,copies/g dry sludge,sars-cov-2,6.594174621029365,38.31597630192922,6.6516030919398625,0,2023-08-08,NA +CA,A,YES,2,31809,1,30000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,36.58738721505971,24.729216820403384,4.556239281642803,0,2023-08-09,NA +CA,A,YES,4,12078,3,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,23.380158092200155,690.7196674990745,14.695136203854734,0,2023-08-09,> max temp and/or hold time +CA,A,YES,4,12078,4,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,9.430287855700232,98.67861874928543,6.427163845167934,0,2023-08-09,NA +WA,B,Yes,6,31928,1,2000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,2.6004917741878115,12.292218744316562,5.200983548375623,1,2023-08-09,NA +WA,B,Yes,7,07528,1,100000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,67.84342972789176,6.693660043830929,1.1397458933349964,0,2023-08-09,NA +WA,B,Yes,8,97385,2,50000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,26.88238052610876,160.55119957546154,8.814953251156307,0,2023-08-09,no +WA,B,Yes,9,14396,2,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,1.96668817873219,540.1546018039382,3.93337635746438,1,2023-08-09,NA +NM,C,yes,10,27604,5,1000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,1.1322636796893362,15.247463624841483,0.11320810648986335,0,2023-08-09,NA +CA,A,YES,1,04971,1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,229.18755885572608,18.445161479616353,13.17444100390749,0,2023-08-10,no +CA,A,YES,2,31809,1,30000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,15.101998516798645,6.00087161481564,3.2747091950997804,0,2023-08-10,NA +CA,A,YES,4,12078,3,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,3.5137222122124943,846.7057556611683,7.0274444244249885,1,2023-08-10,temperature not assessed upon arrival at the laboratory +CA,A,YES,4,12078,4,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,57.646969364933994,97.96118059268086,7.085905074338222,0,2023-08-10,NA +WA,B,Yes,6,31928,1,2000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,10.88903118919192,35.72542305982524,1.8863060828753513,0,2023-08-10,no +WA,B,Yes,7,07528,1,100000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,90.87799805152652,327.109327342467,4.729553329890909,0,2023-08-10,NA +WA,B,Yes,8,97385,2,50000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,37.735038538929686,31.13935150498589,4.071972278424945,0,2023-08-10,no +WA,B,Yes,9,14396,2,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,7.240546236025829,6.497582489305786,4.6943160532879915,0,2023-08-10,NA +NM,C,yes,10,27604,5,1000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,2.028198212721811,155.18893038104613,1.1346719657740452,0,2023-08-10,NA +CA,A,YES,1,04971,1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,17.87839963583158,353.7913947879838,2.386031352430203,0,2023-08-11,NA +CA,A,YES,2,31809,1,30000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,48.07329389170977,749.7926569129905,1.5203552578467876,0,2023-08-11,NA +CA,A,YES,4,12078,3,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,16.531917330400987,52.20011647889214,1.703341145071786,0,2023-08-11,no +CA,A,YES,4,12078,4,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,5.757250894998428,487.92192672993053,3.749671870317186,0,2023-08-11,no +WA,B,Yes,6,31928,1,2000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,19.835092331283192,561.1530211490855,4.020428148735447,0,2023-08-11,NA +WA,B,Yes,7,07528,1,100000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,7.180196118874672,28.894022848243257,5.204695896143978,0,2023-08-11,NA +WA,B,Yes,8,97385,2,50000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,106.49121949244278,383.21558804057565,3.787459713054729,0,2023-08-11,NA +WA,B,Yes,9,14396,2,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,5.545133079666732,579.6957490084072,15.246338211255718,0,2023-08-11,NA +NM,C,yes,10,27604,5,1000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,2.468921896037719,78.05896889950841,0.7878387428726441,0,2023-08-11,no +YY,E,No,15,98436,4,13,upstream,primary sludge,copies/g dry sludge,sars-cov-2,17.569965551620353,49.94593093295727,19.319493840373116,0,2023-08-11,NA +CA,A,YES,1,04971,1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,341.5319622331677,22.535336369918106,2.9009542439153364,0,2023-08-12,NA +CA,A,YES,2,31809,1,30000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,324.80470135073665,153.7669368849218,1.8141346817987787,0,2023-08-12,NA +CA,A,YES,4,12078,4,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,351.81194547539064,128.75768791860088,1.9097447464442745,0,2023-08-12,NA +WA,B,Yes,6,31928,1,2000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,16.08721384294355,33.30550000784778,1.1171000196953182,0,2023-08-12,NA +WA,B,Yes,7,07528,1,100000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,786.3846287692694,22.30306509379012,2.220453200688894,0,2023-08-12,NA +WA,B,Yes,8,97385,2,50000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,188.40167100371477,381.18199580545524,12.643595698971913,0,2023-08-12,NA +WA,B,Yes,9,14396,2,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,524.9837750702088,599.3325785458084,4.525253824919206,0,2023-08-12,NA +NM,C,yes,10,27604,5,1000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,1.2403665132550972,75.28911455318081,0.7377640684504787,0,2023-08-12,no +XX,D,ye,14,09634,10,1000000000,wwtp,raw wastewater,copies/l wastewater,FLUAV,2.640379172134827,363.4560857795932,5.280758344269654,1,2023-08-12,yes +CA,A,YES,1,04971,1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,4.671492064147434,70.30665174981034,9.342984128294868,1,2023-08-13,NA +CA,A,YES,2,31809,1,30000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,50.10491001084156,24.763964371380652,14.2125618076529,0,2023-08-13,NA +CA,A,YES,4,12078,3,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,530.1023323808713,460.2171319878419,3.6592007659798154,0,2023-08-13,NA +CA,A,YES,4,12078,4,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,38.516471713458365,67.55807467980863,5.736968972927896,0,2023-08-13,no +WA,B,Yes,6,31928,1,2000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,14.630581861685869,41.78764076589132,1.2672776982555698,0,2023-08-13,NA +WA,B,Yes,7,07528,1,100000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,472.43799713310676,83.95171427551291,1.397969694686829,0,2023-08-13,NA +WA,B,Yes,8,97385,2,50000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,35.26436074013556,22.054417686543484,7.351717062950148,0,2023-08-13,no +WA,B,Yes,9,14396,2,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,977.6744018211551,919.6661998391734,2.386788491456303,0,2023-08-13,NA +NM,C,yes,10,27604,5,1000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,1.990276264955384,112.93092071747631,1.0255643229326417,0,2023-08-13,NA +YY,E,No,13,65174,2,13,upstream,primary sludge,copies/g dry sludge,sars-cov-2,17.068314747122773,16.59892568786431,21.428646529058966,0,2023-08-13,NA +ZZ,F,NO,15,98436,4,8472,wwtp,raw wastewater,copies/g dry sludge,sars-cov-2,64.05508207354157,38.15548080834952,14.118797546468123,0,2023-08-13,no +CA,A,YES,1,04971,1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,236.9049470981896,10.503899757854246,1.8661087177927753,0,2023-08-14,NA +CA,A,YES,2,31809,1,30000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,21.3593493566267,979.6148827987079,10.199919721876482,0,2023-08-14,no +CA,A,YES,4,12078,3,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,17.227047254752026,245.43931623029175,6.1794061206855275,0,2023-08-14,no +CA,A,YES,4,12078,4,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,401.2753154776294,257.64138835931163,2.218582971236311,0,2023-08-14,NA +WA,B,Yes,6,31928,1,2000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,156.09253659813467,98.52231274648375,13.13109305779592,0,2023-08-14,NA +WA,B,Yes,7,07528,1,100000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,19.62916468048353,72.31301773731008,3.2720063370596124,0,2023-08-14,NA +WA,B,Yes,8,97385,2,50000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,136.8506185149455,8.552031610553357,19.974278660296427,0,2023-08-14,NA +WA,B,Yes,9,14396,2,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,67.29490785554128,15.730286769423293,3.538489775910998,0,2023-08-14,no +NM,C,yes,10,27604,5,1000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,1.1007844940657217,202.24459760378195,0.7232533071446867,0,2023-08-14,NA +ZZ,F,NO,12,32541,1,8472,wwtp,raw wastewater,copies/g dry sludge,sars-cov-2,19.716650486891098,263.02133599565866,9.883629176505147,0,2023-08-14,NA +CA,A,YES,1,04971,1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,0.6768424203702207,262.5342829784635,1.3536848407404414,1,2023-08-15,no +CA,A,YES,2,31809,1,30000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,11.903723592187118,71.97988230139589,21.330160772389217,0,2023-08-15,NA +CA,A,YES,4,12078,3,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,12.15848195824239,52.80483964548394,9.656226749052312,0,2023-08-15,no +CA,A,YES,5,34687,3,1000000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,119.45368009510078,168.88077412720432,12.38244997942478,0,2023-08-15,NA +CA,A,YES,4,12078,4,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,950.6644184453914,239.23197168978385,3.727102834975412,0,2023-08-15,no +CA,A,YES,5,34687,4,1000000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,6.372422557568877,25.646135875550524,14.21564234186357,0,2023-08-15,NA +WA,B,Yes,6,31928,1,2000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,222.18214999470277,109.96211642101737,16.360318106486528,0,2023-08-15,NA +WA,B,Yes,7,07528,1,100000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,8.59025678522661,758.2537780724726,1.2700870249594154,0,2023-08-15,NA +WA,B,Yes,8,97385,2,50000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,89.27098917744034,57.81610800727803,2.4655668609828405,0,2023-08-15,NA +WA,B,Yes,9,14396,2,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,15.018014139737593,14.202750307522718,4.863654184703253,0,2023-08-15,NA +CA,A,YES,1,04971,1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,13.750449354745616,97.53703067606361,7.9317837944845575,0,2023-08-16,NA +CA,A,YES,2,31809,1,30000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,71.3996163844299,565.744758290746,15.767492127580145,0,2023-08-16,NA +CA,A,YES,4,12078,3,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,10.431516019095051,5.7190547873987105,18.844077274657444,0,2023-08-16,NA +CA,A,YES,4,12078,4,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,5.42440562301125,32.627026951232544,10.8488112460225,1,2023-08-16,NA +WA,B,Yes,6,31928,1,2000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,31.633310028904923,439.9267264379598,1.3088376038873997,0,2023-08-16,no +WA,B,Yes,7,07528,1,100000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,37.79469499184592,162.90786522763028,6.667442198713768,0,2023-08-16,NA +WA,B,Yes,8,97385,2,50000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,59.884387835785965,34.11242730837711,2.841212316610816,0,2023-08-16,NA +WA,B,Yes,9,14396,2,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,20.701496885128975,7.802502557104931,2.983584598591913,0,2023-08-16,NA +NM,C,yes,10,27604,5,1000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,1.4281791345123291,7.915264728894823,1.3858148011708302,0,2023-08-16,NA +CA,A,YES,1,04971,1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,4.22681496611314,130.38668828033036,8.45362993222628,1,2023-08-17,NA +CA,A,YES,2,31809,1,30000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,5.406518624233262,569.6226412740097,11.589359910286262,0,2023-08-17,NA +CA,A,YES,4,12078,3,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,3.4106518047656484,577.8763528561315,6.821303609531297,1,2023-08-17,NA +CA,A,YES,4,12078,4,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,57.976680749531056,49.55839987997479,22.10700470814893,0,2023-08-17,NA +WA,B,Yes,6,31928,1,2000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,22.310984551658432,163.81327886295642,19.64512344050914,0,2023-08-17,NA +WA,B,Yes,7,07528,1,100000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,882.1436669917961,24.82003508044034,1.563263128393175,0,2023-08-17,NA +WA,B,Yes,8,97385,2,50000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,151.57077331423298,230.2503656353763,1.74775107264067,0,2023-08-17,NA +WA,B,Yes,9,14396,2,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,660.4267385583253,7.071336700810739,16.961542916185742,0,2023-08-17,no +NM,C,yes,10,27604,5,1000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,0.8523719515077052,818.705875191483,0.6782085815547221,0,2023-08-17,NA +YY,E,No,13,65174,2,13,upstream,primary sludge,copies/g dry sludge,sars-cov-2,16.097599868811564,769.3673637634419,8.298221463509858,0,2023-08-17,NA +CA,A,YES,1,04971,1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,31.75325288550397,237.1484455656829,13.23501170557511,0,2023-08-18,no +CA,A,YES,2,31809,1,30000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,13.3344648337198,242.17330714372997,16.03532869235851,0,2023-08-18,NA +CA,A,YES,4,12078,3,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,7.399222209591935,6.747956878068289,2.7290298487415083,0,2023-08-18,NA +CA,A,YES,4,12078,4,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,808.6801035515025,980.8235388878362,2.283833971896064,0,2023-08-18,NA +WA,B,Yes,6,31928,1,2000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,87.40143956825595,6.377668604070174,5.66034014045319,0,2023-08-18,below loq +WA,B,Yes,7,07528,1,100000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,966.7982985283151,19.980060576406125,5.904119917944044,0,2023-08-18,NA +WA,B,Yes,8,97385,2,50000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,30.13548661161582,21.809952469339486,5.006006299206098,0,2023-08-18,NA +WA,B,Yes,9,14396,2,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,457.0438603859718,35.22902172255401,8.762204446756947,0,2023-08-18,no +NM,C,yes,10,27604,5,1000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,0.028732022478877888,5.818962500354877,0.3297620181428591,1,2023-08-18,NA +XX,D,ye,14,09634,10,1000000000,wwtp,raw wastewater,copies/l wastewater,FLUAV,49.662398573555734,222.94174901148332,8.547529478084769,0,2023-08-18,no +YY,E,No,14,09634,3,13,upstream,primary sludge,copies/g dry sludge,sars-cov-2,16.508241018452086,6.162479225695746,1.375328954639339,0,2023-08-18,NA +ZZ,F,NO,12,32541,1,8472,wwtp,raw wastewater,copies/g dry sludge,sars-cov-2,558.3030933494869,475.362394539252,2.297148530288737,0,2023-08-18,y +CA,A,YES,1,04971,1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,667.8359155793845,30.681900301625824,1.9258804785929342,0,2023-08-19,NA +CA,A,YES,2,31809,1,30000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,63.58541652865025,120.15704335483372,14.827121264887648,0,2023-08-19,no +CA,A,YES,4,12078,3,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,27.241652498022177,264.73575909199496,17.579769569662503,0,2023-08-19,no +CA,A,YES,4,12078,4,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,6.719736259162623,12.953134504354272,1.1792683346283608,0,2023-08-19,no +WA,B,Yes,6,31928,1,2000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,1.0593379675658476,813.705354552676,2.1186759351316953,1,2023-08-19,yes +WA,B,Yes,7,07528,1,100000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,19.120611866712046,78.595051478207,12.146643633436451,0,2023-08-19,NA +WA,B,Yes,8,97385,2,50000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,2.40182457660564,153.21715366659382,4.80364915321128,1,2023-08-19,NA +XX,D,ye,15,98436,10,1000000000,wwtp,raw wastewater,copies/l wastewater,FLUAV,1.6980201674614759,51.50402898942396,3.3960403349229518,1,2023-08-19,no +CA,A,YES,1,04971,1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,61.413781917387254,15.875257689664238,24.332944170594313,0,2023-08-20,NA +CA,A,YES,2,31809,1,30000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,261.24330008159126,18.762872233100506,23.476416223878275,0,2023-08-20,NA +CA,A,YES,4,12078,4,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,730.262111129662,146.64304565106204,2.7523899294958123,0,2023-08-20,NA +WA,B,Yes,6,31928,1,2000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,10.114617381374126,16.0718131245347,1.8419619132443998,0,2023-08-20,NA +WA,B,Yes,7,07528,1,100000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,177.65708577575276,466.9996569490327,10.620264168888937,0,2023-08-20,NA +WA,B,Yes,8,97385,2,50000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,203.30125309476637,54.1268738991868,11.82193396810585,0,2023-08-20,NA +WA,B,Yes,9,14396,2,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,113.4725048930823,132.34930594509993,2.078640711412774,0,2023-08-20,NA +NM,C,yes,10,27604,5,1000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,2.718538864727082,34.6963406384159,0.14745275746331743,0,2023-08-20,NA +XX,D,ye,12,32541,10,1000000000,wwtp,raw wastewater,copies/l wastewater,FLUAV,39.21024658876213,236.595223455924,1.8472185676808772,0,2023-08-20,y +YY,E,No,12,32541,1,13,upstream,primary sludge,copies/g dry sludge,sars-cov-2,477.22430808583096,126.94262569872676,1.5653402497017324,0,2023-08-20,NA +CA,A,YES,1,04971,1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,127.03367781841675,7.099144687453064,20.461066572372655,0,2023-08-21,NA +CA,A,YES,2,31809,1,30000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,153.10238066080672,31.5888895428649,2.2928166379641106,0,2023-08-21,NA +CA,A,YES,4,12078,3,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,506.6042065354576,42.77798115871329,1.1857617089361108,0,2023-08-21,NA +WA,B,Yes,6,31928,1,2000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,775.3004804909477,106.62416714036044,4.847754689652473,0,2023-08-21,NA +WA,B,Yes,7,07528,1,100000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,444.58108974016056,8.130869943607303,4.8602054966002175,0,2023-08-21,NA +WA,B,Yes,9,14396,2,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,97.28385525975452,61.47506484360955,6.904560367890778,0,2023-08-21,no +NM,C,yes,10,27604,5,1000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,2.593859117695902,7.2245727613919275,0.49412200449614696,0,2023-08-21,> max temp and/or hold time +YY,E,No,15,98436,4,13,upstream,primary sludge,copies/g dry sludge,sars-cov-2,12.729102275281958,22.277210602160903,1.9823849372931954,0,2023-08-21,NA +ZZ,F,NO,14,09634,3,8472,wwtp,raw wastewater,copies/g dry sludge,sars-cov-2,336.89252600768543,359.5597410173625,18.428126422963572,0,2023-08-21,no +CA,A,YES,1,04971,1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,26.30279892188309,21.490421548808033,23.74006180005436,0,2023-08-22,NA +CA,A,YES,2,31809,1,30000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,96.90469534608877,13.530099253387254,1.0783629112301665,0,2023-08-22,NA +CA,A,YES,5,34687,3,1000000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,9.313368716835797,107.25738462999824,1.0127893809128778,0,2023-08-22,NA +CA,A,YES,4,12078,4,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,61.48655860499735,16.23734732692948,23.670124231577127,0,2023-08-22,NA +WA,B,Yes,6,31928,1,2000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,1.0380678540666828,314.2459969197762,2.0761357081333656,1,2023-08-22,no +WA,B,Yes,7,07528,1,100000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,4.7679099273565,189.66367334914315,9.535819854713,1,2023-08-22,NA +WA,B,Yes,8,97385,2,50000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,694.3657937886617,67.787606373973,15.639912021744358,0,2023-08-22,NA +WA,B,Yes,9,14396,2,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,2.601746510157122,21.55567564517636,5.203493020314244,1,2023-08-22,no +XX,D,ye,15,98436,10,1000000000,wwtp,raw wastewater,copies/l wastewater,FLUAV,4.958352670982755,18.14205767830565,9.91670534196551,1,2023-08-22,NA +CA,A,YES,2,31809,1,30000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,876.4395221526388,26.939708704775256,3.7100845623466077,0,2023-08-23,y +CA,A,YES,4,12078,3,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,20.361030616297313,6.916270070127149,2.855555440853578,0,2023-08-23,NA +CA,A,YES,4,12078,4,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,17.97245854752631,12.408087426670384,8.738132279816174,0,2023-08-23,no +WA,B,Yes,6,31928,1,2000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,8.41818312290283,6.225239998108919,16.83636624580566,1,2023-08-23,no +WA,B,Yes,7,07528,1,100000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,5.981345998226674,52.279558239784066,3.0342093388920257,0,2023-08-23,NA +WA,B,Yes,8,97385,2,50000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,451.3697651479735,698.5585100534294,4.353014993681636,0,2023-08-23,NA +WA,B,Yes,9,14396,2,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,235.43197042904762,672.7787610861362,1.6790310770891739,0,2023-08-23,NA +NM,C,yes,10,27604,5,1000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,2.556094091726618,12.74952476467688,0.03714508155829687,0,2023-08-23,NA +YY,E,No,12,32541,1,13,upstream,primary sludge,copies/g dry sludge,sars-cov-2,5.388118089893717,47.21748397253332,4.476637487815586,0,2023-08-23,> max temp and/or hold time +ZZ,F,NO,12,32541,1,8472,wwtp,raw wastewater,copies/g dry sludge,sars-cov-2,11.70990818378548,472.0316890953147,23.41981636757096,1,2023-08-23,NA +CA,A,YES,2,31809,1,30000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,405.3573519653681,99.46635932365233,6.812103722285051,0,2023-08-24,NA +CA,A,YES,4,12078,3,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,7.0988512094836755,8.992698057302745,1.3681577085802403,0,2023-08-24,NA +CA,A,YES,4,12078,4,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,27.626178416606862,43.517820155677846,7.473818745518004,0,2023-08-24,no +WA,B,Yes,6,31928,1,2000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,215.32130742097635,98.48018507876697,1.4074279186806538,0,2023-08-24,NA +WA,B,Yes,7,07528,1,100000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,8.299461914433133,45.33196545740755,13.969326073765522,0,2023-08-24,NA +WA,B,Yes,8,97385,2,50000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,45.69862077614117,74.30936811422417,4.995946560220474,0,2023-08-24,NA +WA,B,Yes,9,14396,2,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,13.892998329286918,64.96191575350063,14.122849852466057,0,2023-08-24,NA +NM,C,yes,10,27604,5,1000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,2.01864325675708,171.58537056139346,0.2649785746663753,0,2023-08-24,NA +CA,A,YES,1,04971,1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,121.05669770858235,14.212953467533138,2.99557871212313,0,2023-08-25,NA +CA,A,YES,2,31809,1,30000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,176.00416510260447,116.1461492707102,21.15923893994668,0,2023-08-25,NA +CA,A,YES,4,12078,3,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,345.96617756740824,443.5680824826337,1.570541261845567,0,2023-08-25,yes +WA,B,Yes,6,31928,1,2000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,14.221303114054285,9.737133857567505,6.212413617219244,0,2023-08-25,NA +WA,B,Yes,8,97385,2,50000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,192.50679622857263,9.23424125731099,1.5071633477790083,0,2023-08-25,no +WA,B,Yes,9,14396,2,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,1.6700244004547962,17.26167828197841,3.3400488009095923,1,2023-08-25,NA +NM,C,yes,10,27604,5,1000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,0.8631544289053168,85.53949657265971,1.164184424569298,1,2023-08-25,no +XX,D,ye,14,09634,10,1000000000,wwtp,raw wastewater,copies/l wastewater,FLUAV,23.38414843660148,188.51136529168156,19.47944980817053,0,2023-08-25,below loq +CA,A,YES,2,31809,1,30000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,74.11308662726181,941.0306707923485,3.379319730884111,0,2023-08-26,NA +CA,A,YES,4,12078,3,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,32.33710933824061,55.808893286789306,1.4019867722748334,0,2023-08-26,no +CA,A,YES,3,84531,4,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,975.6941069484476,5.016745388676012,17.627670115515627,0,2023-08-26,NA +CA,A,YES,4,12078,4,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,10.256250115338316,64.80848166110793,1.619590887213091,0,2023-08-26,NA +WA,B,Yes,6,31928,1,2000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,845.8237431967651,36.2675735898427,12.205589007152874,0,2023-08-26,no +WA,B,Yes,7,07528,1,100000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,218.02873680868845,31.65188782685804,1.571821774843201,0,2023-08-26,no +WA,B,Yes,8,97385,2,50000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,8.015315375505672,9.131254355281762,16.030630751011344,1,2023-08-26,NA +WA,B,Yes,9,14396,2,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,396.0138468536225,50.0506805029922,1.7284873328094683,0,2023-08-26,no +NM,C,yes,10,27604,5,1000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,1.0566722286239654,186.0125662937437,1.1541284659034543,0,2023-08-26,no +YY,E,No,13,65174,2,13,upstream,primary sludge,copies/g dry sludge,sars-cov-2,114.57184241427856,64.89039706384061,5.206056297643236,0,2023-08-26,NA +CA,A,YES,1,04971,1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,109.00779424472073,495.6208223070091,2.3091115346315756,0,2023-08-27,no +CA,A,YES,3,84531,2,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,52.53525037635115,13.858475168623146,4.611076081411231,0,2023-08-27,NA +CA,A,YES,4,12078,3,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,111.47713974227425,416.7923244640025,2.2937814945365353,0,2023-08-27,NA +CA,A,YES,3,84531,4,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,16.944598830067516,148.22510992685,7.931539039475292,0,2023-08-27,NA +CA,A,YES,4,12078,4,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,25.200973680504116,63.19318873784766,8.428723219141508,0,2023-08-27,NA +WA,B,Yes,6,31928,1,2000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,44.45842492554502,77.93539969927019,1.5404348785329505,0,2023-08-27,yes +WA,B,Yes,7,07528,1,100000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,1.9605894207639316,39.990367961450396,3.9211788415278632,1,2023-08-27,y +WA,B,Yes,8,97385,2,50000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,62.84227114376742,346.9948466140951,1.8485091493476775,0,2023-08-27,result is not quantifiable +NM,C,yes,10,27604,5,1000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,1.0946969622274811,337.89928776880095,0.5400903995347485,0,2023-08-27,NA +ZZ,F,NO,14,09634,3,8472,wwtp,raw wastewater,copies/g dry sludge,sars-cov-2,9.850355733987014,15.773989418241909,19.700711467974028,1,2023-08-27,NA +ZZ,F,NO,15,98436,4,8472,wwtp,raw wastewater,copies/g dry sludge,sars-cov-2,123.42292179364728,16.525825984905236,4.022542985114692,0,2023-08-27,NA +CA,A,YES,1,04971,1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,2.6729273348013622,8.752613815741094,5.3458546696027245,1,2023-08-28,NA +CA,A,YES,2,31809,1,30000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,203.91199020954105,28.744704743086213,1.423774384332217,0,2023-08-28,NA +CA,A,YES,3,84531,2,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,384.5284515039396,277.71588550308985,1.0874034821548364,0,2023-08-28,NA +CA,A,YES,4,12078,3,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,426.982819656184,872.993920152534,6.012191509803236,0,2023-08-28,NA +CA,A,YES,3,84531,4,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,14.336452140069214,31.314873207902604,2.997924964140215,0,2023-08-28,NA +CA,A,YES,4,12078,4,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,630.1843931774775,662.8490451447499,1.280957508684957,0,2023-08-28,NA +WA,B,Yes,6,31928,1,2000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,10.298584093426232,31.368052480149522,4.120651290004484,0,2023-08-28,no +WA,B,Yes,7,07528,1,100000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,258.8401172572234,197.64804211567056,20.449081028908058,0,2023-08-28,NA +WA,B,Yes,8,97385,2,50000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,8.953354059547262,134.94881191364675,8.203429026407477,0,2023-08-28,NA +WA,B,Yes,9,14396,2,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,360.18623076230966,67.48086806685087,6.652808360147601,0,2023-08-28,NA +NM,C,yes,10,27604,5,1000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,1.08688956747112,246.06615489835366,0.7932305955785415,0,2023-08-28,no +CA,A,YES,1,04971,1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,23.083558937890217,678.3996529565197,2.3853349770620484,0,2023-08-29,NA +CA,A,YES,2,31809,1,30000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,7.514766992235714,365.4853736472118,2.78393316692157,0,2023-08-29,NA +CA,A,YES,3,84531,2,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,29.911071548006323,671.0571601172005,7.550778524710741,0,2023-08-29,NA +CA,A,YES,4,12078,3,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,287.62680456507144,240.5223863069383,11.174693765916885,0,2023-08-29,no +CA,A,YES,5,34687,3,1000000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,93.36607181853765,69.52235553794377,21.641146780724988,0,2023-08-29,NA +CA,A,YES,3,84531,4,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,36.17741265373531,10.260030206806325,12.119556539763312,0,2023-08-29,NA +CA,A,YES,4,12078,4,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,67.12863878338517,449.76801470563555,3.5436526221978437,0,2023-08-29,NA +CA,A,YES,5,34687,4,1000000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,34.220006382322275,307.5580052927976,1.5959180866470606,0,2023-08-29,NA +WA,B,Yes,7,07528,1,100000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,66.41861926136549,9.9974449364002,18.435118276295444,0,2023-08-29,NA +WA,B,Yes,8,97385,2,50000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,845.5215588850326,197.7977208156787,1.528985483373644,0,2023-08-29,NA +NM,C,yes,10,27604,5,1000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,2.7479105983459386,14.950139886181232,0.6922452514126216,0,2023-08-29,no +YY,E,No,13,65174,2,13,upstream,primary sludge,copies/g dry sludge,sars-cov-2,5.175680501052945,35.08224825142978,10.35136100210589,1,2023-08-29,yes +CA,A,YES,1,04971,1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,53.48263727151335,21.262408576525846,2.8500736421369344,0,2023-08-30,NA +CA,A,YES,2,31809,1,30000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,7.115774757024073,549.9654124672761,14.231549514048146,1,2023-08-30,NA +CA,A,YES,3,84531,2,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,583.115674339175,64.32264979939596,7.898854515608286,0,2023-08-30,no +CA,A,YES,4,12078,3,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,216.05192486106424,130.15619234505024,9.318865334820485,0,2023-08-30,NA +CA,A,YES,3,84531,4,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,18.45275892439423,154.0771781115166,15.615375342322556,0,2023-08-30,NA +CA,A,YES,4,12078,4,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,64.35571632331445,127.43442788185827,7.219272897400687,0,2023-08-30,NA +WA,B,Yes,6,31928,1,2000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,27.76907611550683,337.7445277783476,11.21568076476297,0,2023-08-30,NA +WA,B,Yes,7,07528,1,100000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,896.0005438302749,318.2377723329214,3.6237583566904767,0,2023-08-30,NA +WA,B,Yes,8,97385,2,50000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,324.0523165943549,571.4191331470736,3.330197241422567,0,2023-08-30,NA +WA,B,Yes,9,14396,2,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,15.186447683979834,643.1219458801303,2.552462598856978,0,2023-08-30,NA +NM,C,yes,10,27604,5,1000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,2.4885149727634364,12.257056546531048,0.6039381915469029,0,2023-08-30,NA +XX,D,ye,13,65174,10,1000000000,wwtp,raw wastewater,copies/l wastewater,FLUAV,54.37860740584349,80.78522989660938,6.586606119901073,0,2023-08-30,NA +CA,A,YES,1,04971,1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,592.4451254098414,72.18722222591065,12.061499723477331,0,2023-08-31,NA +CA,A,YES,3,84531,2,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,115.81052665234976,234.4936130121587,1.389452325695656,0,2023-08-31,no +CA,A,YES,4,12078,3,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,140.03564238357285,68.70175771998532,1.761544983720526,0,2023-08-31,NA +CA,A,YES,4,12078,4,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,104.90403678279746,324.6737278147639,10.318658689015285,0,2023-08-31,NA +WA,B,Yes,6,31928,1,2000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,178.0967543419759,8.746321814517836,21.475882770345862,0,2023-08-31,NA +WA,B,Yes,8,97385,2,50000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,112.63872136605683,89.58478175599917,9.018952051607036,0,2023-08-31,NA +WA,B,Yes,9,14396,2,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,208.42653872700927,26.97337782024099,1.4349171310554374,0,2023-08-31,NA +NM,C,yes,10,27604,5,1000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,0.8989649925942519,5.62785778104256,1.199994988258233,1,2023-08-31,NA +XX,D,ye,12,32541,10,1000000000,wwtp,raw wastewater,copies/l wastewater,FLUAV,318.7838213817547,21.46210551634529,4.3154013851987125,0,2023-08-31,no +ZZ,F,NO,14,09634,3,8472,wwtp,raw wastewater,copies/g dry sludge,sars-cov-2,789.8819770388337,17.47204292255899,1.3043552849508282,0,2023-08-31,no +CA,A,YES,1,04971,1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,748.2893178235532,25.84322755333694,16.723603429453362,0,2023-09-01,yes +CA,A,YES,2,31809,1,30000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,269.4346181883466,187.17828823900814,14.314491656812645,0,2023-09-01,NA +CA,A,YES,3,84531,2,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,120.83375534704902,20.775236296416725,17.09004881133646,0,2023-09-01,temperature not assessed upon arrival at the laboratory +CA,A,YES,4,12078,3,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,71.77048272933497,9.58952409705518,2.1673294027339844,0,2023-09-01,NA +CA,A,YES,3,84531,4,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,530.5772759408212,106.48438486096293,1.5614452402146148,0,2023-09-01,NA +CA,A,YES,4,12078,4,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,862.2251630128826,655.855303617898,1.209552368544324,0,2023-09-01,NA +WA,B,Yes,6,31928,1,2000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,77.9118734728638,20.784604644517014,2.650876967721488,0,2023-09-01,NA +WA,B,Yes,9,14396,2,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,12.359823172259661,108.07101199928319,1.1052863364141858,0,2023-09-01,> max temp and/or hold time +CA,A,YES,1,04971,1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,39.57219130798205,769.0657781019385,3.9230363057513404,0,2023-09-02,below loq +CA,A,YES,2,31809,1,30000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,19.75356127430844,182.22910385402272,2.9364508787846253,0,2023-09-02,NA +CA,A,YES,3,84531,2,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,1.0765963245612948,21.687638369436854,2.1531926491225897,1,2023-09-02,NA +CA,A,YES,4,12078,3,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,264.6435066083946,195.9760707448207,11.728276763349779,0,2023-09-02,no +CA,A,YES,3,84531,4,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,17.538329924755374,229.0001253842372,16.05504167087367,0,2023-09-02,NA +CA,A,YES,4,12078,4,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,168.85975212386782,14.44722582802326,15.994578343141253,0,2023-09-02,NA +WA,B,Yes,6,31928,1,2000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,0.7090021395246358,466.67783751757605,1.4180042790492715,1,2023-09-02,NA +WA,B,Yes,7,07528,1,100000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,34.82511248417436,421.625426504808,4.727934989649429,0,2023-09-02,NA +WA,B,Yes,8,97385,2,50000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,7.203000541719041,5.122262438995919,2.262339722867181,0,2023-09-02,NA +WA,B,Yes,9,14396,2,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,62.95545178985512,5.016908364825607,2.345633515413886,0,2023-09-02,no +NM,C,yes,10,27604,5,1000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,0.009290543402472325,997.0536203126686,0.3103205390664535,1,2023-09-02,below loq +YY,E,No,14,09634,3,13,upstream,primary sludge,copies/g dry sludge,sars-cov-2,40.12271986487103,835.0193306826875,10.74666524657234,0,2023-09-02,no +ZZ,F,NO,13,65174,2,8472,wwtp,raw wastewater,copies/g dry sludge,sars-cov-2,56.79199712220917,11.726210229367643,6.224802988094461,0,2023-09-02,NA +CA,A,YES,1,04971,1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,430.2273711266606,49.10700461580872,12.024286675454327,0,2023-09-03,NA +CA,A,YES,2,31809,1,30000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,3.140423453540527,44.57699799251904,6.280846907081054,1,2023-09-03,NA +CA,A,YES,3,84531,2,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,109.33707641767815,563.6346962634074,6.1676072248482035,0,2023-09-03,below loq +CA,A,YES,4,12078,3,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,51.416813206666305,9.741599462978815,4.066622644953145,0,2023-09-03,NA +CA,A,YES,3,84531,4,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,2.234278943036694,578.2961630367103,4.468557886073388,1,2023-09-03,no +WA,B,Yes,6,31928,1,2000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,12.067327231705665,676.03113157472,24.13465446341133,1,2023-09-03,NA +WA,B,Yes,7,07528,1,100000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,379.19622751304973,84.15017609215634,2.0665921063140757,0,2023-09-03,NA +WA,B,Yes,8,97385,2,50000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,178.979628490837,17.205740224938236,4.814397123431832,0,2023-09-03,NA +WA,B,Yes,9,14396,2,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,71.29831297685892,67.45691454103022,5.885020570288048,0,2023-09-03,NA +YY,E,No,14,09634,3,13,upstream,primary sludge,copies/g dry sludge,sars-cov-2,380.4419399247757,92.48674990569818,7.9273681605146065,0,2023-09-03,NA +ZZ,F,NO,14,09634,3,8472,wwtp,raw wastewater,copies/g dry sludge,sars-cov-2,11.7316754984645,295.2547373576655,4.873570575688488,0,2023-09-03,NA +CA,A,YES,1,04971,1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,786.0080000784335,106.71467557046878,12.403173656961675,0,2023-09-04,no +CA,A,YES,2,31809,1,30000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,146.40757393837086,5.6021890882388465,4.731356803824381,0,2023-09-04,NA +CA,A,YES,4,12078,3,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,11.014299017908412,9.122926837628256,2.4645400936270576,0,2023-09-04,no +CA,A,YES,4,12078,4,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,30.966555856995438,37.6860124951643,3.3637788302328704,0,2023-09-04,no +WA,B,Yes,6,31928,1,2000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,5.43166046424192,348.5493210623553,1.2958325769843038,0,2023-09-04,NA +WA,B,Yes,7,07528,1,100000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,211.3252856797089,35.33902512666274,4.1970217098910485,0,2023-09-04,NA +WA,B,Yes,9,14396,2,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,244.3869152712867,19.628533387980333,1.6008559540872358,0,2023-09-04,NA +NM,C,yes,10,27604,5,1000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,0.8906333929852905,6.051817816131931,0.5161209999542375,0,2023-09-04,NA +XX,D,ye,14,09634,10,1000000000,wwtp,raw wastewater,copies/l wastewater,FLUAV,374.79682338073434,693.8023194740917,2.9144725202571315,0,2023-09-04,NA +YY,E,No,13,65174,2,13,upstream,primary sludge,copies/g dry sludge,sars-cov-2,292.051378120117,719.7515128324092,21.29413260222399,0,2023-09-04,NA +CA,A,YES,1,04971,1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,8.213217766641202,62.75875762506459,16.426435533282405,1,2023-09-05,NA +CA,A,YES,2,31809,1,30000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,12.391538239002914,121.77325451487717,1.0772511681253278,0,2023-09-05,NA +CA,A,YES,3,84531,2,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,45.213714472791736,29.49455978609377,2.3769870936228963,0,2023-09-05,NA +CA,A,YES,5,34687,3,1000000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,19.74685852404313,811.4006926523665,24.51123500577057,0,2023-09-05,NA +CA,A,YES,3,84531,4,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,20.132484745424044,34.734526652325584,5.530921858339393,0,2023-09-05,result is not quantifiable +CA,A,YES,4,12078,4,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,42.00130694761647,6.115210103860079,5.345578394822269,0,2023-09-05,NA +CA,A,YES,5,34687,4,1000000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,55.40531249209961,447.60839905834854,6.831921979279036,0,2023-09-05,NA +WA,B,Yes,6,31928,1,2000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,108.54820822221978,18.104253284754552,5.1322936139140785,0,2023-09-05,NA +WA,B,Yes,7,07528,1,100000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,18.18375572481969,86.96818269882104,2.5327142830989757,0,2023-09-05,> max temp and/or hold time +WA,B,Yes,8,97385,2,50000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,569.4689515288138,475.32633449439624,1.9613036850390617,0,2023-09-05,NA +WA,B,Yes,9,14396,2,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,98.17086940614291,22.58809023680244,4.473339776754265,0,2023-09-05,no +CA,A,YES,1,04971,1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,569.0592734875645,49.8948087609619,16.741583747541483,0,2023-09-06,NA +CA,A,YES,2,31809,1,30000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,260.2456716058832,54.0904670429179,7.1907003070173685,0,2023-09-06,> max temp and/or hold time +CA,A,YES,3,84531,2,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,888.7942817773062,21.450426847575212,4.291430262637199,0,2023-09-06,no +CA,A,YES,4,12078,3,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,195.87529438836057,50.38792491907603,3.973626153895206,0,2023-09-06,NA +CA,A,YES,3,84531,4,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,23.796201520626628,89.71022155615749,4.668382649811058,0,2023-09-06,NA +CA,A,YES,4,12078,4,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,6.4627814160698405,609.2429086366412,7.348901968435019,0,2023-09-06,NA +WA,B,Yes,6,31928,1,2000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,9.01400003633199,420.27317384189496,6.673366975994265,0,2023-09-06,NA +WA,B,Yes,7,07528,1,100000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,0.7242794500365215,664.4173133824515,1.448558900073043,1,2023-09-06,NA +WA,B,Yes,8,97385,2,50000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,5.203548845711328,5.799512527492022,10.407097691422656,1,2023-09-06,NA +WA,B,Yes,9,14396,2,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,26.273477365195667,41.882609669572645,2.7014730609439828,0,2023-09-06,result is not quantifiable +XX,D,ye,12,32541,10,1000000000,wwtp,raw wastewater,copies/l wastewater,FLUAV,6.071206051002803,417.4206551875899,1.043185977695066,0,2023-09-06,no +XX,D,ye,15,98436,10,1000000000,wwtp,raw wastewater,copies/l wastewater,FLUAV,19.280456726615277,501.27607876736533,8.179115555666378,0,2023-09-06,below loq +ZZ,F,NO,13,65174,2,8472,wwtp,raw wastewater,copies/g dry sludge,sars-cov-2,28.01947973423674,33.88286641999909,16.875780061729348,0,2023-09-06,no +ZZ,F,NO,14,09634,3,8472,wwtp,raw wastewater,copies/g dry sludge,sars-cov-2,39.84675651832644,604.4916737134605,4.616793458565574,0,2023-09-06,NA +CA,A,YES,1,04971,1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,125.16062540964309,15.744586170221984,3.413231366066114,0,2023-09-07,NA +CA,A,YES,2,31809,1,30000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,2.03574872068184,941.8539891612145,4.07149744136368,1,2023-09-07,temperature not assessed upon arrival at the laboratory +CA,A,YES,3,84531,2,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,268.2615245913104,11.464638631278572,3.3510304233960753,0,2023-09-07,no +CA,A,YES,4,12078,3,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,670.4594334513204,91.73270335995056,1.7831830123125219,0,2023-09-07,no +CA,A,YES,3,84531,4,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,95.31807342833757,52.20110488126039,5.621490155721226,0,2023-09-07,y +CA,A,YES,4,12078,4,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,5.526282550111774,69.0991353428843,11.052565100223548,1,2023-09-07,NA +WA,B,Yes,6,31928,1,2000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,68.97239780491303,38.01974089489456,9.404688748552074,0,2023-09-07,NA +WA,B,Yes,7,07528,1,100000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,525.757420380718,997.2677562889236,5.399495360825986,0,2023-09-07,NA +WA,B,Yes,8,97385,2,50000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,5.8520079987222395,295.14565187298376,7.12828927066237,0,2023-09-07,NA +WA,B,Yes,9,14396,2,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,57.11744186210839,16.259692902134955,1.0041871900405717,0,2023-09-07,y +NM,C,yes,10,27604,5,1000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,2.4393194142310732,5.64545916019006,0.41718335600365775,0,2023-09-07,NA +XX,D,ye,14,09634,10,1000000000,wwtp,raw wastewater,copies/l wastewater,FLUAV,19.560058059797647,182.15648687225786,3.1323110868458732,0,2023-09-07,yes +XX,D,ye,15,98436,10,1000000000,wwtp,raw wastewater,copies/l wastewater,FLUAV,6.047399563411604,85.99863414855055,10.167875860172252,0,2023-09-07,NA +ZZ,F,NO,12,32541,1,8472,wwtp,raw wastewater,copies/g dry sludge,sars-cov-2,336.4017773640832,8.962216251836132,1.834938407348662,0,2023-09-07,NA +CA,A,YES,1,04971,1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,13.416099669710217,112.80358085277192,4.2191715782747234,0,2023-09-08,y +CA,A,YES,2,31809,1,30000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,12.35470483115196,260.6789416900791,24.70940966230392,1,2023-09-08,no +CA,A,YES,3,84531,2,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,685.1373497699898,34.079146981953514,18.355239343220926,0,2023-09-08,NA +CA,A,YES,4,12078,3,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,23.28879422835718,20.357919162156755,1.1887886442646176,0,2023-09-08,NA +CA,A,YES,3,84531,4,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,210.6720860609845,109.20076252950167,1.1024012200773223,0,2023-09-08,NA +CA,A,YES,4,12078,4,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,30.554570994273394,146.18335402985502,3.6842514608887416,0,2023-09-08,result is not quantifiable +WA,B,Yes,6,31928,1,2000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,55.05569222631711,68.55062944685439,2.5837262487304695,0,2023-09-08,NA +WA,B,Yes,7,07528,1,100000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,5.443465445200407,991.9650537980673,9.332403447386636,0,2023-09-08,NA +WA,B,Yes,8,97385,2,50000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,60.114494331533876,7.01186131764175,1.060183405857427,0,2023-09-08,NA +WA,B,Yes,9,14396,2,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,11.771903218511845,24.65795255464619,13.16691020448697,0,2023-09-08,NA +NM,C,yes,10,27604,5,1000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,0.9168491753768885,776.2576667378628,0.46153892772471683,0,2023-09-08,NA +YY,E,No,14,09634,3,13,upstream,primary sludge,copies/g dry sludge,sars-cov-2,484.2895489686721,17.134194602366936,2.7814060117765926,0,2023-09-08,NA +CA,A,YES,1,04971,1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,527.5990713281764,502.8502582656528,8.387939118671651,0,2023-09-09,NA +CA,A,YES,2,31809,1,30000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,78.47346448457697,89.04542972050675,3.7618940732239037,0,2023-09-09,no +CA,A,YES,3,84531,2,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,5.928170347534162,9.16972576503793,11.856340695068324,1,2023-09-09,NA +CA,A,YES,4,12078,3,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,106.53281947212461,7.115932066081365,1.472358546638881,0,2023-09-09,no +CA,A,YES,3,84531,4,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,1.0080902495561197,23.23748232553108,2.0161804991122394,1,2023-09-09,NA +CA,A,YES,4,12078,4,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,11.747780514809891,9.215766584683582,3.346266999403597,0,2023-09-09,NA +WA,B,Yes,6,31928,1,2000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,14.347383353273045,503.1798288563729,3.000230068352586,0,2023-09-09,NA +WA,B,Yes,7,07528,1,100000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,175.41751997072893,229.01184139917856,1.122279380004004,0,2023-09-09,below loq +WA,B,Yes,8,97385,2,50000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,18.52221641500781,447.30562441519214,1.9032431604930327,0,2023-09-09,NA +NM,C,yes,10,27604,5,1000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,0.8986360403293976,154.9251124891775,0.14255255895718694,0,2023-09-09,NA +XX,D,ye,13,65174,10,1000000000,wwtp,raw wastewater,copies/l wastewater,FLUAV,230.04933288748234,45.38393518191321,3.5775430938506894,0,2023-09-09,no +ZZ,F,NO,13,65174,2,8472,wwtp,raw wastewater,copies/g dry sludge,sars-cov-2,79.43208651713678,145.94909290148374,2.196471015585315,0,2023-09-09,no +CA,A,YES,1,04971,1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,12.521220019300424,20.76965227783997,5.3834170132267305,0,2023-09-10,NA +CA,A,YES,2,31809,1,30000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,17.58715101097612,12.83397982530517,9.024293572135813,0,2023-09-10,NA +CA,A,YES,3,84531,2,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,512.1009244327516,801.131424450119,1.152934282696263,0,2023-09-10,NA +CA,A,YES,4,12078,3,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,120.70002154247815,390.0095950052722,2.9393046329562877,0,2023-09-10,NA +CA,A,YES,3,84531,4,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,33.09745859979751,88.0984675005074,19.30350545190957,0,2023-09-10,yes +CA,A,YES,4,12078,4,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,153.78075555645515,70.46670636007109,2.0801735944517024,0,2023-09-10,result is not quantifiable +WA,B,Yes,6,31928,1,2000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,50.38679202041178,10.440269191841129,3.6209161243520365,0,2023-09-10,NA +WA,B,Yes,8,97385,2,50000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,19.441119082411728,27.353014976951812,3.976032523776446,0,2023-09-10,NA +WA,B,Yes,9,14396,2,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,50.73848803694325,355.9063885472663,1.9205736310791068,0,2023-09-10,yes +NM,C,yes,10,27604,5,1000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,0.44005475663120985,13.866496675230948,0.741084752295191,1,2023-09-10,NA +CA,A,YES,1,04971,1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,56.9534624514444,366.1366633850493,1.292548620565424,0,2023-09-11,NA +CA,A,YES,2,31809,1,30000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,5.0966126392390345,240.093309426411,4.37020913372028,0,2023-09-11,NA +CA,A,YES,3,84531,2,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,99.86720751992983,10.9075131215385,6.246847884499809,0,2023-09-11,NA +CA,A,YES,3,84531,4,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,115.00319257173182,104.84945091739647,5.914995444575997,0,2023-09-11,no +WA,B,Yes,6,31928,1,2000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,7.162957885677333,29.57055122661636,1.8165351074426492,0,2023-09-11,NA +WA,B,Yes,7,07528,1,100000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,1.4110832410828409,380.3485070548362,2.8221664821656818,1,2023-09-11,NA +WA,B,Yes,8,97385,2,50000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,7.327125663023487,318.9832365431544,24.41155368659637,0,2023-09-11,NA +NM,C,yes,10,27604,5,1000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,1.7035260050787888,142.01179949024075,0.7113749578743687,0,2023-09-11,NA +XX,D,ye,15,98436,10,1000000000,wwtp,raw wastewater,copies/l wastewater,FLUAV,40.454228923757924,9.341962171841942,5.311132323665777,0,2023-09-11,temperature not assessed upon arrival at the laboratory +ZZ,F,NO,14,09634,3,8472,wwtp,raw wastewater,copies/g dry sludge,sars-cov-2,6.743804895608624,105.53979075726559,2.8508711573320333,0,2023-09-11,NA +CA,A,YES,1,04971,1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,901.0494424708787,461.91170796163334,8.579360686641467,0,2023-09-12,NA +CA,A,YES,2,31809,1,30000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,65.27244626668926,506.05965221931496,23.06300976042336,0,2023-09-12,NA +CA,A,YES,3,84531,2,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,696.5337997332985,288.76589833544875,19.78523736584671,0,2023-09-12,NA +CA,A,YES,4,12078,3,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,22.93825568238866,205.6113269404251,4.355115879356507,0,2023-09-12,NA +CA,A,YES,5,34687,3,1000000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,22.044383332327712,104.59155185353832,2.668449102560198,0,2023-09-12,NA +CA,A,YES,3,84531,4,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,1.3137728200640493,25.97814175965599,2.6275456401280985,1,2023-09-12,no +CA,A,YES,4,12078,4,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,5.543546049553814,17.096054317289024,8.226210306017569,0,2023-09-12,NA +CA,A,YES,5,34687,4,1000000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,138.91535050178177,82.86451161329475,9.133905510977868,0,2023-09-12,yes +WA,B,Yes,6,31928,1,2000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,12.226368729829534,521.6183575741151,18.049391356612787,0,2023-09-12,result is not quantifiable +WA,B,Yes,9,14396,2,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,29.620091476208373,25.210228281526383,13.686401983024062,0,2023-09-12,NA +NM,C,yes,10,27604,5,1000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,1.8766720446620844,726.2311281456256,0.2558777167177798,0,2023-09-12,NA +XX,D,ye,12,32541,10,1000000000,wwtp,raw wastewater,copies/l wastewater,FLUAV,841.8049511459294,7.685428614397752,2.4650724544135625,0,2023-09-12,no +XX,D,ye,14,09634,10,1000000000,wwtp,raw wastewater,copies/l wastewater,FLUAV,502.3880020093616,52.57992313831526,17.005828583693976,0,2023-09-12,no +CA,A,YES,1,04971,1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,603.0385591829224,135.6580883620457,4.139170907451966,0,2023-09-13,NA +CA,A,YES,2,31809,1,30000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,22.237577152775437,401.9403918677182,19.787889372051975,0,2023-09-13,yes +CA,A,YES,4,12078,3,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,31.011091214856222,966.1418207121662,13.445781201228822,0,2023-09-13,NA +CA,A,YES,3,84531,4,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,176.56799228854456,9.856970493457414,8.697769771555773,0,2023-09-13,NA +CA,A,YES,4,12078,4,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,136.22918111097988,12.824333782212003,23.3899953225163,0,2023-09-13,NA +WA,B,Yes,6,31928,1,2000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,9.52250302662332,12.309747495464435,3.1258157129247337,0,2023-09-13,NA +WA,B,Yes,7,07528,1,100000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,317.06857174613333,28.937258226467367,3.587994701609066,0,2023-09-13,NA +WA,B,Yes,8,97385,2,50000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,150.2207063323918,825.2697517544991,16.179023426700656,0,2023-09-13,NA +WA,B,Yes,9,14396,2,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,293.32533006557884,326.7757230297949,13.145887919698414,0,2023-09-13,temperature not assessed upon arrival at the laboratory +NM,C,yes,10,27604,5,1000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,2.206287749928249,12.678598244318016,0.5533204739985695,0,2023-09-13,no +ZZ,F,NO,12,32541,1,8472,wwtp,raw wastewater,copies/g dry sludge,sars-cov-2,6.759775049434626,13.40975673312541,2.4916769038418742,0,2023-09-13,NA +CA,A,YES,1,04971,1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,2.7178157495953896,594.1185475832327,5.435631499190779,1,2023-09-14,no +CA,A,YES,2,31809,1,30000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,50.03140994688281,39.44621369622172,16.074000358249478,0,2023-09-14,NA +CA,A,YES,3,84531,2,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,6.042434526272639,17.96477256898295,12.084869052545278,1,2023-09-14,NA +CA,A,YES,4,12078,3,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,270.2556918948978,772.3136263757754,10.71087958562735,0,2023-09-14,NA +WA,B,Yes,6,31928,1,2000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,28.999636551725438,7.112110226684085,18.683558601460902,0,2023-09-14,NA +WA,B,Yes,7,07528,1,100000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,242.90574957188858,441.49582348827323,15.76269950552462,0,2023-09-14,NA +WA,B,Yes,9,14396,2,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,1.9500871596517524,123.00732124310856,3.9001743193035048,1,2023-09-14,NA +NM,C,yes,10,27604,5,1000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,2.8454444415409426,418.61803702666384,0.5406164700102142,0,2023-09-14,NA +ZZ,F,NO,13,65174,2,8472,wwtp,raw wastewater,copies/g dry sludge,sars-cov-2,6.069282489349167,20.525310445756737,8.848302737682596,0,2023-09-14,no +CA,A,YES,1,04971,1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,627.1858702693393,640.4499704489788,9.847493729048772,0,2023-09-15,no +CA,A,YES,2,31809,1,30000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,300.12201613719,9.13753490350026,4.7419849443985616,0,2023-09-15,NA +CA,A,YES,4,12078,3,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,1.4973163391200663,306.3932463794785,2.9946326782401327,1,2023-09-15,yes +CA,A,YES,3,84531,4,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,230.13764014508246,107.68233325353903,4.060576452260714,0,2023-09-15,NA +CA,A,YES,4,12078,4,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,11.297211715445465,261.220863465785,4.55816430474349,0,2023-09-15,no +WA,B,Yes,7,07528,1,100000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,659.6519077775376,154.76241976588497,2.963945321898027,0,2023-09-15,NA +WA,B,Yes,8,97385,2,50000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,24.43289897335104,54.4910442943567,3.7862987450286094,0,2023-09-15,NA +WA,B,Yes,9,14396,2,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,121.61991083088714,46.66901552690469,1.5712555961867025,0,2023-09-15,NA +NM,C,yes,10,27604,5,1000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,1.9618414032348217,639.4249431666166,0.3978812299862965,0,2023-09-15,NA +ZZ,F,NO,12,32541,1,8472,wwtp,raw wastewater,copies/g dry sludge,sars-cov-2,14.102204272137506,984.7060029667207,1.8440824070294632,0,2023-09-15,no +ZZ,F,NO,13,65174,2,8472,wwtp,raw wastewater,copies/g dry sludge,sars-cov-2,105.99735034894364,43.06748608757233,2.4110883649611536,0,2023-09-15,no +CA,A,YES,1,04971,1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,30.859634741461225,358.8292028381085,3.9280047220217194,0,2023-09-16,NA +CA,A,YES,2,31809,1,30000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,401.39145497144455,434.7427435314635,2.134992864334295,0,2023-09-16,NA +CA,A,YES,3,84531,2,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,435.18550861096793,47.37998927877417,2.592626358648773,0,2023-09-16,NA +CA,A,YES,4,12078,3,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,274.1310453605152,187.9368273876609,1.8170810349301558,0,2023-09-16,NA +CA,A,YES,3,84531,4,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,395.1561777373086,18.7945882821773,6.513522254402335,0,2023-09-16,no +CA,A,YES,4,12078,4,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,30.11301833861387,42.62591316659547,6.546255907865505,0,2023-09-16,NA +WA,B,Yes,7,07528,1,100000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,40.82224527616124,925.1411007017958,1.7585024036077894,0,2023-09-16,NA +WA,B,Yes,8,97385,2,50000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,70.21647024578209,96.90393218873007,4.671718311983423,0,2023-09-16,NA +WA,B,Yes,9,14396,2,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,50.75390229248807,26.805787063321805,1.2463680418046597,0,2023-09-16,NA +NM,C,yes,10,27604,5,1000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,1.5231145448452659,10.75111979253397,1.1381690644815359,0,2023-09-16,NA +ZZ,F,NO,13,65174,2,8472,wwtp,raw wastewater,copies/g dry sludge,sars-cov-2,23.447222157974128,455.5509942181424,1.2584251963530146,0,2023-09-16,NA +CA,A,YES,2,31809,1,30000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,5.124328061730982,858.3698531829724,10.248656123461965,1,2023-09-17,NA +CA,A,YES,3,84531,2,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,754.1507219369661,153.44263880512628,1.5984730416961492,0,2023-09-17,NA +CA,A,YES,4,12078,3,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,623.7242192141716,5.592627892087036,1.701161118881908,0,2023-09-17,no +CA,A,YES,3,84531,4,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,76.06906355042437,584.3058071281038,4.487847386099529,0,2023-09-17,no +CA,A,YES,4,12078,4,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,25.195452712044077,5.0580789742507495,5.123044358872136,0,2023-09-17,y +WA,B,Yes,7,07528,1,100000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,18.13796488449633,7.470078421183283,1.1016057011105906,0,2023-09-17,yes +WA,B,Yes,8,97385,2,50000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,16.03817049795714,120.3608266601489,2.013031385657321,0,2023-09-17,NA +WA,B,Yes,9,14396,2,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,25.423492038559306,698.4937844836131,1.2658622406219853,0,2023-09-17,no +NM,C,yes,10,27604,5,1000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,1.147533852110829,13.495236467046974,0.4704001570768611,0,2023-09-17,NA +ZZ,F,NO,15,98436,4,8472,wwtp,raw wastewater,copies/g dry sludge,sars-cov-2,12.454472909542101,26.244781970139844,2.558091093066221,0,2023-09-17,NA +CA,A,YES,1,04971,1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,15.899032256424775,564.6450526067346,3.1924705121443107,0,2023-09-18,NA +CA,A,YES,2,31809,1,30000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,0.5641751920521331,208.7532835329705,1.1283503841042661,1,2023-09-18,NA +CA,A,YES,3,84531,2,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,12.08350810017529,609.2131164367498,24.16701620035058,1,2023-09-18,NA +CA,A,YES,4,12078,3,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,158.29173947891587,145.91010752381382,10.880390014694674,0,2023-09-18,NA +CA,A,YES,3,84531,4,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,41.05244068678272,41.273562796522526,10.39642921391872,0,2023-09-18,NA +CA,A,YES,4,12078,4,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,10.368509978708842,73.34180431530028,13.554946356358688,0,2023-09-18,NA +WA,B,Yes,6,31928,1,2000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,9.038999091792924,6.494058971301816,5.192272677063447,0,2023-09-18,temperature not assessed upon arrival at the laboratory +WA,B,Yes,7,07528,1,100000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,31.337762988991308,206.1987105064303,1.355964836748163,0,2023-09-18,no +WA,B,Yes,8,97385,2,50000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,216.98007931079516,5.452676034619082,6.332371926542281,0,2023-09-18,NA +WA,B,Yes,9,14396,2,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,31.86396005250983,268.450426832543,3.533681021155041,0,2023-09-18,NA +NM,C,yes,10,27604,5,1000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,1.6624158485598437,349.8323866970989,0.09681419791914433,0,2023-09-18,NA +YY,E,No,12,32541,1,13,upstream,primary sludge,copies/g dry sludge,sars-cov-2,869.8862706586108,75.19807868043753,1.2395373844013466,0,2023-09-18,NA +YY,E,No,15,98436,4,13,upstream,primary sludge,copies/g dry sludge,sars-cov-2,922.9115148474556,660.1431713924558,1.5067063420985314,0,2023-09-18,NA +CA,A,YES,1,04971,1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,163.00694208865636,26.41527898111204,3.642606142908498,0,2023-09-19,NA +CA,A,YES,2,31809,1,30000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,905.5141939506323,36.41631052169025,5.629397584516005,0,2023-09-19,NA +CA,A,YES,3,84531,2,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,219.91883803237423,75.20349970014401,1.5576135326080256,0,2023-09-19,y +CA,A,YES,4,12078,3,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,165.9073301360782,55.28195609009838,8.717230116924922,0,2023-09-19,NA +CA,A,YES,5,34687,3,1000000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,0.5122944767552731,73.63502061663446,1.0245889535105461,1,2023-09-19,NA +CA,A,YES,3,84531,4,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,26.442704204964137,228.80343238736606,8.802839341089758,0,2023-09-19,NA +CA,A,YES,4,12078,4,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,223.4129354375486,138.35409964264724,23.981304217763874,0,2023-09-19,NA +CA,A,YES,5,34687,4,1000000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,195.112865867627,730.1865455720992,4.205915024549816,0,2023-09-19,NA +WA,B,Yes,7,07528,1,100000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,39.73572801128709,67.75775960349195,5.999784427986614,0,2023-09-19,NA +WA,B,Yes,9,14396,2,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,77.12493148152373,556.8459046605676,1.09012843716842,0,2023-09-19,NA +NM,C,yes,10,27604,5,1000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,1.9253028023754963,21.588013372477345,1.1365218981220306,0,2023-09-19,NA +XX,D,ye,13,65174,10,1000000000,wwtp,raw wastewater,copies/l wastewater,FLUAV,17.976432542843934,202.84608742290547,1.5191165443255417,0,2023-09-19,NA +ZZ,F,NO,14,09634,3,8472,wwtp,raw wastewater,copies/g dry sludge,sars-cov-2,223.39901839121097,713.5445145109429,2.8096776304763913,0,2023-09-19,NA +CA,A,YES,1,04971,1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,765.5408539523569,14.41215467320515,5.134440972765299,0,2023-09-20,NA +CA,A,YES,2,31809,1,30000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,32.03138902904595,14.291454496086965,21.750935727284062,0,2023-09-20,NA +CA,A,YES,3,84531,2,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,66.67007985779541,5.1893370844269455,2.0337834665254544,0,2023-09-20,> max temp and/or hold time +CA,A,YES,4,12078,3,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,0.6514278972287366,6.977577371797697,1.3028557944574732,1,2023-09-20,NA +CA,A,YES,3,84531,4,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,298.3636762597554,955.0479543441802,1.6816635707057863,0,2023-09-20,NA +CA,A,YES,4,12078,4,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,4.992181212686645,46.24693935643921,9.98436242537329,1,2023-09-20,NA +WA,B,Yes,6,31928,1,2000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,66.66555316883107,5.861154974446485,22.063204828896303,0,2023-09-20,NA +WA,B,Yes,7,07528,1,100000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,29.834576084555795,7.489234718173136,1.227909324424047,0,2023-09-20,NA +WA,B,Yes,8,97385,2,50000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,8.310041298136628,73.78539209232302,1.811308540706124,0,2023-09-20,NA +WA,B,Yes,9,14396,2,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,891.7997712566988,231.9433549268617,21.324133130079847,0,2023-09-20,no +CA,A,YES,2,31809,1,30000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,13.158660603343469,11.848202926995205,15.9843003832825,0,2023-09-21,no +CA,A,YES,3,84531,2,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,117.36392021689579,75.17912747889912,14.211676821888307,0,2023-09-21,NA +CA,A,YES,4,12078,3,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,74.27612525176858,8.20507467240631,3.491236295169116,0,2023-09-21,NA +CA,A,YES,3,84531,4,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,3.1511117008765823,933.013637706733,6.302223401753165,1,2023-09-21,NA +CA,A,YES,4,12078,4,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,42.83993233569971,5.592995282575416,18.283598052695787,0,2023-09-21,temperature not assessed upon arrival at the laboratory +WA,B,Yes,6,31928,1,2000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,14.021412604773127,7.000543339679783,13.778872574215725,0,2023-09-21,NA +WA,B,Yes,7,07528,1,100000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,481.92240466391627,145.5380957875945,21.2845208771929,0,2023-09-21,NA +WA,B,Yes,8,97385,2,50000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,6.715159495803706,522.0217438517983,13.430318991607413,1,2023-09-21,NA +WA,B,Yes,9,14396,2,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,598.7761301909878,77.29300873856852,11.890243384486608,0,2023-09-21,no +NM,C,yes,10,27604,5,1000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,1.1266103198901292,9.127208331494755,1.0465820742061096,0,2023-09-21,NA +XX,D,ye,13,65174,10,1000000000,wwtp,raw wastewater,copies/l wastewater,FLUAV,186.7405814430018,130.44527558807707,1.8635571605521872,0,2023-09-21,no +XX,D,ye,14,09634,10,1000000000,wwtp,raw wastewater,copies/l wastewater,FLUAV,7.831683989328578,88.73688812446485,2.0432388785908464,0,2023-09-21,NA +YY,E,No,14,09634,3,13,upstream,primary sludge,copies/g dry sludge,sars-cov-2,11.140698852114427,96.25931818406534,22.281397704228855,1,2023-09-21,yes +CA,A,YES,1,04971,1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,7.3055257413574735,118.07007497423882,2.0505872967575423,0,2023-09-22,NA +CA,A,YES,2,31809,1,30000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,267.86907646268435,12.121669155145032,23.321045100446533,0,2023-09-22,NA +CA,A,YES,3,84531,2,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,5.906247733955276,492.8212436581897,11.812495467910551,1,2023-09-22,no +CA,A,YES,4,12078,3,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,8.241052893392862,7.943906975151102,16.482105786785723,1,2023-09-22,NA +CA,A,YES,3,84531,4,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,12.755052244944414,238.72987341973166,15.527018757416068,0,2023-09-22,NA +CA,A,YES,4,12078,4,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,8.110036746967317,27.31577175009725,1.5835462351255556,0,2023-09-22,> max temp and/or hold time +WA,B,Yes,6,31928,1,2000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,186.45623243551162,79.27449546437143,12.242454817723667,0,2023-09-22,NA +WA,B,Yes,7,07528,1,100000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,7.311228039730669,35.74185387118438,4.44038706481002,0,2023-09-22,NA +WA,B,Yes,8,97385,2,50000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,140.46085090977772,60.27575341716619,1.0034512324148095,0,2023-09-22,NA +WA,B,Yes,9,14396,2,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,94.22141817802886,15.051688038650608,5.374429094299932,0,2023-09-22,NA +NM,C,yes,10,27604,5,1000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,2.158982938299587,9.313469419085513,0.975422992140235,0,2023-09-22,NA +CA,A,YES,1,04971,1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,9.615214324184283,98.28676416676558,22.216317904643557,0,2023-09-23,> max temp and/or hold time +CA,A,YES,2,31809,1,30000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,589.3986281978644,8.679133272140561,1.8098973454090526,0,2023-09-23,NA +CA,A,YES,3,84531,2,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,37.39048546074088,18.685814104050912,12.850001955744203,0,2023-09-23,NA +CA,A,YES,4,12078,3,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,43.76232441134541,10.164161127127485,12.482619362899898,0,2023-09-23,NA +CA,A,YES,3,84531,4,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,23.217931853486764,89.47016678434515,8.416339623993995,0,2023-09-23,NA +CA,A,YES,4,12078,4,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,124.22847114573283,628.6235519362383,1.2642699947706546,0,2023-09-23,NA +WA,B,Yes,6,31928,1,2000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,385.7144117750784,19.122014212075385,6.796198356949728,0,2023-09-23,NA +WA,B,Yes,8,97385,2,50000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,122.86920120852614,12.118305805132154,1.3095842369835462,0,2023-09-23,NA +NM,C,yes,10,27604,5,1000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,1.2604096759466097,76.92000128669947,0.6407394664269102,0,2023-09-23,NA +CA,A,YES,1,04971,1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,31.556363874652213,28.002580514447082,3.3700121744830933,0,2023-09-24,NA +CA,A,YES,2,31809,1,30000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,360.54843693920793,470.26117697733577,5.606447239255045,0,2023-09-24,NA +CA,A,YES,3,84531,2,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,6.071314365181604,981.1203214557684,4.998796740742051,0,2023-09-24,NA +CA,A,YES,4,12078,3,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,566.7666578013052,59.070074117639074,7.508477127847408,0,2023-09-24,NA +CA,A,YES,3,84531,4,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,813.3088033937094,28.24450545026727,2.063151085209026,0,2023-09-24,NA +CA,A,YES,4,12078,4,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,113.97985183410167,144.7627628917344,2.0539290996208246,0,2023-09-24,NA +WA,B,Yes,6,31928,1,2000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,7.020972184015425,89.21413873583612,2.5120647283373807,0,2023-09-24,> max temp and/or hold time +WA,B,Yes,7,07528,1,100000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,74.60265135002568,145.28254128458858,3.26001319033406,0,2023-09-24,NA +WA,B,Yes,8,97385,2,50000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,477.84024698321844,42.73506869943282,13.92995860191306,0,2023-09-24,NA +NM,C,yes,10,27604,5,1000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,1.0878754599856533,176.24909304262266,1.1426858251406937,0,2023-09-24,no +XX,D,ye,15,98436,10,1000000000,wwtp,raw wastewater,copies/l wastewater,FLUAV,26.905453106940413,113.13698548396529,4.647740235578791,0,2023-09-24,NA +CA,A,YES,2,31809,1,30000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,114.14099468369378,35.91044341925311,13.687935681006486,0,2023-09-25,no +CA,A,YES,3,84531,2,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,9.220679999764629,50.90915290814995,2.9866980228498874,0,2023-09-25,NA +CA,A,YES,4,12078,3,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,70.87809379380387,190.00122004407942,16.38319293800713,0,2023-09-25,NA +CA,A,YES,3,84531,4,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,203.12695288545802,6.00190364537894,1.3926822751837495,0,2023-09-25,NA +CA,A,YES,4,12078,4,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,663.7176234826474,224.3156076234778,19.1854317057789,0,2023-09-25,below loq +WA,B,Yes,6,31928,1,2000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,42.444677904591536,582.916096604578,2.598417138292784,0,2023-09-25,NA +WA,B,Yes,8,97385,2,50000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,950.3150020785197,12.580653468395676,1.670466354276355,0,2023-09-25,NA +WA,B,Yes,9,14396,2,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,4.889032963255966,13.102325779020566,9.778065926511932,1,2023-09-25,NA +NM,C,yes,10,27604,5,1000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,1.1086449013137685,463.60724308942036,0.7148204765967774,0,2023-09-25,no +CA,A,YES,1,04971,1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,85.78745849492218,975.8485468745371,1.5410159137588204,0,2023-09-26,no +CA,A,YES,2,31809,1,30000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,9.150488676209262,12.540172173003441,1.9074647370440232,0,2023-09-26,temperature not assessed upon arrival at the laboratory +CA,A,YES,3,84531,2,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,2.2499979472637692,5.542076442621802,4.4999958945275385,1,2023-09-26,> max temp and/or hold time +CA,A,YES,4,12078,3,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,211.46535478634382,29.953658449638638,3.6904666390759293,0,2023-09-26,NA +CA,A,YES,3,84531,4,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,8.250180670789337,133.8527388427675,5.128959599959575,0,2023-09-26,NA +CA,A,YES,4,12078,4,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,10.53145582712634,465.38892829773954,9.054361831881396,0,2023-09-26,NA +CA,A,YES,5,34687,4,1000000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,5.391070234800884,929.8155106852355,4.541582182010096,0,2023-09-26,NA +WA,B,Yes,7,07528,1,100000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,0.7642637031878313,427.8139497512402,1.5285274063756626,1,2023-09-26,NA +WA,B,Yes,8,97385,2,50000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,10.367492988529134,267.7100006795026,1.8877613699178106,0,2023-09-26,no +WA,B,Yes,9,14396,2,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,620.0420443084761,161.7127204685984,6.762417687997335,0,2023-09-26,no +XX,D,ye,14,09634,10,1000000000,wwtp,raw wastewater,copies/l wastewater,FLUAV,185.28361724530987,9.736445543866681,12.179650555363896,0,2023-09-26,no +CA,A,YES,1,04971,1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,954.7987735948498,62.703028308156135,1.1257510937636845,0,2023-09-27,no +CA,A,YES,2,31809,1,30000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,6.162318139303052,100.03188428173453,1.02910426769529,0,2023-09-27,NA +CA,A,YES,3,84531,2,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,35.61555429763078,11.08132187994924,1.8462746901145295,0,2023-09-27,yes +CA,A,YES,3,84531,4,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,137.49700829913627,22.173473915902825,10.040806265175325,0,2023-09-27,NA +CA,A,YES,4,12078,4,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,6.379531276928821,36.67846798883373,4.321196355409046,0,2023-09-27,no +WA,B,Yes,6,31928,1,2000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,703.2490997129202,40.31647367576254,2.6756321338279543,0,2023-09-27,NA +WA,B,Yes,7,07528,1,100000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,462.3139194793472,137.82972840836823,1.3190950559810797,0,2023-09-27,NA +WA,B,Yes,8,97385,2,50000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,463.3614312316438,9.452998553164475,2.281879990940991,0,2023-09-27,NA +WA,B,Yes,9,14396,2,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,50.52356366306579,5.9639524573694,12.618601666986986,0,2023-09-27,NA +NM,C,yes,10,27604,5,1000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,2.440898459470167,21.662439446543726,0.11158832206158237,0,2023-09-27,no +YY,E,No,13,65174,2,13,upstream,primary sludge,copies/g dry sludge,sars-cov-2,153.12242831097095,308.256127965897,19.03053639573866,0,2023-09-27,NA +CA,A,YES,1,04971,1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,47.157479753344234,6.313948334153875,5.600355902607118,0,2023-09-28,no +CA,A,YES,2,31809,1,30000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,70.21973467488006,447.1875755540949,1.4805569683914932,0,2023-09-28,y +CA,A,YES,3,84531,2,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,13.672572480670611,968.9419362678033,3.3272351753637106,0,2023-09-28,NA +CA,A,YES,4,12078,3,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,7.07931153839453,42.14947276666262,11.719942977672483,0,2023-09-28,NA +CA,A,YES,3,84531,4,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,17.774222622960316,13.603449560565462,2.450885148411109,0,2023-09-28,NA +CA,A,YES,4,12078,4,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,30.941604143704264,267.63886670627926,19.237314824078485,0,2023-09-28,no +WA,B,Yes,9,14396,2,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,9.587812640351965,129.6144052832534,12.51699014908505,0,2023-09-28,no +NM,C,yes,10,27604,5,1000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,1.9699460970806106,8.522301578312781,0.6628074177945588,0,2023-09-28,temperature not assessed upon arrival at the laboratory +YY,E,No,14,09634,3,13,upstream,primary sludge,copies/g dry sludge,sars-cov-2,371.9795342089151,458.7670615484376,3.852203925639722,0,2023-09-28,NA +CA,A,YES,1,04971,1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,15.378172379650767,43.82671974549931,2.9286051626342475,0,2023-09-29,NA +CA,A,YES,2,31809,1,30000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,480.3029646825651,35.532865070896015,11.744278594389417,0,2023-09-29,NA +CA,A,YES,3,84531,2,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,7.14864872101037,465.6332659230167,9.05575862381514,0,2023-09-29,NA +CA,A,YES,4,12078,3,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,218.4735343607085,6.413567737727083,1.6131721737909337,0,2023-09-29,NA +CA,A,YES,3,84531,4,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,0.6645901961000065,270.7550893217722,1.329180392200013,1,2023-09-29,NA +CA,A,YES,4,12078,4,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,333.588588043735,197.26383929321725,5.2879672745399775,0,2023-09-29,NA +WA,B,Yes,6,31928,1,2000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,17.65272729639427,431.60429318073045,1.0578660486581493,0,2023-09-29,NA +WA,B,Yes,7,07528,1,100000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,437.8495360827869,205.29034456915676,2.5364457591472522,0,2023-09-29,NA +WA,B,Yes,8,97385,2,50000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,259.62476221296896,65.01878639775279,3.5983552533169902,0,2023-09-29,no +WA,B,Yes,9,14396,2,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,1.738545227109971,66.44295029778412,3.477090454219942,1,2023-09-29,NA +NM,C,yes,10,27604,5,1000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,2.2465545808364014,11.01037346073883,1.2504673426989044,0,2023-09-29,NA +XX,D,ye,15,98436,10,1000000000,wwtp,raw wastewater,copies/l wastewater,FLUAV,27.426072668225096,148.1952222949359,1.6586494536492085,0,2023-09-29,NA +CA,A,YES,1,04971,1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,265.74559264543973,632.1814334477729,1.2170482720748443,0,2023-09-30,no +CA,A,YES,2,31809,1,30000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,12.053441426000306,95.82955650517901,7.355491929373887,0,2023-09-30,no +CA,A,YES,3,84531,2,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,2.24818819745346,590.6495140506445,4.49637639490692,1,2023-09-30,temperature not assessed upon arrival at the laboratory +CA,A,YES,4,12078,3,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,131.70152437486388,329.6406118397978,9.804620498770095,0,2023-09-30,NA +CA,A,YES,3,84531,4,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,5.694805168024263,11.044263015030353,5.7101126058158895,0,2023-09-30,NA +CA,A,YES,4,12078,4,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,35.793847922739396,70.52077478740188,11.96751242919476,0,2023-09-30,NA +WA,B,Yes,6,31928,1,2000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,9.673471207314114,51.489536833801864,4.055811843828344,0,2023-09-30,NA +WA,B,Yes,7,07528,1,100000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,627.3481081758306,67.52115582422896,1.5244221387164485,0,2023-09-30,no +WA,B,Yes,8,97385,2,50000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,24.946577712397836,579.4763370161098,3.2074833238823177,0,2023-09-30,no +WA,B,Yes,9,14396,2,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,812.6357861639331,13.53044237204365,5.360688488910962,0,2023-09-30,NA +NM,C,yes,10,27604,5,1000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,1.2944443690471588,243.9897226729591,0.23921643958778607,0,2023-09-30,NA +YY,E,No,12,32541,1,13,upstream,primary sludge,copies/g dry sludge,sars-cov-2,437.18245198245785,95.19289351173602,12.898248406766136,0,2023-09-30,y +YY,E,No,15,98436,4,13,upstream,primary sludge,copies/g dry sludge,sars-cov-2,13.133514471188034,523.7099843002505,22.55960981679513,0,2023-09-30,NA +CA,A,YES,3,84531,2,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,66.49371593153035,15.235060202154155,10.84492587846565,0,2023-10-01,NA +CA,A,YES,4,12078,3,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,199.03601450021895,48.24715561675021,1.8444513028015532,0,2023-10-01,NA +CA,A,YES,3,84531,4,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,458.306410172384,40.01874650771095,17.98269063570498,0,2023-10-01,NA +CA,A,YES,4,12078,4,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,139.06621172850657,13.809881485616762,20.36366690044936,0,2023-10-01,y +WA,B,Yes,9,14396,2,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,89.94695773804438,867.2472748766627,20.834674268341548,0,2023-10-01,NA +NM,C,yes,10,27604,5,1000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,0.7719059962064264,251.9251007120738,0.03515675372305361,0,2023-10-01,no +ZZ,F,NO,13,65174,2,8472,wwtp,raw wastewater,copies/g dry sludge,sars-cov-2,22.884519428772002,417.5940820303677,2.99709872161177,0,2023-10-01,y +CA,A,YES,3,84531,2,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,509.4986392243626,966.1325100808231,10.005681911914005,0,2023-10-02,yes +CA,A,YES,4,12078,3,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,3.0922195484474155,30.146968914272172,6.184439096894831,1,2023-10-02,NA +CA,A,YES,3,84531,4,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,115.29228033492146,946.7680480293168,8.192163058664878,0,2023-10-02,below loq +CA,A,YES,4,12078,4,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,19.373047744646126,635.9751700373812,2.4429328725699233,0,2023-10-02,> max temp and/or hold time +WA,B,Yes,8,97385,2,50000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,215.58950669901932,515.4319280558805,18.720373499930734,0,2023-10-02,NA +WA,B,Yes,9,14396,2,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,60.80932072602497,751.761561011576,1.0143530352806562,0,2023-10-02,NA +NM,C,yes,10,27604,5,1000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,2.1631820944649323,54.79417116892696,1.18256121173432,0,2023-10-02,NA +YY,E,No,14,09634,3,13,upstream,primary sludge,copies/g dry sludge,sars-cov-2,16.64110837053129,538.0374688498371,1.5915975971913003,0,2023-10-02,NA +CA,A,YES,3,84531,2,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,244.42972290899493,509.0965445468101,3.826052118700248,0,2023-10-03,NA +CA,A,YES,4,12078,3,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,796.86680327611,15.077124128078676,13.774662684200747,0,2023-10-03,no +CA,A,YES,5,34687,3,1000000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,10.10931822832897,100.64251661134968,3.6447241058947077,0,2023-10-03,NA +CA,A,YES,3,84531,4,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,7.574430031501879,6.478789068777146,1.294899514234036,0,2023-10-03,NA +CA,A,YES,5,34687,4,1000000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,277.9909575369758,33.84350183818802,5.410353108745165,0,2023-10-03,no +WA,B,Yes,8,97385,2,50000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,92.92781904129124,222.55265400805212,1.34703303804376,0,2023-10-03,yes +WA,B,Yes,9,14396,2,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,150.1203744212265,808.7870429779051,6.510256818905695,0,2023-10-03,below loq +ZZ,F,NO,15,98436,4,8472,wwtp,raw wastewater,copies/g dry sludge,sars-cov-2,106.1014806321398,595.3379127934736,1.009329905107801,0,2023-10-03,NA +CA,A,YES,4,12078,3,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,425.7941127032567,147.42410415204753,11.746803736774377,0,2023-10-04,NA +CA,A,YES,3,84531,4,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,50.44101826490875,21.92765976231842,8.41812919371939,0,2023-10-04,NA +CA,A,YES,4,12078,4,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,1.5867545670111491,9.725344984431333,3.1735091340222983,1,2023-10-04,NA +WA,B,Yes,8,97385,2,50000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,42.60801036223503,462.7272565675213,8.115997406608045,0,2023-10-04,no +WA,B,Yes,9,14396,2,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,32.0643051889199,283.7348224137569,11.696890522830913,0,2023-10-04,NA +NM,C,yes,10,27604,5,1000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,0.932165600728596,200.61773061431515,0.8697163168474171,0,2023-10-04,NA +XX,D,ye,15,98436,10,1000000000,wwtp,raw wastewater,copies/l wastewater,FLUAV,63.36852460260965,388.02047081638364,2.028991614773172,0,2023-10-04,NA +CA,A,YES,3,84531,2,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,170.51718502349667,8.207298818930841,9.612164105904183,0,2023-10-05,NA +CA,A,YES,4,12078,3,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,545.5520416938306,240.07149574947834,17.91560101875043,0,2023-10-05,NA +CA,A,YES,3,84531,4,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,2.847622709748941,209.17199745315637,5.695245419497882,1,2023-10-05,NA +CA,A,YES,4,12078,4,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,15.046236982558538,33.91499043852539,15.601088565276516,0,2023-10-05,NA +WA,B,Yes,8,97385,2,50000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,41.843747024089865,96.62740073806953,6.39029585416629,0,2023-10-05,> max temp and/or hold time +WA,B,Yes,9,14396,2,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,187.4672297176034,5.255488582026274,1.0084797102876852,0,2023-10-05,NA +XX,D,ye,12,32541,10,1000000000,wwtp,raw wastewater,copies/l wastewater,FLUAV,59.21544330011755,5.219469324573686,17.66517039030799,0,2023-10-05,no +ZZ,F,NO,14,09634,3,8472,wwtp,raw wastewater,copies/g dry sludge,sars-cov-2,7.5308736068437625,814.5623020935992,8.573361750232271,0,2023-10-05,temperature not assessed upon arrival at the laboratory +CA,A,YES,3,84531,2,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,552.1067172104347,5.827496620388416,1.6054787246194608,0,2023-10-06,NA +CA,A,YES,4,12078,3,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,80.0964930575536,75.4061118864051,11.800598611149846,0,2023-10-06,no +CA,A,YES,3,84531,4,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,516.2371308563871,15.699042218304001,3.1238083233728,0,2023-10-06,NA +CA,A,YES,4,12078,4,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,222.0449535412146,351.33813267659326,19.76519636722731,0,2023-10-06,NA +WA,B,Yes,8,97385,2,50000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,203.76470899279204,474.6710903268399,6.42914724144003,0,2023-10-06,no +WA,B,Yes,9,14396,2,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,84.87278466607732,30.509841200488566,16.282178272816456,0,2023-10-06,NA +NM,C,yes,10,27604,5,1000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,1.3793220956970882,19.275791018935816,0.5841938994338673,0,2023-10-06,NA +ZZ,F,NO,13,65174,2,8472,wwtp,raw wastewater,copies/g dry sludge,sars-cov-2,15.923917934940867,868.0989752772641,15.443210635967363,0,2023-10-06,no +ZZ,F,NO,14,09634,3,8472,wwtp,raw wastewater,copies/g dry sludge,sars-cov-2,29.225067348702897,147.3721024200546,19.632876481097327,0,2023-10-06,result is not quantifiable +CA,A,YES,3,84531,2,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,5.557118078207582,151.94466862947516,12.902612893832606,0,2023-10-07,no +CA,A,YES,4,12078,3,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,61.179145697395086,10.127090862042,1.2867775165992612,0,2023-10-07,NA +CA,A,YES,3,84531,4,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,117.04153520553125,54.575542140000586,18.380920108198477,0,2023-10-07,NA +CA,A,YES,4,12078,4,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,6.016523979395135,22.548366524657805,7.93397923515608,0,2023-10-07,NA +WA,B,Yes,8,97385,2,50000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,56.39240843997941,8.388325849957104,3.749640255671547,0,2023-10-07,result is not quantifiable +WA,B,Yes,9,14396,2,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,34.72479326458965,497.28028395626234,8.95334587412118,0,2023-10-07,no +XX,D,ye,15,98436,10,1000000000,wwtp,raw wastewater,copies/l wastewater,FLUAV,20.882512316077573,102.26712804115729,18.54492480140478,0,2023-10-07,below loq +CA,A,YES,3,84531,2,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,10.508855169065688,34.10402455096962,4.875167163760601,0,2023-10-08,NA +CA,A,YES,3,84531,4,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,10.749599451332713,9.597579224508529,5.539251259990351,0,2023-10-08,NA +CA,A,YES,4,12078,4,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,25.724074976712398,45.16251189433572,2.974925462833576,0,2023-10-08,NA +WA,B,Yes,8,97385,2,50000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,853.8349356373734,31.81054076027622,24.252005008716317,0,2023-10-08,NA +WA,B,Yes,9,14396,2,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,12.264871266683702,9.726118732379241,7.048412891176777,0,2023-10-08,no +NM,C,yes,10,27604,5,1000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,2.22831472524295,52.26733747856825,1.12892134848061,0,2023-10-08,NA +YY,E,No,14,09634,3,13,upstream,primary sludge,copies/g dry sludge,sars-cov-2,85.65961375858862,87.50414949491378,3.5161997719432363,0,2023-10-08,result is not quantifiable +CA,A,YES,3,84531,2,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,27.77432548785992,858.4473984478545,2.186843517523021,0,2023-10-09,NA +CA,A,YES,3,84531,4,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,598.3951629810593,506.9210276579006,2.534444432123457,0,2023-10-09,no +CA,A,YES,4,12078,4,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,542.0600074655836,34.736799388515806,21.78409955975368,0,2023-10-09,NA +NM,C,yes,10,27604,5,1000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,1.5761519157034882,911.009836101548,1.2906727491503849,0,2023-10-09,NA +YY,E,No,13,65174,2,13,upstream,primary sludge,copies/g dry sludge,sars-cov-2,98.21301402022664,65.36807614428987,13.124110237600412,0,2023-10-09,NA +CA,A,YES,3,84531,2,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,11.990252632118173,506.85851970699514,22.694291389108418,0,2023-10-10,below loq +CA,A,YES,4,12078,3,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,12.07822320749399,6.6754660177788665,1.527312722305752,0,2023-10-10,NA +CA,A,YES,5,34687,3,1000000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,206.0890130822997,563.6701579726736,22.417459505654655,0,2023-10-10,NA +CA,A,YES,4,12078,4,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,8.827629865078057,27.141143146421644,22.74692593275052,0,2023-10-10,no +CA,A,YES,5,34687,4,1000000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,106.7503871808489,158.53915488992675,23.236384209749293,0,2023-10-10,yes +WA,B,Yes,8,97385,2,50000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,187.57469607722751,13.062607606257759,2.3544183792662965,0,2023-10-10,NA +WA,B,Yes,9,14396,2,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,10.409353484171133,20.324159553278403,2.1035893582037777,0,2023-10-10,no +NM,C,yes,10,27604,5,1000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,2.2843118121746437,29.79467753601584,0.08182608089372499,0,2023-10-10,no +YY,E,No,13,65174,2,13,upstream,primary sludge,copies/g dry sludge,sars-cov-2,114.01861217659278,44.98664426874732,2.6876953682622893,0,2023-10-10,NA +CA,A,YES,3,84531,2,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,663.2734171858697,10.677942366953156,8.959274078659726,0,2023-10-11,NA +CA,A,YES,4,12078,3,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,131.7833970068489,119.60530968140968,1.4542665332491322,0,2023-10-11,NA +CA,A,YES,3,84531,4,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,8.063117528710123,32.58338015893037,5.148147321826049,0,2023-10-11,NA +CA,A,YES,4,12078,4,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,8.565017967767252,68.06480612581274,4.528508915573428,0,2023-10-11,NA +WA,B,Yes,8,97385,2,50000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,14.118948492291432,5.5537078012660315,8.617411164567168,0,2023-10-11,below loq +WA,B,Yes,9,14396,2,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,481.5879615142811,8.38959308050087,1.0948457285147692,0,2023-10-11,no +NM,C,yes,10,27604,5,1000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,1.4397264322449435,7.356000064399919,0.4678975298686844,0,2023-10-11,no +CA,A,YES,3,84531,2,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,38.020652531387434,63.48119041280152,2.1186852701099914,0,2023-10-12,no +CA,A,YES,3,84531,4,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,21.341047830253036,218.88972364963215,4.467046810026822,0,2023-10-12,NA +CA,A,YES,4,12078,4,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,971.3120887776709,15.053038080001487,2.507115118268606,0,2023-10-12,no +WA,B,Yes,8,97385,2,50000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,25.231384201205923,190.71046208455218,1.962476193313247,0,2023-10-12,NA +WA,B,Yes,9,14396,2,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,39.27056319028819,22.175973558824193,4.675360330440523,0,2023-10-12,NA +XX,D,ye,12,32541,10,1000000000,wwtp,raw wastewater,copies/l wastewater,FLUAV,36.494964694765265,156.69522299381546,16.01553521662312,0,2023-10-12,no +XX,D,ye,13,65174,10,1000000000,wwtp,raw wastewater,copies/l wastewater,FLUAV,178.47675597804286,19.82343921995668,4.976382084080779,0,2023-10-12,NA +CA,A,YES,3,84531,2,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,18.18958050348871,155.8686367557096,17.966080948016497,0,2023-10-13,NA +CA,A,YES,4,12078,3,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,768.1183895694751,821.8787089884058,1.5356466209070216,0,2023-10-13,no +CA,A,YES,3,84531,4,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,70.36156803282712,8.561568178744963,7.817915122585046,0,2023-10-13,NA +CA,A,YES,4,12078,4,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,514.0444230881371,5.097355951567906,12.378544783715427,0,2023-10-13,NA +WA,B,Yes,9,14396,2,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,493.1807957339792,9.230123707760841,4.756798019876201,0,2023-10-13,NA +NM,C,yes,10,27604,5,1000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,2.296432143600992,21.031562268044375,0.575137965337441,0,2023-10-13,no +CA,A,YES,3,84531,2,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,444.7765144161529,354.6767000530684,15.813943213219234,0,2023-10-14,NA +CA,A,YES,4,12078,3,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,831.3638951426606,18.73167908393349,20.78817742863092,0,2023-10-14,NA +CA,A,YES,3,84531,4,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,10.338419058479285,200.98171909516114,17.079502270529343,0,2023-10-14,> max temp and/or hold time +WA,B,Yes,9,14396,2,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,7.070138924447792,18.622333430370695,14.140277848895584,1,2023-10-14,NA +NM,C,yes,10,27604,5,1000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,2.323167577526934,7.534409446935117,1.1065199036976288,0,2023-10-14,NA +YY,E,No,13,65174,2,13,upstream,primary sludge,copies/g dry sludge,sars-cov-2,425.8335660706917,150.26090776990105,4.75235475998427,0,2023-10-14,NA +CA,A,YES,3,84531,2,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,5.289026997867349,5.909666287558022,10.578053995734699,1,2023-10-15,result is not quantifiable +CA,A,YES,4,12078,3,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,835.4953116613802,13.67747557841826,1.9320736502046731,0,2023-10-15,below loq +CA,A,YES,3,84531,4,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,287.30468975513685,612.3138496532684,6.638613246420889,0,2023-10-15,NA +CA,A,YES,4,12078,4,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,0.7189999430558236,28.65466801461557,1.4379998861116472,1,2023-10-15,temperature not assessed upon arrival at the laboratory +WA,B,Yes,8,97385,2,50000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,6.329085813799978,15.738436730228898,12.658171627599955,1,2023-10-15,yes +WA,B,Yes,9,14396,2,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,473.8838737776612,42.308310550453726,11.931234873961118,0,2023-10-15,NA +NM,C,yes,10,27604,5,1000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,1.0623789475452994,35.90059707798774,0.48515781339315184,0,2023-10-15,NA +XX,D,ye,12,32541,10,1000000000,wwtp,raw wastewater,copies/l wastewater,FLUAV,9.838213549938805,171.94735560844063,3.7344010705537523,0,2023-10-15,NA +ZZ,F,NO,15,98436,4,8472,wwtp,raw wastewater,copies/g dry sludge,sars-cov-2,269.04774731186535,52.212859539783864,24.509626781922755,0,2023-10-15,below loq +CA,A,YES,3,84531,2,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,34.964297624296584,942.6248267945231,2.0176834482935866,0,2023-10-16,NA +CA,A,YES,3,84531,4,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,6.907761011191645,764.2355815946142,5.102738023612888,0,2023-10-16,no +CA,A,YES,4,12078,4,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,90.78763189092989,7.472361321043849,21.167902954814384,0,2023-10-16,NA +WA,B,Yes,8,97385,2,50000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,47.98991940717253,13.769259646301014,2.011818618700013,0,2023-10-16,NA +WA,B,Yes,9,14396,2,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,127.91341178261992,69.064600994677,4.329233089304012,0,2023-10-16,no +NM,C,yes,10,27604,5,1000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,2.951397655803481,316.6449504879748,1.3074940657542586,0,2023-10-16,NA +ZZ,F,NO,13,65174,2,8472,wwtp,raw wastewater,copies/g dry sludge,sars-cov-2,113.59560950476138,691.4040102554357,5.852184389026455,0,2023-10-16,no +CA,A,YES,3,84531,2,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,39.874448481740394,641.0085993329824,6.1753394778118755,0,2023-10-17,no +CA,A,YES,4,12078,3,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,0.6152240655505071,309.1674447015484,1.2304481311010143,1,2023-10-17,NA +CA,A,YES,5,34687,3,1000000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,518.0249672943361,54.91940137753456,1.3015160750831454,0,2023-10-17,NA +CA,A,YES,4,12078,4,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,32.49691525864569,92.75658600382631,3.1538397447463677,0,2023-10-17,NA +CA,A,YES,5,34687,4,1000000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,608.4254668620891,175.37466628136374,2.730008123699104,0,2023-10-17,NA +WA,B,Yes,8,97385,2,50000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,78.36970650850955,14.251845133610155,8.429632571503626,0,2023-10-17,no +NM,C,yes,10,27604,5,1000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,1.7233024884174808,163.48714684650386,0.9958442103666133,0,2023-10-17,NA +CA,A,YES,3,84531,2,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,292.6869298175846,12.505990622948287,4.009485161469891,0,2023-10-18,NA +CA,A,YES,4,12078,3,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,0.817378877961846,6.518168165614757,1.634757755923692,1,2023-10-18,yes +CA,A,YES,3,84531,4,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,53.030851844483806,140.5334778970173,10.867406378824402,0,2023-10-18,NA +CA,A,YES,4,12078,4,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,57.89600163784824,9.95468921442796,1.8302479711097623,0,2023-10-18,NA +WA,B,Yes,8,97385,2,50000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,29.412281448935417,6.143481137463285,1.8433619481520604,0,2023-10-18,NA +NM,C,yes,10,27604,5,1000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,2.5783851260394464,261.6915902157961,0.978713270314126,0,2023-10-18,NA +CA,A,YES,3,84531,2,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,213.35258068958808,42.05595602820387,2.0350607152609643,0,2023-10-19,NA +CA,A,YES,4,12078,3,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,13.50607758196845,45.15793786949418,3.0553103762400298,0,2023-10-19,temperature not assessed upon arrival at the laboratory +CA,A,YES,4,12078,4,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,127.71917258570824,522.4373687729158,18.511210948317686,0,2023-10-19,NA +WA,B,Yes,8,97385,2,50000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,9.98926177077853,12.262451858244894,3.5787431348251717,0,2023-10-19,NA +WA,B,Yes,9,14396,2,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,603.388784336611,207.82019823436622,17.963883853541887,0,2023-10-19,NA +NM,C,yes,10,27604,5,1000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,1.0544844751504978,63.76882652641839,0.8713477623648845,0,2023-10-19,NA +CA,A,YES,3,84531,2,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,371.37600701787204,7.016909186610781,11.161963492593715,0,2023-10-20,NA +CA,A,YES,4,12078,3,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,44.41903844600761,105.74379676301754,15.701504038009565,0,2023-10-20,NA +CA,A,YES,3,84531,4,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,996.030897449756,532.994223754511,23.868798786152826,0,2023-10-20,yes +CA,A,YES,4,12078,4,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,5.308416365276997,169.91720585782465,16.711984889932864,0,2023-10-20,NA +WA,B,Yes,8,97385,2,50000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,36.628662185722085,760.6327725504028,4.768728832170876,0,2023-10-20,NA +WA,B,Yes,9,14396,2,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,266.3778178386391,119.4574892471819,1.186721947459849,0,2023-10-20,result is not quantifiable +NM,C,yes,10,27604,5,1000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,0.9591834329210125,8.955841474358499,0.45011272874944175,0,2023-10-20,NA +ZZ,F,NO,14,09634,3,8472,wwtp,raw wastewater,copies/g dry sludge,sars-cov-2,334.26454326412875,84.50727995779566,2.5448210261884157,0,2023-10-20,no +CA,A,YES,3,84531,2,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,881.9425049233201,18.34611526942993,12.306178530286193,0,2023-10-21,NA +CA,A,YES,4,12078,3,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,698.4952691415095,293.4596198943334,10.432976578556037,0,2023-10-21,temperature not assessed upon arrival at the laboratory +CA,A,YES,3,84531,4,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,17.558919627044183,404.15202774521543,4.9641642969629105,0,2023-10-21,no +CA,A,YES,4,12078,4,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,460.4856693596631,22.187875277045435,1.0096818420901097,0,2023-10-21,no +WA,B,Yes,8,97385,2,50000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,709.2997542824913,74.62411662340395,12.027109262117163,0,2023-10-21,NA +NM,C,yes,10,27604,5,1000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,1.4326060086617947,16.450507665226073,0.7957900583501931,0,2023-10-21,NA +ZZ,F,NO,13,65174,2,8472,wwtp,raw wastewater,copies/g dry sludge,sars-cov-2,11.277010424795156,6.652413566939346,22.554020849590312,1,2023-10-21,NA +CA,A,YES,3,84531,2,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,90.92540499384846,91.19075416307263,5.00812944604182,0,2023-10-22,no +CA,A,YES,3,84531,4,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,233.74224921560173,34.21907949847487,2.2950298200484025,0,2023-10-22,NA +CA,A,YES,4,12078,4,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,13.953757794137852,47.64123815215977,20.744774712885185,0,2023-10-22,NA +WA,B,Yes,8,97385,2,50000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,29.37615695458643,21.32353365304303,24.091745173289443,0,2023-10-22,NA +WA,B,Yes,9,14396,2,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,34.60123935920891,86.55039327262894,1.746845097265944,0,2023-10-22,no +NM,C,yes,10,27604,5,1000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,2.7480353542311233,140.45400519411635,1.2950399004471143,0,2023-10-22,NA +CA,A,YES,3,84531,2,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,5.1957581268404285,31.740342545095242,10.391516253680857,1,2023-10-23,result is not quantifiable +CA,A,YES,4,12078,3,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,571.7233730620007,61.5580416378177,12.215821349251746,0,2023-10-23,NA +CA,A,YES,3,84531,4,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,52.25518203822464,44.10997146781117,4.875760127257766,0,2023-10-23,no +WA,B,Yes,8,97385,2,50000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,5.069009669122406,312.4628890948918,2.8906215172644414,0,2023-10-23,NA +WA,B,Yes,9,14396,2,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,9.012503361857162,131.788880911984,18.025006723714323,1,2023-10-23,NA +NM,C,yes,10,27604,5,1000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,1.1082975470742826,300.4134833785745,1.1156696951268212,0,2023-10-23,no +CA,A,YES,3,84531,2,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,309.45075397965945,64.66287637434947,22.557679957367,0,2023-10-24,NA +CA,A,YES,5,34687,3,1000000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,2.76090258095095,37.70967410350615,5.5218051619019,1,2023-10-24,yes +CA,A,YES,3,84531,4,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,71.3088633548584,250.45303944975612,2.7755499950332636,0,2023-10-24,NA +CA,A,YES,4,12078,4,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,29.667120199120983,31.21637045526279,7.226346554564121,0,2023-10-24,NA +CA,A,YES,5,34687,4,1000000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,87.45380790460942,6.861979449729165,7.862762685921604,0,2023-10-24,NA +WA,B,Yes,8,97385,2,50000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,377.1866824467282,53.1831159463672,10.887618473014689,0,2023-10-24,temperature not assessed upon arrival at the laboratory +WA,B,Yes,9,14396,2,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,100.33135117141322,935.8984934341171,1.104547165455358,0,2023-10-24,NA +NM,C,yes,10,27604,5,1000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,2.447357451632415,993.3049975674772,0.6964236539834632,0,2023-10-24,no +YY,E,No,14,09634,3,13,upstream,primary sludge,copies/g dry sludge,sars-cov-2,7.876483345830302,600.8077486803925,6.542890033523782,0,2023-10-24,NA +CA,A,YES,3,84531,2,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,5.297762944187445,66.20056690250102,16.282743464093173,0,2023-10-25,NA +CA,A,YES,4,12078,3,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,195.91191041260308,290.3665167377153,5.5177050960528184,0,2023-10-25,NA +CA,A,YES,3,84531,4,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,5.47625848293571,952.9421341352993,1.9998292009158356,0,2023-10-25,no +CA,A,YES,4,12078,4,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,19.29051370757508,19.419171942994353,1.2563711246328657,0,2023-10-25,NA +WA,B,Yes,8,97385,2,50000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,681.5040502626623,7.0117077661785014,3.852579978785611,0,2023-10-25,NA +WA,B,Yes,9,14396,2,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,8.705326567473751,500.6064201342458,7.388921007891184,0,2023-10-25,NA +NM,C,yes,10,27604,5,1000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,1.26942115663288,8.995025095420347,1.2401015229816585,0,2023-10-25,> max temp and/or hold time +XX,D,ye,15,98436,10,1000000000,wwtp,raw wastewater,copies/l wastewater,FLUAV,6.428228368624624,198.56343615193552,1.0266461386453336,0,2023-10-25,NA +ZZ,F,NO,15,98436,4,8472,wwtp,raw wastewater,copies/g dry sludge,sars-cov-2,42.92907788204936,805.887785002305,1.1724784203148468,0,2023-10-25,NA +CA,A,YES,3,84531,2,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,739.6002492749661,83.94212948183987,3.126052978669926,0,2023-10-26,NA +CA,A,YES,3,84531,4,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,721.5120665044292,589.2979074291899,5.598324463852309,0,2023-10-26,NA +CA,A,YES,4,12078,4,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,209.6663803866837,398.77366861863317,1.1622040955046566,0,2023-10-26,NA +WA,B,Yes,8,97385,2,50000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,172.35772258650223,85.59644730246501,18.75817332003118,0,2023-10-26,NA +WA,B,Yes,9,14396,2,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,23.53691085291629,679.5261838838637,1.5328592280460662,0,2023-10-26,NA +NM,C,yes,10,27604,5,1000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,2.3924379144472154,5.7610450138235505,0.7506544627129327,0,2023-10-26,no +XX,D,ye,14,09634,10,1000000000,wwtp,raw wastewater,copies/l wastewater,FLUAV,1.140998244207903,83.13074347049407,2.281996488415806,1,2023-10-26,NA +ZZ,F,NO,15,98436,4,8472,wwtp,raw wastewater,copies/g dry sludge,sars-cov-2,58.958967756575724,217.0814582381969,6.731468772528137,0,2023-10-26,no +CA,A,YES,4,12078,3,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,1.788096450288146,781.9842754351879,3.576192900576292,1,2023-10-27,NA +CA,A,YES,3,84531,4,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,13.029781811123328,38.41041913635569,13.543257773318713,0,2023-10-27,NA +WA,B,Yes,8,97385,2,50000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,11.749268768284553,7.895339330564046,7.320231659001802,0,2023-10-27,no +WA,B,Yes,9,14396,2,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,251.07084085112646,10.931221205892783,1.148475330539271,0,2023-10-27,NA +NM,C,yes,10,27604,5,1000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,1.1102710186452773,542.6389353833116,1.3195624061201137,0,2023-10-27,NA +XX,D,ye,13,65174,10,1000000000,wwtp,raw wastewater,copies/l wastewater,FLUAV,2.9626077565551148,15.742030099352489,5.9252155131102295,1,2023-10-27,NA +CA,A,YES,3,84531,2,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,23.151357588493724,12.85901710353788,9.497656434414187,0,2023-10-28,NA +CA,A,YES,4,12078,3,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,10.128274268275781,136.6203139538166,20.256548536551563,1,2023-10-28,NA +CA,A,YES,3,84531,4,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,0.5309558335251195,21.499993526558665,1.061911667050239,1,2023-10-28,NA +CA,A,YES,4,12078,4,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,691.7570647807544,784.7243574747406,16.46625356463624,0,2023-10-28,below loq +WA,B,Yes,9,14396,2,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,24.34123626792319,20.80316131189279,1.2752781453619355,0,2023-10-28,y +NM,C,yes,10,27604,5,1000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,2.1116601897510496,18.642171228660473,0.8922795323498025,0,2023-10-28,NA +XX,D,ye,14,09634,10,1000000000,wwtp,raw wastewater,copies/l wastewater,FLUAV,24.41487986435696,22.66144922848546,3.317744367366803,0,2023-10-28,NA +CA,A,YES,3,84531,2,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,580.5611124011879,272.3514115460085,2.831896459437785,0,2023-10-29,NA +CA,A,YES,4,12078,3,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,45.81199912874592,144.3482380365069,1.3314936241432842,0,2023-10-29,NA +CA,A,YES,3,84531,4,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,23.217279629578062,24.72135487735582,5.815106208956857,0,2023-10-29,NA +WA,B,Yes,8,97385,2,50000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,170.89055791054858,51.569700948204755,5.604883533987637,0,2023-10-29,NA +WA,B,Yes,9,14396,2,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,2.393795746246259,46.993642641220326,4.787591492492518,1,2023-10-29,no +NM,C,yes,10,27604,5,1000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,1.263817265872908,165.05810728692956,1.1040384534075787,0,2023-10-29,NA +YY,E,No,15,98436,4,13,upstream,primary sludge,copies/g dry sludge,sars-cov-2,459.54128721766295,524.3957445798312,14.762828753023754,0,2023-10-29,no +CA,A,YES,3,84531,2,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,769.7345508091349,815.2777657853723,13.64851103358145,0,2023-10-30,y +CA,A,YES,4,12078,3,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,33.78582222711176,5.029160208468522,3.2029295831144675,0,2023-10-30,no +CA,A,YES,3,84531,4,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,22.983090454428666,297.0109976498183,24.405735080988762,0,2023-10-30,NA +CA,A,YES,4,12078,4,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,9.984746426574418,355.8014579187878,11.1482373630055,0,2023-10-30,NA +WA,B,Yes,8,97385,2,50000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,6.752539906990167,5.600656476576822,2.9906492093018584,0,2023-10-30,NA +WA,B,Yes,9,14396,2,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,5.035310492720919,33.126685324204594,19.6514526523485,0,2023-10-30,no +NM,C,yes,10,27604,5,1000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,1.2484154397811835,14.676253632432395,1.1470626654234641,0,2023-10-30,> max temp and/or hold time +ZZ,F,NO,14,09634,3,8472,wwtp,raw wastewater,copies/g dry sludge,sars-cov-2,36.94002793537277,508.1924770040036,8.706057221494842,0,2023-10-30,NA +CA,A,YES,3,84531,2,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,269.26720584969314,16.67380736422907,2.6969377942786568,0,2023-10-31,NA +CA,A,YES,4,12078,3,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,899.9166179825222,183.52784086245305,12.641026403363474,0,2023-10-31,NA +CA,A,YES,5,34687,3,1000000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,6.394103512602598,573.0906631170873,12.788207025205196,1,2023-10-31,NA +CA,A,YES,3,84531,4,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,30.06847239697734,75.69458011229106,2.969114104493046,0,2023-10-31,NA +CA,A,YES,5,34687,4,1000000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,0.5302541969725236,129.378000830073,1.0605083939450473,1,2023-10-31,NA +WA,B,Yes,8,97385,2,50000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,504.75228370348555,369.5377132902841,9.387637614836358,0,2023-10-31,NA +WA,B,Yes,9,14396,2,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,583.5991365062471,5.529402768771192,14.452899224937328,0,2023-10-31,y +XX,D,ye,13,65174,10,1000000000,wwtp,raw wastewater,copies/l wastewater,FLUAV,10.051240027085301,119.16473266852991,20.102480054170602,1,2023-10-31,NA +CA,A,YES,3,84531,2,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,28.69703924526375,11.464713320177978,10.731973839165256,0,2023-11-01,NA +CA,A,YES,4,12078,3,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,42.923515876257945,249.02731312055343,2.2749360533587684,0,2023-11-01,NA +CA,A,YES,3,84531,4,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,228.89090730823332,52.21791522323911,12.187661915377944,0,2023-11-01,no +CA,A,YES,4,12078,4,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,332.12831507522054,121.66825807427423,7.861778142216846,0,2023-11-01,y +WA,B,Yes,8,97385,2,50000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,6.562497749214034,24.22970644310019,3.867880211440783,0,2023-11-01,NA +WA,B,Yes,9,14396,2,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,46.6438871417938,18.795635494280692,1.0699955012597828,0,2023-11-01,NA +NM,C,yes,10,27604,5,1000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,0.8204175500149606,16.34123446859702,0.03914264758524947,0,2023-11-01,temperature not assessed upon arrival at the laboratory +CA,A,YES,3,84531,2,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,95.47047432725927,288.6295570361401,1.3690630660390806,0,2023-11-02,NA +CA,A,YES,4,12078,3,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,26.00997906148354,214.99061120351823,19.22811980611785,0,2023-11-02,y +CA,A,YES,4,12078,4,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,1.0414183344111156,71.86994693017198,2.0828366688222313,1,2023-11-02,NA +WA,B,Yes,8,97385,2,50000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,354.14187444993246,178.36221651011323,21.79070109459368,0,2023-11-02,no +WA,B,Yes,9,14396,2,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,3.7807274080380058,116.667897580627,7.5614548160760116,1,2023-11-02,no +NM,C,yes,10,27604,5,1000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,2.3902822572381686,33.72288275476988,0.7757594851468794,0,2023-11-02,no +CA,A,YES,3,84531,2,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,0.6773663898890263,200.96973535388744,1.3547327797780526,1,2023-11-03,NA +CA,A,YES,4,12078,3,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,121.52269246280062,13.769447562652998,5.849950742033164,0,2023-11-03,no +CA,A,YES,3,84531,4,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,16.84398544774963,383.31080426744256,4.086622753380791,0,2023-11-03,yes +CA,A,YES,4,12078,4,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,39.000009246879166,130.0008048991091,9.846731535460002,0,2023-11-03,NA +WA,B,Yes,8,97385,2,50000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,10.532784430810398,28.57516435962721,14.642323982256304,0,2023-11-03,NA +WA,B,Yes,9,14396,2,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,63.258855605650936,7.33243729767299,14.635115488163226,0,2023-11-03,NA +NM,C,yes,10,27604,5,1000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,1.468526574945611,156.51548885880672,1.0738855193706154,0,2023-11-03,no +XX,D,ye,13,65174,10,1000000000,wwtp,raw wastewater,copies/l wastewater,FLUAV,233.699612361303,89.1419812021984,19.823576435504965,0,2023-11-03,NA +CA,A,YES,3,84531,2,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,6.250746368711096,12.080731555409574,12.501492737422192,1,2023-11-04,no +CA,A,YES,4,12078,3,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,60.734476847453664,99.66198503857115,3.7493705219237743,0,2023-11-04,NA +CA,A,YES,3,84531,4,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,0.7799320699735204,467.3744394399941,1.5598641399470408,1,2023-11-04,temperature not assessed upon arrival at the laboratory +CA,A,YES,4,12078,4,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,41.353064095648925,211.98303591158268,24.692401665883022,0,2023-11-04,NA +WA,B,Yes,8,97385,2,50000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,94.2678381257388,246.33825157228895,7.020286492550806,0,2023-11-04,NA +WA,B,Yes,9,14396,2,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,138.04075862539347,43.157070438302654,12.281487212140066,0,2023-11-04,no +NM,C,yes,10,27604,5,1000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,1.758385091950957,11.36416749982378,0.035947124101505544,0,2023-11-04,NA +ZZ,F,NO,14,09634,3,8472,wwtp,raw wastewater,copies/g dry sludge,sars-cov-2,117.02328638635942,14.523259510070451,1.0067504990671456,0,2023-11-04,NA +CA,A,YES,3,84531,2,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,44.88602489025539,8.272052534180705,1.2868955707053842,0,2023-11-05,NA +CA,A,YES,4,12078,3,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,48.58861525749648,846.4470200747313,1.4227710519469416,0,2023-11-05,NA +CA,A,YES,3,84531,4,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,8.311333643471128,10.980412346399168,6.158218214457452,0,2023-11-05,NA +CA,A,YES,4,12078,4,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,16.618376997399402,66.21018929400746,3.961933654951957,0,2023-11-05,NA +WA,B,Yes,8,97385,2,50000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,1.222659822594126,389.8313052784647,2.445319645188252,1,2023-11-05,NA +WA,B,Yes,9,14396,2,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,104.96850856807576,260.57750538917736,2.9562985989831194,0,2023-11-05,NA +XX,D,ye,14,09634,10,1000000000,wwtp,raw wastewater,copies/l wastewater,FLUAV,937.0771105159462,110.7558617499176,10.11368872182712,0,2023-11-05,result is not quantifiable +CA,A,YES,3,84531,2,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,1.250101091272628,9.76231345246801,2.500202182545256,1,2023-11-06,NA +CA,A,YES,3,84531,4,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,36.33283874016626,155.07444948869752,21.18515612958183,0,2023-11-06,NA +CA,A,YES,4,12078,4,200000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,49.60200830858396,14.96239623181222,7.805525767505929,0,2023-11-06,NA +WA,B,Yes,8,97385,2,50000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,99.45035538605052,11.63330921074691,1.0801383077051412,0,2023-11-06,result is not quantifiable +WA,B,Yes,9,14396,2,600000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,2.572009643690199,79.23499776086382,5.144019287380398,1,2023-11-06,NA +NM,C,yes,10,27604,5,1000,wwtp,post grit removal,log10 copies/l wastewater,sars-cov-2,0.7525598001813789,889.6181725911234,0.32341560339452874,0,2023-11-06,NA +CA,A,YES,1,"04971,36910",1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,8.054115836944005,55.04513393435594,7.443448737491519,0,2023-01-01,NA +CA,A,YES,1,"04971,36910",1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,318.5878534041641,32.51171069583552,1.9747551214710093,0,2023-01-02,no +CA,A,YES,1,"04971,36910",1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,8.045477208790313,40.27750071592156,3.3258959869434412,0,2023-01-03,no +CA,A,YES,1,"04971,36910",1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,1.7936991416491015,7.336498654648253,3.587398283298203,1,2023-01-04,NA +CA,A,YES,1,"04971,36910",1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,0.6741893206279964,20.52304747265837,1.3483786412559928,1,2023-01-05,no +CA,A,YES,1,"04971,36910",1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,11.917227178713146,18.02822613418176,2.7315453798288956,0,2023-01-06,NA +CA,A,YES,1,"04971,36910",1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,521.4482122070327,177.2417430876511,1.0293360181042364,0,2023-01-07,NA +CA,A,YES,1,"04971,36910",1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,131.30679750544832,359.54013723174427,1.7967577817836142,0,2023-01-08,NA +CA,A,YES,1,"04971,36910",1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,10.145581141014883,38.471620515982444,4.204687765288971,0,2023-01-09,NA +CA,A,YES,1,"04971,36910",1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,25.78457079057178,5.312387660424927,8.871589067317199,0,2023-01-10,NA +CA,A,YES,1,"04971,36910",1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,12.286683603569443,355.21081413629145,24.573367207138887,1,2023-01-11,no +CA,A,YES,1,"04971,36910",1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,5.805642914082082,24.45507289087341,2.313825261175917,0,2023-01-12,NA +CA,A,YES,1,"04971,36910",1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,164.05594243893796,395.07512339116994,6.521506611074547,0,2023-01-13,NA +CA,A,YES,1,"04971,36910",1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,2.8135112007183563,43.47218034808254,5.6270224014367125,1,2023-01-15,NA +CA,A,YES,1,"04971,36910",1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,632.8401179640316,12.224419039706119,2.4220839813602884,0,2023-01-16,NA +CA,A,YES,1,"04971,36910",1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,236.3829208832575,70.41303977777574,22.48688884133083,0,2023-01-17,no +CA,A,YES,1,"04971,36910",1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,289.68812960182566,356.71546463539164,5.989158818609282,0,2023-01-18,NA +CA,A,YES,1,"04971,36910",1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,7.79602795207444,19.92412929908597,1.4943600748960477,0,2023-01-19,NA +CA,A,YES,1,"04971,36910",1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,103.2642046732852,5.814870566547347,11.602114739709226,0,2023-01-20,NA +CA,A,YES,1,"04971,36910",1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,260.509256741051,749.4630810279345,6.307817618056269,0,2023-01-21,NA +CA,A,YES,1,"04971,36910",1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,40.45204295439143,13.660265247606043,13.910212931525614,0,2023-01-22,NA +CA,A,YES,1,"04971,36910",1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,17.666520139477633,10.127875083418793,19.803401555625793,0,2023-01-23,NA +CA,A,YES,1,"04971,36910",1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,328.77787163502705,83.36518324074643,1.2192699469400203,0,2023-01-24,NA +CA,A,YES,1,"04971,36910",1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,138.33302679956105,360.73327421400006,21.9041912020723,0,2023-01-25,NA +CA,A,YES,1,"04971,36910",1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,9.328578762817422,8.84809728269201,3.7340129757787976,0,2023-01-26,NA +CA,A,YES,1,"04971,36910",1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,6.624234663444247,676.3758121890099,13.248469326888493,1,2023-01-27,NA +CA,A,YES,1,"04971,36910",1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,217.18311574688119,210.68691679343732,1.083315522601008,0,2023-01-28,> max temp and/or hold time +CA,A,YES,1,"04971,36910",1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,289.6888018012041,12.186631110177862,5.699175937236678,0,2023-01-29,no +CA,A,YES,1,"04971,36910",1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,2.4337899540452472,541.6026112926763,4.8675799080904945,1,2023-01-30,NA +CA,A,YES,1,"04971,36910",1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,13.82721164208279,6.021428455246692,1.0250892949476675,0,2023-01-31,NA +CA,A,YES,1,"04971,36910",1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,66.73897564847593,6.38105523650712,3.8713058962796816,0,2023-02-01,NA +CA,A,YES,1,"04971,36910",1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,13.047102928555004,51.050394457828354,20.101885729743387,0,2023-02-02,below loq +CA,A,YES,1,"04971,36910",1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,25.71421568374014,238.04162383662378,10.183439487702529,0,2023-02-04,no +CA,A,YES,1,"04971,36910",1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,689.8299461380375,88.05279343129827,3.073115833003546,0,2023-02-05,NA +CA,A,YES,1,"04971,36910",1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,487.1800743189516,26.80129255300873,13.729088207939094,0,2023-02-06,no +CA,A,YES,1,"04971,36910",1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,22.145805633858085,53.19228646653339,1.796493213395071,0,2023-02-07,y +CA,A,YES,1,"04971,36910",1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,77.42659147330004,6.05283506543072,2.349344073250793,0,2023-02-08,NA +CA,A,YES,1,"04971,36910",1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,812.9826106403942,36.26527894451485,9.318355394326483,0,2023-02-09,NA +CA,A,YES,1,"04971,36910",1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,612.8199257092496,264.1565679134045,15.825119680643422,0,2023-02-10,NA +CA,A,YES,1,"04971,36910",1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,314.7503986972577,355.80233751648694,12.63157077178409,0,2023-02-11,NA +CA,A,YES,1,"04971,36910",1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,81.25881347500219,653.9280096040354,2.6648826415257783,0,2023-02-13,NA +CA,A,YES,1,"04971,36910",1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,2.50735666511393,333.1255535218914,5.01471333022786,1,2023-02-14,NA +CA,A,YES,1,"04971,36910",1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,5.052700248787683,15.74826735545662,10.105400497575365,1,2023-02-15,no +CA,A,YES,1,"04971,36910",1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,6.804398813682943,89.56254239127894,13.608797627365886,1,2023-02-16,NA +CA,A,YES,1,"04971,36910",1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,14.382556035028882,97.66500858852643,19.278770342928855,0,2023-02-17,NA +CA,A,YES,1,"04971,36910",1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,9.475867017783791,246.73122089405535,18.951734035567583,1,2023-02-18,NA +CA,A,YES,1,"04971,36910",1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,66.40146942636754,21.070560662823272,18.06404763401332,0,2023-02-20,NA +CA,A,YES,1,"04971,36910",1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,316.15662584248014,58.139235913183434,17.60328449458461,0,2023-02-21,NA +CA,A,YES,1,"04971,36910",1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,97.43244440599466,166.25369812836306,3.073760381121263,0,2023-02-22,NA +CA,A,YES,1,"04971,36910",1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,387.1038296292479,81.13681422221168,4.537393024553714,0,2023-02-23,NA +CA,A,YES,1,"04971,36910",1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,10.859558090606194,467.0747242248433,23.913992786438158,0,2023-02-24,no +CA,A,YES,1,"04971,36910",1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,128.54700185544306,205.41718468186758,3.8516288229128457,0,2023-02-25,NA +CA,A,YES,1,"04971,36910",1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,22.112115170593434,79.0814556891465,7.82263396630389,0,2023-02-26,NA +CA,A,YES,1,"04971,36910",1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,30.137088470279455,494.0285027347975,3.0394003409320747,0,2023-02-27,NA +CA,A,YES,1,"04971,36910",1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,543.1175903211706,615.6357607608519,4.409013104344052,0,2023-02-28,NA +CA,A,YES,1,"04971,36910",1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,13.251298657542206,94.02223533504265,10.272813536625328,0,2023-03-01,NA +CA,A,YES,1,"04971,36910",1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,6.080179057593754,7.901916299409575,5.366037941447647,0,2023-03-02,NA +CA,A,YES,1,"04971,36910",1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,31.088129916068763,5.6395919830043235,1.1282655157766144,0,2023-03-03,NA +CA,A,YES,1,"04971,36910",1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,158.55850221202064,369.6975606751693,7.462109862894364,0,2023-03-04,NA +CA,A,YES,1,"04971,36910",1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,10.754474756704594,255.4304579860096,1.8140997306783964,0,2023-03-05,no +CA,A,YES,1,"04971,36910",1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,708.0987990107047,47.13318907166913,12.138428684072297,0,2023-03-06,NA +CA,A,YES,1,"04971,36910",1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,199.9498140556388,11.84964334047132,14.718438267591178,0,2023-03-07,NA +CA,A,YES,1,"04971,36910",1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,802.3550464348742,93.8516436328436,1.7587376183625947,0,2023-03-08,NA +CA,A,YES,1,"04971,36910",1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,565.5905896213546,10.326294021590266,7.371266777590111,0,2023-03-09,NA +CA,A,YES,1,"04971,36910",1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,115.39074259807938,235.9585444770106,20.74287530120597,0,2023-03-10,NA +CA,A,YES,1,"04971,36910",1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,458.2185722722606,81.68467683478113,1.567411435737819,0,2023-03-11,NA +CA,A,YES,1,"04971,36910",1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,166.94136827508945,5.539390170211123,7.808403195655328,0,2023-03-12,NA +CA,A,YES,1,"04971,36910",1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,792.0931373110479,8.762107070715258,8.618496350940111,0,2023-03-13,NA +CA,A,YES,1,"04971,36910",1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,4.374859641075281,57.47609650597885,8.749719282150561,1,2023-03-14,NA +CA,A,YES,1,"04971,36910",1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,82.7827970998116,15.184501160544444,2.1389600988131803,0,2023-03-15,NA +CA,A,YES,1,"04971,36910",1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,8.672654771899738,5.454841947027963,14.751477956518597,0,2023-03-16,NA +CA,A,YES,1,"04971,36910",1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,29.246057749763843,41.93822503967432,1.7268634206436253,0,2023-03-17,NA +CA,A,YES,1,"04971,36910",1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,87.32050764429154,10.643799430398044,1.0545988000977582,0,2023-03-18,no +CA,A,YES,1,"04971,36910",1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,0.5448361754382418,37.791788520690055,1.0896723508764836,1,2023-03-19,no +CA,A,YES,1,"04971,36910",1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,33.394745995145854,39.31634484551162,17.627843578230518,0,2023-03-20,NA +CA,A,YES,1,"04971,36910",1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,72.91747979089877,19.917617521251366,13.47828358468021,0,2023-03-21,NA +CA,A,YES,1,"04971,36910",1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,996.1543331368099,9.02367826861503,1.2487248394080674,0,2023-03-22,NA +CA,A,YES,1,"04971,36910",1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,13.017321446475458,271.37718198121854,18.40013057788529,0,2023-03-23,temperature not assessed upon arrival at the laboratory +CA,A,YES,1,"04971,36910",1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,57.19019343505626,10.285016207169908,22.79070573429898,0,2023-03-24,NA +CA,A,YES,1,"04971,36910",1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,218.27243814724895,312.00042051144555,20.229522333360077,0,2023-03-25,NA +CA,A,YES,1,"04971,36910",1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,8.807374893730517,9.54018147503281,6.126507865610079,0,2023-03-26,NA +CA,A,YES,1,"04971,36910",1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,73.4268981868111,131.858283598738,3.4136857352345937,0,2023-03-27,NA +CA,A,YES,1,"04971,36910",1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,6.682849019380353,282.9619057651956,1.0279225570177555,0,2023-03-28,NA +CA,A,YES,1,"04971,36910",1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,75.62091664975829,21.40665496542848,13.264487438945563,0,2023-03-29,NA +CA,A,YES,1,"04971,36910",1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,1.6324382532577906,819.4494291923656,3.264876506515581,1,2023-03-30,NA +CA,A,YES,1,"04971,36910",1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,35.20532643073089,9.248725349979356,15.886088075205711,0,2023-03-31,NA +CA,A,YES,1,"04971,36910",1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,390.3741886882092,194.96633941221833,11.890457486370696,0,2023-04-01,NA +CA,A,YES,1,"04971,36910",1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,9.059006455958267,10.381219237878499,18.118012911916534,1,2023-04-02,NA +CA,A,YES,1,"04971,36910",1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,590.6204299820803,39.18326309363071,7.69840360708392,0,2023-04-03,NA +CA,A,YES,1,"04971,36910",1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,282.5664507150931,99.44932473136679,5.496039422038657,0,2023-04-04,NA +CA,A,YES,1,"04971,36910",1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,56.97307164298722,224.66257416062479,16.17596585536359,0,2023-04-05,NA +CA,A,YES,1,"04971,36910",1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,784.899042119334,8.014518989701141,1.7527365477504029,0,2023-04-06,y +CA,A,YES,1,"04971,36910",1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,157.90319031704828,163.90882472260637,7.625228932162711,0,2023-04-07,NA +CA,A,YES,1,"04971,36910",1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,18.741526594607375,6.286134977955453,17.90925875056528,0,2023-04-08,NA +CA,A,YES,1,"04971,36910",1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,8.166963197060474,177.94206519240126,6.618345313066703,0,2023-04-09,NA +CA,A,YES,1,"04971,36910",1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,210.509691295845,624.5578615281554,17.273425323465588,0,2023-04-10,NA +CA,A,YES,1,"04971,36910",1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,260.17284607415934,327.2116063875679,1.4571587493996616,0,2023-04-11,> max temp and/or hold time +CA,A,YES,1,"04971,36910",1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,5.236194326347224,533.1325503441246,6.9827168044249746,0,2023-04-12,no +CA,A,YES,1,"04971,36910",1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,7.927165967825946,52.418847144635976,1.9441287429439593,0,2023-04-14,NA +CA,A,YES,1,"04971,36910",1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,8.498960817154165,6.087806077690802,3.7936991995095233,0,2023-04-15,result is not quantifiable +CA,A,YES,1,"04971,36910",1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,161.50883552236422,89.71084760429939,10.168423259482495,0,2023-04-16,NA +CA,A,YES,1,"04971,36910",1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,24.00532686771313,22.516942505563232,21.438766889349207,0,2023-04-17,NA +CA,A,YES,1,"04971,36910",1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,348.3430684735925,932.7512717430938,14.691412369816117,0,2023-04-18,NA +CA,A,YES,1,"04971,36910",1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,568.4551169471282,921.4530009141888,3.7972934877373823,0,2023-04-20,NA +CA,A,YES,1,"04971,36910",1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,466.6239673139718,219.33386254534756,3.664561808956291,0,2023-04-22,NA +CA,A,YES,1,"04971,36910",1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,265.93446063582985,5.607476230855946,10.197305945712793,0,2023-04-23,NA +CA,A,YES,1,"04971,36910",1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,11.963077032320644,13.399709308986886,7.498009327668975,0,2023-04-25,NA +CA,A,YES,1,"04971,36910",1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,66.21163639175714,114.48596232947426,16.12191225075471,0,2023-04-26,NA +CA,A,YES,1,"04971,36910",1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,208.04588021116533,103.55688479513707,2.691806067533322,0,2023-04-27,NA +CA,A,YES,1,"04971,36910",1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,6.999970333652621,291.4020800306635,1.7604127194300565,0,2023-04-28,NA +CA,A,YES,1,"04971,36910",1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,560.0658426399126,100.00078493635858,11.271197957537696,0,2023-04-29,NA +CA,A,YES,1,"04971,36910",1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,3.32450934958347,235.98845261349894,6.64901869916694,1,2023-04-30,NA +CA,A,YES,1,"04971,36910",1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,126.39909080021351,157.10491649611788,3.067204511505263,0,2023-05-01,NA +CA,A,YES,1,"04971,36910",1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,13.167240820226265,9.647033797931563,11.831287615485943,0,2023-05-02,no +CA,A,YES,1,"04971,36910",1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,75.45453801139261,174.94212865353848,2.1148952660069806,0,2023-05-03,NA +CA,A,YES,1,"04971,36910",1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,15.586661702644017,486.2775228649737,15.35829976263435,0,2023-05-04,NA +CA,A,YES,1,"04971,36910",1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,741.2838545573932,6.512754463154311,18.960706734517032,0,2023-05-05,NA +CA,A,YES,1,"04971,36910",1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,8.48954291484976,39.35578831757263,2.0469024097072297,0,2023-05-06,below loq +CA,A,YES,1,"04971,36910",1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,58.809195500389826,152.84300810289068,3.3717870985386202,0,2023-05-07,y +CA,A,YES,1,"04971,36910",1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,130.27569233977755,439.6737693684355,23.251322844723248,0,2023-05-08,NA +CA,A,YES,1,"04971,36910",1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,303.5259117307216,618.6713389578282,13.139319300179181,0,2023-05-11,no +CA,A,YES,1,"04971,36910",1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,10.540565710845435,5.703475703147575,21.08113142169087,1,2023-05-12,NA +CA,A,YES,1,"04971,36910",1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,86.93925031392622,61.31553298100391,10.500151659860256,0,2023-05-13,NA +CA,A,YES,1,"04971,36910",1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,279.89140422897793,192.9022700619561,20.297971158600266,0,2023-05-14,NA +CA,A,YES,1,"04971,36910",1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,601.9975510440462,201.68876689786737,19.109713023668867,0,2023-05-15,temperature not assessed upon arrival at the laboratory +CA,A,YES,1,"04971,36910",1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,5.399639999551275,32.131818045827,2.5192556599572704,0,2023-05-16,NA +CA,A,YES,1,"04971,36910",1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,38.82271578473764,377.3869222461186,2.863484552043326,0,2023-05-17,NA +CA,A,YES,1,"04971,36910",1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,146.38831947568443,172.829198192071,16.482343278862913,0,2023-05-18,NA +CA,A,YES,1,"04971,36910",1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,5.002846167617119,16.50332136529176,10.005692335234238,1,2023-05-19,NA +CA,A,YES,1,"04971,36910",1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,865.8282311572634,176.39108944087667,6.302458811424311,0,2023-05-20,no +CA,A,YES,1,"04971,36910",1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,224.07955465704714,11.129784849158769,4.19206971903038,0,2023-05-22,NA +CA,A,YES,1,"04971,36910",1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,56.435957943803174,73.85178932618149,18.18520482551056,0,2023-05-23,NA +CA,A,YES,1,"04971,36910",1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,13.157355805362196,153.7932692351134,1.7738913709877437,0,2023-05-24,> max temp and/or hold time +CA,A,YES,1,"04971,36910",1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,5.827507281480294,5.614635812615721,17.492705146845655,0,2023-05-25,NA +CA,A,YES,1,"04971,36910",1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,991.974730854174,43.804695804123156,13.012253586755072,0,2023-05-26,NA +CA,A,YES,1,"04971,36910",1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,3.8722209834809966,11.874904724137725,7.744441966961993,1,2023-05-28,below loq +CA,A,YES,1,"04971,36910",1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,134.56052411216203,68.35616771771406,4.597724848363917,0,2023-05-29,NA +CA,A,YES,1,"04971,36910",1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,5.221786941619451,6.320443859538269,1.3314827910739935,0,2023-05-30,NA +CA,A,YES,1,"04971,36910",1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,35.06678316756629,913.5850921445049,1.581489785807367,0,2023-05-31,no +CA,A,YES,1,"04971,36910",1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,13.972497746966296,14.097585562510597,9.951165894532037,0,2023-06-01,NA +CA,A,YES,1,"04971,36910",1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,8.233667313492495,11.157350694770544,6.377286299468939,0,2023-06-03,NA +CA,A,YES,1,"04971,36910",1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,132.28786729786012,471.13289773261994,14.410948003082948,0,2023-06-04,NA +CA,A,YES,1,"04971,36910",1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,11.883770711884882,159.78548776673784,8.191422399765973,0,2023-06-08,NA +CA,A,YES,1,"04971,36910",1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,3.062617732302472,20.095139119442187,6.125235464604944,1,2023-06-09,no +CA,A,YES,1,"04971,36910",1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,60.104711478529254,5.608352642439963,7.698766320975435,0,2023-06-10,temperature not assessed upon arrival at the laboratory +CA,A,YES,1,"04971,36910",1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,121.00486682545225,41.39264660940628,17.858118605185556,0,2023-06-11,NA +CA,A,YES,1,"04971,36910",1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,285.1635796114686,104.64656733085897,4.308534565625693,0,2023-06-12,NA +CA,A,YES,1,"04971,36910",1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,327.3311918923494,55.86301140342441,4.117629955751652,0,2023-06-13,NA +CA,A,YES,1,"04971,36910",1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,290.0672745142428,144.404870087013,4.451449957611034,0,2023-06-14,NA +CA,A,YES,1,"04971,36910",1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,47.08489285130636,610.0219388403381,5.917075486246098,0,2023-06-15,NA +CA,A,YES,1,"04971,36910",1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,96.40070617203892,9.540281193184393,2.460538013144499,0,2023-06-16,NA +CA,A,YES,1,"04971,36910",1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,24.243481229112778,10.742240797003861,12.503952415457558,0,2023-06-17,NA +CA,A,YES,1,"04971,36910",1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,493.18207031912567,198.36030538085393,11.390638088057084,0,2023-06-18,no +CA,A,YES,1,"04971,36910",1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,47.75410667127288,79.12621599215444,1.1900373986193729,0,2023-06-20,NA +CA,A,YES,1,"04971,36910",1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,195.9009104592535,15.002948692432616,9.991368118457647,0,2023-06-21,no +CA,A,YES,1,"04971,36910",1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,4.0966415673043555,113.83743480845315,8.193283134608711,1,2023-06-22,NA +CA,A,YES,1,"04971,36910",1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,22.573421285399924,949.051520476134,3.535377539088544,0,2023-06-24,NA +CA,A,YES,1,"04971,36910",1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,347.2523830430573,351.4116188477411,1.6635794733977365,0,2023-06-26,NA +CA,A,YES,1,"04971,36910",1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,25.858403322348636,28.242645711496458,19.453488209921662,0,2023-06-27,NA +CA,A,YES,1,"04971,36910",1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,123.69060013469947,61.01617619804707,8.720083252613676,0,2023-06-28,result is not quantifiable +CA,A,YES,1,"04971,36910",1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,10.019380902282103,12.758316383889646,3.589310259088568,0,2023-06-29,NA +CA,A,YES,1,"04971,36910",1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,935.1444950109765,12.244724479173952,1.7206828159565872,0,2023-06-30,NA +CA,A,YES,1,"04971,36910",1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,73.32340920826366,287.4803390320116,2.0635163304229067,0,2023-07-01,NA +CA,A,YES,1,"04971,36910",1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,0.6849727543487996,523.395297367423,1.3699455086975991,1,2023-07-02,NA +CA,A,YES,1,"04971,36910",1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,511.61411497329766,62.63682789928954,3.5404402095624605,0,2023-07-03,no +CA,A,YES,1,"04971,36910",1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,541.1218770752313,203.98987755029955,13.794798866774372,0,2023-07-04,NA +CA,A,YES,1,"04971,36910",1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,24.388026570905993,981.6321747909421,6.177275606147465,0,2023-07-05,NA +CA,A,YES,1,"04971,36910",1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,28.11953184261253,99.94044777851639,2.794650281477016,0,2023-07-06,NA +CA,A,YES,1,"04971,36910",1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,625.5325312472202,319.7882667185706,1.9388145516085369,0,2023-07-07,NA +CA,A,YES,1,"04971,36910",1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,12.351905330391771,210.4768920078485,24.703810660783542,1,2023-07-08,NA +CA,A,YES,1,"04971,36910",1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,2.218836283267302,73.69835255749938,4.437672566534604,1,2023-07-10,NA +CA,A,YES,1,"04971,36910",1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,7.717464574326779,16.383796256828802,20.529840694664493,0,2023-07-11,NA +CA,A,YES,1,"04971,36910",1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,7.944992394163731,837.4203115687657,1.5976617777047457,0,2023-07-12,no +CA,A,YES,1,"04971,36910",1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,41.51428591660013,81.41641651292139,1.584614391186242,0,2023-07-13,no +CA,A,YES,1,"04971,36910",1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,0.93826933952755,44.69264572935639,1.8765386790551,1,2023-07-14,no +CA,A,YES,1,"04971,36910",1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,795.655576312077,708.0869856489144,23.358835684662168,0,2023-07-15,NA +CA,A,YES,1,"04971,36910",1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,6.551935780466369,13.333930645682143,13.103871560932738,1,2023-07-16,no +CA,A,YES,1,"04971,36910",1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,5.882346411121828,39.322479253267844,11.764692822243656,1,2023-07-17,> max temp and/or hold time +CA,A,YES,1,"04971,36910",1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,241.68723320654166,111.96442647581554,19.774130720183855,0,2023-07-18,NA +CA,A,YES,1,"04971,36910",1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,43.394035193624006,39.46900061049787,5.129002133042138,0,2023-07-19,NA +CA,A,YES,1,"04971,36910",1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,577.5598577313433,163.07337147206727,24.214569522151354,0,2023-07-21,no +CA,A,YES,1,"04971,36910",1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,11.032938404219838,67.90345189717881,7.6546364904309225,0,2023-07-22,NA +CA,A,YES,1,"04971,36910",1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,421.5581390603822,50.35463879070723,8.61281044196096,0,2023-07-24,y +CA,A,YES,1,"04971,36910",1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,23.610997025519655,5.371442831117368,16.501544238849036,0,2023-07-25,NA +CA,A,YES,1,"04971,36910",1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,7.4285751551321955,19.457111516742547,7.053586036128444,0,2023-07-26,temperature not assessed upon arrival at the laboratory +CA,A,YES,1,"04971,36910",1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,5.055534203854524,176.16206933310832,16.59448203988224,0,2023-07-27,> max temp and/or hold time +CA,A,YES,1,"04971,36910",1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,6.757122856022711,482.460205052603,10.015110580420062,0,2023-07-28,NA +CA,A,YES,1,"04971,36910",1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,18.784296198219966,24.456558953248408,1.2534572274074924,0,2023-07-29,NA +CA,A,YES,1,"04971,36910",1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,43.089152719699264,435.73082145092775,3.6013387596174287,0,2023-07-30,NA +CA,A,YES,1,"04971,36910",1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,5.982668029827039,71.39805501927842,13.681632332433592,0,2023-08-01,NA +CA,A,YES,1,"04971,36910",1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,29.89881095401264,644.8783031094963,2.1379496979228128,0,2023-08-02,NA +CA,A,YES,1,"04971,36910",1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,15.245052164050056,14.601654948065194,9.130847682327424,0,2023-08-03,NA +CA,A,YES,1,"04971,36910",1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,445.18973523111055,46.58244883444312,1.69920384070378,0,2023-08-04,NA +CA,A,YES,1,"04971,36910",1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,56.64386164261395,8.884665829339795,5.669307914328272,0,2023-08-05,NA +CA,A,YES,1,"04971,36910",1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,25.482224251359003,994.4385402519111,2.869294462719715,0,2023-08-07,NA +CA,A,YES,1,"04971,36910",1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,43.06626276789402,6.304198094739177,19.154037997448203,0,2023-08-08,NA +CA,A,YES,1,"04971,36910",1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,229.18755885572608,18.445161479616353,13.17444100390749,0,2023-08-10,no +CA,A,YES,1,"04971,36910",1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,17.87839963583158,353.7913947879838,2.386031352430203,0,2023-08-11,NA +CA,A,YES,1,"04971,36910",1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,341.5319622331677,22.535336369918106,2.9009542439153364,0,2023-08-12,NA +CA,A,YES,1,"04971,36910",1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,4.671492064147434,70.30665174981034,9.342984128294868,1,2023-08-13,NA +CA,A,YES,1,"04971,36910",1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,236.9049470981896,10.503899757854246,1.8661087177927753,0,2023-08-14,NA +CA,A,YES,1,"04971,36910",1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,0.6768424203702207,262.5342829784635,1.3536848407404414,1,2023-08-15,no +CA,A,YES,1,"04971,36910",1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,13.750449354745616,97.53703067606361,7.9317837944845575,0,2023-08-16,NA +CA,A,YES,1,"04971,36910",1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,4.22681496611314,130.38668828033036,8.45362993222628,1,2023-08-17,NA +CA,A,YES,1,"04971,36910",1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,31.75325288550397,237.1484455656829,13.23501170557511,0,2023-08-18,no +CA,A,YES,1,"04971,36910",1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,667.8359155793845,30.681900301625824,1.9258804785929342,0,2023-08-19,NA +CA,A,YES,1,"04971,36910",1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,61.413781917387254,15.875257689664238,24.332944170594313,0,2023-08-20,NA +CA,A,YES,1,"04971,36910",1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,127.03367781841675,7.099144687453064,20.461066572372655,0,2023-08-21,NA +CA,A,YES,1,"04971,36910",1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,26.30279892188309,21.490421548808033,23.74006180005436,0,2023-08-22,NA +CA,A,YES,1,"04971,36910",1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,121.05669770858235,14.212953467533138,2.99557871212313,0,2023-08-25,NA +CA,A,YES,1,"04971,36910",1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,109.00779424472073,495.6208223070091,2.3091115346315756,0,2023-08-27,no +CA,A,YES,1,"04971,36910",1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,2.6729273348013622,8.752613815741094,5.3458546696027245,1,2023-08-28,NA +CA,A,YES,1,"04971,36910",1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,23.083558937890217,678.3996529565197,2.3853349770620484,0,2023-08-29,NA +CA,A,YES,1,"04971,36910",1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,53.48263727151335,21.262408576525846,2.8500736421369344,0,2023-08-30,NA +CA,A,YES,1,"04971,36910",1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,592.4451254098414,72.18722222591065,12.061499723477331,0,2023-08-31,NA +CA,A,YES,1,"04971,36910",1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,748.2893178235532,25.84322755333694,16.723603429453362,0,2023-09-01,yes +CA,A,YES,1,"04971,36910",1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,39.57219130798205,769.0657781019385,3.9230363057513404,0,2023-09-02,below loq +CA,A,YES,1,"04971,36910",1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,430.2273711266606,49.10700461580872,12.024286675454327,0,2023-09-03,NA +CA,A,YES,1,"04971,36910",1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,786.0080000784335,106.71467557046878,12.403173656961675,0,2023-09-04,no +CA,A,YES,1,"04971,36910",1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,8.213217766641202,62.75875762506459,16.426435533282405,1,2023-09-05,NA +CA,A,YES,1,"04971,36910",1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,569.0592734875645,49.8948087609619,16.741583747541483,0,2023-09-06,NA +CA,A,YES,1,"04971,36910",1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,125.16062540964309,15.744586170221984,3.413231366066114,0,2023-09-07,NA +CA,A,YES,1,"04971,36910",1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,13.416099669710217,112.80358085277192,4.2191715782747234,0,2023-09-08,y +CA,A,YES,1,"04971,36910",1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,527.5990713281764,502.8502582656528,8.387939118671651,0,2023-09-09,NA +CA,A,YES,1,"04971,36910",1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,12.521220019300424,20.76965227783997,5.3834170132267305,0,2023-09-10,NA +CA,A,YES,1,"04971,36910",1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,56.9534624514444,366.1366633850493,1.292548620565424,0,2023-09-11,NA +CA,A,YES,1,"04971,36910",1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,901.0494424708787,461.91170796163334,8.579360686641467,0,2023-09-12,NA +CA,A,YES,1,"04971,36910",1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,603.0385591829224,135.6580883620457,4.139170907451966,0,2023-09-13,NA +CA,A,YES,1,"04971,36910",1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,2.7178157495953896,594.1185475832327,5.435631499190779,1,2023-09-14,no +CA,A,YES,1,"04971,36910",1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,627.1858702693393,640.4499704489788,9.847493729048772,0,2023-09-15,no +CA,A,YES,1,"04971,36910",1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,30.859634741461225,358.8292028381085,3.9280047220217194,0,2023-09-16,NA +CA,A,YES,1,"04971,36910",1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,15.899032256424775,564.6450526067346,3.1924705121443107,0,2023-09-18,NA +CA,A,YES,1,"04971,36910",1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,163.00694208865636,26.41527898111204,3.642606142908498,0,2023-09-19,NA +CA,A,YES,1,"04971,36910",1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,765.5408539523569,14.41215467320515,5.134440972765299,0,2023-09-20,NA +CA,A,YES,1,"04971,36910",1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,7.3055257413574735,118.07007497423882,2.0505872967575423,0,2023-09-22,NA +CA,A,YES,1,"04971,36910",1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,9.615214324184283,98.28676416676558,22.216317904643557,0,2023-09-23,> max temp and/or hold time +CA,A,YES,1,"04971,36910",1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,31.556363874652213,28.002580514447082,3.3700121744830933,0,2023-09-24,NA +CA,A,YES,1,"04971,36910",1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,85.78745849492218,975.8485468745371,1.5410159137588204,0,2023-09-26,no +CA,A,YES,1,"04971,36910",1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,954.7987735948498,62.703028308156135,1.1257510937636845,0,2023-09-27,no +CA,A,YES,1,"04971,36910",1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,47.157479753344234,6.313948334153875,5.600355902607118,0,2023-09-28,no +CA,A,YES,1,"04971,36910",1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,15.378172379650767,43.82671974549931,2.9286051626342475,0,2023-09-29,NA +CA,A,YES,1,"04971,36910",1,10000,wwtp,raw wastewater,copies/l wastewater,sars-cov-2,265.74559264543973,632.1814334477729,1.2170482720748443,0,2023-09-30,no diff --git a/cfaforecastrenewalww/inst/testdata/locations.csv b/cfaforecastrenewalww/inst/testdata/locations.csv new file mode 100644 index 00000000..7f0d821a --- /dev/null +++ b/cfaforecastrenewalww/inst/testdata/locations.csv @@ -0,0 +1,55 @@ +๏ปฟabbreviation,location,location_name,population,count_rate1per100k,count_rate2per100k +US,US,US,331893745,3319,6638 +AL,01,Alabama,5039877,50,101 +AK,02,Alaska,732673,7,15 +AZ,04,Arizona,7276316,73,146 +AR,05,Arkansas,3025891,30,61 +CA,06,California,39237836,392,785 +CO,08,Colorado,5812069,58,116 +CT,09,Connecticut,3605597,36,72 +DE,10,Delaware,1003384,10,20 +DC,11,District of Columbia,670050,7,13 +FL,12,Florida,21781128,218,436 +GA,13,Georgia,10799566,108,216 +HI,15,Hawaii,1441553,14,29 +ID,16,Idaho,1900923,19,38 +IL,17,Illinois,12671469,127,253 +IN,18,Indiana,6805985,68,136 +IA,19,Iowa,3193079,32,64 +KS,20,Kansas,2934582,29,59 +KY,21,Kentucky,4509394,45,90 +LA,22,Louisiana,4624047,46,92 +ME,23,Maine,1372247,14,27 +MD,24,Maryland,6165129,62,123 +MA,25,Massachusetts,6984723,70,140 +MI,26,Michigan,10050811,101,201 +MN,27,Minnesota,5707390,57,114 +MS,28,Mississippi,2949965,29,59 +MO,29,Missouri,6168187,62,123 +MT,30,Montana,1104271,11,22 +NE,31,Nebraska,1963692,20,39 +NV,32,Nevada,3143991,31,63 +NH,33,New Hampshire,1388992,14,28 +NJ,34,New Jersey,9267130,93,185 +NM,35,New Mexico,2115877,21,42 +NY,36,New York,19835913,198,397 +NC,37,North Carolina,10551162,106,211 +ND,38,North Dakota,774948,8,15 +OH,39,Ohio,11780017,118,236 +OK,40,Oklahoma,3986639,40,80 +OR,41,Oregon,4246155,42,85 +PA,42,Pennsylvania,12964056,130,259 +RI,44,Rhode Island,1095610,11,22 +SC,45,South Carolina,5190705,52,104 +SD,46,South Dakota,895376,9,18 +TN,47,Tennessee,6975218,70,140 +TX,48,Texas,29527941,295,591 +UT,49,Utah,3337975,33,67 +VT,50,Vermont,645570,6,13 +VA,51,Virginia,8642274,86,173 +WA,53,Washington,7738692,77,155 +WV,54,West Virginia,1782959,18,36 +WI,55,Wisconsin,5895908,59,118 +WY,56,Wyoming,578803,6,12 +PR,72,Puerto Rico,3263584,33,65 +VI,78,Virgin Islands,107268,1,2 diff --git a/cfaforecastrenewalww/man/add_pmfs.Rd b/cfaforecastrenewalww/man/add_pmfs.Rd new file mode 100644 index 00000000..da28a2ee --- /dev/null +++ b/cfaforecastrenewalww/man/add_pmfs.Rd @@ -0,0 +1,42 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/utils.R +\name{add_pmfs} +\alias{add_pmfs} +\title{Add probability mass functions} +\usage{ +add_pmfs(pmfs) +} +\arguments{ +\item{pmfs}{A list of vectors describing the probability mass functions to} +} +\value{ +A vector describing the probability mass function of the sum of the +} +\description{ +This function allows the addition of probability mass functions (PMFs) to +produce a new PMF. This is useful for example in the context of reporting +delays where the PMF of the sum of two Poisson distributions is the +convolution of the PMFs. +} +\details{ +This code was adapted from code written +(under an MIT license) as part of the `epinowcast` +package (https://github.com/epinowcast/epinowcast) +} +\examples{ +# Sample and analytical PMFs for two Poisson distributions +x <- rpois(10000, 5) +xpmf <- dpois(0:20, 5) +y <- rpois(10000, 7) +ypmf <- dpois(0:20, 7) +# Add sampled Poisson distributions up to get combined distribution +z <- x + y +# Analytical convolution of PMFs +conv_pmf <- add_pmfs(list(xpmf, ypmf)) +conv_cdf <- cumsum(conv_pmf) +# Empirical convolution of PMFs +cdf <- ecdf(z)(0:42) +# Compare sampled and analytical CDFs +plot(conv_cdf) +lines(cdf, col = "black") +} diff --git a/cfaforecastrenewalww/man/aggregate_ww.Rd b/cfaforecastrenewalww/man/aggregate_ww.Rd new file mode 100644 index 00000000..0e092920 --- /dev/null +++ b/cfaforecastrenewalww/man/aggregate_ww.Rd @@ -0,0 +1,30 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/pre_processing.R +\name{aggregate_ww} +\alias{aggregate_ww} +\title{Aggregate the WW data to the state-level} +\usage{ +aggregate_ww( + ww_data_raw, + forecast_date, + calibration_time, + hosp_reporting_delay +) +} +\arguments{ +\item{ww_data_raw}{The site leve ww data after being cleaned} + +\item{forecast_date}{date forecast is being made} + +\item{calibration_time}{duration of calibration period for hospitalizations} + +\item{hosp_reporting_delay}{the hospital reporting delay (how much is +being nowcasted)} +} +\value{ +a dataframe with wastewater data for all locations, +the weekly avg pcr concentration, and the date +} +\description{ +Aggregate the WW data to the state-level +} diff --git a/cfaforecastrenewalww/man/boxplot_whiskers.Rd b/cfaforecastrenewalww/man/boxplot_whiskers.Rd new file mode 100644 index 00000000..6c541361 --- /dev/null +++ b/cfaforecastrenewalww/man/boxplot_whiskers.Rd @@ -0,0 +1,11 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/EDA_utils.R +\name{boxplot_whiskers} +\alias{boxplot_whiskers} +\title{Get the upper and lower ends of the whiskers of a single boxplot of data in x} +\usage{ +boxplot_whiskers(x) +} +\description{ +Get the upper and lower ends of the whiskers of a single boxplot of data in x +} diff --git a/cfaforecastrenewalww/man/categorical_entropy.Rd b/cfaforecastrenewalww/man/categorical_entropy.Rd new file mode 100644 index 00000000..2c9ed14e --- /dev/null +++ b/cfaforecastrenewalww/man/categorical_entropy.Rd @@ -0,0 +1,11 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/EDA_utils.R +\name{categorical_entropy} +\alias{categorical_entropy} +\title{Entropy of sample from categorical distribution} +\usage{ +categorical_entropy(x, cats = NA) +} +\description{ +Entropy of sample from categorical distribution +} diff --git a/cfaforecastrenewalww/man/cfaforecastrenewalww-package.Rd b/cfaforecastrenewalww/man/cfaforecastrenewalww-package.Rd new file mode 100644 index 00000000..e4602d5f --- /dev/null +++ b/cfaforecastrenewalww/man/cfaforecastrenewalww-package.Rd @@ -0,0 +1,32 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/cfaforecastrenewalww-package.R +\docType{package} +\name{cfaforecastrenewalww-package} +\alias{cfaforecastrenewalww} +\alias{cfaforecastrenewalww-package} +\title{cfaforecastrenewalww: Wastewater informed COVID-19 hospital admissions forecasting} +\description{ +Put something here +} +\seealso{ +Useful links: +\itemize{ + \item \url{https://github.com/cdcgov/wastewater-informed-covid-forecasting/} + \item Report bugs at \url{https://github.com/cdcgov/wastewater-informed-covid-forecasting/issues/} +} + +} +\author{ +\strong{Maintainer}: Kaitlyn Johnson \email{uox1@cdc.gov} + +Authors: +\itemize{ + \item Sam Abbott \email{contact@samabbott.co.uk} (\href{https://orcid.org/0000-0001-8057-8037}{ORCID}) + \item Zachary Susswein \email{utb2@cdc.gov} + \item Andrew Magee \email{rzg0@cdc.gov} + \item Dylan Morris \email{dylan@dylanhmorris.com} + \item Scott Olesen \email{ulp7@cdc.gov} +} + +} +\keyword{internal} diff --git a/cfaforecastrenewalww/man/cleanup_secrets.Rd b/cfaforecastrenewalww/man/cleanup_secrets.Rd new file mode 100644 index 00000000..a0839baf --- /dev/null +++ b/cfaforecastrenewalww/man/cleanup_secrets.Rd @@ -0,0 +1,14 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/setup_secrets.R +\name{cleanup_secrets} +\alias{cleanup_secrets} +\title{Cleans up environment when secrets and API information is no longer needed} +\usage{ +cleanup_secrets() +} +\value{ +nothing, unsets values of environmental variables set by setup_secrets +} +\description{ +Cleans up environment when secrets and API information is no longer needed +} diff --git a/cfaforecastrenewalww/man/convert_to_logmean.Rd b/cfaforecastrenewalww/man/convert_to_logmean.Rd new file mode 100644 index 00000000..61b7e491 --- /dev/null +++ b/cfaforecastrenewalww/man/convert_to_logmean.Rd @@ -0,0 +1,18 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/utils.R +\name{convert_to_logmean} +\alias{convert_to_logmean} +\title{Convert to logmean in lognorm distribution} +\usage{ +convert_to_logmean(mean, sd) +} +\arguments{ +\item{sd}{} +} +\value{ +corresponding mean of the lognormal distribution +} +\description{ +see arithmetic moments here +https://en.wikipedia.org/wiki/Log-normal_distribution +} diff --git a/cfaforecastrenewalww/man/convert_to_logsd.Rd b/cfaforecastrenewalww/man/convert_to_logsd.Rd new file mode 100644 index 00000000..d9104585 --- /dev/null +++ b/cfaforecastrenewalww/man/convert_to_logsd.Rd @@ -0,0 +1,18 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/utils.R +\name{convert_to_logsd} +\alias{convert_to_logsd} +\title{Convert to logsd in lognormal distribution} +\usage{ +convert_to_logsd(mean, sd) +} +\arguments{ +\item{sd}{} +} +\value{ +corresponding stdev of the lognormal distribution +} +\description{ +@description see arithmetic moments here +https://en.wikipedia.org/wiki/Log-normal_distribution +} diff --git a/cfaforecastrenewalww/man/create_dir.Rd b/cfaforecastrenewalww/man/create_dir.Rd new file mode 100644 index 00000000..0861e69c --- /dev/null +++ b/cfaforecastrenewalww/man/create_dir.Rd @@ -0,0 +1,15 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/utils.R +\name{create_dir} +\alias{create_dir} +\title{Create a new directory if one doesn't exist} +\usage{ +create_dir(output_file_path) +} +\arguments{ +\item{output_file_path}{file path that may or may not need to be created} +} +\description{ +Function to create a directory for the specified output file path if needed. +dir_create won't throw a warning if its already made though! +} diff --git a/cfaforecastrenewalww/man/dot-do_1_pps_analysis.Rd b/cfaforecastrenewalww/man/dot-do_1_pps_analysis.Rd new file mode 100644 index 00000000..2b5cd392 --- /dev/null +++ b/cfaforecastrenewalww/man/dot-do_1_pps_analysis.Rd @@ -0,0 +1,32 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/posterior_predictive_analysis.R +\name{.do_1_pps_analysis} +\alias{.do_1_pps_analysis} +\title{Internal helper function to do a single analysis of PPS data} +\usage{ +.do_1_pps_analysis(i, model, real_data_draws, stan_predictive_data, ci, ...) +} +\arguments{ +\item{i}{index of simulated data to analyze +the parameters from which the data was simulated} + +\item{model}{CmdStanModel to fit} + +\item{real_data_draws}{draws object containing MCMC samples from real-data model fit} + +\item{stan_predictive_data}{list of simulated datasets, in same order as real_data_draws} + +\item{ci}{length-2 numeric vector of [lower, upper] values for CI} + +\item{...}{further arguments passed to model$sample(), e.g. # chains} +} +\value{ +a summary of the performance of the +} +\description{ +Takes in index, parameter values from which data was simulated, +list of simulated data, the model to run, and other arguments for either +the model running or summarizing. +Runs stan on the simulated data with this index returns a summary of performance. +} +\keyword{internal} diff --git a/cfaforecastrenewalww/man/dot-get_1_param.Rd b/cfaforecastrenewalww/man/dot-get_1_param.Rd new file mode 100644 index 00000000..798dac4d --- /dev/null +++ b/cfaforecastrenewalww/man/dot-get_1_param.Rd @@ -0,0 +1,22 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/process_model_outputs.R +\name{.get_1_param} +\alias{.get_1_param} +\title{Internal helper for get_param_samples_long_df} +\usage{ +.get_1_param(param_info, all_draws) +} +\arguments{ +\item{param_info}{single-row data frame (or tibble), originating from get_model_param_df().} + +\item{all_draws}{MCMC samples as a draws_array object} +} +\value{ +data frame with parameter name, values, and (as applicable) information +about the spatiotemporal aspects of the parameter +} +\description{ +This function makes a "long" data frame for a single parameter. This may be a +scalar-, vector-, or matrix-valued parameter. +} +\keyword{internal} diff --git a/cfaforecastrenewalww/man/dot-get_api_needed.Rd b/cfaforecastrenewalww/man/dot-get_api_needed.Rd new file mode 100644 index 00000000..0b727e09 --- /dev/null +++ b/cfaforecastrenewalww/man/dot-get_api_needed.Rd @@ -0,0 +1,15 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/setup_secrets.R +\name{.get_api_needed} +\alias{.get_api_needed} +\title{Just a list of things the package needs, for convenience} +\usage{ +.get_api_needed() +} +\value{ +the API token/secret/ID, as a character +} +\description{ +Just a list of things the package needs, for convenience +} +\keyword{internal} diff --git a/cfaforecastrenewalww/man/dot-get_param_spreader_strings.Rd b/cfaforecastrenewalww/man/dot-get_param_spreader_strings.Rd new file mode 100644 index 00000000..269acdac --- /dev/null +++ b/cfaforecastrenewalww/man/dot-get_param_spreader_strings.Rd @@ -0,0 +1,18 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/process_model_outputs.R +\name{.get_param_spreader_strings} +\alias{.get_param_spreader_strings} +\title{Internal helper for .get_1_param} +\usage{ +.get_param_spreader_strings(param_info) +} +\arguments{ +\item{param_info}{single-row data frame (or tibble), originating from get_model_param_df().} +} +\value{ +named vector, +} +\description{ +Provides information required to spread() vector- or matrix-valued parameters. +} +\keyword{internal} diff --git a/cfaforecastrenewalww/man/dot-make_1_pps_data.Rd b/cfaforecastrenewalww/man/dot-make_1_pps_data.Rd new file mode 100644 index 00000000..32e0fc3e --- /dev/null +++ b/cfaforecastrenewalww/man/dot-make_1_pps_data.Rd @@ -0,0 +1,26 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/make_pps_data.R +\name{.make_1_pps_data} +\alias{.make_1_pps_data} +\title{Internal helper for make_pps_data()} +\usage{ +.make_1_pps_data(pps_hosp_data, pps_ww_data, real_data, config) +} +\arguments{ +\item{pps_hosp_data}{one draw's worth of pps hospital data} + +\item{pps_ww_data}{one draw's worth of pps ww data} + +\item{real_data}{the stan data object} + +\item{config}{the output of get_config_vals() for the original (real) data} +} +\value{ +a list, as real_data but with the pps hospital and ww data instead +of the real observations +} +\description{ +Takes in pre-processed predictive hospital and wastewater data, plus a real-data +stan input and a config. Outputs a posterior predictive dataset. +} +\keyword{internal} diff --git a/cfaforecastrenewalww/man/dot-summarize_performance.Rd b/cfaforecastrenewalww/man/dot-summarize_performance.Rd new file mode 100644 index 00000000..29bef909 --- /dev/null +++ b/cfaforecastrenewalww/man/dot-summarize_performance.Rd @@ -0,0 +1,25 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/posterior_predictive_analysis.R +\name{.summarize_performance} +\alias{.summarize_performance} +\title{Internal helper function to summarize how well an analysis of posterior +predictive data performed} +\usage{ +.summarize_performance(true_param_draws, fit_draws, ci) +} +\arguments{ +\item{true_param_draws}{draws-family object containing a single draw with +the parameters from which the data was simulated} + +\item{fit_draws}{draws-family object containing the MCMC} + +\item{ci}{length-2 numeric vector of [lower, upper] values for CI} +} +\value{ +a list, each of which is a list of formatted stan data +} +\description{ +Takes in true parameter values and MCMC samples and computes summaries of the +samples, possibly wrt the truth. +} +\keyword{internal} diff --git a/cfaforecastrenewalww/man/drop_first_and_renormalize.Rd b/cfaforecastrenewalww/man/drop_first_and_renormalize.Rd new file mode 100644 index 00000000..807dd6d5 --- /dev/null +++ b/cfaforecastrenewalww/man/drop_first_and_renormalize.Rd @@ -0,0 +1,22 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/delay_distribs.R +\name{drop_first_and_renormalize} +\alias{drop_first_and_renormalize} +\title{Drop the first element of a simplex} +\usage{ +drop_first_and_renormalize(x) +} +\arguments{ +\item{x}{A numeric vector, sums to 1. Corresponds to a discretized PDF or PMF +(usually the GI distribution).} +} +\value{ +A numeric vector, sums to 1. +} +\description{ +When this vector corresponds to the generation interval distribution, we +want to drop this first bin. The renewal equation assumes that same-day +infection and onward transmission does not occur, and we assume +everything is 1 indexed not 0 indeced. We need to +manually drop the first element from the PMF vector. +} diff --git a/cfaforecastrenewalww/man/entropy.Rd b/cfaforecastrenewalww/man/entropy.Rd new file mode 100644 index 00000000..cc5d357d --- /dev/null +++ b/cfaforecastrenewalww/man/entropy.Rd @@ -0,0 +1,11 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/EDA_utils.R +\name{entropy} +\alias{entropy} +\title{Entropy of probability mass function p} +\usage{ +entropy(p) +} +\description{ +Entropy of probability mass function p +} diff --git a/cfaforecastrenewalww/man/example_df.Rd b/cfaforecastrenewalww/man/example_df.Rd new file mode 100644 index 00000000..058a7fe4 --- /dev/null +++ b/cfaforecastrenewalww/man/example_df.Rd @@ -0,0 +1,25 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/data.R +\docType{data} +\name{example_df} +\alias{example_df} +\title{Example input data set} +\format{ +## example_df +A data frame with 635 rows and 13 columns +\describe{ + \item{t}{Time} + \item{lab_wwtp_unique_id}{Unique identifier for each unique combination + of sampling site and testing lab} + \item{log_conc}{Genome copied per liter, log10} + ETC. +} +} +\usage{ +example_df +} +\description{ +SOME HIGH-LEVEL DESCRIPTION OF THE DATA. MAYBE JUST POINT READERS TO +THE FUNCTION THAT GENERATES IT? +} +\keyword{datasets} diff --git a/cfaforecastrenewalww/man/fit_model.Rd b/cfaforecastrenewalww/man/fit_model.Rd new file mode 100644 index 00000000..a11e77b2 --- /dev/null +++ b/cfaforecastrenewalww/man/fit_model.Rd @@ -0,0 +1,50 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/fit_model.R +\name{fit_model} +\alias{fit_model} +\title{Fit site level model} +\usage{ +fit_model( + train_data, + params, + model_file, + forecast_date, + run_id, + date_run, + forecast_time, + model_type, + generation_interval, + inf_to_hosp, + infection_feedback_pmf, + include_hosp, + compute_likelihood, + n_draws, + n_chains, + iter_sampling, + iter_warmup, + n_parallel_chains, + adapt_delta, + max_treedepth, + output_file_path, + write_files = TRUE, + ... +) +} +\arguments{ +\item{train_data}{for a single location} + +\item{params}{of the model, these should be the same across all runs} + +\item{model_file}{compiled stan model (an upstream target)} + +\item{write_files}{} +} +\value{ +a dataframe with 100 model draws for all time points for WW + concentraiton, hospitalizaitons, hosp per 100k, and the matched data +} +\description{ +Takes in the training data, which is a long dataframe with all the +site level WW observations plus the observed hospitalizations. +Fit the stan model to a single slice of data +} diff --git a/cfaforecastrenewalww/man/fit_site_level_model.Rd b/cfaforecastrenewalww/man/fit_site_level_model.Rd new file mode 100644 index 00000000..76cef67f --- /dev/null +++ b/cfaforecastrenewalww/man/fit_site_level_model.Rd @@ -0,0 +1,48 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/fit_model.R +\name{fit_site_level_model} +\alias{fit_site_level_model} +\title{Fit the stan model to a single slice of data} +\usage{ +fit_site_level_model( + train_data, + params, + model_file, + forecast_date, + run_id, + date_run, + forecast_time, + generation_interval, + inf_to_hosp, + infection_feedback_pmf, + model_type, + output_file_path, + include_hosp = 1, + compute_likelihood = 1, + n_draws = 100, + n_chains = 4, + iter_sampling = 500, + iter_warmup = 250, + n_parallel_chains = 4, + write_files = TRUE, + output_full_df = FALSE, + ... +) +} +\arguments{ +\item{train_data}{for a single location} + +\item{params}{of the model, these should be the same across all runs} + +\item{model_file}{compiled stan model (an upstream target)} + +\item{config_vars}{tells the model whether or not to include WW, +include hosp, compute likelihood, and what damp type.} +} +\value{ +a dataframe with 100 model draws for all time points for WW + concentraiton, hospitalizaitons, hosp per 100k, and the matched data +} +\description{ +Fit the stan model to a single slice of data +} diff --git a/cfaforecastrenewalww/man/flag_ww_outliers.Rd b/cfaforecastrenewalww/man/flag_ww_outliers.Rd new file mode 100644 index 00000000..c927f16f --- /dev/null +++ b/cfaforecastrenewalww/man/flag_ww_outliers.Rd @@ -0,0 +1,28 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/pre_processing.R +\name{flag_ww_outliers} +\alias{flag_ww_outliers} +\title{Flag WW outliers} +\usage{ +flag_ww_outliers( + ww_data, + rho_threshold = 2, + log_conc_threshold = 3, + threshold_n_dps = 1 +) +} +\arguments{ +\item{ww_data}{data at the lab-site level of WW concentrations} + +\item{rho_threshold}{z-score threshold for "jump"} + +\item{log_conc_threshold}{z-score threshold for log concentration} + +\item{threshold_n_dps}{min number of data points above the LOD per lab-site} +} +\value{ +ww_data + columns for outlier flagging +} +\description{ +Flag WW outliers +} diff --git a/cfaforecastrenewalww/man/format_hosp_draws_hub_sub.Rd b/cfaforecastrenewalww/man/format_hosp_draws_hub_sub.Rd new file mode 100644 index 00000000..5af01f38 --- /dev/null +++ b/cfaforecastrenewalww/man/format_hosp_draws_hub_sub.Rd @@ -0,0 +1,18 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/process_model_outputs.R +\name{format_hosp_draws_hub_sub} +\alias{format_hosp_draws_hub_sub} +\title{Prepare posterior draws of hospital admissions for the COVID-19 forecast hub} +\usage{ +format_hosp_draws_hub_sub(hosp_draws) +} +\arguments{ +\item{hosp_draws}{dataframe containing the posterior draws from +all time points of the hospital admissions for a single model and location} +} +\value{ +a dataframe formatted for COVID-19 forecast hub submission +} +\description{ +Prepare posterior draws of hospital admissions for the COVID-19 forecast hub +} diff --git a/cfaforecastrenewalww/man/generate_simulated_data.Rd b/cfaforecastrenewalww/man/generate_simulated_data.Rd new file mode 100644 index 00000000..27a17645 --- /dev/null +++ b/cfaforecastrenewalww/man/generate_simulated_data.Rd @@ -0,0 +1,104 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/generate_simulated_data.R +\name{generate_simulated_data} +\alias{generate_simulated_data} +\title{Generate simulated data from the underlying model's generative process} +\usage{ +generate_simulated_data( + site_level_inf_dynamics = TRUE, + site_level_conc_dynamics = FALSE, + r_in_weeks = c(rep(1.1, 5), rep(0.9, 5), 1 + 0.007 * 1:16), + n_sites = 4, + ww_pop_sites = c(4e+05, 2e+05, 1e+05, 50000), + pop_size = 1e+06, + n_lab_sites = 5, + map_site_to_lab = c(1, 1, 2, 3, 4), + ot = 90, + nt = 9, + forecast_time = 28, + sim_start_date = ymd("2023-10-30"), + hosp_wday_effect = c(0.95, 1.01, 1.02, 1.02, 1.01, 1, 0.99)/7, + i0_over_n = 5e-04, + initial_growth = 1e-04, + sd_in_lab_level_multiplier = 0.25, + mean_obs_error_in_ww_lab_site = 0.3, + mean_reporting_freq = 1/7, + sd_reporting_freq = 1/14, + mean_reporting_latency = 7, + sd_reporting_latency = 5, + mean_log_lod = 3.8, + sd_log_lod = 0.2, + set_seed = TRUE +) +} +\arguments{ +\item{site_level_inf_dynamics}{if TRUE then the toy data has variation in the +site-level R(t), if FALSE, assumes same underlying R(t) for the state as in +each site} + +\item{site_level_conc_dynamics}{if TRUE then the toy data has variation in the +site-level concentration each day, if FALSE, then the relationship from infection +to concentration in each site is the same across sites} + +\item{r_in_weeks}{The weekly R(t) that drives infection dynamics at the state- +level} + +\item{n_sites}{Number of sites} + +\item{ww_pop_sites}{Catchment area in each of those sites (order must match)} + +\item{pop_size}{Population size in the state} + +\item{n_lab_sites}{NUmber of unique combinations of labs and sites. Must be +greater than or equal to `n_sites`} + +\item{map_site_to_lab}{Vector mapping the sites to the lab-sites in order +of the sites} + +\item{ot}{observed time: length of hospital admissions calibration time in days} + +\item{nt}{nowcast time: length of time between last hospital admissions date +and forecast date in days} + +\item{forecast_time}{duration of the forecast in days e.g. 28 days} + +\item{sim_start_date}{the start date of the simulation, used to get a weekday +vector} + +\item{hosp_wday_effect}{a simplex of length 7 describing how the hospital +admissions are spread out over a week, starting at Monday = 1} + +\item{i0_over_n}{the initial per capita infections in the state} + +\item{initial_growth}{exponential growth rate during the unobserved time} + +\item{sd_in_lab_level_multiplier}{standard deviation in the log of the site- +lab level multiplier determining how much variation there is systematically +in site-labs from the state mean} + +\item{mean_obs_error_in_ww_lab_site}{mean day to day variation in observed +wastewater concentraitons across all lab-sites} + +\item{mean_reporting_freq}{mean frequency of wastewater measurements across +sites in per day (e.g. 1/7 is once per week)} + +\item{sd_reporting_freq}{standard deviation in the frequency of wastewater +measurements across sites} + +\item{mean_reporting_latency}{mean time from forecast date to last +wastewater sample collection date, across sites} + +\item{sd_reporting_latency}{standard deviation in the time from the forecast +date to the last wastewater sample collection date, across sites} + +\item{mean_log_lod}{mean log of the LOD in each lab-site} + +\item{sd_log_lod}{standard deviation in the log of the LOD across sites} + +\item{set_seed}{whether or not we want to set the seed} +} +\description{ +Function that allows the user to generate hospital admissions and site-level +wastewater data directly from the generative model, specifying the conditions +and parameters to generate from. +} diff --git a/cfaforecastrenewalww/man/get_all_quantiles.Rd b/cfaforecastrenewalww/man/get_all_quantiles.Rd new file mode 100644 index 00000000..2003e6a6 --- /dev/null +++ b/cfaforecastrenewalww/man/get_all_quantiles.Rd @@ -0,0 +1,24 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/process_model_outputs.R +\name{get_all_quantiles} +\alias{get_all_quantiles} +\title{Get all quantiles} +\usage{ +get_all_quantiles(model_draws) +} +\arguments{ +\item{model_draws}{} +} +\value{ +a long dataframe of all the quantiled values of the model variables +columns names include all the things we had in the draws_df + metadata: +name, t, value, draw, quantile, +include_ww, forecast_date, hosp_reporting_delay, +location, data_type, date, ww, daily_hosp_admits, +daily_hosp_admits_for_eval, pop, obs_data, period, damp_type +} +\description{ +Takes in the model draws and summarizes over them to get quantiles that +correspond to the quantiles reported in the COVID-19 Forecast Hub that +are used for generating WIS scores. +} diff --git a/cfaforecastrenewalww/man/get_all_training_data.Rd b/cfaforecastrenewalww/man/get_all_training_data.Rd new file mode 100644 index 00000000..ade2e0ab --- /dev/null +++ b/cfaforecastrenewalww/man/get_all_training_data.Rd @@ -0,0 +1,36 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/pre_processing.R +\name{get_all_training_data} +\alias{get_all_training_data} +\title{Get long tibble of data needed for model fitting} +\usage{ +get_all_training_data( + ww_data_raw, + forecast_date, + location, + calibration_time, + geo_type, + pull_from_local, + hosp_data_dir, + population_data_path, + forecast_time, + hosp_reporting_delay, + ww_geo_type, + hosp_data_source, + include_ww, + train_data_dir, + model_type, + write_files = TRUE, + ... +) +} +\arguments{ +\item{include_ww}{} +} +\value{ +a long stacked dataframe with columns corresponding to model specs +and data specs +} +\description{ +Get long tibble of data needed for model fitting +} diff --git a/cfaforecastrenewalww/man/get_combo_quantile_plot.Rd b/cfaforecastrenewalww/man/get_combo_quantile_plot.Rd new file mode 100644 index 00000000..5aa9d33e --- /dev/null +++ b/cfaforecastrenewalww/man/get_combo_quantile_plot.Rd @@ -0,0 +1,34 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/plots.R +\name{get_combo_quantile_plot} +\alias{get_combo_quantile_plot} +\title{Title} +\usage{ +get_combo_quantile_plot( + df, + figure_file_path, + days_to_show_forecast = 14, + from_full_df = FALSE, + write_files = TRUE +) +} +\arguments{ +\item{df}{dataframe of either quantiles or the path to load in quantiles} + +\item{figure_file_path}{directory to save figure} + +\item{days_to_show_forecast}{duration of forecast to plot, default is 14} + +\item{from_full_df}{if TRUE then df is quantiles object, if FALSE then df is a +dataframe of filepaths to load in the parameter object} + +\item{write_files}{if TRUE then write files to specified location, if FALSE +then don't} +} +\value{ +plot of bar chart of hospitalizations with mean state level +wastewater overlaid +} +\description{ +Title +} diff --git a/cfaforecastrenewalww/man/get_config_vals.Rd b/cfaforecastrenewalww/man/get_config_vals.Rd new file mode 100644 index 00000000..e7c09f16 --- /dev/null +++ b/cfaforecastrenewalww/man/get_config_vals.Rd @@ -0,0 +1,14 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/get_config_vals.R +\name{get_config_vals} +\alias{get_config_vals} +\title{Read in the config yaml} +\usage{ +get_config_vals(path_to_config) +} +\arguments{ +\item{path_to_config}{path the config yaml} +} +\description{ +Read in the config yaml +} diff --git a/cfaforecastrenewalww/man/get_df_for_hub_submission.Rd b/cfaforecastrenewalww/man/get_df_for_hub_submission.Rd new file mode 100644 index 00000000..e9caf2ab --- /dev/null +++ b/cfaforecastrenewalww/man/get_df_for_hub_submission.Rd @@ -0,0 +1,33 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/process_model_outputs.R +\name{get_df_for_hub_submission} +\alias{get_df_for_hub_submission} +\title{Load in future hosp draws and combine into a single dataframe} +\usage{ +get_df_for_hub_submission( + df_of_filepaths, + submitting_model_name, + submission_file_path, + repo_file_path, + prod_run, + write_files = TRUE, + ... +) +} +\arguments{ +\item{df_of_filepaths}{filepaths where the future hosp draws live} + +\item{submitting_model_name}{name of the model that we will set as the +folder name} + +\item{write_files}{whether or not to write to the forecast submission +file path} + +\item{forecast_submission_filepath}{where we want the csv to be saved} +} +\value{ +df of hub submission for all locations +} +\description{ +Load in future hosp draws and combine into a single dataframe +} diff --git a/cfaforecastrenewalww/man/get_df_of_filepaths.Rd b/cfaforecastrenewalww/man/get_df_of_filepaths.Rd new file mode 100644 index 00000000..367aff79 --- /dev/null +++ b/cfaforecastrenewalww/man/get_df_of_filepaths.Rd @@ -0,0 +1,21 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/fit_model.R +\name{get_df_of_filepaths} +\alias{get_df_of_filepaths} +\title{Get dataframe of filepaths} +\usage{ +get_df_of_filepaths( + location, + model_type, + forecast_date, + date_run, + run_id, + output_file_path +) +} +\arguments{ +\item{output_file_path}{} +} +\description{ +Get dataframe of filepaths +} diff --git a/cfaforecastrenewalww/man/get_diagnostics.Rd b/cfaforecastrenewalww/man/get_diagnostics.Rd new file mode 100644 index 00000000..9f11b0e2 --- /dev/null +++ b/cfaforecastrenewalww/man/get_diagnostics.Rd @@ -0,0 +1,37 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/process_model_outputs.R +\name{get_diagnostics} +\alias{get_diagnostics} +\title{Get a joint dataframe of data and model fit diagnostics} +\usage{ +get_diagnostics( + stan_fit_object, + train_data, + location, + model_type, + forecast_date, + ... +) +} +\arguments{ +\item{stan_fit_object}{The output of fit$sample() in cmdstanR} + +\item{train_data}{The datarframe containing hospital admissions and +wastewater data for callibration of the model} + +\item{location}{The location the model is being run on} + +\item{model_type}{The type of model e.g. site-level observation error} + +\item{forecast_date}{The date of the forecast} + +\item{...}{} +} +\value{ +Returns a dataframe containing diagnostic summaries +} +\description{ +This returns a 10 row dataframe corresponding to 6 flags of the hospital +admissions or wastewater data and 4 rows corresponding to stan fit +diagnostics. +} diff --git a/cfaforecastrenewalww/man/get_figure_file_path.Rd b/cfaforecastrenewalww/man/get_figure_file_path.Rd new file mode 100644 index 00000000..a6dff7e6 --- /dev/null +++ b/cfaforecastrenewalww/man/get_figure_file_path.Rd @@ -0,0 +1,18 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/get_config_vals.R, R/process_model_outputs.R +\name{get_figure_file_path} +\alias{get_figure_file_path} +\title{Get the figure file path} +\usage{ +get_figure_file_path(output_file_path, forecast_date, date_run) + +get_figure_file_path(output_file_path, forecast_date, date_run) +} +\arguments{ +\item{date_run}{} +} +\description{ +Get the figure file path + +Hardcoded figure filepath for figures per the read me +} diff --git a/cfaforecastrenewalww/man/get_full_param_distrib.Rd b/cfaforecastrenewalww/man/get_full_param_distrib.Rd new file mode 100644 index 00000000..516c4bca --- /dev/null +++ b/cfaforecastrenewalww/man/get_full_param_distrib.Rd @@ -0,0 +1,39 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/process_model_outputs.R +\name{get_full_param_distrib} +\alias{get_full_param_distrib} +\title{Get full parameter distribution} +\usage{ +get_full_param_distrib( + all_draws, + static_params, + vector_params, + matrix_params = NA +) +} +\arguments{ +\item{all_draws}{draws from the stan object} + +\item{static_params}{character vector of parameters that are static and +don't need any indexing} + +\item{weekly_params}{character vector of parameters that are indexed by week} + +\item{daily_ww_params}{character vector of parameters that are indexed by +day (t) and ww lab site} + +\item{ww_lab_site_params}{character vector of parameters that are indexed by +unique combo of the wastewater lab and site} + +\item{day_of_week_params}{character vector of parameters that are indexed by +day of week} +} +\value{ +a dataframe containing the posterior distribution of each parameter +With indices corresponding to the parameters that have them +} +\description{ +This function takes in vectors of parameters, grouped by their indexing, +and returns a tidy dataframe with all the draws of all the parameters and +the corresponding indices +} diff --git a/cfaforecastrenewalww/man/get_gen_quants_draws.Rd b/cfaforecastrenewalww/man/get_gen_quants_draws.Rd new file mode 100644 index 00000000..83ab91b7 --- /dev/null +++ b/cfaforecastrenewalww/man/get_gen_quants_draws.Rd @@ -0,0 +1,23 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/process_model_outputs.R +\name{get_gen_quants_draws} +\alias{get_gen_quants_draws} +\title{Get generated quantities draws site level model} +\usage{ +get_gen_quants_draws(all_draws, model_type) +} +\arguments{ +\item{train_data}{} +} +\value{ +A long dataframe with model draws from pred_hosp, pred_ww, R(t) and +p_hosp(t), where all but pred_ww have one value per time point and draw. Bc +we need all the column names to be the same, site_index is left empty for those. +The resulting dataframe has the following columns: +name, site_index, t, value, draw +} +\description{ +This function takes the raw stan output from the site leve model and +arranges them in a tidy data format, with time and site_index as indexing +variables. +} diff --git a/cfaforecastrenewalww/man/get_generated_quantities_draws.Rd b/cfaforecastrenewalww/man/get_generated_quantities_draws.Rd new file mode 100644 index 00000000..fdcff8cb --- /dev/null +++ b/cfaforecastrenewalww/man/get_generated_quantities_draws.Rd @@ -0,0 +1,21 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/process_model_outputs.R +\name{get_generated_quantities_draws} +\alias{get_generated_quantities_draws} +\title{Get generated quantities draws} +\usage{ +get_generated_quantities_draws(all_draws, n_draws = 100) +} +\arguments{ +\item{train_data}{} +} +\value{ +A long dataframe with model draws from pred_hosp, pred_ww, R(t) and +p_hosp(t), where all have one value per time point and draw. +The resulting dataframe has the following columns: +name, t, value, draw +} +\description{ +This function takes the raw stan output from the aggregated model and +arranges them in a tidy data format, with time as an indexing variable. +} diff --git a/cfaforecastrenewalww/man/get_generation_interval_gamma.Rd b/cfaforecastrenewalww/man/get_generation_interval_gamma.Rd new file mode 100644 index 00000000..fd3ea7fd --- /dev/null +++ b/cfaforecastrenewalww/man/get_generation_interval_gamma.Rd @@ -0,0 +1,17 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/delay_distribs.R +\name{get_generation_interval_gamma} +\alias{get_generation_interval_gamma} +\title{Get the generation interval from a gamma distribution} +\usage{ +get_generation_interval_gamma(mean_gi, stdev_gi, gt_max) +} +\arguments{ +\item{gt_max}{} +} +\value{ +a normalized generation interval assuming gamma distribution +} +\description{ +Get the generation interval from a gamma distribution +} diff --git a/cfaforecastrenewalww/man/get_generation_interval_lnorm.Rd b/cfaforecastrenewalww/man/get_generation_interval_lnorm.Rd new file mode 100644 index 00000000..ccd763b0 --- /dev/null +++ b/cfaforecastrenewalww/man/get_generation_interval_lnorm.Rd @@ -0,0 +1,17 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/delay_distribs.R +\name{get_generation_interval_lnorm} +\alias{get_generation_interval_lnorm} +\title{Get the generation interval from a lognormal distribution} +\usage{ +get_generation_interval_lnorm(mu = 0.92877, sigma = 0.526, gt_max = 15) +} +\arguments{ +\item{gt_max}{} +} +\value{ +a normalized generation interval assuming a lognormal distribution +} +\description{ +Get the generation interval from a lognormal distribution +} diff --git a/cfaforecastrenewalww/man/get_hosp_data.Rd b/cfaforecastrenewalww/man/get_hosp_data.Rd new file mode 100644 index 00000000..d6dd5023 --- /dev/null +++ b/cfaforecastrenewalww/man/get_hosp_data.Rd @@ -0,0 +1,36 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/pre_processing.R +\name{get_hosp_data} +\alias{get_hosp_data} +\title{Gets hospitalization data that model will be trained on} +\usage{ +get_hosp_data( + hosp_data_source, + geo_type, + forecast_date, + hosp_data_dir, + population_data_path, + pull_from_local = FALSE +) +} +\arguments{ +\item{hosp_data_source}{Source of hospitalization data +from which to pull. Options include "NHSN" and "covidcast".} + +\item{geo_type}{type of geographic region for which to pull data} + +\item{forecast_date}{date for which we are producing a forecast} + +\item{hosp_data_dir}{if pulling from local, where to get the data from} + +\item{population_data_path}{path to a table of state populations} + +\item{pull_from_local}{if TRUE, look for local files first, +default value is FALSE} +} +\value{ +a data frame at the geo_type level of number of daily hospital admits +} +\description{ +Gets hospitalization data that model will be trained on +} diff --git a/cfaforecastrenewalww/man/get_hosp_reporting_delay.Rd b/cfaforecastrenewalww/man/get_hosp_reporting_delay.Rd new file mode 100644 index 00000000..35587097 --- /dev/null +++ b/cfaforecastrenewalww/man/get_hosp_reporting_delay.Rd @@ -0,0 +1,19 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/pre_processing.R +\name{get_hosp_reporting_delay} +\alias{get_hosp_reporting_delay} +\title{Get the hospital reporting delay} +\usage{ +get_hosp_reporting_delay(forecast_date) +} +\arguments{ +\item{forecast_date}{The date the forecast is made} +} +\value{ +hosp_reporting delay The delay from forecast date to last hospital +admission date +} +\description{ +This is purely based on our knowledge of the NHSN data reporting, as we +pre-specify before loading the most recent data.. +} diff --git a/cfaforecastrenewalww/man/get_ind_m.Rd b/cfaforecastrenewalww/man/get_ind_m.Rd new file mode 100644 index 00000000..931bd4ba --- /dev/null +++ b/cfaforecastrenewalww/man/get_ind_m.Rd @@ -0,0 +1,20 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/utils.R +\name{get_ind_m} +\alias{get_ind_m} +\title{Get index matrix} +\usage{ +get_ind_m(n_days, n_weeks) +} +\arguments{ +\item{n_days}{number of days we will expand to} + +\item{n_weeks}{number of weeks those days correspond to} +} +\value{ +a n_day x n_week matrix for multiplying by weekly estimated +value to conver it to daily +} +\description{ +Get the matrix needed to convert a vetor from weekly to daily +} diff --git a/cfaforecastrenewalww/man/get_ind_m_cum_sum.Rd b/cfaforecastrenewalww/man/get_ind_m_cum_sum.Rd new file mode 100644 index 00000000..d72ebf02 --- /dev/null +++ b/cfaforecastrenewalww/man/get_ind_m_cum_sum.Rd @@ -0,0 +1,20 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/utils.R +\name{get_ind_m_cum_sum} +\alias{get_ind_m_cum_sum} +\title{Get index matrix} +\usage{ +get_ind_m_cum_sum(n_days, n_weeks) +} +\arguments{ +\item{n_days}{number of days we will expand to} + +\item{n_weeks}{number of weeks those days correspond to} +} +\value{ +a n_day x n_week matrix for multiplying by weekly estimated +value to conver it to daily +} +\description{ +Get the matrix needed to convert a vetor from weekly to daily +} diff --git a/cfaforecastrenewalww/man/get_init_fun.Rd b/cfaforecastrenewalww/man/get_init_fun.Rd new file mode 100644 index 00000000..a504c7d4 --- /dev/null +++ b/cfaforecastrenewalww/man/get_init_fun.Rd @@ -0,0 +1,14 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/get_data.R +\name{get_init_fun} +\alias{get_init_fun} +\title{Get initialization function for stan} +\usage{ +get_init_fun(model_type, train_data, params, stan_data) +} +\value{ +the initialization function +} +\description{ +Get initialization function for stan +} diff --git a/cfaforecastrenewalww/man/get_low_case_count_diagnostic.Rd b/cfaforecastrenewalww/man/get_low_case_count_diagnostic.Rd new file mode 100644 index 00000000..a4aaab6a --- /dev/null +++ b/cfaforecastrenewalww/man/get_low_case_count_diagnostic.Rd @@ -0,0 +1,29 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/process_model_outputs.R +\name{get_low_case_count_diagnostic} +\alias{get_low_case_count_diagnostic} +\title{Calculate low case count diagnostic flag} +\usage{ +get_low_case_count_diagnostic(calib_data) +} +\arguments{ +\item{calib_data}{A dataframe. It has `date` column of type `Date`, +`daily_hosp_admits` column of type numeric and `period` +column of type character.} +} +\value{ +Returns TRUE if less than 10 hospital admissions in either of +the last two weeks +} +\description{ +The diagnostic flag is TRUE if either of the _last_ two weeks of the dataset +have fewer than an aggregate 10 hospital admissions per week. +This aggregation excludes the +count from confirmed outliers, which have been set to NA in the data. +} +\details{ +Adapted from https://github.com/cdcent/cfa-nnh-pipelines/blob/7f1c89d2eecfed89cc3f1be1771d93540ffd6eb4/NHSN/Rt/R/disease_process.R #nolint + +This function assumes that the `calib_data` input dataset has been +"completed": that any implicit missingness has been made explicit. +} diff --git a/cfaforecastrenewalww/man/get_metadata.Rd b/cfaforecastrenewalww/man/get_metadata.Rd new file mode 100644 index 00000000..fab5e011 --- /dev/null +++ b/cfaforecastrenewalww/man/get_metadata.Rd @@ -0,0 +1,19 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/utils.R +\name{get_metadata} +\alias{get_metadata} +\title{Get metadata from a single group training data} +\usage{ +get_metadata(train_data) +} +\arguments{ +\item{train_data}{single group training data +(single location, model type, forecast date)} +} +\value{ +single row dataframe containing values for forecast date, pop, + include_ww, hosp_reporting delay, and location +} +\description{ +From a single model run, get the relevant metadata +} diff --git a/cfaforecastrenewalww/man/get_metadata_yaml.Rd b/cfaforecastrenewalww/man/get_metadata_yaml.Rd new file mode 100644 index 00000000..99ee6117 --- /dev/null +++ b/cfaforecastrenewalww/man/get_metadata_yaml.Rd @@ -0,0 +1,16 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/get_config_vals.R +\name{get_metadata_yaml} +\alias{get_metadata_yaml} +\title{Get metadata to list all states with no wastewater or insufficient wastewater +data} +\usage{ +get_metadata_yaml(full_diagnostics_df, repo_file_path, hosp_only_states) +} +\arguments{ +\item{repo_file_path}{} +} +\description{ +Get metadata to list all states with no wastewater or insufficient wastewater +data +} diff --git a/cfaforecastrenewalww/man/get_model_file_name.Rd b/cfaforecastrenewalww/man/get_model_file_name.Rd new file mode 100644 index 00000000..6ff1131f --- /dev/null +++ b/cfaforecastrenewalww/man/get_model_file_name.Rd @@ -0,0 +1,17 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/get_data.R +\name{get_model_file_name} +\alias{get_model_file_name} +\title{Get shortened name for writing a file with model file name} +\usage{ +get_model_file_name(model_type, include_ww) +} +\arguments{ +\item{model_type}{} +} +\value{ +shortened model type name +} +\description{ +Get shortened name for writing a file with model file name +} diff --git a/cfaforecastrenewalww/man/get_model_file_path.Rd b/cfaforecastrenewalww/man/get_model_file_path.Rd new file mode 100644 index 00000000..dc534aab --- /dev/null +++ b/cfaforecastrenewalww/man/get_model_file_path.Rd @@ -0,0 +1,14 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/get_data.R +\name{get_model_file_path} +\alias{get_model_file_path} +\title{Get path to stan wastewater model} +\usage{ +get_model_file_path(model_type) +} +\value{ +the file path +} +\description{ +Get path to stan wastewater model +} diff --git a/cfaforecastrenewalww/man/get_model_param_df.Rd b/cfaforecastrenewalww/man/get_model_param_df.Rd new file mode 100644 index 00000000..fc42bd28 --- /dev/null +++ b/cfaforecastrenewalww/man/get_model_param_df.Rd @@ -0,0 +1,20 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/model_params.R +\name{get_model_param_df} +\alias{get_model_param_df} +\title{Information about a ww model's parameters and generated quantities} +\usage{ +get_model_param_df(x) +} +\arguments{ +\item{x}{CmdStanModel or CmdStanFit object} +} +\value{ +a dataframe containing the name of each parameter (and/or generated quantity) +and information about how it varies in time and across sites/labs. +} +\description{ +Accepts a string describing the model name, a fitted model (output of model$sample()), +or a model object. +Returns information about the model parameters. +} diff --git a/cfaforecastrenewalww/man/get_nearest_forecast_date.Rd b/cfaforecastrenewalww/man/get_nearest_forecast_date.Rd new file mode 100644 index 00000000..2971e17d --- /dev/null +++ b/cfaforecastrenewalww/man/get_nearest_forecast_date.Rd @@ -0,0 +1,23 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/pre_processing.R +\name{get_nearest_forecast_date} +\alias{get_nearest_forecast_date} +\title{Local functions that are used to pre-process our specific data for use +in the stan model +These will be used to get the data up to the point it needs to be in the +get_stan_data functions, which format the data into the stan lists that the +stan model needs. +None of these will be exported +Get forecast date from today's date} +\usage{ +get_nearest_forecast_date() +} +\description{ +Local functions that are used to pre-process our specific data for use +in the stan model +These will be used to get the data up to the point it needs to be in the +get_stan_data functions, which format the data into the stan lists that the +stan model needs. +None of these will be exported +Get forecast date from today's date +} diff --git a/cfaforecastrenewalww/man/get_param_samples_long_df.Rd b/cfaforecastrenewalww/man/get_param_samples_long_df.Rd new file mode 100644 index 00000000..10574047 --- /dev/null +++ b/cfaforecastrenewalww/man/get_param_samples_long_df.Rd @@ -0,0 +1,23 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/process_model_outputs.R +\name{get_param_samples_long_df} +\alias{get_param_samples_long_df} +\title{Get full parameter distribution} +\usage{ +get_param_samples_long_df(mcmc_fit, draw = NULL) +} +\arguments{ +\item{mcmc_fit}{CmdStanMCMC object} + +\item{draw}{vector, which draws from the MCMC object do we want in the result? +If NULL, returns all. This can be a very large data frame!} +} +\value{ +a tibble containing the posterior distribution of each +parameter and additional information, +namely its name, its temporal context, and its spatial context. +} +\description{ +This function takes in a fitted wastewater model and returns a long-format +tibble of the parameter values for all (or a subset of) draws. +} diff --git a/cfaforecastrenewalww/man/get_parameter_draws.Rd b/cfaforecastrenewalww/man/get_parameter_draws.Rd new file mode 100644 index 00000000..fd647a4d --- /dev/null +++ b/cfaforecastrenewalww/man/get_parameter_draws.Rd @@ -0,0 +1,24 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/process_model_outputs.R +\name{get_parameter_draws} +\alias{get_parameter_draws} +\title{Get posterior parameter draws and summary stats} +\usage{ +get_parameter_draws(model_draws, pars, train_data) +} +\arguments{ +\item{train_data}{the data that went into stan (for a single forecast date, +location, model type, and data scenario)} + +\item{stan_output_draws}{the wide format output directly from stan} +} +\value{ +dataframe with the following parameters: phi_h, phi_w, eta_sd, G, +p_hosp, i0, initial_growth, dur_shed, viral_peak, t_peak, with n_draws from +the posterior alongside median and 50% and 95% credible intervals +} +\description{ +Reads in model_draws, parameters, and training data and gets summary +stats on the model parameters, alongside the metadata associated with the model +run (comes from train data) +} diff --git a/cfaforecastrenewalww/man/get_params.Rd b/cfaforecastrenewalww/man/get_params.Rd new file mode 100644 index 00000000..a9eca9e0 --- /dev/null +++ b/cfaforecastrenewalww/man/get_params.Rd @@ -0,0 +1,15 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/get_data.R +\name{get_params} +\alias{get_params} +\title{Get parameters for model run} +\usage{ +get_params() +} +\value{ +a dataframe with numeric values for parameter values passed to the + model +} +\description{ +Get parameters for model run +} diff --git a/cfaforecastrenewalww/man/get_pars.Rd b/cfaforecastrenewalww/man/get_pars.Rd new file mode 100644 index 00000000..dc0f6884 --- /dev/null +++ b/cfaforecastrenewalww/man/get_pars.Rd @@ -0,0 +1,11 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/process_model_outputs.R +\name{get_pars} +\alias{get_pars} +\title{Get parameters} +\usage{ +get_pars() +} +\description{ +Returns a list of the static parameter in this model. Can be edited as needed +} diff --git a/cfaforecastrenewalww/man/get_pdf_file_path.Rd b/cfaforecastrenewalww/man/get_pdf_file_path.Rd new file mode 100644 index 00000000..3ee332ab --- /dev/null +++ b/cfaforecastrenewalww/man/get_pdf_file_path.Rd @@ -0,0 +1,18 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/get_config_vals.R, R/process_model_outputs.R +\name{get_pdf_file_path} +\alias{get_pdf_file_path} +\title{get the cleaned pdf filepath} +\usage{ +get_pdf_file_path(output_file_path, forecast_date, date_run) + +get_pdf_file_path(output_file_path, forecast_date, date_run) +} +\arguments{ +\item{date_run}{} +} +\description{ +get the cleaned pdf filepath + +Get the hardcoded file path for pdfs per the read me +} diff --git a/cfaforecastrenewalww/man/get_pipeline_metadata.Rd b/cfaforecastrenewalww/man/get_pipeline_metadata.Rd new file mode 100644 index 00000000..5d473089 --- /dev/null +++ b/cfaforecastrenewalww/man/get_pipeline_metadata.Rd @@ -0,0 +1,30 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/get_config_vals.R +\name{get_pipeline_metadata} +\alias{get_pipeline_metadata} +\title{Write pipeline metadata to a YAML} +\usage{ +get_pipeline_metadata( + us_run, + path_to_save_metadata, + run_id, + date_run, + ww_data_path, + hosp_data_dir, + forecast_date, + prod_run, + model_type, + location, + output_file_path, + ... +) +} +\arguments{ +\item{us_run}{US run?} +} +\value{ +the metadata +} +\description{ +Write pipeline metadata to a YAML +} diff --git a/cfaforecastrenewalww/man/get_plot_covidhub_submission.Rd b/cfaforecastrenewalww/man/get_plot_covidhub_submission.Rd new file mode 100644 index 00000000..d748cfb2 --- /dev/null +++ b/cfaforecastrenewalww/man/get_plot_covidhub_submission.Rd @@ -0,0 +1,26 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/plots.R +\name{get_plot_covidhub_submission} +\alias{get_plot_covidhub_submission} +\title{Get plot COVID hub submission} +\usage{ +get_plot_covidhub_submission( + df, + days_to_show_truth_data = 90, + truth_data_path = + "https://media.githubusercontent.com/media/reichlab/covid19-forecast-hub/master/data-truth/truth-Incident\%20Hospitalizations.csv" +) +} +\arguments{ +\item{df}{dataframe containing the 23 quantiles in the forecast dates for all +states for submitting to the hub} + +\item{days_to_show_truth_data}{days we want to go back to show the observed +data before making our forecast, default is 90} + +\item{truth_data_path}{link to get the truth data for comparison, +default is from the hub} +} +\description{ +Get plot COVID hub submission +} diff --git a/cfaforecastrenewalww/man/get_plot_draws.Rd b/cfaforecastrenewalww/man/get_plot_draws.Rd new file mode 100644 index 00000000..4bf27176 --- /dev/null +++ b/cfaforecastrenewalww/man/get_plot_draws.Rd @@ -0,0 +1,53 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/plots.R +\name{get_plot_draws} +\alias{get_plot_draws} +\title{Plot of draws for a single forecast date, with optional groupings} +\usage{ +get_plot_draws( + df, + y, + figure_file_path, + grouping_var = NA, + from_full_df = FALSE, + days_pre_forecast_date_plot = 90, + write_files = TRUE, + show_calibration_data = FALSE, + show_median = FALSE +) +} +\arguments{ +\item{df}{dataframe either containing filepaths to load in model draws or +dataframe of model draws with data. Expected columns are: +name, t, value, draw, include_ww, forecast_date, hosp_reporting_delay, +location, date, daily_hosp_admits, daily_hosp_admits_for_eval, obs_data, +period, model_type} + +\item{y}{outcome variable for the y-axis of plots, options are 'pred_hosp' +and 'pred_ww'} + +\item{figure_file_path}{directory to save the figure} + +\item{grouping_var}{what to group by, default is NA, options are 'model_type' +and 'location'} + +\item{from_full_df}{if TRUE, df is a draws dataframe, if FALSE, df is a data +frame of filepaths} + +\item{days_pre_forecast_date_plot}{how many days to show the calibration data +default is 90} + +\item{write_files}{whether or not to write files to the path, default is TRUE} + +\item{show_calibration_data}{whether or not to show the data the model was +calibrated to, which might be different from the eval data. Default is false} + +\item{show_median}{whether or not to show the median across all draws, default +is false} +} +\value{ +plot object +} +\description{ +Plot of draws for a single forecast date, with optional groupings +} diff --git a/cfaforecastrenewalww/man/get_plot_labsite_ww_draws.Rd b/cfaforecastrenewalww/man/get_plot_labsite_ww_draws.Rd new file mode 100644 index 00000000..f0ae42e7 --- /dev/null +++ b/cfaforecastrenewalww/man/get_plot_labsite_ww_draws.Rd @@ -0,0 +1,30 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/plots.R +\name{get_plot_labsite_ww_draws} +\alias{get_plot_labsite_ww_draws} +\title{Plot of lab-site level wastewater draws} +\usage{ +get_plot_labsite_ww_draws( + df, + figure_file_path, + from_full_df = FALSE, + write_files = TRUE +) +} +\arguments{ +\item{df}{dataframe of draws or dataframe containing filepath to load in draws} + +\item{figure_file_path}{path to save figure + @param from_full_df if TRUE then df is draws object, if FALSE then df is a +dataframe of filepaths to load in the parameter object} + +\item{write_files}{if TRUE then write files to specified location, if FALSE +then don't} +} +\value{ +plot object of site level wastewater trajectories with observed data +overlaid +} +\description{ +Plot of lab-site level wastewater draws +} diff --git a/cfaforecastrenewalww/man/get_plot_metadata.Rd b/cfaforecastrenewalww/man/get_plot_metadata.Rd new file mode 100644 index 00000000..34741870 --- /dev/null +++ b/cfaforecastrenewalww/man/get_plot_metadata.Rd @@ -0,0 +1,19 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/plots.R +\name{get_plot_metadata} +\alias{get_plot_metadata} +\title{Get the metadata needed for plotting} +\usage{ +get_plot_metadata(df, y = NA) +} +\arguments{ +\item{y}{the output your plotting, default is NA in which case colors will be +based on other variables} +} +\value{ +a list with the plot color, label for y axis, and the output +description to use in the title +} +\description{ +Get the metadata needed for plotting +} diff --git a/cfaforecastrenewalww/man/get_plot_param_distribs.Rd b/cfaforecastrenewalww/man/get_plot_param_distribs.Rd new file mode 100644 index 00000000..4ff3f64b --- /dev/null +++ b/cfaforecastrenewalww/man/get_plot_param_distribs.Rd @@ -0,0 +1,34 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/plots.R +\name{get_plot_param_distribs} +\alias{get_plot_param_distribs} +\title{Get plot of parameter distributions} +\usage{ +get_plot_param_distribs( + df, + figure_file_path, + from_full_df = FALSE, + write_files = TRUE, + ... +) +} +\arguments{ +\item{df}{dataframe either of parameter draws or of the filepath to obtain +the parameter draws} + +\item{figure_file_path}{directory to save the figure} + +\item{from_full_df}{if TRUE then df is draws object, if FALSE then df is a +dataframe of filepaths to load in the parameter object} + +\item{write_files}{if TRUE then write files to specified location, if FALSE +then don't} + +\item{...}{} +} +\value{ +plot object of histograms of key parameters +} +\description{ +Get plot of parameter distributions +} diff --git a/cfaforecastrenewalww/man/get_ppa_long.Rd b/cfaforecastrenewalww/man/get_ppa_long.Rd new file mode 100644 index 00000000..2d559973 --- /dev/null +++ b/cfaforecastrenewalww/man/get_ppa_long.Rd @@ -0,0 +1,19 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/posterior_predictive_analysis.R +\name{get_ppa_long} +\alias{get_ppa_long} +\title{Reformats output of posterior_predictive_analysis() into something more easily usable} +\usage{ +get_ppa_long(x, keep_generated = FALSE) +} +\arguments{ +\item{x}{output of posterior_predictive_analysis()} + +\item{keep_generated}{boolean indicating whether to keep generated quantities or not} +} +\value{ +long-format tibble which is per-parameter, per-replicate-analysis +} +\description{ +Reformats output of posterior_predictive_analysis() into something more easily usable +} diff --git a/cfaforecastrenewalww/man/get_quantiles.Rd b/cfaforecastrenewalww/man/get_quantiles.Rd new file mode 100644 index 00000000..caccc269 --- /dev/null +++ b/cfaforecastrenewalww/man/get_quantiles.Rd @@ -0,0 +1,14 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/utils.R +\name{get_quantiles} +\alias{get_quantiles} +\title{Get the quantiles being used} +\usage{ +get_quantiles(grouped_quantiles) +} +\arguments{ +\item{grouped_quantiles}{} +} +\description{ +Get the quantiles being used +} diff --git a/cfaforecastrenewalww/man/get_quantiles_on_site_level_ww.Rd b/cfaforecastrenewalww/man/get_quantiles_on_site_level_ww.Rd new file mode 100644 index 00000000..e1db4ee0 --- /dev/null +++ b/cfaforecastrenewalww/man/get_quantiles_on_site_level_ww.Rd @@ -0,0 +1,18 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/process_model_outputs.R +\name{get_quantiles_on_site_level_ww} +\alias{get_quantiles_on_site_level_ww} +\title{Quantile the site level expected observed WW} +\usage{ +get_quantiles_on_site_level_ww(draws) +} +\arguments{ +\item{draws}{the tidy bayes output with stacked draws of all generated quantites} +} +\value{ +a wide format dataframe with just the median, 50th, and 95th quantiles of + the expected WW concentation +} +\description{ +Quantile the site level expected observed WW +} diff --git a/cfaforecastrenewalww/man/get_random_string.Rd b/cfaforecastrenewalww/man/get_random_string.Rd new file mode 100644 index 00000000..bcf74758 --- /dev/null +++ b/cfaforecastrenewalww/man/get_random_string.Rd @@ -0,0 +1,17 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/utils.R +\name{get_random_string} +\alias{get_random_string} +\title{Get a random string of length 8 containing 3 letters, 4 digits, 1 letter} +\usage{ +get_random_string(forecast_date, date_run, ww_data_path) +} +\arguments{ +\item{ww_data_path}{} +} +\value{ +the random string with uppercase letters +} +\description{ +Get a random string of length 8 containing 3 letters, 4 digits, 1 letter +} diff --git a/cfaforecastrenewalww/man/get_raw_param_draws.Rd b/cfaforecastrenewalww/man/get_raw_param_draws.Rd new file mode 100644 index 00000000..733f0276 --- /dev/null +++ b/cfaforecastrenewalww/man/get_raw_param_draws.Rd @@ -0,0 +1,19 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/process_model_outputs.R +\name{get_raw_param_draws} +\alias{get_raw_param_draws} +\title{Get raw parameter draws} +\usage{ +get_raw_param_draws(stan_output_draws, n_draws = 500, ...) +} +\arguments{ +\item{...}{} +} +\value{ +a long tidy dataframe with columns names: +name, t, value, draw corresponding to the value of the draw of the posterior +of that parameter +} +\description{ +This concatenates all the tidy draws dataframes of each of the parameters +} diff --git a/cfaforecastrenewalww/man/get_regions_for_mapping.Rd b/cfaforecastrenewalww/man/get_regions_for_mapping.Rd new file mode 100644 index 00000000..47a1f1aa --- /dev/null +++ b/cfaforecastrenewalww/man/get_regions_for_mapping.Rd @@ -0,0 +1,15 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/pre_processing.R +\name{get_regions_for_mapping} +\alias{get_regions_for_mapping} +\title{: get states mapped to their regions} +\usage{ +get_regions_for_mapping() +} +\value{ +state abbreviations and region that corr to the WW data source for +the biobot data +} +\description{ +: get states mapped to their regions +} diff --git a/cfaforecastrenewalww/man/get_repo_forecast_file_path.Rd b/cfaforecastrenewalww/man/get_repo_forecast_file_path.Rd new file mode 100644 index 00000000..7e0c870a --- /dev/null +++ b/cfaforecastrenewalww/man/get_repo_forecast_file_path.Rd @@ -0,0 +1,14 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/process_model_outputs.R +\name{get_repo_forecast_file_path} +\alias{get_repo_forecast_file_path} +\title{Get the filepath to save the forecasts within this repo} +\usage{ +get_repo_forecast_file_path(forecast_date) +} +\arguments{ +\item{forecast_date}{date of forecast} +} +\description{ +Get the filepath to save the forecasts within this repo +} diff --git a/cfaforecastrenewalww/man/get_rt_boxplot_across_states.Rd b/cfaforecastrenewalww/man/get_rt_boxplot_across_states.Rd new file mode 100644 index 00000000..be77683b --- /dev/null +++ b/cfaforecastrenewalww/man/get_rt_boxplot_across_states.Rd @@ -0,0 +1,27 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/plots.R +\name{get_rt_boxplot_across_states} +\alias{get_rt_boxplot_across_states} +\title{Get R(t) box plot across states} +\usage{ +get_rt_boxplot_across_states( + df_of_filepaths, + figure_file_path, + write_files = TRUE +) +} +\arguments{ +\item{df_of_filepaths}{dataframe containing the filepaths needed to load +in the R(t) trajectories for each state} + +\item{figure_file_path}{directory to save the figure} + +\item{write_files}{if TRUE then write files to specified location, if FALSE +then don't} +} +\value{ +plot object of R(t) as a horizontal box plot for each state +} +\description{ +Get R(t) box plot across states +} diff --git a/cfaforecastrenewalww/man/get_rt_from_draws.Rd b/cfaforecastrenewalww/man/get_rt_from_draws.Rd new file mode 100644 index 00000000..e86058d6 --- /dev/null +++ b/cfaforecastrenewalww/man/get_rt_from_draws.Rd @@ -0,0 +1,30 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/plots.R +\name{get_rt_from_draws} +\alias{get_rt_from_draws} +\title{Get R(t) for a single location} +\usage{ +get_rt_from_draws( + df, + figure_file_path, + from_full_df = FALSE, + write_files = TRUE +) +} +\arguments{ +\item{figure_file_path}{higher level directory where data from this pipeline will be saved} + +\item{from_full_df}{if TRUE then df is draws object, if FALSE then df is a +dataframe of filepaths to load in the parameter object} + +\item{write_files}{if TRUE then write files to specified location, if FALSE +then don't} + +\item{quantiles}{dataframe of forecasts with quantiles including for R(t)} +} +\value{ +plot of R(t) for a single location, model, and forecast date +} +\description{ +Get R(t) for a single location +} diff --git a/cfaforecastrenewalww/man/get_rt_site_level.Rd b/cfaforecastrenewalww/man/get_rt_site_level.Rd new file mode 100644 index 00000000..8c01972e --- /dev/null +++ b/cfaforecastrenewalww/man/get_rt_site_level.Rd @@ -0,0 +1,30 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/plots.R +\name{get_rt_site_level} +\alias{get_rt_site_level} +\title{Plot of site-level Rt} +\usage{ +get_rt_site_level( + df, + figure_file_path, + from_full_df = FALSE, + write_files = TRUE +) +} +\arguments{ +\item{df}{dataframe of either model draws or filepath to load in model draws} + +\item{figure_file_path}{where to save the figure} + +\item{from_full_df}{if TRUE then df is draws object, if FALSE then df is a +dataframe of filepaths to load in the parameter object} + +\item{write_files}{if TRUE then write files to specified location, if FALSE +then don't} +} +\value{ +plot object of R(t)s in each site with state level median overlaid +} +\description{ +Plot of site-level Rt +} diff --git a/cfaforecastrenewalww/man/get_scores.Rd b/cfaforecastrenewalww/man/get_scores.Rd new file mode 100644 index 00000000..7c287718 --- /dev/null +++ b/cfaforecastrenewalww/man/get_scores.Rd @@ -0,0 +1,24 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/process_model_outputs.R +\name{get_scores} +\alias{get_scores} +\title{Get scores} +\usage{ +get_scores( + quantiles, + output_file_path, + scores_file_path = file.path("summaries", "scores"), + grouping_vars = c("hosp_reporting_delay", "location_name", "period", "forecast_date", + "name", "model"), + write_files = TRUE +) +} +\arguments{ +\item{write_files}{} +} +\value{ +a dataframe of average scores over the grouping variables indicated +} +\description{ +Reads in the quantiles and summarizes scores by the grouping variables specified +} diff --git a/cfaforecastrenewalww/man/get_secret.Rd b/cfaforecastrenewalww/man/get_secret.Rd new file mode 100644 index 00000000..0b96ab3a --- /dev/null +++ b/cfaforecastrenewalww/man/get_secret.Rd @@ -0,0 +1,17 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/setup_secrets.R +\name{get_secret} +\alias{get_secret} +\title{Interface for getting information needed for API interfacing} +\usage{ +get_secret(secret) +} +\arguments{ +\item{secret}{character, name of the API token/secret/ID needed} +} +\value{ +the API token/secret/ID, as a character +} +\description{ +Interface for getting information needed for API interfacing +} diff --git a/cfaforecastrenewalww/man/get_site_county_map.Rd b/cfaforecastrenewalww/man/get_site_county_map.Rd new file mode 100644 index 00000000..f0d92db5 --- /dev/null +++ b/cfaforecastrenewalww/man/get_site_county_map.Rd @@ -0,0 +1,17 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/pre_processing.R +\name{get_site_county_map} +\alias{get_site_county_map} +\title{Get site county mapp} +\usage{ +get_site_county_map(nwss) +} +\arguments{ +\item{nwss}{wastewater data} +} +\value{ +a mapping from the unique county fips in the ww data to the major county +} +\description{ +Get site county mapp +} diff --git a/cfaforecastrenewalww/man/get_stan_data.Rd b/cfaforecastrenewalww/man/get_stan_data.Rd new file mode 100644 index 00000000..6f68a4ea --- /dev/null +++ b/cfaforecastrenewalww/man/get_stan_data.Rd @@ -0,0 +1,38 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/get_data.R +\name{get_stan_data} +\alias{get_stan_data} +\title{Get stan data} +\usage{ +get_stan_data( + train_data, + params, + forecast_date, + forecast_time, + include_hosp, + compute_likelihood, + generation_interval, + inf_to_hosp, + infection_feedback_pmf, + ... +) +} +\arguments{ +\item{generation_interval}{vector of discretized probability mass indexed +starting at day 1 after infection, describing the probability of onwards +infection on each day +after infection} + +\item{inf_to_hosp}{vector of discretized probability mass describing the +probability of hopsital admissions on each day of infection, indexed +starting at 0} + +\item{infection_feedback_pmf}{vector of discretized probability mass +used to enforce the delay distribution on infection feedback} + +\item{...}{} +} +\description{ +Stan data needed for the model where we aggregate the ww data +so that we have at most one WW osbservation per day (but likely a weekly avg) +} diff --git a/cfaforecastrenewalww/man/get_stan_data_site_level_model.Rd b/cfaforecastrenewalww/man/get_stan_data_site_level_model.Rd new file mode 100644 index 00000000..1eca4d9e --- /dev/null +++ b/cfaforecastrenewalww/man/get_stan_data_site_level_model.Rd @@ -0,0 +1,40 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/get_data.R +\name{get_stan_data_site_level_model} +\alias{get_stan_data_site_level_model} +\title{Get stan data site level model} +\usage{ +get_stan_data_site_level_model( + train_data, + params, + forecast_date, + forecast_time, + model_type, + generation_interval, + inf_to_hosp, + infection_feedback_pmf, + include_hosp = 1, + compute_likelihood = 1, + ... +) +} +\arguments{ +\item{generation_interval}{vector of discretized probability mass indexed +starting at day 1 after infection, describing the probability of onwards +infection on each day +after infection} + +\item{inf_to_hosp}{vector of discretized probability mass describing the +probability of hopsital admissions on each day of infection, indexed +starting at 0} + +\item{infection_feedback_pmf}{vector of discretized probability mass +used to enforce the delay distribution on infection feedback} + +\item{...}{} +} +\description{ +Get the formating of the stan data needed for the site level model, where +we can observe WW observations on any day and multiple per day across +different sites +} diff --git a/cfaforecastrenewalww/man/get_state_level_hosp_data.Rd b/cfaforecastrenewalww/man/get_state_level_hosp_data.Rd new file mode 100644 index 00000000..32dc32ee --- /dev/null +++ b/cfaforecastrenewalww/man/get_state_level_hosp_data.Rd @@ -0,0 +1,39 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/pre_processing.R +\name{get_state_level_hosp_data} +\alias{get_state_level_hosp_data} +\title{Get raw hospitalization data} +\usage{ +get_state_level_hosp_data( + hosp_data_source, + forecast_date, + hosp_data_dir, + population_data_path, + pull_from_local = FALSE +) +} +\arguments{ +\item{hosp_data_source}{covidcast or another source (e.g. if pulling directly +from DCIPHER or the S drive, will need to write relevant paths for this)} + +\item{forecast_date}{date we want the data as of (as if we were making a +forecast on that day)} + +\item{hosp_data_dir}{if pulling from local, which directory +to search for datestamped hospitalization data} + +\item{population_data_path}{path to a table of state populations} + +\item{pull_from_local}{if TRUE, look for local files first, +default value is FALSE} +} +\value{ +dataframe containing number of hospital admissions by state +} +\description{ +This function takes in a hospitalization data source and a forecast date +and generates a dataframe with state-level hospitalizations from all time +points as of that forecast date. +If the vintaged data available as of a forecast date already exists, it pulls +from that, otherwise it pulls from hosp data source and saves the file. +} diff --git a/cfaforecastrenewalww/man/get_state_level_summary.Rd b/cfaforecastrenewalww/man/get_state_level_summary.Rd new file mode 100644 index 00000000..a25fbb49 --- /dev/null +++ b/cfaforecastrenewalww/man/get_state_level_summary.Rd @@ -0,0 +1,23 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/pre_processing.R +\name{get_state_level_summary} +\alias{get_state_level_summary} +\title{Get summary of WW viral concentrations by state} +\usage{ +get_state_level_summary(nwss_by_week) +} +\arguments{ +\item{nwss_by_week}{} +} +\description{ +This uses the same processing steps that biobot uses (described in: +https://github.com/biobotanalytics/covid19-wastewater-data#wastewater-data) +We make columns for the unweighted avg concentraiton across the state, +the population weighted average, the population weighted average with a +300,000 person threshold for site-specific population served, and a 3 week +rolling average of the weighted concentration with the threshold, for both +the state and national level. If there are gaps in weeks for a state, +the 3 week average is across a longer time frame. We purposely do not use +expand grid to inflate this, as we want those states with missing/ incomplete +data to be missing data when the model is fit (rather than have NA values). +} diff --git a/cfaforecastrenewalww/man/get_submission_file_path.Rd b/cfaforecastrenewalww/man/get_submission_file_path.Rd new file mode 100644 index 00000000..5a6078e3 --- /dev/null +++ b/cfaforecastrenewalww/man/get_submission_file_path.Rd @@ -0,0 +1,20 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/get_config_vals.R, R/process_model_outputs.R +\name{get_submission_file_path} +\alias{get_submission_file_path} +\title{Get the submission file path fior hub csv} +\usage{ +get_submission_file_path(output_file_path, forecast_date, date_run) + +get_submission_file_path(output_file_path, forecast_date, date_run) +} +\arguments{ +\item{date_run}{} + +\item{...}{} +} +\description{ +Get the submission file path fior hub csv + +Get the hardcoded submission file path +} diff --git a/cfaforecastrenewalww/man/get_submission_filepath_df.Rd b/cfaforecastrenewalww/man/get_submission_filepath_df.Rd new file mode 100644 index 00000000..2b140ee8 --- /dev/null +++ b/cfaforecastrenewalww/man/get_submission_filepath_df.Rd @@ -0,0 +1,49 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/process_model_outputs.R +\name{get_submission_filepath_df} +\alias{get_submission_filepath_df} +\title{Get a consolidated dataframe with each location and its corresponding +file path for the necesary outputs.} +\usage{ +get_submission_filepath_df( + prod_model_type, + hosp_only_states, + df_of_filepaths_inf_dyn = NA, + df_of_filepaths_site_obs = NA, + df_of_filepaths_hosp_only = NA, + df_of_filepaths_agg = NA, + df_of_filepaths_varying_conc = NA +) +} +\arguments{ +\item{prod_model_type}{the model type we want to submit, default is +"site-level infection dynamics"} + +\item{hosp_only_states}{the states that we want to manually +specify to use the hospital admissions only model instead of the wastewater +informed model} + +\item{df_of_filepaths_inf_dyn}{the output filepaths resulting after running +the infection dynamics model targets, default is NA} + +\item{df_of_filepaths_site_obs}{the output filepaths resulting after running +the site-level observation error model targets, default is NA} + +\item{df_of_filepaths_hosp_only}{the output filepaths resulting after running +the hospital admissions only model targets, default is NA} + +\item{df_of_filepaths_agg}{the output filepaths resulting after running the +national aggreated model target, default is NA} + +\item{df_of_filepaths_varying_conc}{the output filepaths resulting after +running the time varying concentration model targets, default is NA} +} +\value{ +a dataframe of length of the number of locations (will message if +not = 53) containing the model type and filepaths for the model outputs needed +for the hub submission +} +\description{ +Get a consolidated dataframe with each location and its corresponding +file path for the necesary outputs. +} diff --git a/cfaforecastrenewalww/man/get_summarized_table.Rd b/cfaforecastrenewalww/man/get_summarized_table.Rd new file mode 100644 index 00000000..d6d6582c --- /dev/null +++ b/cfaforecastrenewalww/man/get_summarized_table.Rd @@ -0,0 +1,19 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/get_config_vals.R +\name{get_summarized_table} +\alias{get_summarized_table} +\title{Get summarized table with each location and} +\usage{ +get_summarized_table( + hub_submission_df, + full_diagnostics_df, + hosp_only_states, + repo_file_path +) +} +\arguments{ +\item{repo_file_path}{} +} +\description{ +Get summarized table with each location and +} diff --git a/cfaforecastrenewalww/man/get_summary_stats.Rd b/cfaforecastrenewalww/man/get_summary_stats.Rd new file mode 100644 index 00000000..f7711b49 --- /dev/null +++ b/cfaforecastrenewalww/man/get_summary_stats.Rd @@ -0,0 +1,32 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/process_model_outputs.R +\name{get_summary_stats} +\alias{get_summary_stats} +\title{Get the lists of states with different flags (both data and model)} +\usage{ +get_summary_stats( + df, + ebmfi_tolerance = 0.2, + divergences_tolerance = 20, + p_high_rhat_tolerance = 0.05, + n_max_tree_depth_tol = 20 +) +} +\arguments{ +\item{df}{long table containing diagnostic, value, location, forecast_date, +and model_type} + +\item{ebmfi_tolerance}{tolerance for mean EBMFI, default of 0.2} + +\item{divergences_tolerance}{tolerance for number of divergent transitions +assuming 2000 iterations, default 20} + +\item{p_high_rhat_tolerance}{tolerance for probability of high p_hat, +default 0.05} + +\item{n_max_tree_depth_tol}{tolerance for number of draws that +hit the maximum tree depth, default 20} +} +\description{ +Get the lists of states with different flags (both data and model) +} diff --git a/cfaforecastrenewalww/man/get_testing_data.Rd b/cfaforecastrenewalww/man/get_testing_data.Rd new file mode 100644 index 00000000..0ee77a72 --- /dev/null +++ b/cfaforecastrenewalww/man/get_testing_data.Rd @@ -0,0 +1,43 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/pre_processing.R +\name{get_testing_data} +\alias{get_testing_data} +\title{Get testing dataset} +\usage{ +get_testing_data( + data_as_of, + forecast_date, + location, + calibration_time, + forecast_time, + hosp_reporting_delay, + geo_type, + hosp_data_source, + pull_from_local, + hosp_data_dir, + population_data_path +) +} +\arguments{ +\item{ww_data_raw}{The WW data that we need alongside +the testing hospitalization data (WW data doesn't change)} + +\item{config_vars}{The config vars that tell us the +forecast date, locations, data sources, hosp reporting +delays, etc} + +\item{date_as_of}{The date that we want to evaluate the +projections as of. This could be today, or could be some +weeks in the future} +} +\value{ +A dataset that goes up until the forecast_date + +forecast_time and starts when the calibration started +for each location. Labels whether the data is calibration, +nowcast, or forecasted. This will be for multiple locations, +but only for a single model type, forecast date, and +hospitalizaiton reporting delay +} +\description{ +Get testing dataset +} diff --git a/cfaforecastrenewalww/man/get_training_data.Rd b/cfaforecastrenewalww/man/get_training_data.Rd new file mode 100644 index 00000000..b662638e --- /dev/null +++ b/cfaforecastrenewalww/man/get_training_data.Rd @@ -0,0 +1,28 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/pre_processing.R +\name{get_training_data} +\alias{get_training_data} +\title{Get dataframe with wastewater and hospitalizaiton data for training the model} +\usage{ +get_training_data( + ww_data_raw, + hosp_data_raw, + forecast_date, + calibration_time, + location, + hosp_reporting_delay, + forecast_time +) +} +\arguments{ +\item{forecast_time}{} +} +\value{ +a dataframe of daily hospital admits, observed wastewater +concentrations, time starting at the start of the calibration period and +going til the end of the forecast period, the day of the week, period, date, +and location +} +\description{ +Get dataframe with wastewater and hospitalizaiton data for training the model +} diff --git a/cfaforecastrenewalww/man/get_wastewater_diagnostic.Rd b/cfaforecastrenewalww/man/get_wastewater_diagnostic.Rd new file mode 100644 index 00000000..a3c56356 --- /dev/null +++ b/cfaforecastrenewalww/man/get_wastewater_diagnostic.Rd @@ -0,0 +1,45 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/process_model_outputs.R +\name{get_wastewater_diagnostic} +\alias{get_wastewater_diagnostic} +\title{Get some basic flags on the wastewater data, for internal use and for +reporting out in our metadata} +\usage{ +get_wastewater_diagnostic( + calib_data, + delay_thres = 21, + n_dps_thres = 5, + prop_below_lod_thres = 0.5, + sd_thres = 0.1, + mean_log_ww_value_thres = -4 +) +} +\arguments{ +\item{calib_data}{The training data object susbetted to before the forecast +date} + +\item{delay_thres}{The maximum number of days of delay between the last +wastewater data point and the forecat date, before we would flag a state as +having insufficient wastewater data to inform a forecast. Default is 21} + +\item{n_dps_thres}{The threshold number of data points within a single site +within a state before we would flag the state as having insufficient +wastewater data to inform a forecast. Default is 5} + +\item{prop_below_lod_thres}{The threshold proportion of wastewater data +points that can be below the LOD. If greater than this proportion of points +are below the LOD, we flag the state as having insufficient wastewater data. +Default is 0.5} + +\item{sd_thres}{The minimum standard deviation between wastewater data points +within a site. This is intended to catch when a site reports all the same +values. Default is 0.1} +} +\value{ +a dataframe with 5 True or False flags corresponding to wastewater +data presence and quality +} +\description{ +Get some basic flags on the wastewater data, for internal use and for +reporting out in our metadata +} diff --git a/cfaforecastrenewalww/man/get_weekly_summary.Rd b/cfaforecastrenewalww/man/get_weekly_summary.Rd new file mode 100644 index 00000000..f1ff138c --- /dev/null +++ b/cfaforecastrenewalww/man/get_weekly_summary.Rd @@ -0,0 +1,18 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/pre_processing.R +\name{get_weekly_summary} +\alias{get_weekly_summary} +\title{Summarize data into weekly by site} +\usage{ +get_weekly_summary(nwss_subset, ww_target_type = "pcr_target_avg_conc") +} +\arguments{ +\item{nwss_subset}{subsetted nwss data} +} +\value{ +weekly summary of nwss data by site +} +\description{ +Get one sample per site per week by averaging over the week if a site submits +more than once per week +} diff --git a/cfaforecastrenewalww/man/get_ww_data.Rd b/cfaforecastrenewalww/man/get_ww_data.Rd new file mode 100644 index 00000000..d06b2ca4 --- /dev/null +++ b/cfaforecastrenewalww/man/get_ww_data.Rd @@ -0,0 +1,31 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/pre_processing.R +\name{get_ww_data} +\alias{get_ww_data} +\title{Get the watstewater data for a particular source +and geographic granularity} +\usage{ +get_ww_data( + ww_data_source, + geo_type, + ww_data_type, + ww_target_type, + ww_geo_type, + ww_data_path, + ... +) +} +\arguments{ +\item{ww_data_path}{} +} +\value{ +dataframe with observed viral concentrations at the geographic +level specified and weekly temporal granularity. Dates correspond to the +middle of the week. Will be used to map to hospitalization data. +} +\description{ +Wrapper function around the worker functions. +Outputs a different dataframe depending on if +the pipeline is site level (ww_geo_type != geo_type) +or state level +} diff --git a/cfaforecastrenewalww/man/get_ww_site_plots.Rd b/cfaforecastrenewalww/man/get_ww_site_plots.Rd new file mode 100644 index 00000000..9fa1ce13 --- /dev/null +++ b/cfaforecastrenewalww/man/get_ww_site_plots.Rd @@ -0,0 +1,30 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/plots.R +\name{get_ww_site_plots} +\alias{get_ww_site_plots} +\title{Plot of lab-site level wastewater quantiles} +\usage{ +get_ww_site_plots( + df, + figure_file_path, + from_full_df = FALSE, + write_files = TRUE +) +} +\arguments{ +\item{df}{dataframe of draws or dataframe containing filepath to load in draws} + +\item{figure_file_path}{path to save figure + @param from_full_df if TRUE then df is draws object, if FALSE then df is a +dataframe of filepaths to load in the parameter object} + +\item{write_files}{if TRUE then write files to specified location, if FALSE +then don't} +} +\value{ +plot object of site level wastewater median, 50th, and 95% CI + with observed data overlaid +} +\description{ +Plot of lab-site level wastewater quantiles +} diff --git a/cfaforecastrenewalww/man/init_subset_nwss_data.Rd b/cfaforecastrenewalww/man/init_subset_nwss_data.Rd new file mode 100644 index 00000000..d971c465 --- /dev/null +++ b/cfaforecastrenewalww/man/init_subset_nwss_data.Rd @@ -0,0 +1,20 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/pre_processing.R +\name{init_subset_nwss_data} +\alias{init_subset_nwss_data} +\title{Initial subsetting of NWSS data} +\usage{ +init_subset_nwss_data(raw_nwss_data) +} +\arguments{ +\item{raw_nwss_data}{nwss data from nwss} +} +\value{ +nwss_subset_raw which just dplyr::filters based on sample types and wwtp and +returns a subset of the columns +} +\description{ +Grab the columns we want and subset to raw wastewater and to only +Wastewater treatment plants (rather than downstream sites, for now). +Transform concentration to copies per mL +} diff --git a/cfaforecastrenewalww/man/loc_abbr_to_flusight_code.Rd b/cfaforecastrenewalww/man/loc_abbr_to_flusight_code.Rd new file mode 100644 index 00000000..96f72279 --- /dev/null +++ b/cfaforecastrenewalww/man/loc_abbr_to_flusight_code.Rd @@ -0,0 +1,26 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/forecasttools.R +\name{loc_abbr_to_flusight_code} +\alias{loc_abbr_to_flusight_code} +\title{Convert a two-letter location abbreviation to a +two-character FluSight location code} +\usage{ +loc_abbr_to_flusight_code(abbrs) +} +\arguments{ +\item{abbrs}{vector of USPS two letter name abbreviations} +} +\value{ +vector of the same length recoded as flusight +location codes +} +\description{ +Given a vector of state/territory two-letter +USPS short names (e.g. MA, TX, PR), return +the corresponding FluSight challenge location +code (legacy FIPS code for states and territories, +`US` for the US). +} +\seealso{ +[loc_flusight_code_to_abbr()] +} diff --git a/cfaforecastrenewalww/man/log_standardize.Rd b/cfaforecastrenewalww/man/log_standardize.Rd new file mode 100644 index 00000000..dea3467e --- /dev/null +++ b/cfaforecastrenewalww/man/log_standardize.Rd @@ -0,0 +1,11 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/EDA_utils.R +\name{log_standardize} +\alias{log_standardize} +\title{As standardize, but on log scale, possibly removing zeros (or near-zeros)} +\usage{ +log_standardize(x, use_mad = FALSE, zero_threshold = 1e-08) +} +\description{ +As standardize, but on log scale, possibly removing zeros (or near-zeros) +} diff --git a/cfaforecastrenewalww/man/make_hospital_onset_delay_pmf.Rd b/cfaforecastrenewalww/man/make_hospital_onset_delay_pmf.Rd new file mode 100644 index 00000000..d486195a --- /dev/null +++ b/cfaforecastrenewalww/man/make_hospital_onset_delay_pmf.Rd @@ -0,0 +1,23 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/delay_distribs.R +\name{make_hospital_onset_delay_pmf} +\alias{make_hospital_onset_delay_pmf} +\title{Make hospital onset delay pmf} +\usage{ +make_hospital_onset_delay_pmf( + neg_binom_mu = 6.98665, + neg_binom_size = 2.490848 +) +} +\arguments{ +\item{neg_binom_size}{} +} +\value{ +pmf of distribution from symptom onset to hospital admission +} +\description{ +Uses the parameter estimates from cfa-parameter-estimates, +which is based on Danache et al linelist data from symptom onset to hospital +admission. See below: +https://journals.plos.org/plosone/article?id=10.1371/journal.pone.0261428 +} diff --git a/cfaforecastrenewalww/man/make_incubation_period_pmf.Rd b/cfaforecastrenewalww/man/make_incubation_period_pmf.Rd new file mode 100644 index 00000000..03429478 --- /dev/null +++ b/cfaforecastrenewalww/man/make_incubation_period_pmf.Rd @@ -0,0 +1,21 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/delay_distribs.R +\name{make_incubation_period_pmf} +\alias{make_incubation_period_pmf} +\title{Make incubation period pmf} +\usage{ +make_incubation_period_pmf( + backward_scale = 3.6, + backward_shape = 1.5, + r = 0.15 +) +} +\value{ +pmf of incubation period +} +\description{ +This uses NNH's logic and workflow to make a pmf corresponding to +the incubation period for COVID after Omicron used in Park et al 2023 +(which we also use for the +lognormal generation interval). These estimates are from early Omicron. +} diff --git a/cfaforecastrenewalww/man/make_pps_data.Rd b/cfaforecastrenewalww/man/make_pps_data.Rd new file mode 100644 index 00000000..6eb20182 --- /dev/null +++ b/cfaforecastrenewalww/man/make_pps_data.Rd @@ -0,0 +1,26 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/make_pps_data.R +\name{make_pps_data} +\alias{make_pps_data} +\title{Gets generated quantites from a fitted ww model and formats for stan} +\usage{ +make_pps_data(mcmc_fit, real_data, config, draw = NULL) +} +\arguments{ +\item{mcmc_fit}{CmdStanMCMC object} + +\item{real_data}{the stan data object which produced the mcmc_fit} + +\item{config}{the output of get_config_vals() which produced the mcmc_fit} + +\item{draw}{vector, which draws from the MCMC object do we want in the result? +If NULL, uses all. This can be a very large data frame!} +} +\value{ +a list, each of which is a list of formatted stan data +} +\description{ +This function takes in a fitted wastewater model and some of the inputs which produced +it and returns data which can be used to fit the model to the posterior +predictive distribution of datasets. +} diff --git a/cfaforecastrenewalww/man/make_reporting_delay_pmf.Rd b/cfaforecastrenewalww/man/make_reporting_delay_pmf.Rd new file mode 100644 index 00000000..4143f940 --- /dev/null +++ b/cfaforecastrenewalww/man/make_reporting_delay_pmf.Rd @@ -0,0 +1,19 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/delay_distribs.R +\name{make_reporting_delay_pmf} +\alias{make_reporting_delay_pmf} +\title{Make reporting delay pmf} +\usage{ +make_reporting_delay_pmf(incubation_period_pmf, hospital_onset_delay_pmf) +} +\arguments{ +\item{hospital_onset_delay_pmf}{} +} +\value{ +convolution of incubation period and sympton onset to hospital +admission pmf +} +\description{ +Convolve the incubation period pmf with the symptom to hospital admission pmf +and normalize +} diff --git a/cfaforecastrenewalww/man/manual_removal_of_hosp_data.Rd b/cfaforecastrenewalww/man/manual_removal_of_hosp_data.Rd new file mode 100644 index 00000000..0bcf352a --- /dev/null +++ b/cfaforecastrenewalww/man/manual_removal_of_hosp_data.Rd @@ -0,0 +1,26 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/pre_processing.R +\name{manual_removal_of_hosp_data} +\alias{manual_removal_of_hosp_data} +\title{Manual removal of hopsital admissions +data points in particular states} +\usage{ +manual_removal_of_hosp_data(train_data, vector_of_states, vector_of_dates, ...) +} +\arguments{ +\item{train_data}{original training dataset +with hopsitalizations in tact} + +\item{vector_of_states}{states in the order +of the corresponding dates we want to remove} + +\item{vector_of_dates}{dates lining up with the +states we want to remove from} +} +\value{ +revised train data with hospital admissions removed +} +\description{ +Manual removal of hopsital admissions +data points in particular states +} diff --git a/cfaforecastrenewalww/man/max_delta.Rd b/cfaforecastrenewalww/man/max_delta.Rd new file mode 100644 index 00000000..b40d5fd0 --- /dev/null +++ b/cfaforecastrenewalww/man/max_delta.Rd @@ -0,0 +1,11 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/EDA_utils.R +\name{max_delta} +\alias{max_delta} +\title{Maximum finite difference of x} +\usage{ +max_delta(x) +} +\description{ +Maximum finite difference of x +} diff --git a/cfaforecastrenewalww/man/nhsn_soda_query.Rd b/cfaforecastrenewalww/man/nhsn_soda_query.Rd new file mode 100644 index 00000000..5dae49f8 --- /dev/null +++ b/cfaforecastrenewalww/man/nhsn_soda_query.Rd @@ -0,0 +1,60 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/forecasttools.R +\name{nhsn_soda_query} +\alias{nhsn_soda_query} +\title{Construct a Socrata open data +API (SODA) query for the NSHN +dataset} +\usage{ +nhsn_soda_query( + api_endpoint, + start_date = NULL, + end_date = NULL, + columns = NULL, + states = NULL, + limit = 1e+05, + order_by = c("state", "date"), + desc = FALSE, + ... +) +} +\arguments{ +\item{api_endpoint}{Base API endpoint URL to use +when constructing the query.} + +\item{start_date}{Pull only rows with dates +greater than or equal to this date. If `NULL`, +no minimum date. Default `NULL`.} + +\item{end_date}{Pull only rows with dates +less than or equal to this date. If `NULL`, +no maximum date. Default `NULL`.} + +\item{columns}{Vector of columns to retrieve, in +addition to `date` and `state`, which are always +retrieved. If `NULL`, retrieve all columns. +Default `NULL`.} + +\item{states}{Vector of states or territories to +retrieve, by two letter US postal service code. +If `NULL`, retrieve all. Default `NULL`.} + +\item{limit}{limit to the number of rows to retrieve. +Default 1e5.} + +\item{order_by}{Vector of columns by which to order the +results. Default `c("state", "date")`} + +\item{desc}{whether to order descending instead of +ascending. Default `FALSE` (order ascending).} + +\item{...}{additional arguments (ignored for now)} +} +\value{ +the query as [soql::soql()] output +} +\description{ +Construct a Socrata open data +API (SODA) query for the NSHN +dataset +} diff --git a/cfaforecastrenewalww/man/param_df.Rd b/cfaforecastrenewalww/man/param_df.Rd new file mode 100644 index 00000000..34654aea --- /dev/null +++ b/cfaforecastrenewalww/man/param_df.Rd @@ -0,0 +1,26 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/data.R +\docType{data} +\name{param_df} +\alias{param_df} +\title{Example input parameters} +\format{ +## param_df +A data frame with 305 rows and 4 columns +\describe{ + \item{name}{Parameter name} + \item{true_value}{} + \item{index_rows}{} + \item{index_cols}{} +} +} +\source{ +wwww.wherever.com +} +\usage{ +param_df +} +\description{ +SOME HIGH-LEVEL DESCRIPTION OF THE DATA, INCLUDING HOW DERIVED +} +\keyword{datasets} diff --git a/cfaforecastrenewalww/man/pivot_data_for_plotting.Rd b/cfaforecastrenewalww/man/pivot_data_for_plotting.Rd new file mode 100644 index 00000000..bfeb7a32 --- /dev/null +++ b/cfaforecastrenewalww/man/pivot_data_for_plotting.Rd @@ -0,0 +1,17 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/process_model_outputs.R +\name{pivot_data_for_plotting} +\alias{pivot_data_for_plotting} +\title{Pivot the quantiles output for easy plotting} +\usage{ +pivot_data_for_plotting(quantiles) +} +\arguments{ +\item{quantiles}{a long dataframe of quantiles} +} +\value{ +a wide dataframe of quantiles with just the quantiles we want for plotting +} +\description{ +Pivot the quantiles output for easy plotting +} diff --git a/cfaforecastrenewalww/man/plot_combined_data.Rd b/cfaforecastrenewalww/man/plot_combined_data.Rd new file mode 100644 index 00000000..286537d0 --- /dev/null +++ b/cfaforecastrenewalww/man/plot_combined_data.Rd @@ -0,0 +1,31 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/plots.R +\name{plot_combined_data} +\alias{plot_combined_data} +\title{Plot the WW and hospitalization data together} +\usage{ +plot_combined_data( + comb, + figure_file_path, + days_to_show_calib_data = 90, + write_files = TRUE, + ... +) +} +\arguments{ +\item{comb}{dataframe for a single location to plot} + +\item{figure_file_path}{higher level directory where data from this pipeline +will be saved} + +\item{days_to_show_calib_data}{number of days before last hospital admissions +day to put on plot, default is 90} + +\item{write_files}{TRUE if write to file location} +} +\value{ +a plot for a single location the scaled WW versus hospital admissions +} +\description{ +Plot the WW and hospitalization data together +} diff --git a/cfaforecastrenewalww/man/plot_quantiles.Rd b/cfaforecastrenewalww/man/plot_quantiles.Rd new file mode 100644 index 00000000..148b4859 --- /dev/null +++ b/cfaforecastrenewalww/man/plot_quantiles.Rd @@ -0,0 +1,50 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/forecasttools.R +\name{plot_quantiles} +\alias{plot_quantiles} +\title{Plot a timeseries of quantiles} +\usage{ +plot_quantiles( + data, + time_column, + observation_column, + quantile_level_column, + linesize = 2, + pointsize = 4, + pointcolor = "darkblue", + linecolor = "darkblue" +) +} +\arguments{ +\item{data}{timeseries of quantiles as tidy data, +with one row per timepoint per quantile level} + +\item{time_column}{name of the column in `data` +containing timepoints} + +\item{observation_column}{name of the column +in data containing observed values at the +given quantile levels} + +\item{quantile_level_column}{name of the column +in `data` giving the quantile level (e.g. +`0.01` for the 0.01 quantile / 1st percentile)} + +\item{linesize}{`size` parameter passed to [ggplot2::geom_line()]. +Default 2.} + +\item{pointsize}{`size` parameter passed to [ggplot2::geom_point()] +Default 4.} + +\item{pointcolor}{`color` parameter passed to [ggplot2::geom_point()] +Default "darkblue".} + +\item{linecolor}{`color` parameter passed to [ggplot2::geom_line()]. +Default "darkblue.} +} +\value{ +the resultant plot, as a ggplot objec +} +\description{ +Plot a timeseries of quantiles +} diff --git a/cfaforecastrenewalww/man/posterior_predictive_analysis.Rd b/cfaforecastrenewalww/man/posterior_predictive_analysis.Rd new file mode 100644 index 00000000..2e7b3bf4 --- /dev/null +++ b/cfaforecastrenewalww/man/posterior_predictive_analysis.Rd @@ -0,0 +1,47 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/posterior_predictive_analysis.R +\name{posterior_predictive_analysis} +\alias{posterior_predictive_analysis} +\title{Runs posterior-predictive analyses and returns summaries of performance} +\usage{ +posterior_predictive_analysis( + model, + real_data, + config, + draw = NULL, + real_data_fit = NA, + ci_width = 0.89, + mclapply_cores = NA, + ... +) +} +\arguments{ +\item{model}{a CmdStanModel object defining the model} + +\item{real_data}{observed data, formated for stan} + +\item{config}{the output of get_config_vals()} + +\item{draw}{vector, which draws from the MCMC object do we want to run PPS analyses for? +If NULL, runs one analysis per sample. This can take a long time and a lot of space!} + +\item{real_data_fit}{CmdStanMCMC object, optional argument providing a +previous real-data model fit} + +\item{mclapply_cores}{integer specifying number of threads to use for +posterior-predictive-analysis-level parallelization, separate from stan parallelization} + +\item{...}{further arguments passed to model$sample(), e.g. # chains} + +\item{pps_mcmc_fits}{list of CmdStanMCMC objects, optional argument providing +previously-run pps analyses (for re-summarizing)} +} +\value{ +a list, each of which is a list of formatted stan data +} +\description{ +This function takes in a model object, the observed data, and the configuration file used to +produce the real-data stan data object. It then fits the model, extracts generated quantities +from some number of those fits, and runs new analyses on the simulated data. It then returns +summaries of estimation performance. +} diff --git a/cfaforecastrenewalww/man/pull_nhsn.Rd b/cfaforecastrenewalww/man/pull_nhsn.Rd new file mode 100644 index 00000000..42bc1bfd --- /dev/null +++ b/cfaforecastrenewalww/man/pull_nhsn.Rd @@ -0,0 +1,82 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/forecasttools.R +\name{pull_nhsn} +\alias{pull_nhsn} +\title{Pull NHSN data from HealthData.gov} +\usage{ +pull_nhsn( + api_endpoint = "https://healthdata.gov/resource/g62h-syeh.json", + api_key_id = NULL, + api_key_secret = NULL, + start_date = NULL, + end_date = NULL, + columns = NULL, + states = NULL, + order_by = c("state", "date"), + desc = FALSE, + limit = 1e+05, + error_on_limit = TRUE, + ... +) +} +\arguments{ +\item{api_endpoint}{API endpoint to +use. Defaults to the HTTPS:// Socrata +endpoint for HHS Protect / NHSN +on HealthData.gov as of 2023-10-23, namely +`[https://healthdata.gov/resource/g62h-syeh]`} + +\item{api_key_id}{Key ID of an API key to use +when querying the dataset. Not required, +but polite and reduces throttling. +You can create one at +[https://healthdata.gov/profile/edit/developer_settings]. +Default `NULL` (no API key).} + +\item{api_key_secret}{Associated key secret +for the API key given in `api_key_id`. +Default `NULL` (no API key).} + +\item{start_date}{Pull only rows with dates +greater than or equal to this date. If `NULL`, +no minimum date. Default `NULL`.} + +\item{end_date}{Pull only rows with dates +less than or equal to this date. If `NULL`, +no maximum date. Default `NULL`.} + +\item{columns}{Vector of columns to retrieve, in +addition to `date` and `state`, which are always +retrieved. If `NULL`, retrieve all columns. +Default `NULL`.} + +\item{states}{value or values to filter on for the `state` column +of the NHSN dataset. If `NULL`, do not filter on that column. +Default `NULL`.} + +\item{order_by}{column or columns to order (sort) by. +Default `c("state", "date")` (sort first by state, +then by date).} + +\item{desc}{Boolean. Whether to order descending instead of +ascending. Default `FALSE` (order ascending).} + +\item{limit}{maximum number of rows to return. Default `1e5` +(100000)} + +\item{error_on_limit}{Boolean. Raise an error if the number +of rows returned is equal to the maximum? Default `TRUE`. +This ensures that one does not silently end up with a +subset of the total set of rows matching the query. If a subset +is desired, one can set `error_on_limit = FALSE`.} + +\item{...}{other arguments passed to [nhsn_soda_query()]} +} +\value{ +the pulled data, as a [tibble::tibble()]. +} +\description{ +Pull relevant epidemiological +data from NHSN, defaulting to the +HealthData.gov public API endpoint. +} diff --git a/cfaforecastrenewalww/man/read_diagnostics_df.Rd b/cfaforecastrenewalww/man/read_diagnostics_df.Rd new file mode 100644 index 00000000..bcbc278c --- /dev/null +++ b/cfaforecastrenewalww/man/read_diagnostics_df.Rd @@ -0,0 +1,19 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/process_model_outputs.R +\name{read_diagnostics_df} +\alias{read_diagnostics_df} +\title{Load in and combine all the diagnostic tables} +\usage{ +read_diagnostics_df(df_of_filepaths) +} +\arguments{ +\item{df_of_filepaths}{dataframe containing filepath indicating where +model outputs are saved} +} +\value{ +a combined list of all the diagnostics across locations and model +runs +} +\description{ +Load in and combine all the diagnostic tables +} diff --git a/cfaforecastrenewalww/man/render_diagnostic_report.Rd b/cfaforecastrenewalww/man/render_diagnostic_report.Rd new file mode 100644 index 00000000..faa7fcef --- /dev/null +++ b/cfaforecastrenewalww/man/render_diagnostic_report.Rd @@ -0,0 +1,26 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/render_diagnostic_report.R +\name{render_diagnostic_report} +\alias{render_diagnostic_report} +\title{Render diagnostic report} +\usage{ +render_diagnostic_report( + output, + params, + report_rmd = system.file("diagnostic_report_non_targets.Rmd", package = + "cfaforecastrenewalww", mustWork = TRUE), + ... +) +} +\arguments{ +\item{output}{path to output .html} + +\item{params}{list of parameters for the Rmd} + +\item{report_rmd}{path to Rmarkdown skeleton} + +\item{...}{additional parameters passed to `rmarkdown::render`} +} +\description{ +Render diagnostic report +} diff --git a/cfaforecastrenewalww/man/save_timestamped_nwss_data.Rd b/cfaforecastrenewalww/man/save_timestamped_nwss_data.Rd new file mode 100644 index 00000000..f510f891 --- /dev/null +++ b/cfaforecastrenewalww/man/save_timestamped_nwss_data.Rd @@ -0,0 +1,19 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/pre_processing.R +\name{save_timestamped_nwss_data} +\alias{save_timestamped_nwss_data} +\title{Save time stampped NWSS data} +\usage{ +save_timestamped_nwss_data(ww_path_to_save) +} +\arguments{ +\item{ww_path_to_save}{filepath to save the time stamped wastewater datasets +default is data/ww_data +keys} +} +\value{ +ww_data_path +} +\description{ +Save time stampped NWSS data +} diff --git a/cfaforecastrenewalww/man/save_to_pdf.Rd b/cfaforecastrenewalww/man/save_to_pdf.Rd new file mode 100644 index 00000000..52d61c2f --- /dev/null +++ b/cfaforecastrenewalww/man/save_to_pdf.Rd @@ -0,0 +1,39 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/process_model_outputs.R +\name{save_to_pdf} +\alias{save_to_pdf} +\title{Save a single pdf of plots} +\usage{ +save_to_pdf( + list_of_plots, + type_of_output, + pdf_file_path, + forecast_date, + model_type, + n_row = 3, + n_col = 2, + ... +) +} +\arguments{ +\item{list_of_plots}{the output from targets of a list of ggplot objects} + +\item{type_of_output}{what the pdf is a plot of} + +\item{pdf_file_path}{where we want to save the pdf within the output file path} + +\item{forecast_date}{date of forecast} + +\item{model_type}{which model we are running} + +\item{n_row}{number of rows of figures on a page} + +\item{n_col}{number of columns of figures on a page} + +\item{...}{} + +\item{output_file_path}{where to save the output} +} +\description{ +Saves pdf containing the concatenated figures +} diff --git a/cfaforecastrenewalww/man/setup_secrets.Rd b/cfaforecastrenewalww/man/setup_secrets.Rd new file mode 100644 index 00000000..18a8bf93 --- /dev/null +++ b/cfaforecastrenewalww/man/setup_secrets.Rd @@ -0,0 +1,17 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/setup_secrets.R +\name{setup_secrets} +\alias{setup_secrets} +\title{Handles values needed to retrieve data from APIs to run pipeline} +\usage{ +setup_secrets(yaml_path) +} +\arguments{ +\item{yaml_path}{character, file path to a YAML containing the API keys, tokens, and IDs} +} +\value{ +nothing, sets values as environmental variables +} +\description{ +Handles values needed to retrieve data from APIs to run pipeline +} diff --git a/cfaforecastrenewalww/man/simulate_double_censored_pmf.Rd b/cfaforecastrenewalww/man/simulate_double_censored_pmf.Rd new file mode 100644 index 00000000..00674302 --- /dev/null +++ b/cfaforecastrenewalww/man/simulate_double_censored_pmf.Rd @@ -0,0 +1,54 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/delay_distribs.R +\name{simulate_double_censored_pmf} +\alias{simulate_double_censored_pmf} +\title{Simulate daily double censored PMF. From {epinowcast}: +https://package.epinowcast.org/dev/reference/simulate_double_censored_pmf.html} +\usage{ +simulate_double_censored_pmf( + max, + fun_primary = stats::runif, + primary_args = list(), + fun_dist = stats::rlnorm, + dist_args = list(...), + n = 1e+06, + ... +) +} +\arguments{ +\item{max}{Maximum value for the computed CDF. If not specified, the maximum +value is the maximum simulated delay.} + +\item{fun_primary}{Primary distribution function (default is \code{runif}).} + +\item{primary_args}{List of additional arguments to be passed to the primary +distribution function.} + +\item{fun_dist}{Distribution function to be added to the primary (default is +\code{rlnorm}).} + +\item{dist_args}{List of additional arguments to be passed to the +distribution function.} + +\item{n}{Number of simulations (default is 1e6).} + +\item{...}{Additional arguments to be passed to the distribution function. +This is an alternative to `dist_args`.} +} +\value{ +A numeric vector representing the PMF. +} +\description{ +This function simulates the probability mass function of a daily +double-censored process. The process involves two distributions: a primary +distribution which represents the censoring process for the primary event +and another distribution (which is offset by the primary). +} +\details{ +Based off of: +https://www.medrxiv.org/content/10.1101/2024.01.12.24301247v1 +} +\examples{ +simulate_double_censored_pmf(10, meanlog = 0, sdlog = 1) +} +\concept{modelmodulehelpers} diff --git a/cfaforecastrenewalww/man/site_level_inf_inits.Rd b/cfaforecastrenewalww/man/site_level_inf_inits.Rd new file mode 100644 index 00000000..8deceab2 --- /dev/null +++ b/cfaforecastrenewalww/man/site_level_inf_inits.Rd @@ -0,0 +1,15 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/get_data.R +\name{site_level_inf_inits} +\alias{site_level_inf_inits} +\title{Get initialization function for stan for site-level infection model} +\usage{ +site_level_inf_inits(train_data, params, stan_data) +} +\value{ +the initialization function +} +\description{ +Get initialization function for stan for site-level infection model +} +\keyword{internal} diff --git a/cfaforecastrenewalww/man/site_level_obs_inits.Rd b/cfaforecastrenewalww/man/site_level_obs_inits.Rd new file mode 100644 index 00000000..79c2dce9 --- /dev/null +++ b/cfaforecastrenewalww/man/site_level_obs_inits.Rd @@ -0,0 +1,15 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/get_data.R +\name{site_level_obs_inits} +\alias{site_level_obs_inits} +\title{Get initialization function for stan for site-level observation error model} +\usage{ +site_level_obs_inits(train_data, params, stan_data) +} +\value{ +the initialization function +} +\description{ +Get initialization function for stan for site-level observation error model +} +\keyword{internal} diff --git a/cfaforecastrenewalww/man/soql_is_in.Rd b/cfaforecastrenewalww/man/soql_is_in.Rd new file mode 100644 index 00000000..1fe0c157 --- /dev/null +++ b/cfaforecastrenewalww/man/soql_is_in.Rd @@ -0,0 +1,27 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/forecasttools.R +\name{soql_is_in} +\alias{soql_is_in} +\title{Return a [soql::soql_where()] construct +for a given column being in a list of values} +\usage{ +soql_is_in(soql_list, column, match_values) +} +\arguments{ +\item{soql_list}{A `soql` query object, which +can be piped in. If one hasn't been +created yet, use or pipe in [soql::soql()].} + +\item{column}{The column to filter on} + +\item{match_values}{A vector of values that column +must match} +} +\value{ +A new soql object with the filter added, +for use in other functions. +} +\description{ +Return a [soql::soql_where()] construct +for a given column being in a list of values +} diff --git a/cfaforecastrenewalww/man/standardize.Rd b/cfaforecastrenewalww/man/standardize.Rd new file mode 100644 index 00000000..91e4ee5d --- /dev/null +++ b/cfaforecastrenewalww/man/standardize.Rd @@ -0,0 +1,13 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/EDA_utils.R +\name{standardize} +\alias{standardize} +\title{x -> (x - location(x))/dispersion(x) +location is mean, dispersion is SD or MAD} +\usage{ +standardize(x, use_mad = FALSE) +} +\description{ +x -> (x - location(x))/dispersion(x) +location is mean, dispersion is SD or MAD +} diff --git a/cfaforecastrenewalww/man/state_agg_inits.Rd b/cfaforecastrenewalww/man/state_agg_inits.Rd new file mode 100644 index 00000000..2912f4b7 --- /dev/null +++ b/cfaforecastrenewalww/man/state_agg_inits.Rd @@ -0,0 +1,15 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/get_data.R +\name{state_agg_inits} +\alias{state_agg_inits} +\title{Get initialization function for stan for aggregated model} +\usage{ +state_agg_inits(train_data, params, stan_data) +} +\value{ +the initialization function +} +\description{ +Get initialization function for stan for aggregated model +} +\keyword{internal} diff --git a/cfaforecastrenewalww/man/summarize_scores.Rd b/cfaforecastrenewalww/man/summarize_scores.Rd new file mode 100644 index 00000000..4416fd15 --- /dev/null +++ b/cfaforecastrenewalww/man/summarize_scores.Rd @@ -0,0 +1,19 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/process_model_outputs.R +\name{summarize_scores} +\alias{summarize_scores} +\title{Summarize scores} +\usage{ +summarize_scores(scores) +} +\arguments{ +\item{scores}{} +} +\value{ +wide dataframe of average scores across time +} +\description{ +Takes the scores grouped by location, period, model, data type (name), +and hosp_reporting delay and averages over them. Used to get summaries to +compare across models and scenarios over time +} diff --git a/cfaforecastrenewalww/man/time_varying_conc_inits.Rd b/cfaforecastrenewalww/man/time_varying_conc_inits.Rd new file mode 100644 index 00000000..1e823b54 --- /dev/null +++ b/cfaforecastrenewalww/man/time_varying_conc_inits.Rd @@ -0,0 +1,15 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/get_data.R +\name{time_varying_conc_inits} +\alias{time_varying_conc_inits} +\title{Get initialization function for stan for time-varying concentration model} +\usage{ +time_varying_conc_inits(train_data, params, stan_data) +} +\value{ +the initialization function +} +\description{ +Get initialization function for stan for time-varying concentration model +} +\keyword{internal} diff --git a/cfaforecastrenewalww/man/trajectories_to_quantiles.Rd b/cfaforecastrenewalww/man/trajectories_to_quantiles.Rd new file mode 100644 index 00000000..c2a29378 --- /dev/null +++ b/cfaforecastrenewalww/man/trajectories_to_quantiles.Rd @@ -0,0 +1,55 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/forecasttools.R +\name{trajectories_to_quantiles} +\alias{trajectories_to_quantiles} +\title{Aggregate individual trajectory +timeseries or forecasts to quantile +timeseries or forecasts} +\usage{ +trajectories_to_quantiles( + trajectories, + quantiles = c(0.01, 0.025, seq(0.05, 0.95, 0.05), 0.975, 0.99), + timepoint_cols = "timepoint", + value_col = "value", + quantile_value_name = "quantile_value", + quantile_level_name = "quantile_level", + id_cols = NULL +) +} +\arguments{ +\item{trajectories}{tidy data frame or tibble +of trajectories} + +\item{quantiles}{quantiles to output for each +timepoint (default the FluSight 2023 quantiles: +`c(0.01, 0.025, seq(0.05, 0.95, 0.05), 0.975, 0.99)`} + +\item{timepoint_cols}{name of the column(s) in`trajectories` +that identifies unique timepoints. Default `timepoint`.} + +\item{value_col}{name of the column in `trajectories` +with the trajectory values (for which we wish to +compute quantiles), e.g. `hosp`, `weekly_hosp`, `cases`, +etc. Default `value`.} + +\item{quantile_value_name}{What to name +the column containing quantile values in +the output table. Default `"quantile_value"`} + +\item{quantile_level_name}{What to name +the column containing quantile levels in +the output table. Default `"quantile_level"`} + +\item{id_cols}{additional id columns in +`trajectories` to group by before aggregating, +e.g. a `location` column if `trajectories` contains +trajectories over the same time period for multiple +locations, such as different US States and Territories. +If NULL, ignored. Default NULL.} +} +\description{ +Given a tidy data frame of +trajectories, aggregate it to +a quantile timeseries for the +given quantile values +} diff --git a/cfaforecastrenewalww/man/varies.Rd b/cfaforecastrenewalww/man/varies.Rd new file mode 100644 index 00000000..98559c18 --- /dev/null +++ b/cfaforecastrenewalww/man/varies.Rd @@ -0,0 +1,11 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/EDA_utils.R +\name{varies} +\alias{varies} +\title{Is there any variation in x?} +\usage{ +varies(x, exclude_na = TRUE) +} +\description{ +Is there any variation in x? +} diff --git a/cfaforecastrenewalww/man/ww_model.Rd b/cfaforecastrenewalww/man/ww_model.Rd new file mode 100644 index 00000000..82254f2f --- /dev/null +++ b/cfaforecastrenewalww/man/ww_model.Rd @@ -0,0 +1,29 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/fit_model.R +\name{ww_model} +\alias{ww_model} +\title{This code was adapted from code written +(under an MIT license) as part of the `epinowcast` +package (https://github.com/epinowcast/epinowcast) +ww_model} +\usage{ +ww_model( + model, + include = system.file("stan", package = "cfaforecastrenewalww"), + compile = TRUE, + threads = FALSE, + target_dir = tempdir(), + stanc_options = list(), + cpp_options = list(), + verbose = TRUE, + ... +) +} +\arguments{ +\item{...}{} +} +\description{ +This function compiles the stan model, and is written to include the 'stan' +folder. Within each stan file, to include the functions, use #include +functions/{your_function_file}.stan +} diff --git a/cfaforecastrenewalww/man/zoom_boxplot_y.Rd b/cfaforecastrenewalww/man/zoom_boxplot_y.Rd new file mode 100644 index 00000000..a6eb5853 --- /dev/null +++ b/cfaforecastrenewalww/man/zoom_boxplot_y.Rd @@ -0,0 +1,13 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/EDA_utils.R +\name{zoom_boxplot_y} +\alias{zoom_boxplot_y} +\title{Get y range required to zoom a boxplot in to ignore outliers +df is the data, x the grouping variable, y the variable to be boxplotted} +\usage{ +zoom_boxplot_y(df, x, y) +} +\description{ +Get y range required to zoom a boxplot in to ignore outliers +df is the data, x the grouping variable, y the variable to be boxplotted +} diff --git a/cfaforecastrenewalww/tests/testthat.R b/cfaforecastrenewalww/tests/testthat.R new file mode 100644 index 00000000..163e7c1f --- /dev/null +++ b/cfaforecastrenewalww/tests/testthat.R @@ -0,0 +1,12 @@ +# This file is part of the standard setup for testthat. +# It is recommended that you do not modify it. +# +# Where should you do additional test configuration? +# Learn more about the roles of various files in: +# * https://r-pkgs.org/testing-design.html#sec-tests-files-overview +# * https://testthat.r-lib.org/articles/special-files.html + +library(testthat) +library(cfaforecastrenewalww) + +test_check("cfaforecastrenewalww") diff --git a/cfaforecastrenewalww/tests/testthat/helper.R b/cfaforecastrenewalww/tests/testthat/helper.R new file mode 100644 index 00000000..dc541998 --- /dev/null +++ b/cfaforecastrenewalww/tests/testthat/helper.R @@ -0,0 +1,41 @@ +get_nonmatrix_names_from_draws <- function(draws) { + posterior::as_draws_list(draws)[[1]] %>% + names() %>% + strsplit(split = "[", fixed = TRUE) %>% + sapply(function(x) { + x[1] + }) %>% + unique() +} + +get_par_dims_flat <- function(draws) { + par_names_no_dim <- get_nonmatrix_names_from_draws(draws) + par_names_with_dim <- posterior::as_draws_list(draws)[[1]] %>% + names() + counts <- sapply(par_names_no_dim, function(par) { + full <- paste0("^", par, "$") + pre_dim <- paste0("^", par, "\\[") + sum( + grepl(full, par_names_with_dim) | grepl(pre_dim, par_names_with_dim) + ) + }) + return(counts) +} + +logit_fn <- function(p) { + stats::qlogis(p) +} + +inv_logit_fn <- function(x) { + stats::plogis(x) +} + +skip_if_missing_secrets <- function(secrets) { + present <- sapply(secrets, function(secret) { + Sys.getenv(secret) != "" + }) + + if (any(!present)) { + skip("Requisite information not available to pull from this API.") + } +} diff --git a/cfaforecastrenewalww/tests/testthat/setup.R b/cfaforecastrenewalww/tests/testthat/setup.R new file mode 100644 index 00000000..b88e3a1d --- /dev/null +++ b/cfaforecastrenewalww/tests/testthat/setup.R @@ -0,0 +1,22 @@ +testthat_stan_include <- function() { + system.file( + "stan", + package = "cfaforecastrenewalww" + ) +} + +model_file_path <- system.file( + "stan", "renewal_ww_hosp_site_level_inf_dynamics.stan", + package = "cfaforecastrenewalww" +) + +cat("\nsetup.R is compiling the stan model in preparation for testing.\n") + +# precompiled site-level infeciton dynamics model +compiled_site_inf_model <- cmdstanr::cmdstan_model( + model_file_path, + force_recompile = TRUE, + compile_standalone = TRUE, + include = testthat_stan_include() +) +compiled_site_inf_model$expose_functions() diff --git a/cfaforecastrenewalww/tests/testthat/test_get_hosp_data_covidcast.R b/cfaforecastrenewalww/tests/testthat/test_get_hosp_data_covidcast.R new file mode 100644 index 00000000..de51942a --- /dev/null +++ b/cfaforecastrenewalww/tests/testthat/test_get_hosp_data_covidcast.R @@ -0,0 +1,22 @@ +test_that("Make sure we can read hospitalization data from covidcast API.", { + # Cannot run test without internet connection + testthat::skip_if_offline() + + skip_if_missing_secrets(c("covidcast_api_key")) + + tf <- tempfile() + + testthat::expect_no_error( + !!{ + hosp_df <- get_state_level_hosp_data( + hosp_data_source = "covidcast", + hosp_data_dir = tf + ) + } + ) + + testthat::expect_setequal( + names(hosp_df), + c("date", "ABBR", "daily_hosp_admits", "pop") + ) +}) diff --git a/cfaforecastrenewalww/tests/testthat/test_get_hosp_data_nhsn.R b/cfaforecastrenewalww/tests/testthat/test_get_hosp_data_nhsn.R new file mode 100644 index 00000000..84216aae --- /dev/null +++ b/cfaforecastrenewalww/tests/testthat/test_get_hosp_data_nhsn.R @@ -0,0 +1,36 @@ +test_that("Make sure we can read hospitalization data from NHSN API.", { + # Cannot run test without internet connection + testthat::skip_if_offline() + skip_if_missing_secrets(c( + "NHSN_API_KEY_ID", + "NHSN_API_KEY_SECRET" + )) + + tf <- tempfile() + + testthat::expect_no_error( + !!{ + hosp_df <- get_state_level_hosp_data( + hosp_data_source = "NHSN", + hosp_data_dir = tf, + population_data_path = tf + ) + } + ) + + testthat::expect_setequal( + names(hosp_df), + c("date", "ABBR", "daily_hosp_admits", "pop") + ) + + out_csv <- file.path( + tf, glue::glue(as.character(lubridate::today()), ".csv") + ) + + testthat::expect_true( + file.exists(out_csv) + ) + + # No need to see "true" printed to screen + true <- file.remove(out_csv) +}) diff --git a/cfaforecastrenewalww/tests/testthat/test_get_nwss_data.R b/cfaforecastrenewalww/tests/testthat/test_get_nwss_data.R new file mode 100644 index 00000000..354bb566 --- /dev/null +++ b/cfaforecastrenewalww/tests/testthat/test_get_nwss_data.R @@ -0,0 +1,20 @@ +test_that("Make sure we can read the NWSS data in, if we have what we need.", { + # Cannot run test without internet connection + testthat::skip_if_offline() + + skip_if_missing_secrets(c("nwss_data_token", "data_rid")) + + tf <- tempfile() + + testthat::expect_no_error( + !!{ + ww_fp <- save_timestamped_nwss_data(tf) + } + ) + + testthat::expect_true( + file.exists(ww_fp) + ) + + file.remove(ww_fp) +}) diff --git a/cfaforecastrenewalww/tests/testthat/test_helper_files.R b/cfaforecastrenewalww/tests/testthat/test_helper_files.R new file mode 100644 index 00000000..cfb57cd8 --- /dev/null +++ b/cfaforecastrenewalww/tests/testthat/test_helper_files.R @@ -0,0 +1,36 @@ +test_that("Make sure we can find and load files we need for other tests.", { + # Compiled model object should exist in the workspace, with functions exposed + testthat::expect_true( + exists("compiled_site_inf_model") + ) + + testthat::expect_true( + "CmdStanModel" %in% class(compiled_site_inf_model) + ) + + testthat::expect_no_error( + compiled_site_inf_model$functions$convert_to_logmean(1.0, 1.0) + ) + + fake_hosp_path <- system.file( + "testdata", + "2023-11-06.csv", + package = "cfaforecastrenewalww" + ) + testthat::expect_true(file.exists(fake_hosp_path)) + quiet({ + hosp_df <- get_state_level_hosp_data( + hosp_data_source = "NHSN", + forecast_date = "2023-11-06", + hosp_data_dir = system.file( + "testdata", + package = "cfaforecastrenewalww" + ), + population_data_path = system.file( + "testdata", "locations.csv", + package = "cfaforecastrenewalww" + ), + pull_from_local = TRUE + ) + }) +}) diff --git a/cfaforecastrenewalww/tests/testthat/test_nwss_filtering.R b/cfaforecastrenewalww/tests/testthat/test_nwss_filtering.R new file mode 100644 index 00000000..5086a186 --- /dev/null +++ b/cfaforecastrenewalww/tests/testthat/test_nwss_filtering.R @@ -0,0 +1,47 @@ +test_that("Make sure filtering of NWSS data does what we expect.", { + quiet({ + ww_data_raw <- get_ww_data( + ww_data_source = "NWSS", + geo_type = "state", + ww_data_type = "pop_weighted_conc_w_thres", + ww_target_type = "pcr_target_avg_conc", + ww_geo_type = "site", + ww_data_path = system.file("testdata", + "fake_nwss.csv", + package = "cfaforecastrenewalww" + ) + ) + }) + + # Make sure we've got the columns we expect, and removed the junk + testthat::expect_setequal( + names(ww_data_raw), + c( + "date", "location", "ww", "site", "lab", + "lab_wwtp_unique_id", "ww_pop", "below_LOD", "lod_sewage" + ) + ) + + # Make sure the fake states were filtered out, as all their data should have been removed + testthat::expect_setequal( + ww_data_raw %>% + pull(location) %>% + unique(), + c("CA", "WA", "NM", "US") + ) + + # LOD filtering + below_lod <- ww_data_raw %>% + filter(below_LOD == 1) + not_below_lod <- ww_data_raw %>% + filter(below_LOD == 0) + + testthat::expect_equal( + below_lod$ww, + below_lod$lod_sewage + ) + + testthat::expect_true( + all(not_below_lod$ww >= not_below_lod$lod_sewage) + ) +}) diff --git a/cfaforecastrenewalww/tests/testthat/test_pmfs_normalized.R b/cfaforecastrenewalww/tests/testthat/test_pmfs_normalized.R new file mode 100644 index 00000000..76be2f98 --- /dev/null +++ b/cfaforecastrenewalww/tests/testthat/test_pmfs_normalized.R @@ -0,0 +1,12 @@ +test_that("Make sure we can find and load files we need for other tests.", { + model <- compiled_site_inf_model + + shedding_pdf <- model$functions$get_vl_trajectory( + tpeak = 5, + viral_peak = 5, + duration_shedding = 17, + n = 100 + ) + + testthat::expect_equal(sum(shedding_pdf), 1.0) +}) diff --git a/cfaforecastrenewalww/vignettes/toy_data_vignette.Rmd b/cfaforecastrenewalww/vignettes/toy_data_vignette.Rmd new file mode 100644 index 00000000..ba4b48e5 --- /dev/null +++ b/cfaforecastrenewalww/vignettes/toy_data_vignette.Rmd @@ -0,0 +1,416 @@ +--- +title: "Wastewater informed forecasting: fit to simulated data" +author: "Kaitlyn Johnson" +date: "2023-12-20" +output: html_document +--- + +This vignette steps through the pre-processing and fitting procedure to forecast +state-level hospital admissions using simulated data. The code can be adapted +for your own datasets by replacing the joined hospital admissions + site-lab +level wastewater dataset, here called, `example_df`, with your own dataset and +varying the parameters that are pre-specified. + +```{r setup, include=FALSE} +knitr::opts_chunk$set(echo = TRUE) +library(cfaforecastrenewalww) +library(here) +library(dplyr) +library(ggplot2) +library(tidybayes) +``` +# Rationale + + +# Load the data +```{r} +# Example of how to generate new simulated data with user-specified parameters +# by calling `generate_simulated_data()` +# See function documentation to modify R(t), number of sites, etc. +example_df <- cfaforecastrenewalww::example_df +param_df <- cfaforecastrenewalww::param_df +``` +The `generate_simulated_data.R` file can be used to generate this simulated +data, using the most complex model, where individual sites +exhibit their own site-level infection dynamics, site-level time-varying +concentrations of wastewater, and lab-site level measurement effects. There +are options to +turn off all but the lab-site measurement effects. Setting `n_sites` to one +allows the user to generate data amenable to the state-level aggregated +wastewater model, or alternatively, site-level data can be generated and then +aggregated using population weighted averaging of the concentration to generate +a single state-level wastewater data stream. + +# Data exploration +The example dataframe is a tidy data frame with hospital admissions alongside +site-level wastewater data, corresponding to a single observation for each +lab-site-day. We assign an arbitrary date to the time series so that we can +assign a week day to each day. We additionally include a column containing +the daily hospital admissions through the forecast period. This will +be used for evaluating our simulated data inference procedure. +```{r} +head(example_df) +``` +# Make some plots of the hospital admissions and wastewater data +The model will +jointly calibrate to state-level hospital admissions and the site-level +wastewater data. It will estimate underlying latent incident infection curves, +either for each site coming from a shared distribution with a global mean of the +state-level incident infection curve, or it will estimate a single state-level +incident infection curve that is assumes to be homogenous across all sites. +From the simulated data, we impose a delay from the date of the forecast to the +last observed hospital admissions, to reflect the current data reporting +structure in the US. We also include variable reporting frequency and latency +in the site-level wastewater data, to reflect the real heterogeneity we observe +in the NWSS data in real-time. +```{r} +ggplot(example_df) + + geom_point( + aes( + x = date, y = exp(log_conc), + color = as.factor(lab_wwtp_unique_id) + ), + show.legend = FALSE + ) + + geom_point( + data = example_df %>% filter(below_LOD == 1), + aes(x = date, y = exp(log_conc), color = "red"), + show.legend = FALSE + ) + + geom_hline(aes(yintercept = exp(lod_sewage)), linetype = "dashed") + + facet_wrap(~lab_wwtp_unique_id, scales = "free") + + geom_vline(aes(xintercept = forecast_date), linetype = "dashed") + + xlab("") + + ylab("Genome copies/mL") + + ggtitle("Lab-site level wastewater concentration") + + theme_bw() + +ggplot(example_df) + + geom_point(aes(x = date, y = daily_hosp_admits_for_eval), + shape = 21, color = "black", fill = "white" + ) + + geom_point(aes(x = date, y = daily_hosp_admits)) + + geom_vline(aes(xintercept = forecast_date), linetype = "dashed") + + xlab("") + + ylab("Daily hospital admssions") + + ggtitle("State level hospital admissions") + + theme_bw() +``` + +# Format data for inference in stan +The model expects input data in a certain format, we will use a built in function +that requires a few other pieces of information that can be derived directly +from the input data set. We pre-specify the priors in the `get_params()` +function. Priors can be adjusted by directly modifying the value in the `params` +dataframe or by directly modifying the `stan_data` list (or alternatively, by +directly editing the stan file but this isn't recommended as the current +workflow keeps parameters consistent across the related models). +```{r} +params <- get_params() +forecast_date <- example_df %>% + pull(forecast_date) %>% + unique() +forecast_time <- as.integer(max(example_df$date) - forecast_date) + +# Assign the model that we want to fit to so that we grab the correct +# model and initialization list +model_type <- "site-level infection dynamics" +model_file_path <- get_model_file_path(model_type) +# Compile the model +model <- ww_model(file.path(here( + model_file_path +))) + + +# Function calls for linear scale ww data +train_data_raw <- example_df %>% + mutate( + ww = exp(log_conc), + period = case_when( + !is.na(daily_hosp_admits) ~ "calibration", + is.na(daily_hosp_admits) & date <= forecast_date ~ + "nowcast", + TRUE ~ "forecast" + ), + include_ww = 1, + site_index = site, + lab_site_index = lab_wwtp_unique_id + ) + +# Apply outliers to data +train_data <- flag_ww_outliers(train_data_raw) + +# Get the generation interval and time from infection to hospital admission +# delay distribution to pass to stan. +# Use the same values as we do in the +# generation of these vectors in the generate simulated data function.... +# See Song Woo Park et al +# https://www.medrxiv.org/content/10.1101/2024.01.12.24301247v1 for why +# we use a double-censored pmf here +generation_interval <- simulate_double_censored_pmf( + max = params$gt_max, meanlog = params$mu_gi, + sdlog = params$sigma_gi, fun_dist = rlnorm, n = 5e6 +) %>% drop_first_and_renormalize() + +inc <- make_incubation_period_pmf( + params$backward_scale, params$backward_shape, params$r +) +sym_to_hosp <- make_hospital_onset_delay_pmf( + params$neg_binom_mu, + params$neg_binom_size +) +inf_to_hosp <- make_reporting_delay_pmf(inc, sym_to_hosp) + +# Format as a list for stan +stan_data <- get_stan_data_site_level_model( + train_data, + params, + forecast_date, + forecast_time, + model_type = model_type, + generation_interval = generation_interval, + inf_to_hosp = inf_to_hosp, + infection_feedback_pmf = generation_interval +) + +init_fun <- function() { + site_level_inf_inits(train_data, params, stan_data) +} +``` +# Fit the wastewaster informed model +```{r} +fit_dynamic_rt <- model$sample( + data = stan_data, + seed = 123, + init = init_fun, + iter_sampling = 500, + iter_warmup = 250, + chains = 4, + parallel_chains = 4 +) +``` +# Look at the model outputs: generated quantities +Plot the model predicted hospital admissions vs the simulated forecasted +hospital admissions and the model estimated wastewater concentration in each +site vs the simulated wastewater data. +```{r} +all_draws <- fit_dynamic_rt$draws() + +# Predicted observed hospital admissions +exp_obs_hosp <- all_draws %>% + spread_draws(pred_hosp[t]) %>% + select(pred_hosp, `.draw`, t) %>% + rename(draw = `.draw`) + +# Predicted observed wastewaster concentrations in each lab site +exp_obs_conc <- all_draws %>% + spread_draws(pred_ww[lab_wwtp_unique_id, t]) %>% + select(pred_ww, `.draw`, t, lab_wwtp_unique_id) %>% + rename(draw = `.draw`) + +output_df <- exp_obs_conc %>% + left_join(train_data, + by = c("t", "lab_wwtp_unique_id") + ) %>% + left_join(exp_obs_hosp, + by = c("t", "draw") + ) %>% + filter(draw %in% sample(1:max(draw), 100)) # sample the draws for plotting + +ggplot(output_df) + + geom_line(aes(x = date, y = pred_hosp, group = draw), + color = "red4", alpha = 0.1, size = 0.2 + ) + + geom_point(aes(x = date, y = daily_hosp_admits_for_eval), + shape = 21, color = "black", fill = "white" + ) + + geom_point(aes(x = date, y = daily_hosp_admits)) + + geom_vline(aes(xintercept = forecast_date), linetype = "dashed") + + xlab("") + + ylab("Daily hospital admssions") + + ggtitle("State level hospital admissions estimated with wastewater") + + theme_bw() + +ggplot(output_df) + + geom_line( + aes( + x = date, y = exp(pred_ww), + color = as.factor(lab_wwtp_unique_id), + group = draw + ), + alpha = 0.1, size = 0.2, + show.legend = FALSE + ) + + geom_point(aes(x = date, y = exp(log_conc)), + color = "black", show.legend = FALSE + ) + + geom_point( + data = example_df %>% filter(below_LOD == 1), + aes(x = date, y = exp(log_conc), color = "red"), + show.legend = FALSE + ) + + geom_hline(aes(yintercept = exp(lod_sewage)), linetype = "dashed") + + facet_wrap(~lab_wwtp_unique_id, scales = "free") + + geom_vline(aes(xintercept = forecast_date), linetype = "dashed") + + xlab("") + + ylab("Genome copies/mL") + + ggtitle("Lab-site level wastewater concentration") + + theme_bw() + +ggplot(output_df) + + geom_line( + aes( + x = date, y = pred_ww, + color = as.factor(lab_wwtp_unique_id), + group = draw + ), + alpha = 0.1, size = 0.2, + show.legend = FALSE + ) + + geom_point(aes(x = date, y = log_conc), + color = "black", show.legend = FALSE + ) + + geom_point( + data = example_df %>% filter(below_LOD == 1), + aes(x = date, y = log_conc, color = "red"), + show.legend = FALSE + ) + + geom_hline(aes(yintercept = lod_sewage), linetype = "dashed") + + facet_wrap(~lab_wwtp_unique_id, scales = "free") + + geom_vline(aes(xintercept = forecast_date), linetype = "dashed") + + xlab("") + + ylab("Log(genome copies/mL)") + + ggtitle("Lab-site level wastewater concentration") + + theme_bw() +``` +
+ +# Model outputs: parameters +Get a dataframe of all of the key estimate model paramters combined with the key +"known" model parameters to get a sense of +which parameters we can recover and which might be unidentifiable (just as a +first pass, eventually we will probably want to do a full sensitivity analysis +to identify the regions of parameter space that are non-identifiable). +```{r} +static_params <- c( + "eta_sd", "autoreg_rt", + "autoreg_rt_site", + "log_r_mu_intercept", + "log_i0_over_n", "initial_growth", + "inv_sqrt_phi_h", "sigma_ww_site_mean", "sigma_ww_site_sd", + "p_hosp_int", "p_hosp_w_sd", "t_peak", "viral_peak", + "dur_shed", "log10_g", "ww_site_mod_sd", + "infection_feedback" +) +vector_params <- c( + "w", "p_hosp_w", "rt", "new_i", "p_hosp", + "sigma_ww_site_raw", "ww_site_mod_raw", + "ww_site_mod", "sigma_ww_site", + "hosp_wday_effect" +) + +matrix_params <- c("error_site") + + +# Get the full posterior parameter distribution from the real data +full_param_df <- get_full_param_distrib( + all_draws, static_params, vector_params, matrix_params +) + +# Compare to the knows parameters +comp_df <- full_param_df %>% + left_join(param_df, + by = c("name", "index_rows", "index_cols") + ) + +ggplot(comp_df %>% filter(name %in% c("rt", "p_hosp"))) + + geom_line(aes(x = index_cols, y = value, group = draw), size = 0.05, alpha = 0.05) + + geom_line(aes(x = index_cols, y = median), color = "black") + + geom_line(aes(x = index_cols, y = true_value), color = "red") + + facet_wrap(~name, scales = "free") + + theme_bw() + + xlab("Time (days)") + + ylab("Parameter value") + + scale_y_continuous(trans = "log") + + ggtitle("Posterior parameter distribution vs known parameter values") + +ggplot(comp_df %>% filter(name %in% c("log10_g"))) + + geom_histogram(aes(x = value), alpha = 0.3) + + geom_vline(aes(xintercept = median), color = "black") + + geom_vline(aes(xintercept = true_value), color = "red") + + facet_wrap(~name, scales = "free") + + xlab("Parameter value") + + ylab("Frequency") + + theme_bw() + + scale_x_continuous(trans = "log") + + ggtitle("Posterior parameter distribution vs known parameter values") +``` + +# Try fitting the model without wastewater +The switch `include_ww = 0` tells the model not to evaluate the likelihood on +the wastewater data. +```{r} +stan_data_hosp_only <- stan_data +stan_data_hosp_only$include_ww <- 0 + +fit_dynamic_rt_hosp_only <- model$sample( + data = stan_data_hosp_only, + seed = 123, + init = init_fun, + iter_sampling = 500, + iter_warmup = 250, + chains = 4, + parallel_chains = 4 +) +``` +```{r} +all_draws_hosp_only <- fit_dynamic_rt_hosp_only$draws() + +# Predicted observed hospital admissions +exp_obs_hosp <- all_draws_hosp_only %>% + spread_draws(pred_hosp[t]) %>% + select(pred_hosp, `.draw`, t) %>% + rename(draw = `.draw`) + +output_df_hosp_only <- exp_obs_hosp %>% + left_join(train_data, + by = c("t") + ) %>% + filter(draw %in% sample(1:max(draw), 100)) # sample the draws for plotting + +ggplot(output_df_hosp_only) + + geom_line(aes(x = date, y = pred_hosp, group = draw), + color = "red4", alpha = 0.1, size = 0.2 + ) + + geom_point(aes(x = date, y = daily_hosp_admits_for_eval), + shape = 21, color = "black", fill = "white" + ) + + geom_point(aes(x = date, y = daily_hosp_admits)) + + geom_vline(aes(xintercept = forecast_date), linetype = "dashed") + + xlab("") + + ylab("Daily hospital admssions") + + ggtitle("State level hospital admissions fit to only hospital admissions") + + theme_bw() + +# Get the full posterior parameter distribution from the real data +full_param_df_hosp_only <- get_full_param_distrib( + all_draws_hosp_only, static_params, vector_params, matrix_params +) + +# Compare to the knows parameters +comp_df_hosp_only <- full_param_df_hosp_only %>% + left_join(param_df, + by = c("name", "index_rows", "index_cols") + ) + +ggplot(comp_df_hosp_only %>% filter(name %in% c("R", "p_hosp"))) + + geom_line(aes(x = index_cols, y = value, group = draw), size = 0.05, alpha = 0.05) + + geom_line(aes(x = index_cols, y = median), color = "black") + + geom_line(aes(x = index_cols, y = true_value), color = "red") + + facet_wrap(~name, scales = "free") + + theme_bw() + + xlab("Time (days)") + + ylab("Parameter value") + + scale_y_continuous(trans = "log") + + ggtitle("Posterior parameter distribution vs known parameter values") +``` diff --git a/code-of-conduct.md b/code-of-conduct.md index 2633c7b9..aecd56e1 100644 --- a/code-of-conduct.md +++ b/code-of-conduct.md @@ -1,4 +1,6 @@ -# Creating a Culture of Innovation +# Code of Conduct + +## Introduction We aspire to create a culture where people work joyfully, communicate openly about things that matter, and provide great services globally. We would like our team and communities (both government and private sector) to reflect on diff --git a/input/locations.csv b/input/locations.csv new file mode 100644 index 00000000..7f0d821a --- /dev/null +++ b/input/locations.csv @@ -0,0 +1,55 @@ +๏ปฟabbreviation,location,location_name,population,count_rate1per100k,count_rate2per100k +US,US,US,331893745,3319,6638 +AL,01,Alabama,5039877,50,101 +AK,02,Alaska,732673,7,15 +AZ,04,Arizona,7276316,73,146 +AR,05,Arkansas,3025891,30,61 +CA,06,California,39237836,392,785 +CO,08,Colorado,5812069,58,116 +CT,09,Connecticut,3605597,36,72 +DE,10,Delaware,1003384,10,20 +DC,11,District of Columbia,670050,7,13 +FL,12,Florida,21781128,218,436 +GA,13,Georgia,10799566,108,216 +HI,15,Hawaii,1441553,14,29 +ID,16,Idaho,1900923,19,38 +IL,17,Illinois,12671469,127,253 +IN,18,Indiana,6805985,68,136 +IA,19,Iowa,3193079,32,64 +KS,20,Kansas,2934582,29,59 +KY,21,Kentucky,4509394,45,90 +LA,22,Louisiana,4624047,46,92 +ME,23,Maine,1372247,14,27 +MD,24,Maryland,6165129,62,123 +MA,25,Massachusetts,6984723,70,140 +MI,26,Michigan,10050811,101,201 +MN,27,Minnesota,5707390,57,114 +MS,28,Mississippi,2949965,29,59 +MO,29,Missouri,6168187,62,123 +MT,30,Montana,1104271,11,22 +NE,31,Nebraska,1963692,20,39 +NV,32,Nevada,3143991,31,63 +NH,33,New Hampshire,1388992,14,28 +NJ,34,New Jersey,9267130,93,185 +NM,35,New Mexico,2115877,21,42 +NY,36,New York,19835913,198,397 +NC,37,North Carolina,10551162,106,211 +ND,38,North Dakota,774948,8,15 +OH,39,Ohio,11780017,118,236 +OK,40,Oklahoma,3986639,40,80 +OR,41,Oregon,4246155,42,85 +PA,42,Pennsylvania,12964056,130,259 +RI,44,Rhode Island,1095610,11,22 +SC,45,South Carolina,5190705,52,104 +SD,46,South Dakota,895376,9,18 +TN,47,Tennessee,6975218,70,140 +TX,48,Texas,29527941,295,591 +UT,49,Utah,3337975,33,67 +VT,50,Vermont,645570,6,13 +VA,51,Virginia,8642274,86,173 +WA,53,Washington,7738692,77,155 +WV,54,West Virginia,1782959,18,36 +WI,55,Wisconsin,5895908,59,118 +WY,56,Wyoming,578803,6,12 +PR,72,Puerto Rico,3263584,33,65 +VI,78,Virgin Islands,107268,1,2 diff --git a/input/saved_pmfs/generation_interval.csv b/input/saved_pmfs/generation_interval.csv new file mode 100644 index 00000000..f817aab6 --- /dev/null +++ b/input/saved_pmfs/generation_interval.csv @@ -0,0 +1,16 @@ +"timepoint","probability_mass" +1,0.16174201341157 +2,0.320625889390807 +3,0.242283351248733 +4,0.134652559431048 +5,0.0689218448080527 +6,0.0345873307236478 +7,0.0175305676468834 +8,0.00900188393721926 +9,0.0048814763363626 +10,0.00258678762113042 +11,0.00144458017530763 +12,0.000825330494803486 +13,0.000478236415587845 +14,0.000270544021118098 +15,0.000167604337729198 diff --git a/input/saved_pmfs/inf_to_hosp.csv b/input/saved_pmfs/inf_to_hosp.csv new file mode 100644 index 00000000..d0387b12 --- /dev/null +++ b/input/saved_pmfs/inf_to_hosp.csv @@ -0,0 +1,56 @@ +"timepoint","probability_mass" +0,0 +1,0.00469384736487552 +2,0.0145200073436112 +3,0.0278627741704387 +4,0.0423656492135518 +5,0.0558071445014868 +6,0.0665713169684116 +7,0.0737925805176124 +8,0.0772854627892072 +9,0.0773666390616176 +10,0.0746515449009949 +11,0.0698761436052596 +12,0.0637663813017696 +13,0.0569581929821651 +14,0.0499600186601535 +15,0.0431457477049282 +16,0.0367662806214045 +17,0.0309702535668237 +18,0.0258273785539499 +19,0.0213504646948306 +20,0.0175141661880584 +21,0.0142698211023571 +22,0.0115565159519833 +23,0.00930888979824423 +24,0.00746229206759215 +25,0.00595605679409682 +26,0.00473519993107751 +27,0.00375117728281841 +28,0.00296198928038098 +29,0.00233187862772459 +30,0.00183079868293457 +31,0.00143377454057296 +32,0.00107076258525208 +33,0.000773006742366448 +34,0.000539573690886396 +35,0.000364177599116743 +36,0.000237727628685579 +37,0.000150157714457011 +38,9.18283319498657e-05 +39,5.44079947589854e-05 +40,3.12548818921465e-05 +41,1.74202619730274e-05 +42,9.42698047424713e-06 +43,4.95614149002087e-06 +44,2.53275674485913e-06 +45,1.25854819834554e-06 +46,6.08116579596933e-07 +47,2.85572858589747e-07 +48,1.30129404249734e-07 +49,5.73280599448306e-08 +50,2.4219376577964e-08 +51,9.6316861194457e-09 +52,3.43804936850951e-09 +53,9.34806280366888e-10 +54,0 diff --git a/model_definition.md b/model_definition.md new file mode 100644 index 00000000..2fbfadaa --- /dev/null +++ b/model_definition.md @@ -0,0 +1,417 @@ +# CFA wastewater-informed hospital admissions forecasts + +This document describes the data sources, model structure, and implementation details for the wastewater-informed hospital admissions forecasts submitted to the [COVID-19 Forecast Hub](https://github.com/reichlab/covid19-forecast-hub/tree/master) under the name `cfa-wwrenewal`. The methods described will evolve as we continue to develop and improve the model. + +We welcome feedback on the model structure and implementation, please feel free to submit an issue directly on GitHub or reach out via this [form](https://www.cdc.gov/forecast-outbreak-analytics/contact-us.html). + +For an example of how to fit the model to simulated data, we recommend the [toy data vignette](vignettes/toy_data_vignette.Rmd). + +## Data sources + +We use two data sources as input to the model: wastewater viral concentrations and hospital admissions data. We describe each of these data sources in detail below. + +### Wastewater viral concentration data + +We source wastewater viral concentrations from the [CDC National Wastewater Surveillance System](https://www.cdc.gov/nwss/wastewater-surveillance.html) (NWSS) full analytic dataset. +The dataset is defined in the [data dictionary](https://www.cdc.gov/nwss/files/NWSS-Data-Dictionary_v5.0.0_2023-07-10.xlsx) and is described in plain text on the [NWSS website](https://www.cdc.gov/nwss/reporting.html). +The full dataset is available to researchers [upon request](https://www.cdc.gov/nwss/about-data.html) but a [dashboard](https://www.cdc.gov/nwss/rv/COVID19-nationaltrend.html) with summary statistics is publicly available. + +We use the most recent data available at the time of submission to generate the forecast which is typically partly complete for the most recent week. + +These data are complex and have many sources of variability and uncertainty. For example, + +- Each state has a different number of wastewater sampling sites (e.g., wastewater treatment plants) that each cover a catchment area. This means that different sites cover different populations, and when combining the sites across a state, represent some subset of the state population. This subset varies significantly across states. +- Different sites may use different collection methodologies. These methodologies may vary through time at an individual site. +- Different sites sample at different cadences. Some sites sample nearly daily, while others sample less than once a week. Some sites report that data within the week while others have reporting latencies on the order of weeks. +- Different samples are processed in different labs that may use different methodologies for extraction, concentration, and quantification. These labs may also vary their methodologies through time. +- Not all states submit viral concentrations in wastewater to [CDC's National Wastewater Surveillance System](https://www.cdc.gov/nwss/wastewater-surveillance.html) (NWSS). + +These complexities mean that wastewater data are often difficult to interpret. For example, a change in the average observed wastewater concentration across a state could reflect a change in the underlying number of infections, a change in the number of samples collected or processed, a change in the collection or processing methodologies, a change in the reporting cadence or latency, and/or a change in the viral shedding kinetics of the population (e.g., due to a new variant or a change in the age distribution of cases). + +Details about data preprocessing, outlier detection, and aggregation are in the [Appendix](#appendix-wastewater-data-pre-processing). + +### Hospital admissions data + +We source hospital admissions data for each state from [healthdata.gov](https://healthdata.gov/Hospital/COVID-19-Reported-Patient-Impact-and-Hospital-Capa/g62h-syeh/about_data). +As this data is updated on Friday afternoon with admissions up until the previous Saturday, and we submit forecasts on the following Monday, this means that we have a 9 day delay between the most recent data and when the model is fitted. + +Details about data preprocessing and outlier detection are in the [Appendix](#hospital-admissions-pre-processing). + +## Model overview + +We use three models to forecast COVID-19 hospital admissions. +The models share a common structure and are fit using the same codebase. +The models differ in the data they use as input, in whether or not they include a wastewater component, and the aggregation of the estimates they produce. + +[**Model 1**](#model-1) is wastewater-informed, site-level infection dynamics model. +It uses wastewater viral concentrations at the site level and hospital admissions at the state level as input and produces forecasts of hospital admissions at the state level. +We use Model 1 to generate forecasts for states with any wastewater data available. +However, if a state has not reported any wastewater collection from the past 21 days or if there is less than 5 data points per site in any site, we will flag this in our metadata, as it is unlikely that the wastewater data is meaningfully informing the forecast in that location. + +[**Model 2**](#model-2) is a no-wastewater, state-level infection dynamics model. +It uses hospital admissions at the state level as input and produces forecasts of hospital admissions at the state level. +We use Model 2 to generate forecasts for states without any wastewater data. + +[**Model 3**](#model-3) is a nationwide aggregated wastewater model. +It uses wastewater viral concentrations at the national level and hospital admissions at the national level as input and produces forecasts of hospital admissions at the national level. +We use Model 3 to generate nationwide forecasts. +Of the forecasts being submitted to the [COVID-19 Forecast Hub](https://github.com/reichlab/covid19-forecast-hub/), only the nationwide (US) forecasts use this observation model. + +| Model | Input WW data | Input hospitalization data | Infection dynamics | Predicted hospitalizations | +| --- | --- | --- | --- | --- | +| Model 1 | Site-level | State-level | Coupled site- and state-level | State-level | +| Model 2 | None | State-level | State-level | State-level | +| Model 3 | Nationally aggregated | Nationally aggregated | National | National | + + +We provide a metadata table alongside the forecasts that indicate notes on the wastewater data for each state, indicating if it does not have any wastewater data from the past 90 days. +For states with minimal or delayed wastewater data, we will still fit Model 1, but the metadata will indicate that the wastewater data is likely insufficient to be inform the forecast. + +### Model components + +Our models are constructed from a set of generative components. These are: + +- [**Infection component:**](#infection-component) A renewal model for the infection dynamics, which generates estimates of incident latent infections per capita. +- [**Hospital admissions component:**](#hospital-admissions-component) A model for the expected number of hospital admissions given incident latent infections per capita. +- [**Wastewater viral concentration:**](#wastewater-component) A model for the expected wastewater viral concentration given incident infections per capita. + +Depending on the model, these components are implemented at different spatial scales and with different observation processes. In particular, the link to the observables depends on the model and the form of the observables, see below for detailed descriptions of each component and the following sections for model-specific details. + +See the [notation](#appendix-notation) section for an overview of the mathematical notation we use to describe the model components, including how probability distributions are parameterized. + +### Infection component + +#### Renewal process for incident infections + +This component assumes that latent (unobserved) _expected_ incident infections per capita $I(t)$ are generated from a renewal [^Cori][^EpiNow2][^Epidemia] process described by: +$$I(t) = \mathcal{R}(t) \sum_{\tau = 1}^{T_g} I(t-\tau) g(\tau)$$ +Where $g(\tau)$ is the discrete generation interval, which describes the distribution of times from incident infection to secondary infection (i.e. infectiousness profile) and $\mathcal{R}(t)$ is the instantaneous reproduction number, representing the expected number of secondary infections occurring at time $t$, divided by the number of currently infected individuals, each scaled by their relative infectiousness at time $t$ [^Gostic2020]. $T_g$ is the maximum generation interval, which is the maximum time from infection to secondary infection that we consider, and is set to 15 days. + +This process is initialized by estimating an initial exponential growth[^EpiNow2] of infections for 50 days prior to the calibration start time $t_0$: + +$$ I(t) = I_0\exp(rt) $$ + +where $I_0$ is the initial per capita infection incident infections and $r$ is the exponential growth rate. + +#### Instantaneous reproduction number + +We decompose the instantaneous reproduction number $\mathcal{R}(t)$ into two components: an _unadjusted_ instantaneous reproduction number $\mathcal{R}^\mathrm{u}(t)$ and a damping term that accounts for the effect of recent infections on the instantaneous reproduction number[^Asher2018]. + +We assume that the unadjusted reproduction number $\mathcal{R}^\mathrm{u}(t)$ is a piecewise-constant function with weekly change points (i.e., if $t$ and $t'$ are days in the same week, then $\mathcal{R}^\mathrm{u}(t) = \mathcal{R}^\mathrm{u}(t')$). To account for the dependence of the unadjusted reproduction number in a given week on the previous week, we use a differenced auto-regressive process for the log-scale reproduction number. A log-scale representation is used to ensure that the reproduction number is positive and so that week-to-week changes are multiplicative rather than additive. + +$$ +\log[\mathcal{R}^\mathrm{u}(t_3)] \sim \mathrm{Normal}\left(\log[\mathcal{R}^\mathrm{u}(t_2)] + \beta \left(\log[\mathcal{R}^\mathrm{u}(t_2)] - \log[\mathcal{R}^\mathrm{u}(t_1)]\right), \sigma_r \right) +$$ + +where $t_1$, $t_2$, and $t_3$ are days in three successive weeks, $\beta$ is an autoregression coefficient which serves to make week-to-week changes correlated, and $\sigma_r$ determines the overall variation in week-to-week changes. +We bound $\beta$ to be between 0 and 1 so that any changes in trend in $\mathcal{R}^\mathrm{u}(t)$ are damped over time to a degree determined by $\beta$. + +The damping term we use is based on Asher et al. 2018[^Asher2018] but extended to be applicable to a renewal process. It assumes that the instantaneous reproduction number is damped by recent infections weighted by the generation interval. This is a simple way to account for the fact that the instantaneous reproduction number is likely to decrease when there are many infections in the population, due to factors such as immunity, behavioral changes, and public health interventions. The damping term is defined as: + +$$ \mathcal{R}(t) = \mathcal{R}^\mathrm{u}(t) \exp \left( -\gamma \sum_{\tau = 1}^{T_f}I(t-\tau)g(\tau) \right) $$ + +where $\gamma$ is the _infection feedback term_ controlling the strength of the damping on $\mathcal{R}(t)$, and the summation is analogous to the "force of infection." + +### Hospital admissions component + +Following other semi-mechanistic renewal frameworks, we model the _expected_ hospital admissions per capita $H(t)$ as a convolution of the _expected_ latent incident infections per capita $I(t)$, and a discrete infection to hospitalization distribution $d(\tau)$, scaled by the probability of being hospitalized $p_\mathrm{hosp}(t)$. + +To account for day-of-week effects in hospital reporting, we use an estimated _weekday effect_ $\omega(t)$. If $t$ and $t'$ are the same day of the week, $\omega(t) = \omega(t')$. The seven values that $\omega(t)$ takes on are constrained to have mean 1. + +$$H(t) = \omega(t) p_\mathrm{hosp}(t) \sum_{\tau = 0}^{T_d} d(\tau) I(t-\tau)$$ + +Where $T_d$ is the maximum delay from infection to hospitalization that we consider. + +We define the discrete hospital admissions delay distribution $d(\tau)$ as a convolution of the incubation period distribution [^Park2023] and a separate estimate of the distribution of time from symptom onset to hospital admission (see [Parameter section](#model-parameters) below for further details). + +The population-level infection-hospitalization ratio can change over time due to multiple unmodeled factors. For example, the age distribution of cases could shift, a more or less severe variant could emerge, or vaccine coverage could change. +Therefore, we model the hospitalization proportion $p_\mathrm{hosp}(t)$ as a piecewise-constant function with weekly change points. +If $t$ and $t'$ are two days in the same week, then $p_\mathrm{hosp}(t) = p_\mathrm{hosp}(t')$. + +The values $p_\mathrm{hosp}(t)$ follow a random walk. +For $t_1$ and $t_2$ in two successive weeks: + +$$ \mathrm{logit} (p_{\mathrm{hosp}}(t_2)) \sim \mathrm{Normal}(\mathrm{logit}(p_{\mathrm{hosp}}(t_1)), \sigma_p)$$ + +The process is initialized at the calibration start time $t_0$ via a prior distribution (see [Prior Distributions](#prior-distributions) below). + +We model the observed hospital admission counts $h_t$ as: + +$$h_t \sim \mathrm{NegBinom}(n H(t), \phi)$$ + +where the state population size $n$ is used to convert from per-capita hospitalization rate $H(t)$ to hospitalization counts. + +Currently, we do not explicitly model the delay from hospital admission to reporting of hospital admissions. In reality, corrections (upwards or downwards) in the admissions data after the report date are possible and do happen. See [outlier detection and removal](#appendix-wastewater-data-pre-processing) for further details. + +### Wastewater viral concentration component + +We model wastewater concentrations $C(t)$, measured in viral genomes per mL, as a convolution of the _expected_ latent incident infections per capita $I(t)$ and a normalized shedding kinetics function $s(\tau)$, multiplied by $G$ the number of genomes shed per infected individual over the course of their infection and divided by $\alpha$ the volume of wastewater generated per person per day: + +$$C(t) = \frac{G}{\alpha} \sum_{\tau = 0}^{\tau_\mathrm{shed}} s(\tau) I(t-\tau)$$ + +where $\tau_\mathrm{shed}$ is the total duration of fecal shedding. +Note there is no need to scale by wastewater catchment population size because $I(t)$ is measured as new infections per capita. + +This approach assumes that $G$ and $\alpha$ are constant through time and across individuals. +In fact, there is substantial inter-individual variability in shedding kinetics and total shedding. +This approximation is more accurate when population sizes are large. + +We model the shedding kinetics $s(\tau)$ as a discretized, scaled triangular distribution[^Larremore2021]: + +```math +\log_{10}[s^\mathrm{cont}(\tau)] = \begin{cases} + V_\mathrm{peak} \frac{\tau}{\tau_\mathrm{peak}} & \tau \leq \tau_\mathrm{peak} \\ + V_\mathrm{peak} \left( 1 - \frac{\tau - \tau_\mathrm{peak}}{\tau_\mathrm{shed} - \tau_\mathrm{peak}} \right) & \tau_\mathrm{peak} < \tau \leq \tau_\mathrm{shed} \\ + 0 & \tau > \tau_\mathrm{shed} +\end{cases} +``` + +where $V_\mathrm{peak}$ is the peak number or viral genomes shed on any day, $\tau_\mathrm{peak}$ is the time from infection to peak shedding, and $\tau_\mathrm{shed}$ is the total duration of shedding. Then: + +We model the logarithms of observed wastewater concentrations as Normally distributed: + +$$ +\log[c_t] \sim \mathrm{Normal}(C(t), \sigma_c) +$$ + +This component does not mechanistically simulate each step involved in sample collection, processing, and reporting. +Instead, it aims to to account for these processes, at a summary level. +Future iterations of this model will evaluate the utility of mechanistic modeling of wastewater collection and processing. + +## Model 1: Site-level infection dynamics + +In this model, We model hospitalizations at the state-level, and wastewater viral concentrations at the site-level. We further model the site-level infection dynamics as a hierarchical model, where the site-level infection dynamics are perturbations of the state-level infection dynamics. + +This model uses all of the components described above with following modifications. + +### Site-level infections + +We couple the site- and state-level dynamics at the level of the un-damped instantaneous reproduction number $\mathcal{R}^\mathrm{u}(t)$. + +We assume that the populations represented by wastewater treatment sites have infection dynamics that are _similar_ to one another but can vary from the state-level mean. + +We represent this with a hierarchical model where we first model a state-level un-damped effective reproductive number $\mathcal{R}^\mathrm{u}(t)$, but then allow individual sites $i$ to have individual site-level values of $\mathcal{R}^\mathrm{u}_{i}(t)$ + +The state-level model for $\mathcal{R}^\mathrm{u}(t)$ is the same as the infection model described above, with $\mathcal{R}^\mathrm{u}(t)$ generating the state-level hospital admissions. +Site-level deviations from the state-level reproduction number are modeled via a log-scale AR(1) process. Specifically, for site $i$: + +$$ +\log[\mathcal{R}^\mathrm{u}_{i}(t)] = \log[\mathcal{R}^\mathrm{u}(t)] + \delta_i(t) +$$ + +where $\delta_i(t)$ is the time-varying site effect on $\mathcal{R}(t)$, modeled as, + +$$\delta_i(t) = \varphi \delta_i(t-1) + \epsilon_{it}$$ + +where $0 < \varphi < 1$ and $\epsilon_{it} \sim \mathrm{Normal}(0, \sigma_\delta)$. + +The site-level $\mathcal{R}_{i}(t)$ is also subject to the infection feedback described above such that: + +```math +\mathcal{R}_i(t) = \mathcal{R}^\mathrm{u}_i(t) \exp \left(-\gamma \sum_{\tau = 1}^{T_f} I_i(t-\tau) g(\tau) \right) +``` + +From $\mathcal{R}_{i}(t)$, we generate estimates of site-level _expected_ latent incident infections per capita $I_i(t)$ using the renewal process described in [the infection component](#infection-component). + +### Wastewater + +We model site-specific wastewater viral concentrations $C_i(t)$ independently for each site $i$ using the same model as described in [the wastewater component](#wastewater-viral-concentration-component) + +Wastewater measurements can vary between sites, and even within a site through time, because of differences in sample collection and lab processing methods. To account for this variability, we add a scaling term $M_{ij}$ and a variablity term $\sigma_{cij}$ that vary across sites $i$ and also within sites across labs $j$: + +$$\log[c_{ijt}] \sim \mathrm{Normal}(\log[M_{ij} C_i(t)], \sigma_{cij})$$ + +Both $M_{ij}$ and $\sigma_{cij}$ are modeled as site-level random effects. + +In the rare cases when a site submits multiple concentrations for a single date and lab method, we treat each record as an independent observation. + +### Censoring of wastewater observations below the limit of detection + +Lab processing methods have a finite limit of detection (LOD), such that not all wastewater measurements can be modeled using the log-normal approach above. +This limit of detection varies across sites, between methods, and potentially also over time. + +If an observed value $c_{ijt}$ is above the corresponding LOD, then the likelihood is: + +$$ +f_\mathrm{Normal}(\log[c_{ijt}]; \log[M_{ij} C_i(t)], \sigma_{cij}) +$$ + +where $f_\mathrm{Normal}(x; \mu, \sigma)$ is the probability density function of the Normal distribution. +When the observed value is below the LOD, we use a censored likelihood: + +```math +\int_{-\infty}^{\log [\mathrm{LOD}_{ijt}]} f_\mathrm{Normal}(x; \log[M_{ij} C_i(t)], \sigma_{cij}) \mathrm{d}x +``` + +(This is mathematically equivalent to integrating the probability density function of the log-normal distribution from zero to the LOD.) + +If a sample is flagged in the NWSS data as below the LOD (field `pcr_target_below_lod`) but is missing a reported LOD (field `lod_sewage`), the 95th percentile of LOD values across the entire data is used as the integral's upper limit. + +If a sample has a reported concentration (field `pcr_target_avg_conc`) above the corresponding reported LOD, but the sample is nevertheless flagged as below the LOD (field `pct_target_below_lod`), we assume the flag takes precedence and treat the sample as below LOD for the purposes of censoring. + +## Model 2: no wastewater + +The no wastewater, state-level infection dynamics model is the simplest model, because it does not include wastewater data. +Each state is modeled as a separate population according to the infection component and hospitalization component described above. +We use this model when no wastewater data is available for a state. +This model also serves as a baseline for comparison to the wastewater-informed models. + +## Model 3: nationwide wastewater + +In this model, the entire US population is treated as a single population. This model uses the general infection, hospitalization, and wastewater components described above, but with the following modifications: + +We first generate a thresholded population-weighted average concentration: + +1. For each week and site, if the site has more than one sample in that week, compute the mean concentration across those samples. This associates each site and week with a single wastewater concentration. +1. For each week, compute the weighted mean wastewater concentration across all sites. The weights are the site population, or 300,000, whichever is lower. (The thresholding is intended to prevent large sites from dominating the average concentration.) + +This *ad hoc* approach is similar to the algorithm used by Biobot Analytics to derive regional and national aggregate wastewater concentration. +Future iterations of the model will evaluate the validity of this approach. + +We then use this thresholded population-weighted average concentration as the input to the [wastewater viral concentration component](#wastewater-viral-concentration-component). + +## Model parameters + +### Prior distributions + +We use informative priors for parameters that have been well characterized in the literature and weakly informative priors for parameters that have been less well characterized. + +| Parameter | Prior distribution | Source | +|---|---|---| +| Initial hospitalization probability | $\mathrm{logit}[p_{\mathrm{hosp}}(t_0)] \sim \mathrm{Normal}(\mathrm{logit}[0.031], 0.3)$ | Perez-Guzman et al. 2023 [^Perez] | +| Time to peak fecal shedding | $\tau_\mathrm{peak} \sim \mathrm{Normal}(5 \text{ days}, 1 \text{ day})$ | Russell et al. 2023 [^Russell], Huisman et al. 2022 [^Huisman], Cavany et al. 2022 [^Cavany] | +| Peak viral shedding $V_\mathrm{peak}$| $\log_{10}[V_\mathrm{peak}] \sim \mathrm{Normal}(5.1, 0.5)$ | Miura et al. 2021 [^Muira] | +| Duration of shedding | $\tau_\mathrm{shed} \sim \mathrm{Normal}(17 \text{ days}, 3 \text{ days})$ | Cevik et al. 2021 [^Cevik], Russell et al. 2023 [^Russell] | +| Total genomes shed per infected individual | $\log_{10}[G] \sim \mathrm{Normal}(9, 2)$ | Watson et al 2023[^Watson] | +| Initial exponential growth rate | $r \sim \mathrm{Normal}(0, 0.01)$ | Chosen to assume flat dynamics prior to observations | + +### Scalar parameters + +| Parameter | Value | Source | +|---|---|---| +| Maximum generation interval | $T_g = 15$ days | | +| Maximum infection to hospital admissions delay | $T_d = 55$ days| | +| Wastewater produced per person-day | $\alpha=$ 378,500 mL per person-day | Ortiz 2024[^Ortiz] | +| Initial infections per capita $I_0$ | Sum of the last 7 days of hospital admissions, divided by state population, and divided by $p_\mathrm{hosp}$ | + +### Distributional parameters + +The discrete generation interval probability mass function $g(\tau)$ approximates a log-normal distribution[^Park2023] with log-mean 2.9 and log-standard deviation of 1.64. +To approximate the double censoring process necessary to discretize the continuous log-normal distribution, we use a simulation-based approach as recommended by Park et al.[^Park2024]. +This assumes that the primary event is uniformly distributed (this ignores the influence of the growth rate within the primary interval but is a good approximation in most settings). The secondary event is then a sum of this primary interval and the continuous distribution and is observed within a day (see Figure 9 in [^Park2024]). +As the renewal process is not defined if there is probability mass on day zero we further left truncation this distribution. +For more details refer to [^Park2024]. + +We derive the distribution $\delta(\tau)$ of the delay from infection to hospital admission as the sum of the incubation period (delay from infection to symptom onset) and the period from symptom onset to hospital admission. + +We model the incubation period with a discretized, modified Weibull distribution[^Park2023] with probability mass function $\delta(\tau)$: + +$$ +\delta^\mathrm{cont}(\tau) = \exp[0.15\tau] f_\mathrm{Weibull}(\tau; \mathrm{shape}=1.5, \mathrm{scale}=3.6) +$$ + +```math +\delta(\tau) = \begin{cases} +\delta^\mathrm{cont}(\tau) / \left( {\sum}_{\tau'=0}^{23} g^\mathrm{cont}(\delta') \right) & 0 \leq \tau \leq 23 \\ +0 & \text{otherwise} +\end{cases} +``` + +We model the symptom onset to hospital admission delay distribution with a Negative Binomial distribution with probability mass function $\gamma(\tau)$ fit to line list patient data from Dananchรฉ et al. 2022[^Danache2022]. + +$$ +\gamma(\tau) = f_\mathrm{NegBin}(\tau; 6.99 \text{ days}, 2.49 \text{ days}) +$$ + +The infection-to-hospitalization delay distribution $d(\tau)$ is the convolution: + +$$ +d(\tau) = \sum_{x=0}^\tau \delta(x) \gamma(\tau - x) +$$ + +This resulting infection to hospital admission delay distribution has a mean of 12.2 days and a standard deviation of 5.67 days. + +## Implementation + +Our framework is an extension of the widely used [^CDCRtestimates] [^CDCtechnicalblog], semi-mechanistic renewal framework `{EpiNow2}` [^epinow2], using a Bayesian latent variable approach implemented in the probabilistic programming language Stan [^stan] using [^cmdstanr] to interface with R. +For submission to the [COVID-19 Forecast Hub](https://github.com/reichlab/covid19-forecast-hub/tree/master), the model is run on Saturday to generate forecasts each Monday. +For each location, we run 4 chains for 250 warm-up iterations and 500 sampling iterations, with a target average acceptance probability of 99% and a maximum tree depth of 12. +To generate forecasts per the hub submission guidelines, we calculate the necessary quantiles from the 2,000 draws from the posterior of the expected observed hospital admissions 28 days ahead of the Monday forecast date. + +## Appendix: Notation + +The notation $X \sim \mathrm{Distribution}$ indicates that a random variable $X$ is distributed according to a given distribution. + +We parameterize Normal distributions in terms of their mean and standard deviation: $\mathrm{Normal}(\mathrm{mean, standard\ deviation})$. + +We parameterize Negative Binomial distributions in terms of their mean and their positive-constained dispersion parameter (often denoted $\phi$): $\mathrm{NegBinom}(\mathrm{mean, dispersion})$. As the dispersion parameter goes to 0, a Negative Binomial distribution becomes increasingly over-dispersed. As it goes to positive infinity, the Negative Binomial approximates a Poisson distribution with the same mean. + +We write $\mathrm{logit}(x)$ to refer to the logistic transform: $\mathrm{logit}(x) \equiv \log(x) - \log(1 - x)$. + +Observed data are labeled by data source: $c$ for wastewater concentrations, $h$ for hospital admissions. +Hospitalization data are indexed by day $t$ (i.e., $h_t$). +Wastewater data are indexed by site $i$, wastewater testing lab $j$, and day $t$ (e.g., $c_{ijt}$). + +## Appendix: Wastewater data pre-processing + +Field names are references to [fields in the analytic dataset](https://www.cdc.gov/nwss/files/NWSS-Data-Dictionary_v5.0.0_2023-07-10.xlsx). + +### Data filtering + +- Primary wastewater treatment plants only (field `sample_location` equals `wwtp`) +- SARS-CoV-2 amplification targets only (field `pcr_target` equals `sars-cov-2`) +- No solid samples (field `sample_matrix` is not `primary_sludge`, and field `pcr_target_units` is not `copies/g dry sludge`) +- No samples flagged for quality issues (field `quality_flag` is not `yes`) +- Outliers removed (see below) + +### Wastewater concentration outlier detection and removal + +We identify wastewater concentration outliers within each unique combination of site and lab over the calibration time period using an approach based on $z$-scores. + +Briefly, we compute $z$-scores for the concentrations and their finite differences and remove any observations above a threshold values for either metric. In detail: + +1. For purposes of outlier detection, exclude wastewater observations below the LOD. +1. For purposes of outlier detection, exclude observations more than 90 days before the forecast date. +1. For each site $i$, compute the change per unit time between successive observations $t$ and $t'$: $(\log[c_{it'}] - \log[c_{it}])/(t' - t)$. +1. Compute $z$-scores for $\log[c_{it}]$ across all sites $i$ and timepoints $t$. Flag values with $z$-scores over 3 as outliers and remove them from model calibration. +1. Compute $z$-scores for the change per unit time values across all sites and pairs of timepoints. For values with $z$-scores over 2, flag the corresponding wastewater concentrations $c_{it}$ as outliers and remove them from model calibration. + +The $z$-score thresholds were chosen by visual inspection of the data. + +### Other data pre-processing + +- For consistency, the reported concentration (field `pcr_target_avg_conc`) and LOD (field `lod_sewage`) are converted to genome copies per mL wastewater using the reported measurement units (field `pcr_target_units`). +- For wastewater catchment population $n_{it}$, we use field `population_served`. +- We identify the unique combinations of sites and labs and add this as a column to our pre-processed dataset. + +### Hospital admissions pre-processing + +We visually inspect the hospital admissions data for each state before producing a forecast, identifying anomalies that seem implausible. +We then remove these observations from the model inference, treating them as missing data (i.e. as NA values in the model). +Often these implausible observations are due to reporting errors, such as a hospital reporting a large number of admissions on a single day that should have been spread out over multiple days and are later corrected. When this happens, we add the corrected data back into the model inference when it gets updated. + +## References + +[^epinow2]: Abbott S, Hellewell J, Thompson RN et al. Estimating the time-varying reproduction number of SARS-CoV-2 using national and subnational case counts [version 2; peer review: 1 approved, 1 approved with reservations]. Wellcome Open Res 2020, 5:112 (https://doi.org/10.12688/wellcomeopenres.16006.2) +[^Asher2018]: Jason Asher. Forecasting Ebola with a regression transmission model. Epidemics 2018, Volume 22, Pages 50-55, ISSN 1755-4365, (https://doi.org/10.1016/j.epidem.2017.02.009) +[^stan]: Stan Development Team. 2023. Stan Modeling Language Users Guide and Reference Manual, VERSION. https://mc-stan.org +[^CDCRtestimates]: https://www.cdc.gov/forecast-outbreak-analytics/about/rt-estimates.html +[^CDCtechnicalblog]: https://www.cdc.gov/forecast-outbreak-analytics/about/technical-blog-rt.html +[^Park2023]: Park SW, Sun K, Abbott S, Sender R, Bar-On YM, Weitz JS, Funk S, Grenfell BT, Backer JA, Wallinga J, Viboud C, Dushoff J. Inferring the differences in incubation-period and generation-interval distributions of the Delta and Omicron variants of SARS-CoV-2. Proc Natl Acad Sci U S A. 2023 May 30;120(22):e2221887120. doi: 10.1073/pnas.2221887120. Epub 2023 May 22. PMID: 37216529; PMCID: PMC10235974. +[^Danache2022]: Dananchรฉ C, Elias C, Hรฉnaff L, Amour S, Kuczewski E, Gustin MP, Escuret V, Saadatian-Elahi M, Vanhems P. Baseline clinical features of COVID-19 patients, delay of hospital admission and clinical outcome: A complex relationship. PLoS One. 2022 Jan 7;17(1):e0261428. doi: 10.1371/journal.pone.0261428. PMID: 34995292; PMCID: PMC8741026. +[^Perez]: Perez-Guzman, P.N., Knock, E., Imai, N. et al. Epidemiological drivers of transmissibility and severity of SARS-CoV-2 in England. Nat Commun 14, 4279 (2023). https://doi.org/10.1038/s41467-023-39661-5 +[^Muira]: Miura F, Kitajima M, Omori R. Duration of SARS-CoV-2 viral shedding in faeces as a parameter for wastewater-based epidemiology: Re-analysis of patient data using a shedding dynamics model. Sci Total Environ. 2021 May 15;769:144549. doi: 10.1016/j.scitotenv.2020.144549. Epub 2021 Jan 4. PMID: 33477053; PMCID: PMC7833251. +[^Huisman]: Jana S Huisman, Jรฉrรฉmie Scire, Daniel C Angst, Jinzhou Li, Richard A Neher, Marloes H Maathuis, Sebastian Bonhoeffer, Tanja Stadler (2022) Estimation and worldwide monitoring of the effective reproductive number of SARS-CoV-2 eLife 11:e71345. https://doi.org/10.7554/eLife.71345 +[^Cavany]: Cavany S, Bivins A, Wu Z, North D, Bibby K, Perkins TA. Inferring SARS-CoV-2 RNA shedding into wastewater relative to the time of infection. Epidemiology and Infection. 2022;150:e21. doi:10.1017/S0950268821002752 +[^Russell]: Russell TW, Townsley H, Abbott S, Hellewell J, Carr EJ, Chapman L, Pung R, Quilty BJ, Hodgson D, Fowler AS, Adams L, Bailey C, Mears HV, Harvey R, Clayton B, O'Reilly N, Ngai Y, Nicod J, Gamblin S, Williams B, Gandhi S, Swanton C, Beale R, Bauer DL, Wall EC, Kucharski A. Within-host SARS-CoV-2 viral kinetics informed by complex life course exposures reveals different intrinsic properties of Omicron and Delta variants. medRxiv [Preprint]. 2023 May 24:2023.05.17.23290105. doi: 10.1101/2023.05.17.23290105. PMID: 37292842; PMCID: PMC10246130. +[^Cevik]: Cevik M, Tate M, Lloyd O, Maraolo AE, Schafers J, Ho A. SARS-CoV-2, SARS-CoV, and MERS-CoV viral load dynamics, duration of viral shedding, and infectiousness: a systematic review and meta-analysis. Lancet Microbe. 2021 Jan;2(1):e13-e22. doi: 10.1016/S2666-5247(20)30172-5. Epub 2020 Nov 19. PMID: 33521734; PMCID: PMC7837230. +[^Watson]: Leighton M. Watson, Michael J. Plank, Bridget A. Armstrong, Joanne R. Chapman, Joanne Hewitt, Helen Morris, Alvaro Orsi, Michael Bunce, Christl A. Donnelly, Nicholas Steyn. Improving estimates of epidemiological quantities by combining reported cases with wastewater data: a statistical framework with applications to COVID-19 in Aotearoa New Zealand. medRxiv 2023.08.14.23294060; doi: https://doi.org/10.1101/2023.08.14.23294060 +[^Ortiz]: Ortiz Pete. Wastewater facts - statistics and household data in 2024. https://housegrail.com/wastewater-facts-statistics/ +[^Larremore2021]: Larremore DB, Wilder B, Lester E, et al. Test sensitivity is secondary to frequency and turnaround time for COVID-19 screening. Science Advances. 2021. doi: 10.1126/sciadv.abd5393 +[^Cori]: Cori, A., Ferguson, N. M., Fraser, C., & Cauchemez, S. (2013). A new framework and software to estimate time-varying reproduction numbers during epidemics. Am. J. Epidemiol., 178(9), 1505โ€“1512. https://doi.org/10.1093/aje/kwt133 +[^EpiNow2]: Abbott, S., Hellewell, J., Sherratt, K., Gostic, K., Hickson, J., Badr, H. S., DeWitt, M., Thompson, R., EpiForecasts, & Funk, S. (2020). EpiNow2: Estimate real-time case counts and time-varying epidemiological parameters. https://doi.org/10.5281/zenodo.3957489 +[^Epidemia]: Fraser, C. (2007). Estimating individual and household reproduction numbers in an emerging epidemic. PLoS One, 2(8), e758. https://doi.org/10.1371/journal.pone.0000758 +[^cmdstanr]: CmdStanR: the R interface to CmdStan. 2024. https://mc-stan.org/cmdstanr/index.html +[^Park2024]: Estimating epidemiological delay distributions for infectious diseases. Sang Woo Park, Andrei R. Akhmetzhanov, Kelly Charniga, Anne Cori, Nicholas G. Davies, Jonathan Dushoff, Sebastian Funk, Katie Gostic, Bryan Grenfell, Natalie M. Linton, Marc Lipsitch, Adrian Lison, Christopher E. Overton, Thomas Ward, Sam Abbott +medRxiv 2024.01.12.24301247; doi: https://doi.org/10.1101/2024.01.12.24301247 +[^Gostic2020]: Gostic, Katelyn M., Lauren McGough, Edward B. Baskerville, Sam Abbott, Keya Joshi, Christine Tedijanto, Rebecca Kahn, et al. 10-Dec-2020. โ€œPractical Considerations for Measuring the Effective Reproductive Number, Rt.โ€ PLoS Computational Biology 16 (12): e1008409. diff --git a/model_diagnostics/diagnostic_report.Rmd b/model_diagnostics/diagnostic_report.Rmd new file mode 100644 index 00000000..4b5bc665 --- /dev/null +++ b/model_diagnostics/diagnostic_report.Rmd @@ -0,0 +1,61 @@ +--- +title: "Diagnostic report" +author: "Kaitlyn Johnson" +output: html_document +--- + +```{r} +library(targets) +tar_read(full_diagnostics_df) +tar_read(hub_submission_df) + +summary_list <- get_summary_stats(full_diagnostics_df) +``` +# Number of states/territories +```{r, echo = FALSE} +message( + "Number of states/territories in diagnostics dataframe:", + length(unique(full_diagnostics_df$location)) +) +message( + "Number of states/territories in hub submission dataframe:", + length(unique(hub_submission_df$location)) +) +``` +# Wastewater data flags +```{r, echo = FALSE} +print("States without wastewater data: ") +print((summary_list$states_w_no_ww_data)) + +print("States with insufficient wastewater data: ") +print(summary_list$states_w_insufficient_ww_data) + +print("States with delayed wastewater data: ") +print(summary_list$states_w_delayed_ww_data) + +print("States with data below LOD or flat: ") +print(summary_list$states_w_data_below_LOD_or_flat) + +print("States with wastewater data that is suspiciously low: ") +print(summary_list$states_low_ww) + +print("States with wastewater data that we would flag for Hub submission: ") +print(summary_list$states_to_flag_for_hub) +``` +# Hospital admissions data flags +```{r, echo = FALSE} +print("States with low hospital admissions: ") +print(summary_list$states_w_low_hosp_admissions) +``` +# Model convergence flags +```{r, echo = FALSE} +print("States divergent transitions issues: ") +print(summary_list$states_w_too_many_divergences) +print("States with many draws hitting max tree depth: ") +print(summary_list$states_high_tree_depth) +print("States with other model issues:") +print(unique(c( + summary_list$states_w_low_EBMFI, + summary_list$states_w_high_rhat +))) +``` diff --git a/output/forecasts/2024-02-05/2024-02-05.tsv b/output/forecasts/2024-02-05/2024-02-05.tsv new file mode 100644 index 00000000..702b55fe --- /dev/null +++ b/output/forecasts/2024-02-05/2024-02-05.tsv @@ -0,0 +1,34133 @@ +"target" "location" "forecast_date" "target_end_date" "quantile" "value" "type" "model_type" +"1 day ahead inc hosp" "02" 2024-02-05 2024-02-06 0.01 0 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "02" 2024-02-05 2024-02-06 0.025 1.475 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "02" 2024-02-05 2024-02-06 0.05 2 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "02" 2024-02-05 2024-02-06 0.1 4 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "02" 2024-02-05 2024-02-06 0.15 4 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "02" 2024-02-05 2024-02-06 0.2 4 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "02" 2024-02-05 2024-02-06 0.25 4.75 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "02" 2024-02-05 2024-02-06 0.3 5 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "02" 2024-02-05 2024-02-06 0.35 5 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "02" 2024-02-05 2024-02-06 0.4 6 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "02" 2024-02-05 2024-02-06 0.45 6 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "02" 2024-02-05 2024-02-06 0.5 6 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "02" 2024-02-05 2024-02-06 0.55 7 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "02" 2024-02-05 2024-02-06 0.6 7 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "02" 2024-02-05 2024-02-06 0.65 7 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "02" 2024-02-05 2024-02-06 0.7 7.30000000000001 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "02" 2024-02-05 2024-02-06 0.75 8 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "02" 2024-02-05 2024-02-06 0.8 9 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "02" 2024-02-05 2024-02-06 0.85 9 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "02" 2024-02-05 2024-02-06 0.9 10.1 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "02" 2024-02-05 2024-02-06 0.95 11 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "02" 2024-02-05 2024-02-06 0.975 12 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "02" 2024-02-05 2024-02-06 0.99 13 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "02" 2024-02-05 2024-02-07 0.01 1.99 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "02" 2024-02-05 2024-02-07 0.025 2 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "02" 2024-02-05 2024-02-07 0.05 3 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "02" 2024-02-05 2024-02-07 0.1 4 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "02" 2024-02-05 2024-02-07 0.15 4 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "02" 2024-02-05 2024-02-07 0.2 5 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "02" 2024-02-05 2024-02-07 0.25 5 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "02" 2024-02-05 2024-02-07 0.3 6 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "02" 2024-02-05 2024-02-07 0.35 6 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "02" 2024-02-05 2024-02-07 0.4 7 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "02" 2024-02-05 2024-02-07 0.45 7 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "02" 2024-02-05 2024-02-07 0.5 8 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "02" 2024-02-05 2024-02-07 0.55 8 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "02" 2024-02-05 2024-02-07 0.6 8 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "02" 2024-02-05 2024-02-07 0.65 9 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "02" 2024-02-05 2024-02-07 0.7 9 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "02" 2024-02-05 2024-02-07 0.75 9 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "02" 2024-02-05 2024-02-07 0.8 10 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "02" 2024-02-05 2024-02-07 0.85 11 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "02" 2024-02-05 2024-02-07 0.9 11.1 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "02" 2024-02-05 2024-02-07 0.95 13.05 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "02" 2024-02-05 2024-02-07 0.975 15.525 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "02" 2024-02-05 2024-02-07 0.99 16.01 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "02" 2024-02-05 2024-02-08 0.01 0.99 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "02" 2024-02-05 2024-02-08 0.025 1 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "02" 2024-02-05 2024-02-08 0.05 1 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "02" 2024-02-05 2024-02-08 0.1 2 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "02" 2024-02-05 2024-02-08 0.15 3 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "02" 2024-02-05 2024-02-08 0.2 3 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "02" 2024-02-05 2024-02-08 0.25 3 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "02" 2024-02-05 2024-02-08 0.3 4 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "02" 2024-02-05 2024-02-08 0.35 4 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "02" 2024-02-05 2024-02-08 0.4 4.6 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "02" 2024-02-05 2024-02-08 0.45 5 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "02" 2024-02-05 2024-02-08 0.5 5 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "02" 2024-02-05 2024-02-08 0.55 5 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "02" 2024-02-05 2024-02-08 0.6 6 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "02" 2024-02-05 2024-02-08 0.65 6 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "02" 2024-02-05 2024-02-08 0.7 7 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "02" 2024-02-05 2024-02-08 0.75 7 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "02" 2024-02-05 2024-02-08 0.8 8 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "02" 2024-02-05 2024-02-08 0.85 8 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "02" 2024-02-05 2024-02-08 0.9 9 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "02" 2024-02-05 2024-02-08 0.95 11 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "02" 2024-02-05 2024-02-08 0.975 11 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "02" 2024-02-05 2024-02-08 0.99 12 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "02" 2024-02-05 2024-02-09 0.01 0 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "02" 2024-02-05 2024-02-09 0.025 0.475 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "02" 2024-02-05 2024-02-09 0.05 1 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "02" 2024-02-05 2024-02-09 0.1 1.9 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "02" 2024-02-05 2024-02-09 0.15 2 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "02" 2024-02-05 2024-02-09 0.2 3 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "02" 2024-02-05 2024-02-09 0.25 3 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "02" 2024-02-05 2024-02-09 0.3 3 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "02" 2024-02-05 2024-02-09 0.35 4 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "02" 2024-02-05 2024-02-09 0.4 4 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "02" 2024-02-05 2024-02-09 0.45 5 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "02" 2024-02-05 2024-02-09 0.5 5 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "02" 2024-02-05 2024-02-09 0.55 5 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "02" 2024-02-05 2024-02-09 0.6 5 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "02" 2024-02-05 2024-02-09 0.65 6 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "02" 2024-02-05 2024-02-09 0.7 6 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "02" 2024-02-05 2024-02-09 0.75 6 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "02" 2024-02-05 2024-02-09 0.8 6.2 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "02" 2024-02-05 2024-02-09 0.85 7 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "02" 2024-02-05 2024-02-09 0.9 8 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "02" 2024-02-05 2024-02-09 0.95 9 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "02" 2024-02-05 2024-02-09 0.975 9 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "02" 2024-02-05 2024-02-09 0.99 9.01000000000001 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "02" 2024-02-05 2024-02-10 0.01 1 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "02" 2024-02-05 2024-02-10 0.025 1 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "02" 2024-02-05 2024-02-10 0.05 1 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "02" 2024-02-05 2024-02-10 0.1 2 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "02" 2024-02-05 2024-02-10 0.15 2 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "02" 2024-02-05 2024-02-10 0.2 2.8 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "02" 2024-02-05 2024-02-10 0.25 3 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "02" 2024-02-05 2024-02-10 0.3 3 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "02" 2024-02-05 2024-02-10 0.35 3 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "02" 2024-02-05 2024-02-10 0.4 4 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "02" 2024-02-05 2024-02-10 0.45 4 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "02" 2024-02-05 2024-02-10 0.5 4 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "02" 2024-02-05 2024-02-10 0.55 4 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "02" 2024-02-05 2024-02-10 0.6 5 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "02" 2024-02-05 2024-02-10 0.65 5 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "02" 2024-02-05 2024-02-10 0.7 5.30000000000001 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "02" 2024-02-05 2024-02-10 0.75 6 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "02" 2024-02-05 2024-02-10 0.8 7 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "02" 2024-02-05 2024-02-10 0.85 7.15000000000001 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "02" 2024-02-05 2024-02-10 0.9 9 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "02" 2024-02-05 2024-02-10 0.95 10 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "02" 2024-02-05 2024-02-10 0.975 10.525 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "02" 2024-02-05 2024-02-10 0.99 11.02 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "02" 2024-02-05 2024-02-11 0.01 2 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "02" 2024-02-05 2024-02-11 0.025 2.475 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "02" 2024-02-05 2024-02-11 0.05 3 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "02" 2024-02-05 2024-02-11 0.1 3 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "02" 2024-02-05 2024-02-11 0.15 4 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "02" 2024-02-05 2024-02-11 0.2 4 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "02" 2024-02-05 2024-02-11 0.25 5 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "02" 2024-02-05 2024-02-11 0.3 5 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "02" 2024-02-05 2024-02-11 0.35 6 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "02" 2024-02-05 2024-02-11 0.4 6 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "02" 2024-02-05 2024-02-11 0.45 7 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "02" 2024-02-05 2024-02-11 0.5 7 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "02" 2024-02-05 2024-02-11 0.55 8 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "02" 2024-02-05 2024-02-11 0.6 8 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "02" 2024-02-05 2024-02-11 0.65 8 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "02" 2024-02-05 2024-02-11 0.7 9 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "02" 2024-02-05 2024-02-11 0.75 10 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "02" 2024-02-05 2024-02-11 0.8 10 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "02" 2024-02-05 2024-02-11 0.85 11 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "02" 2024-02-05 2024-02-11 0.9 12 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "02" 2024-02-05 2024-02-11 0.95 13 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "02" 2024-02-05 2024-02-11 0.975 13.525 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "02" 2024-02-05 2024-02-11 0.99 15.02 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "02" 2024-02-05 2024-02-12 0.01 0.99 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "02" 2024-02-05 2024-02-12 0.025 1 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "02" 2024-02-05 2024-02-12 0.05 2 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "02" 2024-02-05 2024-02-12 0.1 3 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "02" 2024-02-05 2024-02-12 0.15 3 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "02" 2024-02-05 2024-02-12 0.2 4 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "02" 2024-02-05 2024-02-12 0.25 4 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "02" 2024-02-05 2024-02-12 0.3 4 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "02" 2024-02-05 2024-02-12 0.35 5 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "02" 2024-02-05 2024-02-12 0.4 5 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "02" 2024-02-05 2024-02-12 0.45 5.55 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "02" 2024-02-05 2024-02-12 0.5 6 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "02" 2024-02-05 2024-02-12 0.55 7 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "02" 2024-02-05 2024-02-12 0.6 7 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "02" 2024-02-05 2024-02-12 0.65 7 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "02" 2024-02-05 2024-02-12 0.7 8 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "02" 2024-02-05 2024-02-12 0.75 8 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "02" 2024-02-05 2024-02-12 0.8 9 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "02" 2024-02-05 2024-02-12 0.85 9.15000000000001 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "02" 2024-02-05 2024-02-12 0.9 10 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "02" 2024-02-05 2024-02-12 0.95 11 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "02" 2024-02-05 2024-02-12 0.975 12.525 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "02" 2024-02-05 2024-02-12 0.99 15.01 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "02" 2024-02-05 2024-02-13 0.01 0.99 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "02" 2024-02-05 2024-02-13 0.025 1.475 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "02" 2024-02-05 2024-02-13 0.05 2 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "02" 2024-02-05 2024-02-13 0.1 3 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "02" 2024-02-05 2024-02-13 0.15 3.85 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "02" 2024-02-05 2024-02-13 0.2 4 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "02" 2024-02-05 2024-02-13 0.25 4 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "02" 2024-02-05 2024-02-13 0.3 5 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "02" 2024-02-05 2024-02-13 0.35 5 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "02" 2024-02-05 2024-02-13 0.4 5 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "02" 2024-02-05 2024-02-13 0.45 6 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "02" 2024-02-05 2024-02-13 0.5 6 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "02" 2024-02-05 2024-02-13 0.55 6 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "02" 2024-02-05 2024-02-13 0.6 7 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "02" 2024-02-05 2024-02-13 0.65 7 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "02" 2024-02-05 2024-02-13 0.7 8 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "02" 2024-02-05 2024-02-13 0.75 9 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "02" 2024-02-05 2024-02-13 0.8 9 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "02" 2024-02-05 2024-02-13 0.85 10 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "02" 2024-02-05 2024-02-13 0.9 10 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "02" 2024-02-05 2024-02-13 0.95 11 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "02" 2024-02-05 2024-02-13 0.975 13.05 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "02" 2024-02-05 2024-02-13 0.99 15 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "02" 2024-02-05 2024-02-14 0.01 0 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "02" 2024-02-05 2024-02-14 0.025 2 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "02" 2024-02-05 2024-02-14 0.05 2 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "02" 2024-02-05 2024-02-14 0.1 3 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "02" 2024-02-05 2024-02-14 0.15 3.85 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "02" 2024-02-05 2024-02-14 0.2 4 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "02" 2024-02-05 2024-02-14 0.25 4 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "02" 2024-02-05 2024-02-14 0.3 5 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "02" 2024-02-05 2024-02-14 0.35 5 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "02" 2024-02-05 2024-02-14 0.4 6 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "02" 2024-02-05 2024-02-14 0.45 6 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "02" 2024-02-05 2024-02-14 0.5 6 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "02" 2024-02-05 2024-02-14 0.55 6 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "02" 2024-02-05 2024-02-14 0.6 7 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "02" 2024-02-05 2024-02-14 0.65 7.35000000000001 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "02" 2024-02-05 2024-02-14 0.7 8 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "02" 2024-02-05 2024-02-14 0.75 9 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "02" 2024-02-05 2024-02-14 0.8 10 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "02" 2024-02-05 2024-02-14 0.85 11 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "02" 2024-02-05 2024-02-14 0.9 11 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "02" 2024-02-05 2024-02-14 0.95 13 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "02" 2024-02-05 2024-02-14 0.975 14 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "02" 2024-02-05 2024-02-14 0.99 14.01 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "02" 2024-02-05 2024-02-15 0.01 0.99 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "02" 2024-02-05 2024-02-15 0.025 1.475 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "02" 2024-02-05 2024-02-15 0.05 2 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "02" 2024-02-05 2024-02-15 0.1 2.9 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "02" 2024-02-05 2024-02-15 0.15 3 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "02" 2024-02-05 2024-02-15 0.2 3 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "02" 2024-02-05 2024-02-15 0.25 4 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "02" 2024-02-05 2024-02-15 0.3 4 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "02" 2024-02-05 2024-02-15 0.35 4 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "02" 2024-02-05 2024-02-15 0.4 5 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "02" 2024-02-05 2024-02-15 0.45 5 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "02" 2024-02-05 2024-02-15 0.5 5 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "02" 2024-02-05 2024-02-15 0.55 5.45 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "02" 2024-02-05 2024-02-15 0.6 6 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "02" 2024-02-05 2024-02-15 0.65 6 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "02" 2024-02-05 2024-02-15 0.7 7 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "02" 2024-02-05 2024-02-15 0.75 7 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "02" 2024-02-05 2024-02-15 0.8 7 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "02" 2024-02-05 2024-02-15 0.85 8 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "02" 2024-02-05 2024-02-15 0.9 8.10000000000001 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "02" 2024-02-05 2024-02-15 0.95 11 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "02" 2024-02-05 2024-02-15 0.975 11 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "02" 2024-02-05 2024-02-15 0.99 11.01 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "02" 2024-02-05 2024-02-16 0.01 1 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "02" 2024-02-05 2024-02-16 0.025 1 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "02" 2024-02-05 2024-02-16 0.05 1.95 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "02" 2024-02-05 2024-02-16 0.1 2 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "02" 2024-02-05 2024-02-16 0.15 3 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "02" 2024-02-05 2024-02-16 0.2 3 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "02" 2024-02-05 2024-02-16 0.25 3 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "02" 2024-02-05 2024-02-16 0.3 4 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "02" 2024-02-05 2024-02-16 0.35 4 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "02" 2024-02-05 2024-02-16 0.4 4 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "02" 2024-02-05 2024-02-16 0.45 5 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "02" 2024-02-05 2024-02-16 0.5 5 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "02" 2024-02-05 2024-02-16 0.55 5 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "02" 2024-02-05 2024-02-16 0.6 5 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "02" 2024-02-05 2024-02-16 0.65 6 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "02" 2024-02-05 2024-02-16 0.7 6 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "02" 2024-02-05 2024-02-16 0.75 7 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "02" 2024-02-05 2024-02-16 0.8 7 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "02" 2024-02-05 2024-02-16 0.85 7.15000000000001 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "02" 2024-02-05 2024-02-16 0.9 8.10000000000001 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "02" 2024-02-05 2024-02-16 0.95 9.05 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "02" 2024-02-05 2024-02-16 0.975 11 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "02" 2024-02-05 2024-02-16 0.99 12.01 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "02" 2024-02-05 2024-02-17 0.01 1 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "02" 2024-02-05 2024-02-17 0.025 1 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "02" 2024-02-05 2024-02-17 0.05 1 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "02" 2024-02-05 2024-02-17 0.1 2 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "02" 2024-02-05 2024-02-17 0.15 3 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "02" 2024-02-05 2024-02-17 0.2 3 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "02" 2024-02-05 2024-02-17 0.25 3.75 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "02" 2024-02-05 2024-02-17 0.3 4 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "02" 2024-02-05 2024-02-17 0.35 4 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "02" 2024-02-05 2024-02-17 0.4 4 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "02" 2024-02-05 2024-02-17 0.45 5 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "02" 2024-02-05 2024-02-17 0.5 5 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "02" 2024-02-05 2024-02-17 0.55 6 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "02" 2024-02-05 2024-02-17 0.6 6 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "02" 2024-02-05 2024-02-17 0.65 6 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "02" 2024-02-05 2024-02-17 0.7 6 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "02" 2024-02-05 2024-02-17 0.75 7 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "02" 2024-02-05 2024-02-17 0.8 8 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "02" 2024-02-05 2024-02-17 0.85 8 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "02" 2024-02-05 2024-02-17 0.9 9 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "02" 2024-02-05 2024-02-17 0.95 11 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "02" 2024-02-05 2024-02-17 0.975 11.525 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "02" 2024-02-05 2024-02-17 0.99 12.03 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "02" 2024-02-05 2024-02-18 0.01 1.98 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "02" 2024-02-05 2024-02-18 0.025 3 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "02" 2024-02-05 2024-02-18 0.05 3 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "02" 2024-02-05 2024-02-18 0.1 4 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "02" 2024-02-05 2024-02-18 0.15 5 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "02" 2024-02-05 2024-02-18 0.2 5 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "02" 2024-02-05 2024-02-18 0.25 6 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "02" 2024-02-05 2024-02-18 0.3 6 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "02" 2024-02-05 2024-02-18 0.35 7 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "02" 2024-02-05 2024-02-18 0.4 7 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "02" 2024-02-05 2024-02-18 0.45 7.55 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "02" 2024-02-05 2024-02-18 0.5 8 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "02" 2024-02-05 2024-02-18 0.55 9 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "02" 2024-02-05 2024-02-18 0.6 9 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "02" 2024-02-05 2024-02-18 0.65 10 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "02" 2024-02-05 2024-02-18 0.7 10 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "02" 2024-02-05 2024-02-18 0.75 10 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "02" 2024-02-05 2024-02-18 0.8 11 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "02" 2024-02-05 2024-02-18 0.85 12 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "02" 2024-02-05 2024-02-18 0.9 13 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "02" 2024-02-05 2024-02-18 0.95 16 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "02" 2024-02-05 2024-02-18 0.975 16 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "02" 2024-02-05 2024-02-18 0.99 19 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "02" 2024-02-05 2024-02-19 0.01 1 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "02" 2024-02-05 2024-02-19 0.025 2 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "02" 2024-02-05 2024-02-19 0.05 2 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "02" 2024-02-05 2024-02-19 0.1 2 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "02" 2024-02-05 2024-02-19 0.15 3 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "02" 2024-02-05 2024-02-19 0.2 4 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "02" 2024-02-05 2024-02-19 0.25 4 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "02" 2024-02-05 2024-02-19 0.3 4 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "02" 2024-02-05 2024-02-19 0.35 5 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "02" 2024-02-05 2024-02-19 0.4 5.6 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "02" 2024-02-05 2024-02-19 0.45 6 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "02" 2024-02-05 2024-02-19 0.5 6 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "02" 2024-02-05 2024-02-19 0.55 6 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "02" 2024-02-05 2024-02-19 0.6 7 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "02" 2024-02-05 2024-02-19 0.65 7 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "02" 2024-02-05 2024-02-19 0.7 8 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "02" 2024-02-05 2024-02-19 0.75 8 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "02" 2024-02-05 2024-02-19 0.8 8.2 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "02" 2024-02-05 2024-02-19 0.85 9 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "02" 2024-02-05 2024-02-19 0.9 10 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "02" 2024-02-05 2024-02-19 0.95 11 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "02" 2024-02-05 2024-02-19 0.975 12 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "02" 2024-02-05 2024-02-19 0.99 17 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "02" 2024-02-05 2024-02-20 0.01 1 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "02" 2024-02-05 2024-02-20 0.025 2 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "02" 2024-02-05 2024-02-20 0.05 3 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "02" 2024-02-05 2024-02-20 0.1 4 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "02" 2024-02-05 2024-02-20 0.15 4 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "02" 2024-02-05 2024-02-20 0.2 4 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "02" 2024-02-05 2024-02-20 0.25 4 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "02" 2024-02-05 2024-02-20 0.3 5 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "02" 2024-02-05 2024-02-20 0.35 5 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "02" 2024-02-05 2024-02-20 0.4 5.6 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "02" 2024-02-05 2024-02-20 0.45 6 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "02" 2024-02-05 2024-02-20 0.5 6 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "02" 2024-02-05 2024-02-20 0.55 7 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "02" 2024-02-05 2024-02-20 0.6 8 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "02" 2024-02-05 2024-02-20 0.65 8 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "02" 2024-02-05 2024-02-20 0.7 8.30000000000001 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "02" 2024-02-05 2024-02-20 0.75 9 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "02" 2024-02-05 2024-02-20 0.8 10 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "02" 2024-02-05 2024-02-20 0.85 11 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "02" 2024-02-05 2024-02-20 0.9 12 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "02" 2024-02-05 2024-02-20 0.95 12.05 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "02" 2024-02-05 2024-02-20 0.975 14.05 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "02" 2024-02-05 2024-02-20 0.99 17.01 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "02" 2024-02-05 2024-02-21 0.01 1.98 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "02" 2024-02-05 2024-02-21 0.025 2 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "02" 2024-02-05 2024-02-21 0.05 2 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "02" 2024-02-05 2024-02-21 0.1 3 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "02" 2024-02-05 2024-02-21 0.15 3.85 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "02" 2024-02-05 2024-02-21 0.2 4 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "02" 2024-02-05 2024-02-21 0.25 5 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "02" 2024-02-05 2024-02-21 0.3 6 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "02" 2024-02-05 2024-02-21 0.35 6 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "02" 2024-02-05 2024-02-21 0.4 6 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "02" 2024-02-05 2024-02-21 0.45 7 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "02" 2024-02-05 2024-02-21 0.5 7 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "02" 2024-02-05 2024-02-21 0.55 8 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "02" 2024-02-05 2024-02-21 0.6 8 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "02" 2024-02-05 2024-02-21 0.65 8 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "02" 2024-02-05 2024-02-21 0.7 9 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "02" 2024-02-05 2024-02-21 0.75 9.25000000000001 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "02" 2024-02-05 2024-02-21 0.8 10 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "02" 2024-02-05 2024-02-21 0.85 10.15 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "02" 2024-02-05 2024-02-21 0.9 11.1 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "02" 2024-02-05 2024-02-21 0.95 14 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "02" 2024-02-05 2024-02-21 0.975 15.525 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "02" 2024-02-05 2024-02-21 0.99 16 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "02" 2024-02-05 2024-02-22 0.01 1 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "02" 2024-02-05 2024-02-22 0.025 1 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "02" 2024-02-05 2024-02-22 0.05 2 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "02" 2024-02-05 2024-02-22 0.1 2.9 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "02" 2024-02-05 2024-02-22 0.15 3 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "02" 2024-02-05 2024-02-22 0.2 3 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "02" 2024-02-05 2024-02-22 0.25 3 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "02" 2024-02-05 2024-02-22 0.3 4 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "02" 2024-02-05 2024-02-22 0.35 4 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "02" 2024-02-05 2024-02-22 0.4 4.6 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "02" 2024-02-05 2024-02-22 0.45 5 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "02" 2024-02-05 2024-02-22 0.5 5 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "02" 2024-02-05 2024-02-22 0.55 5 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "02" 2024-02-05 2024-02-22 0.6 6 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "02" 2024-02-05 2024-02-22 0.65 6 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "02" 2024-02-05 2024-02-22 0.7 7 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "02" 2024-02-05 2024-02-22 0.75 7.25000000000001 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "02" 2024-02-05 2024-02-22 0.8 8 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "02" 2024-02-05 2024-02-22 0.85 9 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "02" 2024-02-05 2024-02-22 0.9 9 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "02" 2024-02-05 2024-02-22 0.95 12 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "02" 2024-02-05 2024-02-22 0.975 13.05 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "02" 2024-02-05 2024-02-22 0.99 15.01 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "02" 2024-02-05 2024-02-23 0.01 0.99 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "02" 2024-02-05 2024-02-23 0.025 1 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "02" 2024-02-05 2024-02-23 0.05 1.95 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "02" 2024-02-05 2024-02-23 0.1 2 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "02" 2024-02-05 2024-02-23 0.15 2.85 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "02" 2024-02-05 2024-02-23 0.2 3 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "02" 2024-02-05 2024-02-23 0.25 3 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "02" 2024-02-05 2024-02-23 0.3 4 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "02" 2024-02-05 2024-02-23 0.35 4 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "02" 2024-02-05 2024-02-23 0.4 4 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "02" 2024-02-05 2024-02-23 0.45 4 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "02" 2024-02-05 2024-02-23 0.5 5 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "02" 2024-02-05 2024-02-23 0.55 5 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "02" 2024-02-05 2024-02-23 0.6 6 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "02" 2024-02-05 2024-02-23 0.65 6 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "02" 2024-02-05 2024-02-23 0.7 6 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "02" 2024-02-05 2024-02-23 0.75 7 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "02" 2024-02-05 2024-02-23 0.8 7 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "02" 2024-02-05 2024-02-23 0.85 8 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "02" 2024-02-05 2024-02-23 0.9 8 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "02" 2024-02-05 2024-02-23 0.95 10 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "02" 2024-02-05 2024-02-23 0.975 10.525 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "02" 2024-02-05 2024-02-23 0.99 12 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "02" 2024-02-05 2024-02-24 0.01 1 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "02" 2024-02-05 2024-02-24 0.025 1.475 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "02" 2024-02-05 2024-02-24 0.05 2 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "02" 2024-02-05 2024-02-24 0.1 2 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "02" 2024-02-05 2024-02-24 0.15 3 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "02" 2024-02-05 2024-02-24 0.2 3 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "02" 2024-02-05 2024-02-24 0.25 4 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "02" 2024-02-05 2024-02-24 0.3 4 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "02" 2024-02-05 2024-02-24 0.35 4 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "02" 2024-02-05 2024-02-24 0.4 5 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "02" 2024-02-05 2024-02-24 0.45 5 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "02" 2024-02-05 2024-02-24 0.5 5 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "02" 2024-02-05 2024-02-24 0.55 6 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "02" 2024-02-05 2024-02-24 0.6 6 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "02" 2024-02-05 2024-02-24 0.65 7 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "02" 2024-02-05 2024-02-24 0.7 7 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "02" 2024-02-05 2024-02-24 0.75 7 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "02" 2024-02-05 2024-02-24 0.8 8 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "02" 2024-02-05 2024-02-24 0.85 8 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "02" 2024-02-05 2024-02-24 0.9 10 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "02" 2024-02-05 2024-02-24 0.95 11 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "02" 2024-02-05 2024-02-24 0.975 11.525 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "02" 2024-02-05 2024-02-24 0.99 13.04 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "02" 2024-02-05 2024-02-25 0.01 1.99 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "02" 2024-02-05 2024-02-25 0.025 3 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "02" 2024-02-05 2024-02-25 0.05 3 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "02" 2024-02-05 2024-02-25 0.1 3.9 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "02" 2024-02-05 2024-02-25 0.15 4 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "02" 2024-02-05 2024-02-25 0.2 5 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "02" 2024-02-05 2024-02-25 0.25 5 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "02" 2024-02-05 2024-02-25 0.3 6 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "02" 2024-02-05 2024-02-25 0.35 6 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "02" 2024-02-05 2024-02-25 0.4 7 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "02" 2024-02-05 2024-02-25 0.45 7 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "02" 2024-02-05 2024-02-25 0.5 8 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "02" 2024-02-05 2024-02-25 0.55 8 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "02" 2024-02-05 2024-02-25 0.6 9 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "02" 2024-02-05 2024-02-25 0.65 10 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "02" 2024-02-05 2024-02-25 0.7 10.3 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "02" 2024-02-05 2024-02-25 0.75 11 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "02" 2024-02-05 2024-02-25 0.8 11 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "02" 2024-02-05 2024-02-25 0.85 12 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "02" 2024-02-05 2024-02-25 0.9 13 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "02" 2024-02-05 2024-02-25 0.95 13 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "02" 2024-02-05 2024-02-25 0.975 14.525 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "02" 2024-02-05 2024-02-25 0.99 16.09 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "02" 2024-02-05 2024-02-26 0.01 1 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "02" 2024-02-05 2024-02-26 0.025 1.475 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "02" 2024-02-05 2024-02-26 0.05 2 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "02" 2024-02-05 2024-02-26 0.1 2 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "02" 2024-02-05 2024-02-26 0.15 3 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "02" 2024-02-05 2024-02-26 0.2 4 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "02" 2024-02-05 2024-02-26 0.25 4 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "02" 2024-02-05 2024-02-26 0.3 4 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "02" 2024-02-05 2024-02-26 0.35 5 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "02" 2024-02-05 2024-02-26 0.4 5 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "02" 2024-02-05 2024-02-26 0.45 5 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "02" 2024-02-05 2024-02-26 0.5 6 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "02" 2024-02-05 2024-02-26 0.55 6 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "02" 2024-02-05 2024-02-26 0.6 6 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "02" 2024-02-05 2024-02-26 0.65 7 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "02" 2024-02-05 2024-02-26 0.7 7.30000000000001 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "02" 2024-02-05 2024-02-26 0.75 8 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "02" 2024-02-05 2024-02-26 0.8 8 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "02" 2024-02-05 2024-02-26 0.85 9 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "02" 2024-02-05 2024-02-26 0.9 10.1 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "02" 2024-02-05 2024-02-26 0.95 12.05 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "02" 2024-02-05 2024-02-26 0.975 13.525 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "02" 2024-02-05 2024-02-26 0.99 15.01 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "02" 2024-02-05 2024-02-27 0.01 1 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "02" 2024-02-05 2024-02-27 0.025 1 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "02" 2024-02-05 2024-02-27 0.05 2 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "02" 2024-02-05 2024-02-27 0.1 2 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "02" 2024-02-05 2024-02-27 0.15 3 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "02" 2024-02-05 2024-02-27 0.2 4 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "02" 2024-02-05 2024-02-27 0.25 4 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "02" 2024-02-05 2024-02-27 0.3 5 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "02" 2024-02-05 2024-02-27 0.35 5.65000000000001 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "02" 2024-02-05 2024-02-27 0.4 6 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "02" 2024-02-05 2024-02-27 0.45 6 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "02" 2024-02-05 2024-02-27 0.5 7 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "02" 2024-02-05 2024-02-27 0.55 7 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "02" 2024-02-05 2024-02-27 0.6 7 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "02" 2024-02-05 2024-02-27 0.65 8 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "02" 2024-02-05 2024-02-27 0.7 8 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "02" 2024-02-05 2024-02-27 0.75 8 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "02" 2024-02-05 2024-02-27 0.8 9 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "02" 2024-02-05 2024-02-27 0.85 10 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "02" 2024-02-05 2024-02-27 0.9 11 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "02" 2024-02-05 2024-02-27 0.95 13.05 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "02" 2024-02-05 2024-02-27 0.975 15.525 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "02" 2024-02-05 2024-02-27 0.99 20.02 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "02" 2024-02-05 2024-02-28 0.01 2 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "02" 2024-02-05 2024-02-28 0.025 3 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "02" 2024-02-05 2024-02-28 0.05 3 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "02" 2024-02-05 2024-02-28 0.1 3 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "02" 2024-02-05 2024-02-28 0.15 4 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "02" 2024-02-05 2024-02-28 0.2 5 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "02" 2024-02-05 2024-02-28 0.25 5 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "02" 2024-02-05 2024-02-28 0.3 6 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "02" 2024-02-05 2024-02-28 0.35 6 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "02" 2024-02-05 2024-02-28 0.4 6 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "02" 2024-02-05 2024-02-28 0.45 7 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "02" 2024-02-05 2024-02-28 0.5 7 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "02" 2024-02-05 2024-02-28 0.55 7.45 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "02" 2024-02-05 2024-02-28 0.6 8 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "02" 2024-02-05 2024-02-28 0.65 8 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "02" 2024-02-05 2024-02-28 0.7 8 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "02" 2024-02-05 2024-02-28 0.75 9 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "02" 2024-02-05 2024-02-28 0.8 9.2 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "02" 2024-02-05 2024-02-28 0.85 10 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "02" 2024-02-05 2024-02-28 0.9 11.1 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "02" 2024-02-05 2024-02-28 0.95 14.1 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "02" 2024-02-05 2024-02-28 0.975 16 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "02" 2024-02-05 2024-02-28 0.99 17 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "02" 2024-02-05 2024-02-29 0.01 1 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "02" 2024-02-05 2024-02-29 0.025 1 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "02" 2024-02-05 2024-02-29 0.05 2 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "02" 2024-02-05 2024-02-29 0.1 2 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "02" 2024-02-05 2024-02-29 0.15 2.85 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "02" 2024-02-05 2024-02-29 0.2 3 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "02" 2024-02-05 2024-02-29 0.25 4 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "02" 2024-02-05 2024-02-29 0.3 4 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "02" 2024-02-05 2024-02-29 0.35 4 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "02" 2024-02-05 2024-02-29 0.4 4 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "02" 2024-02-05 2024-02-29 0.45 5 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "02" 2024-02-05 2024-02-29 0.5 5 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "02" 2024-02-05 2024-02-29 0.55 6 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "02" 2024-02-05 2024-02-29 0.6 6 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "02" 2024-02-05 2024-02-29 0.65 6 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "02" 2024-02-05 2024-02-29 0.7 7 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "02" 2024-02-05 2024-02-29 0.75 7 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "02" 2024-02-05 2024-02-29 0.8 8 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "02" 2024-02-05 2024-02-29 0.85 8 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "02" 2024-02-05 2024-02-29 0.9 9 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "02" 2024-02-05 2024-02-29 0.95 10 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "02" 2024-02-05 2024-02-29 0.975 11.05 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "02" 2024-02-05 2024-02-29 0.99 13.03 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "02" 2024-02-05 2024-03-01 0.01 0.99 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "02" 2024-02-05 2024-03-01 0.025 1 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "02" 2024-02-05 2024-03-01 0.05 1.95 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "02" 2024-02-05 2024-03-01 0.1 2 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "02" 2024-02-05 2024-03-01 0.15 3 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "02" 2024-02-05 2024-03-01 0.2 3 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "02" 2024-02-05 2024-03-01 0.25 4 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "02" 2024-02-05 2024-03-01 0.3 4 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "02" 2024-02-05 2024-03-01 0.35 4 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "02" 2024-02-05 2024-03-01 0.4 5 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "02" 2024-02-05 2024-03-01 0.45 5 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "02" 2024-02-05 2024-03-01 0.5 5 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "02" 2024-02-05 2024-03-01 0.55 5 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "02" 2024-02-05 2024-03-01 0.6 6 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "02" 2024-02-05 2024-03-01 0.65 6 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "02" 2024-02-05 2024-03-01 0.7 6 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "02" 2024-02-05 2024-03-01 0.75 7 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "02" 2024-02-05 2024-03-01 0.8 8 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "02" 2024-02-05 2024-03-01 0.85 8 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "02" 2024-02-05 2024-03-01 0.9 9 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "02" 2024-02-05 2024-03-01 0.95 10 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "02" 2024-02-05 2024-03-01 0.975 10.525 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "02" 2024-02-05 2024-03-01 0.99 12.01 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "02" 2024-02-05 2024-03-02 0.01 0 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "02" 2024-02-05 2024-03-02 0.025 1 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "02" 2024-02-05 2024-03-02 0.05 1 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "02" 2024-02-05 2024-03-02 0.1 2 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "02" 2024-02-05 2024-03-02 0.15 3 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "02" 2024-02-05 2024-03-02 0.2 3 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "02" 2024-02-05 2024-03-02 0.25 3 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "02" 2024-02-05 2024-03-02 0.3 4 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "02" 2024-02-05 2024-03-02 0.35 4 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "02" 2024-02-05 2024-03-02 0.4 5 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "02" 2024-02-05 2024-03-02 0.45 5 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "02" 2024-02-05 2024-03-02 0.5 5 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "02" 2024-02-05 2024-03-02 0.55 6 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "02" 2024-02-05 2024-03-02 0.6 6 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "02" 2024-02-05 2024-03-02 0.65 6.35000000000001 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "02" 2024-02-05 2024-03-02 0.7 7 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "02" 2024-02-05 2024-03-02 0.75 7 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "02" 2024-02-05 2024-03-02 0.8 8 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "02" 2024-02-05 2024-03-02 0.85 8.15000000000001 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "02" 2024-02-05 2024-03-02 0.9 9 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "02" 2024-02-05 2024-03-02 0.95 9.05 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "02" 2024-02-05 2024-03-02 0.975 10.525 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "02" 2024-02-05 2024-03-02 0.99 12.02 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "02" 2024-02-05 2024-03-03 0.01 1.99 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "02" 2024-02-05 2024-03-03 0.025 2 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "02" 2024-02-05 2024-03-03 0.05 3.95 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "02" 2024-02-05 2024-03-03 0.1 4 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "02" 2024-02-05 2024-03-03 0.15 4 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "02" 2024-02-05 2024-03-03 0.2 5 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "02" 2024-02-05 2024-03-03 0.25 5 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "02" 2024-02-05 2024-03-03 0.3 6 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "02" 2024-02-05 2024-03-03 0.35 6 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "02" 2024-02-05 2024-03-03 0.4 7 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "02" 2024-02-05 2024-03-03 0.45 7.55 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "02" 2024-02-05 2024-03-03 0.5 8 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "02" 2024-02-05 2024-03-03 0.55 9 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "02" 2024-02-05 2024-03-03 0.6 9 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "02" 2024-02-05 2024-03-03 0.65 10 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "02" 2024-02-05 2024-03-03 0.7 11 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "02" 2024-02-05 2024-03-03 0.75 11 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "02" 2024-02-05 2024-03-03 0.8 12 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "02" 2024-02-05 2024-03-03 0.85 13 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "02" 2024-02-05 2024-03-03 0.9 14.1 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "02" 2024-02-05 2024-03-03 0.95 17 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "02" 2024-02-05 2024-03-03 0.975 18.525 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "02" 2024-02-05 2024-03-03 0.99 21.02 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "02" 2024-02-05 2024-03-04 0.01 0 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "02" 2024-02-05 2024-03-04 0.025 1.475 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "02" 2024-02-05 2024-03-04 0.05 2 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "02" 2024-02-05 2024-03-04 0.1 3 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "02" 2024-02-05 2024-03-04 0.15 3 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "02" 2024-02-05 2024-03-04 0.2 3.8 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "02" 2024-02-05 2024-03-04 0.25 4 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "02" 2024-02-05 2024-03-04 0.3 4 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "02" 2024-02-05 2024-03-04 0.35 5 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "02" 2024-02-05 2024-03-04 0.4 5 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "02" 2024-02-05 2024-03-04 0.45 5.55 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "02" 2024-02-05 2024-03-04 0.5 6 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "02" 2024-02-05 2024-03-04 0.55 6 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "02" 2024-02-05 2024-03-04 0.6 7 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "02" 2024-02-05 2024-03-04 0.65 7 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "02" 2024-02-05 2024-03-04 0.7 8 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "02" 2024-02-05 2024-03-04 0.75 8 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "02" 2024-02-05 2024-03-04 0.8 9 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "02" 2024-02-05 2024-03-04 0.85 9.15000000000001 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "02" 2024-02-05 2024-03-04 0.9 11 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "02" 2024-02-05 2024-03-04 0.95 12.05 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "02" 2024-02-05 2024-03-04 0.975 13 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "02" 2024-02-05 2024-03-04 0.99 14.06 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "01" 2024-02-05 2024-02-06 0.01 29.96 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "01" 2024-02-05 2024-02-06 0.025 31.475 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "01" 2024-02-05 2024-02-06 0.05 36 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "01" 2024-02-05 2024-02-06 0.1 39.8 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "01" 2024-02-05 2024-02-06 0.15 42.85 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "01" 2024-02-05 2024-02-06 0.2 44 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "01" 2024-02-05 2024-02-06 0.25 45 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "01" 2024-02-05 2024-02-06 0.3 46 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "01" 2024-02-05 2024-02-06 0.35 47.65 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "01" 2024-02-05 2024-02-06 0.4 49 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "01" 2024-02-05 2024-02-06 0.45 51 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "01" 2024-02-05 2024-02-06 0.5 52.5 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "01" 2024-02-05 2024-02-06 0.55 54 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "01" 2024-02-05 2024-02-06 0.6 55 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "01" 2024-02-05 2024-02-06 0.65 56 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "01" 2024-02-05 2024-02-06 0.7 57.6 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "01" 2024-02-05 2024-02-06 0.75 61 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "01" 2024-02-05 2024-02-06 0.8 62 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "01" 2024-02-05 2024-02-06 0.85 65.15 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "01" 2024-02-05 2024-02-06 0.9 67 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "01" 2024-02-05 2024-02-06 0.95 72 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "01" 2024-02-05 2024-02-06 0.975 74.575 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "01" 2024-02-05 2024-02-06 0.99 77.03 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "01" 2024-02-05 2024-02-07 0.01 27.99 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "01" 2024-02-05 2024-02-07 0.025 28.475 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "01" 2024-02-05 2024-02-07 0.05 30.95 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "01" 2024-02-05 2024-02-07 0.1 35.9 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "01" 2024-02-05 2024-02-07 0.15 37 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "01" 2024-02-05 2024-02-07 0.2 39.8 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "01" 2024-02-05 2024-02-07 0.25 41 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "01" 2024-02-05 2024-02-07 0.3 42 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "01" 2024-02-05 2024-02-07 0.35 44 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "01" 2024-02-05 2024-02-07 0.4 45.6 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "01" 2024-02-05 2024-02-07 0.45 47 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "01" 2024-02-05 2024-02-07 0.5 48 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "01" 2024-02-05 2024-02-07 0.55 49 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "01" 2024-02-05 2024-02-07 0.6 50 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "01" 2024-02-05 2024-02-07 0.65 51 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "01" 2024-02-05 2024-02-07 0.7 52 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "01" 2024-02-05 2024-02-07 0.75 54 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "01" 2024-02-05 2024-02-07 0.8 55 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "01" 2024-02-05 2024-02-07 0.85 56 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "01" 2024-02-05 2024-02-07 0.9 57.1 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "01" 2024-02-05 2024-02-07 0.95 63.15 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "01" 2024-02-05 2024-02-07 0.975 68.05 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "01" 2024-02-05 2024-02-07 0.99 73.07 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "01" 2024-02-05 2024-02-08 0.01 24.98 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "01" 2024-02-05 2024-02-08 0.025 29.95 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "01" 2024-02-05 2024-02-08 0.05 33.85 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "01" 2024-02-05 2024-02-08 0.1 37 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "01" 2024-02-05 2024-02-08 0.15 38.85 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "01" 2024-02-05 2024-02-08 0.2 40 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "01" 2024-02-05 2024-02-08 0.25 42 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "01" 2024-02-05 2024-02-08 0.3 43.7 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "01" 2024-02-05 2024-02-08 0.35 45.65 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "01" 2024-02-05 2024-02-08 0.4 46.6 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "01" 2024-02-05 2024-02-08 0.45 49 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "01" 2024-02-05 2024-02-08 0.5 50 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "01" 2024-02-05 2024-02-08 0.55 52.45 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "01" 2024-02-05 2024-02-08 0.6 53.4 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "01" 2024-02-05 2024-02-08 0.65 55 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "01" 2024-02-05 2024-02-08 0.7 56.3 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "01" 2024-02-05 2024-02-08 0.75 58 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "01" 2024-02-05 2024-02-08 0.8 59.2 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "01" 2024-02-05 2024-02-08 0.85 62.15 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "01" 2024-02-05 2024-02-08 0.9 66 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "01" 2024-02-05 2024-02-08 0.95 73.05 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "01" 2024-02-05 2024-02-08 0.975 76.575 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "01" 2024-02-05 2024-02-08 0.99 81.2800000000001 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "01" 2024-02-05 2024-02-09 0.01 23.94 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "01" 2024-02-05 2024-02-09 0.025 27 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "01" 2024-02-05 2024-02-09 0.05 30.95 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "01" 2024-02-05 2024-02-09 0.1 34 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "01" 2024-02-05 2024-02-09 0.15 36 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "01" 2024-02-05 2024-02-09 0.2 37 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "01" 2024-02-05 2024-02-09 0.25 38 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "01" 2024-02-05 2024-02-09 0.3 40 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "01" 2024-02-05 2024-02-09 0.35 41.65 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "01" 2024-02-05 2024-02-09 0.4 43 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "01" 2024-02-05 2024-02-09 0.45 44 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "01" 2024-02-05 2024-02-09 0.5 45 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "01" 2024-02-05 2024-02-09 0.55 47 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "01" 2024-02-05 2024-02-09 0.6 48 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "01" 2024-02-05 2024-02-09 0.65 50 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "01" 2024-02-05 2024-02-09 0.7 51 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "01" 2024-02-05 2024-02-09 0.75 53 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "01" 2024-02-05 2024-02-09 0.8 55 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "01" 2024-02-05 2024-02-09 0.85 59.15 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "01" 2024-02-05 2024-02-09 0.9 63 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "01" 2024-02-05 2024-02-09 0.95 67.05 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "01" 2024-02-05 2024-02-09 0.975 72.05 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "01" 2024-02-05 2024-02-09 0.99 85.04 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "01" 2024-02-05 2024-02-10 0.01 22.94 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "01" 2024-02-05 2024-02-10 0.025 24.425 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "01" 2024-02-05 2024-02-10 0.05 27 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "01" 2024-02-05 2024-02-10 0.1 31 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "01" 2024-02-05 2024-02-10 0.15 33 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "01" 2024-02-05 2024-02-10 0.2 35 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "01" 2024-02-05 2024-02-10 0.25 37.75 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "01" 2024-02-05 2024-02-10 0.3 38.7 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "01" 2024-02-05 2024-02-10 0.35 40 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "01" 2024-02-05 2024-02-10 0.4 41 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "01" 2024-02-05 2024-02-10 0.45 42 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "01" 2024-02-05 2024-02-10 0.5 43.5 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "01" 2024-02-05 2024-02-10 0.55 45.45 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "01" 2024-02-05 2024-02-10 0.6 46.4 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "01" 2024-02-05 2024-02-10 0.65 48 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "01" 2024-02-05 2024-02-10 0.7 49.3 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "01" 2024-02-05 2024-02-10 0.75 51 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "01" 2024-02-05 2024-02-10 0.8 53 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "01" 2024-02-05 2024-02-10 0.85 56.15 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "01" 2024-02-05 2024-02-10 0.9 61.1 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "01" 2024-02-05 2024-02-10 0.95 65.05 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "01" 2024-02-05 2024-02-10 0.975 68 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "01" 2024-02-05 2024-02-10 0.99 72 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "01" 2024-02-05 2024-02-11 0.01 24.97 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "01" 2024-02-05 2024-02-11 0.025 25.475 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "01" 2024-02-05 2024-02-11 0.05 29 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "01" 2024-02-05 2024-02-11 0.1 32.9 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "01" 2024-02-05 2024-02-11 0.15 34 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "01" 2024-02-05 2024-02-11 0.2 36.6 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "01" 2024-02-05 2024-02-11 0.25 38 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "01" 2024-02-05 2024-02-11 0.3 40 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "01" 2024-02-05 2024-02-11 0.35 41 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "01" 2024-02-05 2024-02-11 0.4 43 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "01" 2024-02-05 2024-02-11 0.45 43 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "01" 2024-02-05 2024-02-11 0.5 44 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "01" 2024-02-05 2024-02-11 0.55 45 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "01" 2024-02-05 2024-02-11 0.6 46 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "01" 2024-02-05 2024-02-11 0.65 48 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "01" 2024-02-05 2024-02-11 0.7 50 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "01" 2024-02-05 2024-02-11 0.75 51 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "01" 2024-02-05 2024-02-11 0.8 52.2 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "01" 2024-02-05 2024-02-11 0.85 56 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "01" 2024-02-05 2024-02-11 0.9 63.1 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "01" 2024-02-05 2024-02-11 0.95 67.15 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "01" 2024-02-05 2024-02-11 0.975 72.05 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "01" 2024-02-05 2024-02-11 0.99 86.1300000000001 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "01" 2024-02-05 2024-02-12 0.01 22.96 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "01" 2024-02-05 2024-02-12 0.025 27.425 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "01" 2024-02-05 2024-02-12 0.05 32 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "01" 2024-02-05 2024-02-12 0.1 37 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "01" 2024-02-05 2024-02-12 0.15 38.85 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "01" 2024-02-05 2024-02-12 0.2 41 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "01" 2024-02-05 2024-02-12 0.25 42 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "01" 2024-02-05 2024-02-12 0.3 43 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "01" 2024-02-05 2024-02-12 0.35 45 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "01" 2024-02-05 2024-02-12 0.4 46 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "01" 2024-02-05 2024-02-12 0.45 47 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "01" 2024-02-05 2024-02-12 0.5 49 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "01" 2024-02-05 2024-02-12 0.55 50 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "01" 2024-02-05 2024-02-12 0.6 52 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "01" 2024-02-05 2024-02-12 0.65 53 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "01" 2024-02-05 2024-02-12 0.7 55 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "01" 2024-02-05 2024-02-12 0.75 56 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "01" 2024-02-05 2024-02-12 0.8 59.2 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "01" 2024-02-05 2024-02-12 0.85 61.15 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "01" 2024-02-05 2024-02-12 0.9 67.1 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "01" 2024-02-05 2024-02-12 0.95 71.25 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "01" 2024-02-05 2024-02-12 0.975 81 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "01" 2024-02-05 2024-02-12 0.99 87.1100000000001 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "01" 2024-02-05 2024-02-13 0.01 26 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "01" 2024-02-05 2024-02-13 0.025 28.475 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "01" 2024-02-05 2024-02-13 0.05 30.95 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "01" 2024-02-05 2024-02-13 0.1 34 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "01" 2024-02-05 2024-02-13 0.15 35.85 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "01" 2024-02-05 2024-02-13 0.2 37 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "01" 2024-02-05 2024-02-13 0.25 40 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "01" 2024-02-05 2024-02-13 0.3 40 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "01" 2024-02-05 2024-02-13 0.35 41 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "01" 2024-02-05 2024-02-13 0.4 43 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "01" 2024-02-05 2024-02-13 0.45 44.55 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "01" 2024-02-05 2024-02-13 0.5 46 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "01" 2024-02-05 2024-02-13 0.55 47 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "01" 2024-02-05 2024-02-13 0.6 49.4 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "01" 2024-02-05 2024-02-13 0.65 51 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "01" 2024-02-05 2024-02-13 0.7 53 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "01" 2024-02-05 2024-02-13 0.75 55 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "01" 2024-02-05 2024-02-13 0.8 60.2 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "01" 2024-02-05 2024-02-13 0.85 63 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "01" 2024-02-05 2024-02-13 0.9 67.1 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "01" 2024-02-05 2024-02-13 0.95 72.15 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "01" 2024-02-05 2024-02-13 0.975 76.525 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "01" 2024-02-05 2024-02-13 0.99 77.1600000000001 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "01" 2024-02-05 2024-02-14 0.01 24.93 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "01" 2024-02-05 2024-02-14 0.025 26.475 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "01" 2024-02-05 2024-02-14 0.05 27 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "01" 2024-02-05 2024-02-14 0.1 29 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "01" 2024-02-05 2024-02-14 0.15 32 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "01" 2024-02-05 2024-02-14 0.2 36 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "01" 2024-02-05 2024-02-14 0.25 38.75 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "01" 2024-02-05 2024-02-14 0.3 40 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "01" 2024-02-05 2024-02-14 0.35 42 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "01" 2024-02-05 2024-02-14 0.4 43 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "01" 2024-02-05 2024-02-14 0.45 45 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "01" 2024-02-05 2024-02-14 0.5 46 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "01" 2024-02-05 2024-02-14 0.55 46.45 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "01" 2024-02-05 2024-02-14 0.6 48.4 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "01" 2024-02-05 2024-02-14 0.65 49.35 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "01" 2024-02-05 2024-02-14 0.7 51 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "01" 2024-02-05 2024-02-14 0.75 52.25 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "01" 2024-02-05 2024-02-14 0.8 55 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "01" 2024-02-05 2024-02-14 0.85 58 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "01" 2024-02-05 2024-02-14 0.9 62.1 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "01" 2024-02-05 2024-02-14 0.95 73.15 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "01" 2024-02-05 2024-02-14 0.975 77 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "01" 2024-02-05 2024-02-14 0.99 81.1500000000001 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "01" 2024-02-05 2024-02-15 0.01 19 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "01" 2024-02-05 2024-02-15 0.025 23.9 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "01" 2024-02-05 2024-02-15 0.05 26.95 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "01" 2024-02-05 2024-02-15 0.1 32 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "01" 2024-02-05 2024-02-15 0.15 34.85 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "01" 2024-02-05 2024-02-15 0.2 37.8 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "01" 2024-02-05 2024-02-15 0.25 39 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "01" 2024-02-05 2024-02-15 0.3 41 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "01" 2024-02-05 2024-02-15 0.35 42 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "01" 2024-02-05 2024-02-15 0.4 44 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "01" 2024-02-05 2024-02-15 0.45 46 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "01" 2024-02-05 2024-02-15 0.5 48 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "01" 2024-02-05 2024-02-15 0.55 50 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "01" 2024-02-05 2024-02-15 0.6 51 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "01" 2024-02-05 2024-02-15 0.65 53 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "01" 2024-02-05 2024-02-15 0.7 54 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "01" 2024-02-05 2024-02-15 0.75 56.25 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "01" 2024-02-05 2024-02-15 0.8 60 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "01" 2024-02-05 2024-02-15 0.85 61.3 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "01" 2024-02-05 2024-02-15 0.9 66 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "01" 2024-02-05 2024-02-15 0.95 71 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "01" 2024-02-05 2024-02-15 0.975 74.05 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "01" 2024-02-05 2024-02-15 0.99 84.3900000000002 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "01" 2024-02-05 2024-02-16 0.01 19 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "01" 2024-02-05 2024-02-16 0.025 20.9 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "01" 2024-02-05 2024-02-16 0.05 26.9 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "01" 2024-02-05 2024-02-16 0.1 29 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "01" 2024-02-05 2024-02-16 0.15 32 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "01" 2024-02-05 2024-02-16 0.2 34 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "01" 2024-02-05 2024-02-16 0.25 36 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "01" 2024-02-05 2024-02-16 0.3 37 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "01" 2024-02-05 2024-02-16 0.35 38.65 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "01" 2024-02-05 2024-02-16 0.4 40.6 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "01" 2024-02-05 2024-02-16 0.45 42 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "01" 2024-02-05 2024-02-16 0.5 44.5 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "01" 2024-02-05 2024-02-16 0.55 46 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "01" 2024-02-05 2024-02-16 0.6 47.4 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "01" 2024-02-05 2024-02-16 0.65 49 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "01" 2024-02-05 2024-02-16 0.7 51.3 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "01" 2024-02-05 2024-02-16 0.75 53.5 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "01" 2024-02-05 2024-02-16 0.8 58.2 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "01" 2024-02-05 2024-02-16 0.85 63 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "01" 2024-02-05 2024-02-16 0.9 64 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "01" 2024-02-05 2024-02-16 0.95 68.05 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "01" 2024-02-05 2024-02-16 0.975 71.1 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "01" 2024-02-05 2024-02-16 0.99 76.3000000000002 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "01" 2024-02-05 2024-02-17 0.01 19 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "01" 2024-02-05 2024-02-17 0.025 23.475 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "01" 2024-02-05 2024-02-17 0.05 25 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "01" 2024-02-05 2024-02-17 0.1 28.9 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "01" 2024-02-05 2024-02-17 0.15 30.85 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "01" 2024-02-05 2024-02-17 0.2 33 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "01" 2024-02-05 2024-02-17 0.25 34 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "01" 2024-02-05 2024-02-17 0.3 35.7 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "01" 2024-02-05 2024-02-17 0.35 37 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "01" 2024-02-05 2024-02-17 0.4 39 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "01" 2024-02-05 2024-02-17 0.45 41.55 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "01" 2024-02-05 2024-02-17 0.5 43 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "01" 2024-02-05 2024-02-17 0.55 44 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "01" 2024-02-05 2024-02-17 0.6 46 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "01" 2024-02-05 2024-02-17 0.65 48 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "01" 2024-02-05 2024-02-17 0.7 50.3 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "01" 2024-02-05 2024-02-17 0.75 52 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "01" 2024-02-05 2024-02-17 0.8 53 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "01" 2024-02-05 2024-02-17 0.85 55.15 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "01" 2024-02-05 2024-02-17 0.9 59.2 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "01" 2024-02-05 2024-02-17 0.95 67.05 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "01" 2024-02-05 2024-02-17 0.975 68 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "01" 2024-02-05 2024-02-17 0.99 77.2700000000001 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "01" 2024-02-05 2024-02-18 0.01 19.96 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "01" 2024-02-05 2024-02-18 0.025 22 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "01" 2024-02-05 2024-02-18 0.05 24.9 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "01" 2024-02-05 2024-02-18 0.1 26.9 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "01" 2024-02-05 2024-02-18 0.15 29.85 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "01" 2024-02-05 2024-02-18 0.2 33 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "01" 2024-02-05 2024-02-18 0.25 37 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "01" 2024-02-05 2024-02-18 0.3 38 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "01" 2024-02-05 2024-02-18 0.35 39.65 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "01" 2024-02-05 2024-02-18 0.4 40.6 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "01" 2024-02-05 2024-02-18 0.45 43.55 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "01" 2024-02-05 2024-02-18 0.5 45 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "01" 2024-02-05 2024-02-18 0.55 46 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "01" 2024-02-05 2024-02-18 0.6 47.4 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "01" 2024-02-05 2024-02-18 0.65 49 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "01" 2024-02-05 2024-02-18 0.7 51.3 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "01" 2024-02-05 2024-02-18 0.75 52.25 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "01" 2024-02-05 2024-02-18 0.8 54.2 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "01" 2024-02-05 2024-02-18 0.85 58 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "01" 2024-02-05 2024-02-18 0.9 63 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "01" 2024-02-05 2024-02-18 0.95 72 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "01" 2024-02-05 2024-02-18 0.975 83.9249999999999 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "01" 2024-02-05 2024-02-18 0.99 94.1700000000001 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "01" 2024-02-05 2024-02-19 0.01 25.89 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "01" 2024-02-05 2024-02-19 0.025 27.95 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "01" 2024-02-05 2024-02-19 0.05 29.95 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "01" 2024-02-05 2024-02-19 0.1 31.9 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "01" 2024-02-05 2024-02-19 0.15 35 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "01" 2024-02-05 2024-02-19 0.2 36 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "01" 2024-02-05 2024-02-19 0.25 37.75 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "01" 2024-02-05 2024-02-19 0.3 39.7 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "01" 2024-02-05 2024-02-19 0.35 42 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "01" 2024-02-05 2024-02-19 0.4 44 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "01" 2024-02-05 2024-02-19 0.45 45 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "01" 2024-02-05 2024-02-19 0.5 46 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "01" 2024-02-05 2024-02-19 0.55 47 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "01" 2024-02-05 2024-02-19 0.6 50 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "01" 2024-02-05 2024-02-19 0.65 52 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "01" 2024-02-05 2024-02-19 0.7 53.3 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "01" 2024-02-05 2024-02-19 0.75 55.25 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "01" 2024-02-05 2024-02-19 0.8 58 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "01" 2024-02-05 2024-02-19 0.85 61.3 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "01" 2024-02-05 2024-02-19 0.9 65 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "01" 2024-02-05 2024-02-19 0.95 68.05 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "01" 2024-02-05 2024-02-19 0.975 75.1999999999999 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "01" 2024-02-05 2024-02-19 0.99 82.1400000000001 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "01" 2024-02-05 2024-02-20 0.01 20 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "01" 2024-02-05 2024-02-20 0.025 25 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "01" 2024-02-05 2024-02-20 0.05 25.95 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "01" 2024-02-05 2024-02-20 0.1 27.9 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "01" 2024-02-05 2024-02-20 0.15 30 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "01" 2024-02-05 2024-02-20 0.2 32 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "01" 2024-02-05 2024-02-20 0.25 34.5 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "01" 2024-02-05 2024-02-20 0.3 36 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "01" 2024-02-05 2024-02-20 0.35 37 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "01" 2024-02-05 2024-02-20 0.4 40.6 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "01" 2024-02-05 2024-02-20 0.45 44 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "01" 2024-02-05 2024-02-20 0.5 46.5 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "01" 2024-02-05 2024-02-20 0.55 47 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "01" 2024-02-05 2024-02-20 0.6 49.4 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "01" 2024-02-05 2024-02-20 0.65 52 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "01" 2024-02-05 2024-02-20 0.7 54.3 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "01" 2024-02-05 2024-02-20 0.75 58 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "01" 2024-02-05 2024-02-20 0.8 61.2 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "01" 2024-02-05 2024-02-20 0.85 64 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "01" 2024-02-05 2024-02-20 0.9 66.2 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "01" 2024-02-05 2024-02-20 0.95 76.1 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "01" 2024-02-05 2024-02-20 0.975 85.8249999999999 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "01" 2024-02-05 2024-02-20 0.99 103.05 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "01" 2024-02-05 2024-02-21 0.01 20.95 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "01" 2024-02-05 2024-02-21 0.025 22 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "01" 2024-02-05 2024-02-21 0.05 23.95 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "01" 2024-02-05 2024-02-21 0.1 27.9 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "01" 2024-02-05 2024-02-21 0.15 29.85 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "01" 2024-02-05 2024-02-21 0.2 33 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "01" 2024-02-05 2024-02-21 0.25 35 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "01" 2024-02-05 2024-02-21 0.3 36.7 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "01" 2024-02-05 2024-02-21 0.35 37 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "01" 2024-02-05 2024-02-21 0.4 39 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "01" 2024-02-05 2024-02-21 0.45 40 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "01" 2024-02-05 2024-02-21 0.5 41 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "01" 2024-02-05 2024-02-21 0.55 42 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "01" 2024-02-05 2024-02-21 0.6 44 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "01" 2024-02-05 2024-02-21 0.65 46 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "01" 2024-02-05 2024-02-21 0.7 49 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "01" 2024-02-05 2024-02-21 0.75 51.25 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "01" 2024-02-05 2024-02-21 0.8 54 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "01" 2024-02-05 2024-02-21 0.85 60.15 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "01" 2024-02-05 2024-02-21 0.9 63 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "01" 2024-02-05 2024-02-21 0.95 66.1 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "01" 2024-02-05 2024-02-21 0.975 69.525 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "01" 2024-02-05 2024-02-21 0.99 78.4400000000002 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "01" 2024-02-05 2024-02-22 0.01 21.98 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "01" 2024-02-05 2024-02-22 0.025 23 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "01" 2024-02-05 2024-02-22 0.05 25.95 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "01" 2024-02-05 2024-02-22 0.1 30 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "01" 2024-02-05 2024-02-22 0.15 31 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "01" 2024-02-05 2024-02-22 0.2 33 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "01" 2024-02-05 2024-02-22 0.25 35.5 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "01" 2024-02-05 2024-02-22 0.3 38 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "01" 2024-02-05 2024-02-22 0.35 39 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "01" 2024-02-05 2024-02-22 0.4 40 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "01" 2024-02-05 2024-02-22 0.45 41 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "01" 2024-02-05 2024-02-22 0.5 43.5 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "01" 2024-02-05 2024-02-22 0.55 45.45 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "01" 2024-02-05 2024-02-22 0.6 47 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "01" 2024-02-05 2024-02-22 0.65 49.35 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "01" 2024-02-05 2024-02-22 0.7 51 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "01" 2024-02-05 2024-02-22 0.75 56 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "01" 2024-02-05 2024-02-22 0.8 59 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "01" 2024-02-05 2024-02-22 0.85 60.15 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "01" 2024-02-05 2024-02-22 0.9 66.2 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "01" 2024-02-05 2024-02-22 0.95 74 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "01" 2024-02-05 2024-02-22 0.975 78.525 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "01" 2024-02-05 2024-02-22 0.99 81.2700000000001 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "01" 2024-02-05 2024-02-23 0.01 15.96 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "01" 2024-02-05 2024-02-23 0.025 18.85 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "01" 2024-02-05 2024-02-23 0.05 23.95 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "01" 2024-02-05 2024-02-23 0.1 26 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "01" 2024-02-05 2024-02-23 0.15 29 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "01" 2024-02-05 2024-02-23 0.2 30 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "01" 2024-02-05 2024-02-23 0.25 31.75 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "01" 2024-02-05 2024-02-23 0.3 33 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "01" 2024-02-05 2024-02-23 0.35 36 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "01" 2024-02-05 2024-02-23 0.4 37.6 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "01" 2024-02-05 2024-02-23 0.45 40 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "01" 2024-02-05 2024-02-23 0.5 41 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "01" 2024-02-05 2024-02-23 0.55 42 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "01" 2024-02-05 2024-02-23 0.6 43 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "01" 2024-02-05 2024-02-23 0.65 45.35 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "01" 2024-02-05 2024-02-23 0.7 49 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "01" 2024-02-05 2024-02-23 0.75 52 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "01" 2024-02-05 2024-02-23 0.8 54.2 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "01" 2024-02-05 2024-02-23 0.85 59.15 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "01" 2024-02-05 2024-02-23 0.9 70 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "01" 2024-02-05 2024-02-23 0.95 76.05 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "01" 2024-02-05 2024-02-23 0.975 77 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "01" 2024-02-05 2024-02-23 0.99 82.08 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "01" 2024-02-05 2024-02-24 0.01 15.97 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "01" 2024-02-05 2024-02-24 0.025 20.95 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "01" 2024-02-05 2024-02-24 0.05 22 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "01" 2024-02-05 2024-02-24 0.1 23 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "01" 2024-02-05 2024-02-24 0.15 25.85 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "01" 2024-02-05 2024-02-24 0.2 28 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "01" 2024-02-05 2024-02-24 0.25 31 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "01" 2024-02-05 2024-02-24 0.3 33 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "01" 2024-02-05 2024-02-24 0.35 35 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "01" 2024-02-05 2024-02-24 0.4 35 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "01" 2024-02-05 2024-02-24 0.45 38 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "01" 2024-02-05 2024-02-24 0.5 40 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "01" 2024-02-05 2024-02-24 0.55 42.45 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "01" 2024-02-05 2024-02-24 0.6 44 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "01" 2024-02-05 2024-02-24 0.65 45 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "01" 2024-02-05 2024-02-24 0.7 47 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "01" 2024-02-05 2024-02-24 0.75 49.25 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "01" 2024-02-05 2024-02-24 0.8 51.2 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "01" 2024-02-05 2024-02-24 0.85 53.15 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "01" 2024-02-05 2024-02-24 0.9 63 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "01" 2024-02-05 2024-02-24 0.95 69.25 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "01" 2024-02-05 2024-02-24 0.975 84.1 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "01" 2024-02-05 2024-02-24 0.99 87.1100000000001 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "01" 2024-02-05 2024-02-25 0.01 17.99 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "01" 2024-02-05 2024-02-25 0.025 22.475 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "01" 2024-02-05 2024-02-25 0.05 23 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "01" 2024-02-05 2024-02-25 0.1 25.9 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "01" 2024-02-05 2024-02-25 0.15 28.7 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "01" 2024-02-05 2024-02-25 0.2 29.8 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "01" 2024-02-05 2024-02-25 0.25 32 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "01" 2024-02-05 2024-02-25 0.3 35.7 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "01" 2024-02-05 2024-02-25 0.35 37 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "01" 2024-02-05 2024-02-25 0.4 38 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "01" 2024-02-05 2024-02-25 0.45 39.55 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "01" 2024-02-05 2024-02-25 0.5 40 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "01" 2024-02-05 2024-02-25 0.55 43 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "01" 2024-02-05 2024-02-25 0.6 44 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "01" 2024-02-05 2024-02-25 0.65 48.7 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "01" 2024-02-05 2024-02-25 0.7 50.3 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "01" 2024-02-05 2024-02-25 0.75 52.25 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "01" 2024-02-05 2024-02-25 0.8 57 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "01" 2024-02-05 2024-02-25 0.85 59.15 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "01" 2024-02-05 2024-02-25 0.9 62.1 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "01" 2024-02-05 2024-02-25 0.95 73.2 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "01" 2024-02-05 2024-02-25 0.975 83.575 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "01" 2024-02-05 2024-02-25 0.99 87.02 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "01" 2024-02-05 2024-02-26 0.01 21.95 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "01" 2024-02-05 2024-02-26 0.025 22 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "01" 2024-02-05 2024-02-26 0.05 24 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "01" 2024-02-05 2024-02-26 0.1 27.9 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "01" 2024-02-05 2024-02-26 0.15 28 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "01" 2024-02-05 2024-02-26 0.2 33.4 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "01" 2024-02-05 2024-02-26 0.25 35.75 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "01" 2024-02-05 2024-02-26 0.3 37 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "01" 2024-02-05 2024-02-26 0.35 39.65 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "01" 2024-02-05 2024-02-26 0.4 40 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "01" 2024-02-05 2024-02-26 0.45 41 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "01" 2024-02-05 2024-02-26 0.5 43 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "01" 2024-02-05 2024-02-26 0.55 45.45 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "01" 2024-02-05 2024-02-26 0.6 47.4 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "01" 2024-02-05 2024-02-26 0.65 49 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "01" 2024-02-05 2024-02-26 0.7 52 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "01" 2024-02-05 2024-02-26 0.75 55.25 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "01" 2024-02-05 2024-02-26 0.8 57.2 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "01" 2024-02-05 2024-02-26 0.85 64.3 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "01" 2024-02-05 2024-02-26 0.9 71 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "01" 2024-02-05 2024-02-26 0.95 78.1 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "01" 2024-02-05 2024-02-26 0.975 87.575 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "01" 2024-02-05 2024-02-26 0.99 92.3600000000002 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "01" 2024-02-05 2024-02-27 0.01 17.98 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "01" 2024-02-05 2024-02-27 0.025 20 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "01" 2024-02-05 2024-02-27 0.05 21 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "01" 2024-02-05 2024-02-27 0.1 26 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "01" 2024-02-05 2024-02-27 0.15 29.85 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "01" 2024-02-05 2024-02-27 0.2 32 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "01" 2024-02-05 2024-02-27 0.25 34.75 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "01" 2024-02-05 2024-02-27 0.3 36 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "01" 2024-02-05 2024-02-27 0.35 37 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "01" 2024-02-05 2024-02-27 0.4 39.6 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "01" 2024-02-05 2024-02-27 0.45 41 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "01" 2024-02-05 2024-02-27 0.5 42.5 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "01" 2024-02-05 2024-02-27 0.55 44.45 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "01" 2024-02-05 2024-02-27 0.6 46.4 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "01" 2024-02-05 2024-02-27 0.65 49.35 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "01" 2024-02-05 2024-02-27 0.7 52.3 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "01" 2024-02-05 2024-02-27 0.75 57 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "01" 2024-02-05 2024-02-27 0.8 57.2 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "01" 2024-02-05 2024-02-27 0.85 60.3 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "01" 2024-02-05 2024-02-27 0.9 66.1 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "01" 2024-02-05 2024-02-27 0.95 73 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "01" 2024-02-05 2024-02-27 0.975 94.525 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "01" 2024-02-05 2024-02-27 0.99 105.13 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "01" 2024-02-05 2024-02-28 0.01 16.99 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "01" 2024-02-05 2024-02-28 0.025 20.475 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "01" 2024-02-05 2024-02-28 0.05 22 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "01" 2024-02-05 2024-02-28 0.1 23.9 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "01" 2024-02-05 2024-02-28 0.15 25.85 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "01" 2024-02-05 2024-02-28 0.2 29 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "01" 2024-02-05 2024-02-28 0.25 30 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "01" 2024-02-05 2024-02-28 0.3 33.4 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "01" 2024-02-05 2024-02-28 0.35 35.65 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "01" 2024-02-05 2024-02-28 0.4 38 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "01" 2024-02-05 2024-02-28 0.45 39 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "01" 2024-02-05 2024-02-28 0.5 40.5 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "01" 2024-02-05 2024-02-28 0.55 45 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "01" 2024-02-05 2024-02-28 0.6 45.4 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "01" 2024-02-05 2024-02-28 0.65 46.35 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "01" 2024-02-05 2024-02-28 0.7 48.3 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "01" 2024-02-05 2024-02-28 0.75 51 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "01" 2024-02-05 2024-02-28 0.8 53.2 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "01" 2024-02-05 2024-02-28 0.85 57.45 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "01" 2024-02-05 2024-02-28 0.9 65.2 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "01" 2024-02-05 2024-02-28 0.95 72.2 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "01" 2024-02-05 2024-02-28 0.975 85.05 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "01" 2024-02-05 2024-02-28 0.99 86.1300000000001 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "01" 2024-02-05 2024-02-29 0.01 17.99 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "01" 2024-02-05 2024-02-29 0.025 20 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "01" 2024-02-05 2024-02-29 0.05 23.9 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "01" 2024-02-05 2024-02-29 0.1 27.8 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "01" 2024-02-05 2024-02-29 0.15 30 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "01" 2024-02-05 2024-02-29 0.2 31 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "01" 2024-02-05 2024-02-29 0.25 34 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "01" 2024-02-05 2024-02-29 0.3 36.7 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "01" 2024-02-05 2024-02-29 0.35 37.65 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "01" 2024-02-05 2024-02-29 0.4 39.6 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "01" 2024-02-05 2024-02-29 0.45 41 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "01" 2024-02-05 2024-02-29 0.5 43 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "01" 2024-02-05 2024-02-29 0.55 45 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "01" 2024-02-05 2024-02-29 0.6 47.4 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "01" 2024-02-05 2024-02-29 0.65 50 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "01" 2024-02-05 2024-02-29 0.7 52 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "01" 2024-02-05 2024-02-29 0.75 54.25 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "01" 2024-02-05 2024-02-29 0.8 58.4 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "01" 2024-02-05 2024-02-29 0.85 63.15 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "01" 2024-02-05 2024-02-29 0.9 70.4 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "01" 2024-02-05 2024-02-29 0.95 88.1 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "01" 2024-02-05 2024-02-29 0.975 101.625 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "01" 2024-02-05 2024-02-29 0.99 116.28 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "01" 2024-02-05 2024-03-01 0.01 15.94 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "01" 2024-02-05 2024-03-01 0.025 17 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "01" 2024-02-05 2024-03-01 0.05 18 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "01" 2024-02-05 2024-03-01 0.1 22.9 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "01" 2024-02-05 2024-03-01 0.15 26.85 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "01" 2024-02-05 2024-03-01 0.2 28 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "01" 2024-02-05 2024-03-01 0.25 31.5 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "01" 2024-02-05 2024-03-01 0.3 33 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "01" 2024-02-05 2024-03-01 0.35 36 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "01" 2024-02-05 2024-03-01 0.4 37 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "01" 2024-02-05 2024-03-01 0.45 37 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "01" 2024-02-05 2024-03-01 0.5 40 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "01" 2024-02-05 2024-03-01 0.55 42 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "01" 2024-02-05 2024-03-01 0.6 43.4 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "01" 2024-02-05 2024-03-01 0.65 47 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "01" 2024-02-05 2024-03-01 0.7 49.3 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "01" 2024-02-05 2024-03-01 0.75 53 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "01" 2024-02-05 2024-03-01 0.8 56 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "01" 2024-02-05 2024-03-01 0.85 59.45 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "01" 2024-02-05 2024-03-01 0.9 66.1 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "01" 2024-02-05 2024-03-01 0.95 77.05 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "01" 2024-02-05 2024-03-01 0.975 93.1499999999999 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "01" 2024-02-05 2024-03-01 0.99 96.4200000000002 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "01" 2024-02-05 2024-03-02 0.01 16 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "01" 2024-02-05 2024-03-02 0.025 17 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "01" 2024-02-05 2024-03-02 0.05 18 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "01" 2024-02-05 2024-03-02 0.1 21.9 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "01" 2024-02-05 2024-03-02 0.15 25 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "01" 2024-02-05 2024-03-02 0.2 27 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "01" 2024-02-05 2024-03-02 0.25 29 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "01" 2024-02-05 2024-03-02 0.3 29.7 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "01" 2024-02-05 2024-03-02 0.35 30.65 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "01" 2024-02-05 2024-03-02 0.4 33 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "01" 2024-02-05 2024-03-02 0.45 35 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "01" 2024-02-05 2024-03-02 0.5 36.5 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "01" 2024-02-05 2024-03-02 0.55 39.45 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "01" 2024-02-05 2024-03-02 0.6 42 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "01" 2024-02-05 2024-03-02 0.65 44 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "01" 2024-02-05 2024-03-02 0.7 45.3 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "01" 2024-02-05 2024-03-02 0.75 47.25 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "01" 2024-02-05 2024-03-02 0.8 52.2 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "01" 2024-02-05 2024-03-02 0.85 55 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "01" 2024-02-05 2024-03-02 0.9 69 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "01" 2024-02-05 2024-03-02 0.95 72.15 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "01" 2024-02-05 2024-03-02 0.975 83.7249999999999 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "01" 2024-02-05 2024-03-02 0.99 92.08 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "01" 2024-02-05 2024-03-03 0.01 10.98 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "01" 2024-02-05 2024-03-03 0.025 17 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "01" 2024-02-05 2024-03-03 0.05 17 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "01" 2024-02-05 2024-03-03 0.1 21 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "01" 2024-02-05 2024-03-03 0.15 23.85 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "01" 2024-02-05 2024-03-03 0.2 28 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "01" 2024-02-05 2024-03-03 0.25 29 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "01" 2024-02-05 2024-03-03 0.3 31 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "01" 2024-02-05 2024-03-03 0.35 33.65 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "01" 2024-02-05 2024-03-03 0.4 35 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "01" 2024-02-05 2024-03-03 0.45 37.1 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "01" 2024-02-05 2024-03-03 0.5 40 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "01" 2024-02-05 2024-03-03 0.55 41.45 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "01" 2024-02-05 2024-03-03 0.6 43 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "01" 2024-02-05 2024-03-03 0.65 44 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "01" 2024-02-05 2024-03-03 0.7 48.3 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "01" 2024-02-05 2024-03-03 0.75 50 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "01" 2024-02-05 2024-03-03 0.8 52.2 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "01" 2024-02-05 2024-03-03 0.85 56.45 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "01" 2024-02-05 2024-03-03 0.9 64.6000000000001 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "01" 2024-02-05 2024-03-03 0.95 85.1 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "01" 2024-02-05 2024-03-03 0.975 91.05 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "01" 2024-02-05 2024-03-03 0.99 98.08 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "01" 2024-02-05 2024-03-04 0.01 14.98 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "01" 2024-02-05 2024-03-04 0.025 17.475 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "01" 2024-02-05 2024-03-04 0.05 18.95 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "01" 2024-02-05 2024-03-04 0.1 21 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "01" 2024-02-05 2024-03-04 0.15 24 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "01" 2024-02-05 2024-03-04 0.2 27.8 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "01" 2024-02-05 2024-03-04 0.25 30 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "01" 2024-02-05 2024-03-04 0.3 33 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "01" 2024-02-05 2024-03-04 0.35 35 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "01" 2024-02-05 2024-03-04 0.4 36 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "01" 2024-02-05 2024-03-04 0.45 39 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "01" 2024-02-05 2024-03-04 0.5 40 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "01" 2024-02-05 2024-03-04 0.55 43.45 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "01" 2024-02-05 2024-03-04 0.6 45.4 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "01" 2024-02-05 2024-03-04 0.65 47.7 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "01" 2024-02-05 2024-03-04 0.7 52.6 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "01" 2024-02-05 2024-03-04 0.75 56.25 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "01" 2024-02-05 2024-03-04 0.8 62 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "01" 2024-02-05 2024-03-04 0.85 66.3 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "01" 2024-02-05 2024-03-04 0.9 75.8000000000001 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "01" 2024-02-05 2024-03-04 0.95 86.45 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "01" 2024-02-05 2024-03-04 0.975 98.1499999999999 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "01" 2024-02-05 2024-03-04 0.99 101.11 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "05" 2024-02-05 2024-02-06 0.01 12.99 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "05" 2024-02-05 2024-02-06 0.025 14.95 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "05" 2024-02-05 2024-02-06 0.05 17 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "05" 2024-02-05 2024-02-06 0.1 18 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "05" 2024-02-05 2024-02-06 0.15 20 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "05" 2024-02-05 2024-02-06 0.2 20 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "05" 2024-02-05 2024-02-06 0.25 22.75 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "05" 2024-02-05 2024-02-06 0.3 24 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "05" 2024-02-05 2024-02-06 0.35 24 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "05" 2024-02-05 2024-02-06 0.4 26 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "05" 2024-02-05 2024-02-06 0.45 27 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "05" 2024-02-05 2024-02-06 0.5 28 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "05" 2024-02-05 2024-02-06 0.55 30 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "05" 2024-02-05 2024-02-06 0.6 31 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "05" 2024-02-05 2024-02-06 0.65 32 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "05" 2024-02-05 2024-02-06 0.7 33.3 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "05" 2024-02-05 2024-02-06 0.75 35 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "05" 2024-02-05 2024-02-06 0.8 37 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "05" 2024-02-05 2024-02-06 0.85 38.15 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "05" 2024-02-05 2024-02-06 0.9 39.1 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "05" 2024-02-05 2024-02-06 0.95 43.05 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "05" 2024-02-05 2024-02-06 0.975 44 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "05" 2024-02-05 2024-02-06 0.99 45.1400000000001 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "05" 2024-02-05 2024-02-07 0.01 10.99 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "05" 2024-02-05 2024-02-07 0.025 14 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "05" 2024-02-05 2024-02-07 0.05 14.95 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "05" 2024-02-05 2024-02-07 0.1 17 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "05" 2024-02-05 2024-02-07 0.15 19 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "05" 2024-02-05 2024-02-07 0.2 21 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "05" 2024-02-05 2024-02-07 0.25 22 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "05" 2024-02-05 2024-02-07 0.3 23 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "05" 2024-02-05 2024-02-07 0.35 23 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "05" 2024-02-05 2024-02-07 0.4 25.6 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "05" 2024-02-05 2024-02-07 0.45 27 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "05" 2024-02-05 2024-02-07 0.5 27.5 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "05" 2024-02-05 2024-02-07 0.55 28.45 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "05" 2024-02-05 2024-02-07 0.6 29.4 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "05" 2024-02-05 2024-02-07 0.65 31 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "05" 2024-02-05 2024-02-07 0.7 32 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "05" 2024-02-05 2024-02-07 0.75 33.25 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "05" 2024-02-05 2024-02-07 0.8 35 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "05" 2024-02-05 2024-02-07 0.85 37 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "05" 2024-02-05 2024-02-07 0.9 40 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "05" 2024-02-05 2024-02-07 0.95 45.1 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "05" 2024-02-05 2024-02-07 0.975 50 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "05" 2024-02-05 2024-02-07 0.99 52.09 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "05" 2024-02-05 2024-02-08 0.01 13.99 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "05" 2024-02-05 2024-02-08 0.025 14 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "05" 2024-02-05 2024-02-08 0.05 14 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "05" 2024-02-05 2024-02-08 0.1 15.9 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "05" 2024-02-05 2024-02-08 0.15 17.85 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "05" 2024-02-05 2024-02-08 0.2 19 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "05" 2024-02-05 2024-02-08 0.25 20.75 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "05" 2024-02-05 2024-02-08 0.3 21 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "05" 2024-02-05 2024-02-08 0.35 22.65 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "05" 2024-02-05 2024-02-08 0.4 25 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "05" 2024-02-05 2024-02-08 0.45 25.55 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "05" 2024-02-05 2024-02-08 0.5 27 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "05" 2024-02-05 2024-02-08 0.55 28.45 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "05" 2024-02-05 2024-02-08 0.6 29 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "05" 2024-02-05 2024-02-08 0.65 30 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "05" 2024-02-05 2024-02-08 0.7 31.3 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "05" 2024-02-05 2024-02-08 0.75 32 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "05" 2024-02-05 2024-02-08 0.8 35 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "05" 2024-02-05 2024-02-08 0.85 36.15 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "05" 2024-02-05 2024-02-08 0.9 38.1 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "05" 2024-02-05 2024-02-08 0.95 42.1 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "05" 2024-02-05 2024-02-08 0.975 49.05 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "05" 2024-02-05 2024-02-08 0.99 56.04 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "05" 2024-02-05 2024-02-09 0.01 12.95 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "05" 2024-02-05 2024-02-09 0.025 16 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "05" 2024-02-05 2024-02-09 0.05 16.95 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "05" 2024-02-05 2024-02-09 0.1 18 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "05" 2024-02-05 2024-02-09 0.15 18.85 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "05" 2024-02-05 2024-02-09 0.2 19.8 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "05" 2024-02-05 2024-02-09 0.25 20.75 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "05" 2024-02-05 2024-02-09 0.3 22 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "05" 2024-02-05 2024-02-09 0.35 22 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "05" 2024-02-05 2024-02-09 0.4 23 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "05" 2024-02-05 2024-02-09 0.45 23.55 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "05" 2024-02-05 2024-02-09 0.5 24 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "05" 2024-02-05 2024-02-09 0.55 25 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "05" 2024-02-05 2024-02-09 0.6 26 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "05" 2024-02-05 2024-02-09 0.65 26.35 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "05" 2024-02-05 2024-02-09 0.7 28.3 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "05" 2024-02-05 2024-02-09 0.75 29 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "05" 2024-02-05 2024-02-09 0.8 31 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "05" 2024-02-05 2024-02-09 0.85 32.3 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "05" 2024-02-05 2024-02-09 0.9 36 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "05" 2024-02-05 2024-02-09 0.95 39 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "05" 2024-02-05 2024-02-09 0.975 40 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "05" 2024-02-05 2024-02-09 0.99 43.01 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "05" 2024-02-05 2024-02-10 0.01 11 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "05" 2024-02-05 2024-02-10 0.025 13 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "05" 2024-02-05 2024-02-10 0.05 13.95 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "05" 2024-02-05 2024-02-10 0.1 15 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "05" 2024-02-05 2024-02-10 0.15 16.85 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "05" 2024-02-05 2024-02-10 0.2 18 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "05" 2024-02-05 2024-02-10 0.25 19 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "05" 2024-02-05 2024-02-10 0.3 20 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "05" 2024-02-05 2024-02-10 0.35 21 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "05" 2024-02-05 2024-02-10 0.4 22 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "05" 2024-02-05 2024-02-10 0.45 22 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "05" 2024-02-05 2024-02-10 0.5 23 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "05" 2024-02-05 2024-02-10 0.55 24 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "05" 2024-02-05 2024-02-10 0.6 25 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "05" 2024-02-05 2024-02-10 0.65 26 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "05" 2024-02-05 2024-02-10 0.7 27 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "05" 2024-02-05 2024-02-10 0.75 28.25 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "05" 2024-02-05 2024-02-10 0.8 30 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "05" 2024-02-05 2024-02-10 0.85 31 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "05" 2024-02-05 2024-02-10 0.9 32.1 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "05" 2024-02-05 2024-02-10 0.95 38 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "05" 2024-02-05 2024-02-10 0.975 40.625 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "05" 2024-02-05 2024-02-10 0.99 44.1200000000001 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "05" 2024-02-05 2024-02-11 0.01 10.96 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "05" 2024-02-05 2024-02-11 0.025 11 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "05" 2024-02-05 2024-02-11 0.05 12.95 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "05" 2024-02-05 2024-02-11 0.1 15 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "05" 2024-02-05 2024-02-11 0.15 16 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "05" 2024-02-05 2024-02-11 0.2 17 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "05" 2024-02-05 2024-02-11 0.25 19 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "05" 2024-02-05 2024-02-11 0.3 19.7 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "05" 2024-02-05 2024-02-11 0.35 21 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "05" 2024-02-05 2024-02-11 0.4 22 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "05" 2024-02-05 2024-02-11 0.45 23 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "05" 2024-02-05 2024-02-11 0.5 24 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "05" 2024-02-05 2024-02-11 0.55 24 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "05" 2024-02-05 2024-02-11 0.6 25 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "05" 2024-02-05 2024-02-11 0.65 26 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "05" 2024-02-05 2024-02-11 0.7 27 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "05" 2024-02-05 2024-02-11 0.75 28.25 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "05" 2024-02-05 2024-02-11 0.8 32 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "05" 2024-02-05 2024-02-11 0.85 33 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "05" 2024-02-05 2024-02-11 0.9 35 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "05" 2024-02-05 2024-02-11 0.95 39.05 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "05" 2024-02-05 2024-02-11 0.975 41 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "05" 2024-02-05 2024-02-11 0.99 44.01 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "05" 2024-02-05 2024-02-12 0.01 9.98 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "05" 2024-02-05 2024-02-12 0.025 11.475 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "05" 2024-02-05 2024-02-12 0.05 13 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "05" 2024-02-05 2024-02-12 0.1 15 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "05" 2024-02-05 2024-02-12 0.15 16 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "05" 2024-02-05 2024-02-12 0.2 18 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "05" 2024-02-05 2024-02-12 0.25 18.75 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "05" 2024-02-05 2024-02-12 0.3 19 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "05" 2024-02-05 2024-02-12 0.35 20 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "05" 2024-02-05 2024-02-12 0.4 21 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "05" 2024-02-05 2024-02-12 0.45 21 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "05" 2024-02-05 2024-02-12 0.5 22 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "05" 2024-02-05 2024-02-12 0.55 24 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "05" 2024-02-05 2024-02-12 0.6 25 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "05" 2024-02-05 2024-02-12 0.65 27 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "05" 2024-02-05 2024-02-12 0.7 29 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "05" 2024-02-05 2024-02-12 0.75 30 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "05" 2024-02-05 2024-02-12 0.8 31 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "05" 2024-02-05 2024-02-12 0.85 34 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "05" 2024-02-05 2024-02-12 0.9 38 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "05" 2024-02-05 2024-02-12 0.95 41.05 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "05" 2024-02-05 2024-02-12 0.975 43.05 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "05" 2024-02-05 2024-02-12 0.99 47.07 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "05" 2024-02-05 2024-02-13 0.01 10.99 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "05" 2024-02-05 2024-02-13 0.025 13 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "05" 2024-02-05 2024-02-13 0.05 14 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "05" 2024-02-05 2024-02-13 0.1 15.9 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "05" 2024-02-05 2024-02-13 0.15 17 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "05" 2024-02-05 2024-02-13 0.2 18 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "05" 2024-02-05 2024-02-13 0.25 20 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "05" 2024-02-05 2024-02-13 0.3 21 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "05" 2024-02-05 2024-02-13 0.35 21 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "05" 2024-02-05 2024-02-13 0.4 22 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "05" 2024-02-05 2024-02-13 0.45 23 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "05" 2024-02-05 2024-02-13 0.5 23.5 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "05" 2024-02-05 2024-02-13 0.55 25.45 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "05" 2024-02-05 2024-02-13 0.6 27 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "05" 2024-02-05 2024-02-13 0.65 29 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "05" 2024-02-05 2024-02-13 0.7 30.3 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "05" 2024-02-05 2024-02-13 0.75 32.25 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "05" 2024-02-05 2024-02-13 0.8 36 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "05" 2024-02-05 2024-02-13 0.85 38 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "05" 2024-02-05 2024-02-13 0.9 41.1 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "05" 2024-02-05 2024-02-13 0.95 45 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "05" 2024-02-05 2024-02-13 0.975 46 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "05" 2024-02-05 2024-02-13 0.99 49.06 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "05" 2024-02-05 2024-02-14 0.01 10.99 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "05" 2024-02-05 2024-02-14 0.025 13.475 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "05" 2024-02-05 2024-02-14 0.05 15.95 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "05" 2024-02-05 2024-02-14 0.1 17.9 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "05" 2024-02-05 2024-02-14 0.15 19 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "05" 2024-02-05 2024-02-14 0.2 20.8 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "05" 2024-02-05 2024-02-14 0.25 21 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "05" 2024-02-05 2024-02-14 0.3 21.7 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "05" 2024-02-05 2024-02-14 0.35 22 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "05" 2024-02-05 2024-02-14 0.4 24.6 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "05" 2024-02-05 2024-02-14 0.45 25.55 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "05" 2024-02-05 2024-02-14 0.5 27 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "05" 2024-02-05 2024-02-14 0.55 28 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "05" 2024-02-05 2024-02-14 0.6 29 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "05" 2024-02-05 2024-02-14 0.65 31 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "05" 2024-02-05 2024-02-14 0.7 33 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "05" 2024-02-05 2024-02-14 0.75 34 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "05" 2024-02-05 2024-02-14 0.8 34.4 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "05" 2024-02-05 2024-02-14 0.85 37.15 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "05" 2024-02-05 2024-02-14 0.9 39.1 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "05" 2024-02-05 2024-02-14 0.95 43.1 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "05" 2024-02-05 2024-02-14 0.975 47.525 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "05" 2024-02-05 2024-02-14 0.99 56.05 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "05" 2024-02-05 2024-02-15 0.01 12 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "05" 2024-02-05 2024-02-15 0.025 13 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "05" 2024-02-05 2024-02-15 0.05 13.95 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "05" 2024-02-05 2024-02-15 0.1 15 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "05" 2024-02-05 2024-02-15 0.15 17 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "05" 2024-02-05 2024-02-15 0.2 18 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "05" 2024-02-05 2024-02-15 0.25 20 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "05" 2024-02-05 2024-02-15 0.3 22 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "05" 2024-02-05 2024-02-15 0.35 23 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "05" 2024-02-05 2024-02-15 0.4 23.6 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "05" 2024-02-05 2024-02-15 0.45 24 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "05" 2024-02-05 2024-02-15 0.5 25 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "05" 2024-02-05 2024-02-15 0.55 26 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "05" 2024-02-05 2024-02-15 0.6 27 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "05" 2024-02-05 2024-02-15 0.65 28.35 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "05" 2024-02-05 2024-02-15 0.7 29.3 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "05" 2024-02-05 2024-02-15 0.75 31 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "05" 2024-02-05 2024-02-15 0.8 31.2 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "05" 2024-02-05 2024-02-15 0.85 34.15 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "05" 2024-02-05 2024-02-15 0.9 36 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "05" 2024-02-05 2024-02-15 0.95 43 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "05" 2024-02-05 2024-02-15 0.975 48.525 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "05" 2024-02-05 2024-02-15 0.99 49.05 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "05" 2024-02-05 2024-02-16 0.01 10.94 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "05" 2024-02-05 2024-02-16 0.025 11.475 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "05" 2024-02-05 2024-02-16 0.05 13.95 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "05" 2024-02-05 2024-02-16 0.1 15 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "05" 2024-02-05 2024-02-16 0.15 16 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "05" 2024-02-05 2024-02-16 0.2 17 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "05" 2024-02-05 2024-02-16 0.25 18 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "05" 2024-02-05 2024-02-16 0.3 19 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "05" 2024-02-05 2024-02-16 0.35 20 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "05" 2024-02-05 2024-02-16 0.4 20.6 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "05" 2024-02-05 2024-02-16 0.45 22 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "05" 2024-02-05 2024-02-16 0.5 23 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "05" 2024-02-05 2024-02-16 0.55 23 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "05" 2024-02-05 2024-02-16 0.6 25 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "05" 2024-02-05 2024-02-16 0.65 25.35 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "05" 2024-02-05 2024-02-16 0.7 27 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "05" 2024-02-05 2024-02-16 0.75 29.25 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "05" 2024-02-05 2024-02-16 0.8 30.2 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "05" 2024-02-05 2024-02-16 0.85 32 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "05" 2024-02-05 2024-02-16 0.9 34 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "05" 2024-02-05 2024-02-16 0.95 37.05 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "05" 2024-02-05 2024-02-16 0.975 40.525 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "05" 2024-02-05 2024-02-16 0.99 41 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "05" 2024-02-05 2024-02-17 0.01 6.99 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "05" 2024-02-05 2024-02-17 0.025 8.475 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "05" 2024-02-05 2024-02-17 0.05 9.95 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "05" 2024-02-05 2024-02-17 0.1 12 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "05" 2024-02-05 2024-02-17 0.15 14 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "05" 2024-02-05 2024-02-17 0.2 15 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "05" 2024-02-05 2024-02-17 0.25 15.75 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "05" 2024-02-05 2024-02-17 0.3 16 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "05" 2024-02-05 2024-02-17 0.35 17 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "05" 2024-02-05 2024-02-17 0.4 18 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "05" 2024-02-05 2024-02-17 0.45 18 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "05" 2024-02-05 2024-02-17 0.5 19 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "05" 2024-02-05 2024-02-17 0.55 21 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "05" 2024-02-05 2024-02-17 0.6 22 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "05" 2024-02-05 2024-02-17 0.65 22 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "05" 2024-02-05 2024-02-17 0.7 23.3 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "05" 2024-02-05 2024-02-17 0.75 25 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "05" 2024-02-05 2024-02-17 0.8 27 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "05" 2024-02-05 2024-02-17 0.85 30 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "05" 2024-02-05 2024-02-17 0.9 32 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "05" 2024-02-05 2024-02-17 0.95 35.25 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "05" 2024-02-05 2024-02-17 0.975 44.05 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "05" 2024-02-05 2024-02-17 0.99 48.08 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "05" 2024-02-05 2024-02-18 0.01 9.98 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "05" 2024-02-05 2024-02-18 0.025 10.475 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "05" 2024-02-05 2024-02-18 0.05 11.95 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "05" 2024-02-05 2024-02-18 0.1 13 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "05" 2024-02-05 2024-02-18 0.15 14 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "05" 2024-02-05 2024-02-18 0.2 16 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "05" 2024-02-05 2024-02-18 0.25 17 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "05" 2024-02-05 2024-02-18 0.3 17.7 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "05" 2024-02-05 2024-02-18 0.35 18.65 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "05" 2024-02-05 2024-02-18 0.4 19.6 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "05" 2024-02-05 2024-02-18 0.45 20 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "05" 2024-02-05 2024-02-18 0.5 21 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "05" 2024-02-05 2024-02-18 0.55 22.45 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "05" 2024-02-05 2024-02-18 0.6 23.4 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "05" 2024-02-05 2024-02-18 0.65 24 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "05" 2024-02-05 2024-02-18 0.7 26 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "05" 2024-02-05 2024-02-18 0.75 27 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "05" 2024-02-05 2024-02-18 0.8 29 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "05" 2024-02-05 2024-02-18 0.85 31 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "05" 2024-02-05 2024-02-18 0.9 33 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "05" 2024-02-05 2024-02-18 0.95 39 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "05" 2024-02-05 2024-02-18 0.975 43.1 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "05" 2024-02-05 2024-02-18 0.99 45.02 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "05" 2024-02-05 2024-02-19 0.01 6 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "05" 2024-02-05 2024-02-19 0.025 8.475 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "05" 2024-02-05 2024-02-19 0.05 10 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "05" 2024-02-05 2024-02-19 0.1 12 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "05" 2024-02-05 2024-02-19 0.15 14 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "05" 2024-02-05 2024-02-19 0.2 15.8 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "05" 2024-02-05 2024-02-19 0.25 16 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "05" 2024-02-05 2024-02-19 0.3 17 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "05" 2024-02-05 2024-02-19 0.35 18 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "05" 2024-02-05 2024-02-19 0.4 20 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "05" 2024-02-05 2024-02-19 0.45 20 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "05" 2024-02-05 2024-02-19 0.5 21 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "05" 2024-02-05 2024-02-19 0.55 23 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "05" 2024-02-05 2024-02-19 0.6 25 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "05" 2024-02-05 2024-02-19 0.65 25 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "05" 2024-02-05 2024-02-19 0.7 26.3 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "05" 2024-02-05 2024-02-19 0.75 28 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "05" 2024-02-05 2024-02-19 0.8 30 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "05" 2024-02-05 2024-02-19 0.85 32 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "05" 2024-02-05 2024-02-19 0.9 35 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "05" 2024-02-05 2024-02-19 0.95 37.05 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "05" 2024-02-05 2024-02-19 0.975 38.525 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "05" 2024-02-05 2024-02-19 0.99 41.02 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "05" 2024-02-05 2024-02-20 0.01 8.97 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "05" 2024-02-05 2024-02-20 0.025 9 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "05" 2024-02-05 2024-02-20 0.05 9.95 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "05" 2024-02-05 2024-02-20 0.1 11.9 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "05" 2024-02-05 2024-02-20 0.15 14 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "05" 2024-02-05 2024-02-20 0.2 15.8 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "05" 2024-02-05 2024-02-20 0.25 17 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "05" 2024-02-05 2024-02-20 0.3 18 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "05" 2024-02-05 2024-02-20 0.35 20 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "05" 2024-02-05 2024-02-20 0.4 21 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "05" 2024-02-05 2024-02-20 0.45 22 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "05" 2024-02-05 2024-02-20 0.5 23 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "05" 2024-02-05 2024-02-20 0.55 24 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "05" 2024-02-05 2024-02-20 0.6 25 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "05" 2024-02-05 2024-02-20 0.65 25 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "05" 2024-02-05 2024-02-20 0.7 27 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "05" 2024-02-05 2024-02-20 0.75 28.25 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "05" 2024-02-05 2024-02-20 0.8 31 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "05" 2024-02-05 2024-02-20 0.85 33.3 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "05" 2024-02-05 2024-02-20 0.9 37.1 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "05" 2024-02-05 2024-02-20 0.95 44 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "05" 2024-02-05 2024-02-20 0.975 49.1 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "05" 2024-02-05 2024-02-20 0.99 52.06 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "05" 2024-02-05 2024-02-21 0.01 8.97 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "05" 2024-02-05 2024-02-21 0.025 9.475 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "05" 2024-02-05 2024-02-21 0.05 11.9 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "05" 2024-02-05 2024-02-21 0.1 13.9 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "05" 2024-02-05 2024-02-21 0.15 15 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "05" 2024-02-05 2024-02-21 0.2 16 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "05" 2024-02-05 2024-02-21 0.25 17 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "05" 2024-02-05 2024-02-21 0.3 18 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "05" 2024-02-05 2024-02-21 0.35 19.65 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "05" 2024-02-05 2024-02-21 0.4 21.6 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "05" 2024-02-05 2024-02-21 0.45 22.55 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "05" 2024-02-05 2024-02-21 0.5 24 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "05" 2024-02-05 2024-02-21 0.55 25.45 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "05" 2024-02-05 2024-02-21 0.6 28 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "05" 2024-02-05 2024-02-21 0.65 29 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "05" 2024-02-05 2024-02-21 0.7 31 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "05" 2024-02-05 2024-02-21 0.75 32 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "05" 2024-02-05 2024-02-21 0.8 34 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "05" 2024-02-05 2024-02-21 0.85 36 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "05" 2024-02-05 2024-02-21 0.9 38.1 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "05" 2024-02-05 2024-02-21 0.95 47 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "05" 2024-02-05 2024-02-21 0.975 48.575 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "05" 2024-02-05 2024-02-21 0.99 53.09 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "05" 2024-02-05 2024-02-22 0.01 4.99 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "05" 2024-02-05 2024-02-22 0.025 8.9 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "05" 2024-02-05 2024-02-22 0.05 12 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "05" 2024-02-05 2024-02-22 0.1 13 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "05" 2024-02-05 2024-02-22 0.15 16 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "05" 2024-02-05 2024-02-22 0.2 18 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "05" 2024-02-05 2024-02-22 0.25 19 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "05" 2024-02-05 2024-02-22 0.3 19.7 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "05" 2024-02-05 2024-02-22 0.35 20 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "05" 2024-02-05 2024-02-22 0.4 21 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "05" 2024-02-05 2024-02-22 0.45 22 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "05" 2024-02-05 2024-02-22 0.5 24 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "05" 2024-02-05 2024-02-22 0.55 25 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "05" 2024-02-05 2024-02-22 0.6 25.4 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "05" 2024-02-05 2024-02-22 0.65 27 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "05" 2024-02-05 2024-02-22 0.7 28 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "05" 2024-02-05 2024-02-22 0.75 29.25 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "05" 2024-02-05 2024-02-22 0.8 31 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "05" 2024-02-05 2024-02-22 0.85 35.3 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "05" 2024-02-05 2024-02-22 0.9 41.1 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "05" 2024-02-05 2024-02-22 0.95 49 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "05" 2024-02-05 2024-02-22 0.975 52 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "05" 2024-02-05 2024-02-22 0.99 53.04 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "05" 2024-02-05 2024-02-23 0.01 4.97 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "05" 2024-02-05 2024-02-23 0.025 6.95 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "05" 2024-02-05 2024-02-23 0.05 9.95 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "05" 2024-02-05 2024-02-23 0.1 11 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "05" 2024-02-05 2024-02-23 0.15 12 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "05" 2024-02-05 2024-02-23 0.2 13 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "05" 2024-02-05 2024-02-23 0.25 14 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "05" 2024-02-05 2024-02-23 0.3 16 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "05" 2024-02-05 2024-02-23 0.35 17.65 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "05" 2024-02-05 2024-02-23 0.4 18 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "05" 2024-02-05 2024-02-23 0.45 20 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "05" 2024-02-05 2024-02-23 0.5 21 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "05" 2024-02-05 2024-02-23 0.55 22 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "05" 2024-02-05 2024-02-23 0.6 23 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "05" 2024-02-05 2024-02-23 0.65 24.35 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "05" 2024-02-05 2024-02-23 0.7 26 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "05" 2024-02-05 2024-02-23 0.75 29 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "05" 2024-02-05 2024-02-23 0.8 30 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "05" 2024-02-05 2024-02-23 0.85 32.3 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "05" 2024-02-05 2024-02-23 0.9 35.3 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "05" 2024-02-05 2024-02-23 0.95 41 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "05" 2024-02-05 2024-02-23 0.975 47.575 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "05" 2024-02-05 2024-02-23 0.99 52.02 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "05" 2024-02-05 2024-02-24 0.01 5.99 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "05" 2024-02-05 2024-02-24 0.025 6.475 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "05" 2024-02-05 2024-02-24 0.05 7 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "05" 2024-02-05 2024-02-24 0.1 10 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "05" 2024-02-05 2024-02-24 0.15 11.85 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "05" 2024-02-05 2024-02-24 0.2 13 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "05" 2024-02-05 2024-02-24 0.25 14 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "05" 2024-02-05 2024-02-24 0.3 15.7 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "05" 2024-02-05 2024-02-24 0.35 16.65 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "05" 2024-02-05 2024-02-24 0.4 17.6 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "05" 2024-02-05 2024-02-24 0.45 18.55 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "05" 2024-02-05 2024-02-24 0.5 20.5 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "05" 2024-02-05 2024-02-24 0.55 22 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "05" 2024-02-05 2024-02-24 0.6 22 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "05" 2024-02-05 2024-02-24 0.65 23 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "05" 2024-02-05 2024-02-24 0.7 24.3 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "05" 2024-02-05 2024-02-24 0.75 25.25 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "05" 2024-02-05 2024-02-24 0.8 27 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "05" 2024-02-05 2024-02-24 0.85 28.15 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "05" 2024-02-05 2024-02-24 0.9 30 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "05" 2024-02-05 2024-02-24 0.95 32.15 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "05" 2024-02-05 2024-02-24 0.975 38.05 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "05" 2024-02-05 2024-02-24 0.99 45.08 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "05" 2024-02-05 2024-02-25 0.01 7 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "05" 2024-02-05 2024-02-25 0.025 8 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "05" 2024-02-05 2024-02-25 0.05 9 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "05" 2024-02-05 2024-02-25 0.1 10 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "05" 2024-02-05 2024-02-25 0.15 12 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "05" 2024-02-05 2024-02-25 0.2 14 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "05" 2024-02-05 2024-02-25 0.25 15 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "05" 2024-02-05 2024-02-25 0.3 16 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "05" 2024-02-05 2024-02-25 0.35 17 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "05" 2024-02-05 2024-02-25 0.4 18 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "05" 2024-02-05 2024-02-25 0.45 19 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "05" 2024-02-05 2024-02-25 0.5 19 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "05" 2024-02-05 2024-02-25 0.55 20.45 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "05" 2024-02-05 2024-02-25 0.6 24.4 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "05" 2024-02-05 2024-02-25 0.65 26 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "05" 2024-02-05 2024-02-25 0.7 28 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "05" 2024-02-05 2024-02-25 0.75 29.25 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "05" 2024-02-05 2024-02-25 0.8 31 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "05" 2024-02-05 2024-02-25 0.85 32.15 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "05" 2024-02-05 2024-02-25 0.9 34.1 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "05" 2024-02-05 2024-02-25 0.95 42.1 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "05" 2024-02-05 2024-02-25 0.975 46 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "05" 2024-02-05 2024-02-25 0.99 52.06 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "05" 2024-02-05 2024-02-26 0.01 5.99 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "05" 2024-02-05 2024-02-26 0.025 7.425 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "05" 2024-02-05 2024-02-26 0.05 9 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "05" 2024-02-05 2024-02-26 0.1 11 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "05" 2024-02-05 2024-02-26 0.15 13 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "05" 2024-02-05 2024-02-26 0.2 13.8 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "05" 2024-02-05 2024-02-26 0.25 15 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "05" 2024-02-05 2024-02-26 0.3 15.7 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "05" 2024-02-05 2024-02-26 0.35 17 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "05" 2024-02-05 2024-02-26 0.4 18 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "05" 2024-02-05 2024-02-26 0.45 19.55 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "05" 2024-02-05 2024-02-26 0.5 20 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "05" 2024-02-05 2024-02-26 0.55 21.45 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "05" 2024-02-05 2024-02-26 0.6 23 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "05" 2024-02-05 2024-02-26 0.65 25 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "05" 2024-02-05 2024-02-26 0.7 27 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "05" 2024-02-05 2024-02-26 0.75 29 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "05" 2024-02-05 2024-02-26 0.8 33 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "05" 2024-02-05 2024-02-26 0.85 34 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "05" 2024-02-05 2024-02-26 0.9 37.1 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "05" 2024-02-05 2024-02-26 0.95 40.05 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "05" 2024-02-05 2024-02-26 0.975 43.525 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "05" 2024-02-05 2024-02-26 0.99 44.09 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "05" 2024-02-05 2024-02-27 0.01 6.99 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "05" 2024-02-05 2024-02-27 0.025 7 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "05" 2024-02-05 2024-02-27 0.05 8.95 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "05" 2024-02-05 2024-02-27 0.1 10 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "05" 2024-02-05 2024-02-27 0.15 13.85 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "05" 2024-02-05 2024-02-27 0.2 15.8 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "05" 2024-02-05 2024-02-27 0.25 17 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "05" 2024-02-05 2024-02-27 0.3 18 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "05" 2024-02-05 2024-02-27 0.35 19 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "05" 2024-02-05 2024-02-27 0.4 20 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "05" 2024-02-05 2024-02-27 0.45 22 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "05" 2024-02-05 2024-02-27 0.5 23 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "05" 2024-02-05 2024-02-27 0.55 24 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "05" 2024-02-05 2024-02-27 0.6 25 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "05" 2024-02-05 2024-02-27 0.65 25 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "05" 2024-02-05 2024-02-27 0.7 27.3 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "05" 2024-02-05 2024-02-27 0.75 30.25 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "05" 2024-02-05 2024-02-27 0.8 32.2 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "05" 2024-02-05 2024-02-27 0.85 34.15 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "05" 2024-02-05 2024-02-27 0.9 38 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "05" 2024-02-05 2024-02-27 0.95 42.15 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "05" 2024-02-05 2024-02-27 0.975 45 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "05" 2024-02-05 2024-02-27 0.99 54.01 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "05" 2024-02-05 2024-02-28 0.01 4.99 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "05" 2024-02-05 2024-02-28 0.025 7 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "05" 2024-02-05 2024-02-28 0.05 8 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "05" 2024-02-05 2024-02-28 0.1 13.8 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "05" 2024-02-05 2024-02-28 0.15 15 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "05" 2024-02-05 2024-02-28 0.2 16 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "05" 2024-02-05 2024-02-28 0.25 16 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "05" 2024-02-05 2024-02-28 0.3 18 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "05" 2024-02-05 2024-02-28 0.35 19 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "05" 2024-02-05 2024-02-28 0.4 20 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "05" 2024-02-05 2024-02-28 0.45 21 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "05" 2024-02-05 2024-02-28 0.5 22 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "05" 2024-02-05 2024-02-28 0.55 22.45 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "05" 2024-02-05 2024-02-28 0.6 24.4 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "05" 2024-02-05 2024-02-28 0.65 26 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "05" 2024-02-05 2024-02-28 0.7 28.3 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "05" 2024-02-05 2024-02-28 0.75 30 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "05" 2024-02-05 2024-02-28 0.8 32 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "05" 2024-02-05 2024-02-28 0.85 34 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "05" 2024-02-05 2024-02-28 0.9 37.1 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "05" 2024-02-05 2024-02-28 0.95 41.4 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "05" 2024-02-05 2024-02-28 0.975 53.6749999999999 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "05" 2024-02-05 2024-02-28 0.99 60.01 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "05" 2024-02-05 2024-02-29 0.01 5.97 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "05" 2024-02-05 2024-02-29 0.025 8 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "05" 2024-02-05 2024-02-29 0.05 9 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "05" 2024-02-05 2024-02-29 0.1 10.9 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "05" 2024-02-05 2024-02-29 0.15 12 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "05" 2024-02-05 2024-02-29 0.2 13.8 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "05" 2024-02-05 2024-02-29 0.25 15 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "05" 2024-02-05 2024-02-29 0.3 16.7 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "05" 2024-02-05 2024-02-29 0.35 17.65 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "05" 2024-02-05 2024-02-29 0.4 19 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "05" 2024-02-05 2024-02-29 0.45 20 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "05" 2024-02-05 2024-02-29 0.5 22 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "05" 2024-02-05 2024-02-29 0.55 23 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "05" 2024-02-05 2024-02-29 0.6 24 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "05" 2024-02-05 2024-02-29 0.65 25 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "05" 2024-02-05 2024-02-29 0.7 26 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "05" 2024-02-05 2024-02-29 0.75 29.25 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "05" 2024-02-05 2024-02-29 0.8 31 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "05" 2024-02-05 2024-02-29 0.85 34 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "05" 2024-02-05 2024-02-29 0.9 39 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "05" 2024-02-05 2024-02-29 0.95 42.05 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "05" 2024-02-05 2024-02-29 0.975 49.7249999999999 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "05" 2024-02-05 2024-02-29 0.99 56.1000000000001 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "05" 2024-02-05 2024-03-01 0.01 5.96 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "05" 2024-02-05 2024-03-01 0.025 6 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "05" 2024-02-05 2024-03-01 0.05 7 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "05" 2024-02-05 2024-03-01 0.1 10.9 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "05" 2024-02-05 2024-03-01 0.15 11 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "05" 2024-02-05 2024-03-01 0.2 13 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "05" 2024-02-05 2024-03-01 0.25 14 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "05" 2024-02-05 2024-03-01 0.3 14.7 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "05" 2024-02-05 2024-03-01 0.35 16 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "05" 2024-02-05 2024-03-01 0.4 17.6 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "05" 2024-02-05 2024-03-01 0.45 19 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "05" 2024-02-05 2024-03-01 0.5 20 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "05" 2024-02-05 2024-03-01 0.55 21 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "05" 2024-02-05 2024-03-01 0.6 22 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "05" 2024-02-05 2024-03-01 0.65 24.35 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "05" 2024-02-05 2024-03-01 0.7 27.3 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "05" 2024-02-05 2024-03-01 0.75 30 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "05" 2024-02-05 2024-03-01 0.8 30 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "05" 2024-02-05 2024-03-01 0.85 32.15 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "05" 2024-02-05 2024-03-01 0.9 36 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "05" 2024-02-05 2024-03-01 0.95 38.15 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "05" 2024-02-05 2024-03-01 0.975 41 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "05" 2024-02-05 2024-03-01 0.99 46.05 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "05" 2024-02-05 2024-03-02 0.01 5 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "05" 2024-02-05 2024-03-02 0.025 6.425 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "05" 2024-02-05 2024-03-02 0.05 9 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "05" 2024-02-05 2024-03-02 0.1 9 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "05" 2024-02-05 2024-03-02 0.15 10 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "05" 2024-02-05 2024-03-02 0.2 11 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "05" 2024-02-05 2024-03-02 0.25 12 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "05" 2024-02-05 2024-03-02 0.3 13 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "05" 2024-02-05 2024-03-02 0.35 15 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "05" 2024-02-05 2024-03-02 0.4 15.6 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "05" 2024-02-05 2024-03-02 0.45 17 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "05" 2024-02-05 2024-03-02 0.5 18 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "05" 2024-02-05 2024-03-02 0.55 20 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "05" 2024-02-05 2024-03-02 0.6 22 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "05" 2024-02-05 2024-03-02 0.65 24 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "05" 2024-02-05 2024-03-02 0.7 25 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "05" 2024-02-05 2024-03-02 0.75 26 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "05" 2024-02-05 2024-03-02 0.8 29 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "05" 2024-02-05 2024-03-02 0.85 31 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "05" 2024-02-05 2024-03-02 0.9 34.1 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "05" 2024-02-05 2024-03-02 0.95 39.05 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "05" 2024-02-05 2024-03-02 0.975 40.525 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "05" 2024-02-05 2024-03-02 0.99 44.06 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "05" 2024-02-05 2024-03-03 0.01 3.99 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "05" 2024-02-05 2024-03-03 0.025 6.475 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "05" 2024-02-05 2024-03-03 0.05 7.95 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "05" 2024-02-05 2024-03-03 0.1 8.9 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "05" 2024-02-05 2024-03-03 0.15 11 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "05" 2024-02-05 2024-03-03 0.2 12.8 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "05" 2024-02-05 2024-03-03 0.25 13.75 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "05" 2024-02-05 2024-03-03 0.3 14 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "05" 2024-02-05 2024-03-03 0.35 15.65 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "05" 2024-02-05 2024-03-03 0.4 16.6 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "05" 2024-02-05 2024-03-03 0.45 18 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "05" 2024-02-05 2024-03-03 0.5 19 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "05" 2024-02-05 2024-03-03 0.55 20 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "05" 2024-02-05 2024-03-03 0.6 23 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "05" 2024-02-05 2024-03-03 0.65 25 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "05" 2024-02-05 2024-03-03 0.7 26 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "05" 2024-02-05 2024-03-03 0.75 27 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "05" 2024-02-05 2024-03-03 0.8 29 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "05" 2024-02-05 2024-03-03 0.85 30.15 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "05" 2024-02-05 2024-03-03 0.9 34.2 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "05" 2024-02-05 2024-03-03 0.95 41.2 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "05" 2024-02-05 2024-03-03 0.975 47.525 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "05" 2024-02-05 2024-03-03 0.99 53.01 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "05" 2024-02-05 2024-03-04 0.01 3.99 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "05" 2024-02-05 2024-03-04 0.025 5 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "05" 2024-02-05 2024-03-04 0.05 6 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "05" 2024-02-05 2024-03-04 0.1 9 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "05" 2024-02-05 2024-03-04 0.15 10 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "05" 2024-02-05 2024-03-04 0.2 11 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "05" 2024-02-05 2024-03-04 0.25 13.75 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "05" 2024-02-05 2024-03-04 0.3 14.7 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "05" 2024-02-05 2024-03-04 0.35 16 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "05" 2024-02-05 2024-03-04 0.4 17 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "05" 2024-02-05 2024-03-04 0.45 18 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "05" 2024-02-05 2024-03-04 0.5 18.5 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "05" 2024-02-05 2024-03-04 0.55 20.45 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "05" 2024-02-05 2024-03-04 0.6 23 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "05" 2024-02-05 2024-03-04 0.65 24 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "05" 2024-02-05 2024-03-04 0.7 25 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "05" 2024-02-05 2024-03-04 0.75 28.25 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "05" 2024-02-05 2024-03-04 0.8 31 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "05" 2024-02-05 2024-03-04 0.85 32.15 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "05" 2024-02-05 2024-03-04 0.9 36.1 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "05" 2024-02-05 2024-03-04 0.95 39 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "05" 2024-02-05 2024-03-04 0.975 41.575 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "05" 2024-02-05 2024-03-04 0.99 46.2900000000001 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "04" 2024-02-05 2024-02-06 0.01 36.98 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "04" 2024-02-05 2024-02-06 0.025 42.475 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "04" 2024-02-05 2024-02-06 0.05 46.9 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "04" 2024-02-05 2024-02-06 0.1 52.8 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "04" 2024-02-05 2024-02-06 0.15 54 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "04" 2024-02-05 2024-02-06 0.2 54 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "04" 2024-02-05 2024-02-06 0.25 56 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "04" 2024-02-05 2024-02-06 0.3 58 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "04" 2024-02-05 2024-02-06 0.35 59.65 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "04" 2024-02-05 2024-02-06 0.4 61.6 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "04" 2024-02-05 2024-02-06 0.45 63 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "04" 2024-02-05 2024-02-06 0.5 65 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "04" 2024-02-05 2024-02-06 0.55 66 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "04" 2024-02-05 2024-02-06 0.6 69.4 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "04" 2024-02-05 2024-02-06 0.65 72 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "04" 2024-02-05 2024-02-06 0.7 74.6 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "04" 2024-02-05 2024-02-06 0.75 78 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "04" 2024-02-05 2024-02-06 0.8 81 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "04" 2024-02-05 2024-02-06 0.85 82 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "04" 2024-02-05 2024-02-06 0.9 85.1 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "04" 2024-02-05 2024-02-06 0.95 92 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "04" 2024-02-05 2024-02-06 0.975 95.1 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "04" 2024-02-05 2024-02-06 0.99 99.06 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "04" 2024-02-05 2024-02-07 0.01 38.97 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "04" 2024-02-05 2024-02-07 0.025 44.475 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "04" 2024-02-05 2024-02-07 0.05 45.95 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "04" 2024-02-05 2024-02-07 0.1 51.9 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "04" 2024-02-05 2024-02-07 0.15 54 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "04" 2024-02-05 2024-02-07 0.2 57.8 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "04" 2024-02-05 2024-02-07 0.25 59.75 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "04" 2024-02-05 2024-02-07 0.3 61 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "04" 2024-02-05 2024-02-07 0.35 62.65 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "04" 2024-02-05 2024-02-07 0.4 66 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "04" 2024-02-05 2024-02-07 0.45 67 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "04" 2024-02-05 2024-02-07 0.5 69 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "04" 2024-02-05 2024-02-07 0.55 72 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "04" 2024-02-05 2024-02-07 0.6 74 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "04" 2024-02-05 2024-02-07 0.65 75 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "04" 2024-02-05 2024-02-07 0.7 77.3 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "04" 2024-02-05 2024-02-07 0.75 81 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "04" 2024-02-05 2024-02-07 0.8 83.2 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "04" 2024-02-05 2024-02-07 0.85 89 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "04" 2024-02-05 2024-02-07 0.9 90.1 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "04" 2024-02-05 2024-02-07 0.95 94.05 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "04" 2024-02-05 2024-02-07 0.975 97.05 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "04" 2024-02-05 2024-02-07 0.99 99.03 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "04" 2024-02-05 2024-02-08 0.01 30.96 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "04" 2024-02-05 2024-02-08 0.025 39.475 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "04" 2024-02-05 2024-02-08 0.05 42.85 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "04" 2024-02-05 2024-02-08 0.1 46.9 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "04" 2024-02-05 2024-02-08 0.15 49.85 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "04" 2024-02-05 2024-02-08 0.2 53.8 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "04" 2024-02-05 2024-02-08 0.25 55 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "04" 2024-02-05 2024-02-08 0.3 56.7 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "04" 2024-02-05 2024-02-08 0.35 58 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "04" 2024-02-05 2024-02-08 0.4 59.6 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "04" 2024-02-05 2024-02-08 0.45 63 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "04" 2024-02-05 2024-02-08 0.5 65 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "04" 2024-02-05 2024-02-08 0.55 67 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "04" 2024-02-05 2024-02-08 0.6 68 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "04" 2024-02-05 2024-02-08 0.65 69.35 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "04" 2024-02-05 2024-02-08 0.7 71 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "04" 2024-02-05 2024-02-08 0.75 72 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "04" 2024-02-05 2024-02-08 0.8 72.4 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "04" 2024-02-05 2024-02-08 0.85 74.3 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "04" 2024-02-05 2024-02-08 0.9 78 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "04" 2024-02-05 2024-02-08 0.95 81.1 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "04" 2024-02-05 2024-02-08 0.975 89.1499999999999 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "04" 2024-02-05 2024-02-08 0.99 100.08 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "04" 2024-02-05 2024-02-09 0.01 40.91 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "04" 2024-02-05 2024-02-09 0.025 42.475 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "04" 2024-02-05 2024-02-09 0.05 44.95 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "04" 2024-02-05 2024-02-09 0.1 48.9 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "04" 2024-02-05 2024-02-09 0.15 50.85 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "04" 2024-02-05 2024-02-09 0.2 53 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "04" 2024-02-05 2024-02-09 0.25 57 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "04" 2024-02-05 2024-02-09 0.3 59 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "04" 2024-02-05 2024-02-09 0.35 61 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "04" 2024-02-05 2024-02-09 0.4 62 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "04" 2024-02-05 2024-02-09 0.45 64 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "04" 2024-02-05 2024-02-09 0.5 65 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "04" 2024-02-05 2024-02-09 0.55 67 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "04" 2024-02-05 2024-02-09 0.6 69 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "04" 2024-02-05 2024-02-09 0.65 71 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "04" 2024-02-05 2024-02-09 0.7 72 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "04" 2024-02-05 2024-02-09 0.75 74 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "04" 2024-02-05 2024-02-09 0.8 76.4 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "04" 2024-02-05 2024-02-09 0.85 81 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "04" 2024-02-05 2024-02-09 0.9 85.1 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "04" 2024-02-05 2024-02-09 0.95 94 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "04" 2024-02-05 2024-02-09 0.975 96 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "04" 2024-02-05 2024-02-09 0.99 97.09 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "04" 2024-02-05 2024-02-10 0.01 36.97 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "04" 2024-02-05 2024-02-10 0.025 37.475 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "04" 2024-02-05 2024-02-10 0.05 42 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "04" 2024-02-05 2024-02-10 0.1 46.9 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "04" 2024-02-05 2024-02-10 0.15 48 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "04" 2024-02-05 2024-02-10 0.2 49.8 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "04" 2024-02-05 2024-02-10 0.25 52 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "04" 2024-02-05 2024-02-10 0.3 54 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "04" 2024-02-05 2024-02-10 0.35 56 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "04" 2024-02-05 2024-02-10 0.4 57 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "04" 2024-02-05 2024-02-10 0.45 57.55 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "04" 2024-02-05 2024-02-10 0.5 59 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "04" 2024-02-05 2024-02-10 0.55 60 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "04" 2024-02-05 2024-02-10 0.6 61.4 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "04" 2024-02-05 2024-02-10 0.65 63 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "04" 2024-02-05 2024-02-10 0.7 64.3 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "04" 2024-02-05 2024-02-10 0.75 69.25 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "04" 2024-02-05 2024-02-10 0.8 72.2 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "04" 2024-02-05 2024-02-10 0.85 76 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "04" 2024-02-05 2024-02-10 0.9 78.3 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "04" 2024-02-05 2024-02-10 0.95 84.15 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "04" 2024-02-05 2024-02-10 0.975 89.575 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "04" 2024-02-05 2024-02-10 0.99 97.2500000000001 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "04" 2024-02-05 2024-02-11 0.01 34.95 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "04" 2024-02-05 2024-02-11 0.025 39.95 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "04" 2024-02-05 2024-02-11 0.05 42 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "04" 2024-02-05 2024-02-11 0.1 46.9 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "04" 2024-02-05 2024-02-11 0.15 49.85 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "04" 2024-02-05 2024-02-11 0.2 53 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "04" 2024-02-05 2024-02-11 0.25 56.75 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "04" 2024-02-05 2024-02-11 0.3 57 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "04" 2024-02-05 2024-02-11 0.35 59 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "04" 2024-02-05 2024-02-11 0.4 60 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "04" 2024-02-05 2024-02-11 0.45 62.55 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "04" 2024-02-05 2024-02-11 0.5 65.5 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "04" 2024-02-05 2024-02-11 0.55 68 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "04" 2024-02-05 2024-02-11 0.6 70 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "04" 2024-02-05 2024-02-11 0.65 73 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "04" 2024-02-05 2024-02-11 0.7 75 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "04" 2024-02-05 2024-02-11 0.75 76.25 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "04" 2024-02-05 2024-02-11 0.8 79 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "04" 2024-02-05 2024-02-11 0.85 82.15 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "04" 2024-02-05 2024-02-11 0.9 85.1 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "04" 2024-02-05 2024-02-11 0.95 90.05 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "04" 2024-02-05 2024-02-11 0.975 93.525 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "04" 2024-02-05 2024-02-11 0.99 95.04 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "04" 2024-02-05 2024-02-12 0.01 35.94 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "04" 2024-02-05 2024-02-12 0.025 37.95 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "04" 2024-02-05 2024-02-12 0.05 40.95 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "04" 2024-02-05 2024-02-12 0.1 49 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "04" 2024-02-05 2024-02-12 0.15 51.85 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "04" 2024-02-05 2024-02-12 0.2 55 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "04" 2024-02-05 2024-02-12 0.25 57.75 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "04" 2024-02-05 2024-02-12 0.3 59 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "04" 2024-02-05 2024-02-12 0.35 60 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "04" 2024-02-05 2024-02-12 0.4 63.6 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "04" 2024-02-05 2024-02-12 0.45 66.1 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "04" 2024-02-05 2024-02-12 0.5 68 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "04" 2024-02-05 2024-02-12 0.55 69 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "04" 2024-02-05 2024-02-12 0.6 71.4 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "04" 2024-02-05 2024-02-12 0.65 73 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "04" 2024-02-05 2024-02-12 0.7 74.3 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "04" 2024-02-05 2024-02-12 0.75 76 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "04" 2024-02-05 2024-02-12 0.8 79.2 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "04" 2024-02-05 2024-02-12 0.85 82.15 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "04" 2024-02-05 2024-02-12 0.9 85.1 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "04" 2024-02-05 2024-02-12 0.95 92 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "04" 2024-02-05 2024-02-12 0.975 95.05 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "04" 2024-02-05 2024-02-12 0.99 101.26 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "04" 2024-02-05 2024-02-13 0.01 27 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "04" 2024-02-05 2024-02-13 0.025 32.425 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "04" 2024-02-05 2024-02-13 0.05 40.85 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "04" 2024-02-05 2024-02-13 0.1 44 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "04" 2024-02-05 2024-02-13 0.15 48.85 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "04" 2024-02-05 2024-02-13 0.2 54.2 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "04" 2024-02-05 2024-02-13 0.25 58.75 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "04" 2024-02-05 2024-02-13 0.3 61 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "04" 2024-02-05 2024-02-13 0.35 63 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "04" 2024-02-05 2024-02-13 0.4 64.6 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "04" 2024-02-05 2024-02-13 0.45 67 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "04" 2024-02-05 2024-02-13 0.5 68 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "04" 2024-02-05 2024-02-13 0.55 71.45 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "04" 2024-02-05 2024-02-13 0.6 73.4 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "04" 2024-02-05 2024-02-13 0.65 74.35 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "04" 2024-02-05 2024-02-13 0.7 76 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "04" 2024-02-05 2024-02-13 0.75 79 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "04" 2024-02-05 2024-02-13 0.8 80 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "04" 2024-02-05 2024-02-13 0.85 82 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "04" 2024-02-05 2024-02-13 0.9 84.3 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "04" 2024-02-05 2024-02-13 0.95 92.05 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "04" 2024-02-05 2024-02-13 0.975 95.1 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "04" 2024-02-05 2024-02-13 0.99 101.13 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "04" 2024-02-05 2024-02-14 0.01 36.91 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "04" 2024-02-05 2024-02-14 0.025 38 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "04" 2024-02-05 2024-02-14 0.05 39.95 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "04" 2024-02-05 2024-02-14 0.1 43 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "04" 2024-02-05 2024-02-14 0.15 47 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "04" 2024-02-05 2024-02-14 0.2 52.6 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "04" 2024-02-05 2024-02-14 0.25 59 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "04" 2024-02-05 2024-02-14 0.3 60 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "04" 2024-02-05 2024-02-14 0.35 61.65 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "04" 2024-02-05 2024-02-14 0.4 64.6 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "04" 2024-02-05 2024-02-14 0.45 66 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "04" 2024-02-05 2024-02-14 0.5 69 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "04" 2024-02-05 2024-02-14 0.55 70.45 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "04" 2024-02-05 2024-02-14 0.6 73 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "04" 2024-02-05 2024-02-14 0.65 74 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "04" 2024-02-05 2024-02-14 0.7 75.6 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "04" 2024-02-05 2024-02-14 0.75 79.25 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "04" 2024-02-05 2024-02-14 0.8 82 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "04" 2024-02-05 2024-02-14 0.85 84 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "04" 2024-02-05 2024-02-14 0.9 87.2 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "04" 2024-02-05 2024-02-14 0.95 92.2 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "04" 2024-02-05 2024-02-14 0.975 97.525 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "04" 2024-02-05 2024-02-14 0.99 101 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "04" 2024-02-05 2024-02-15 0.01 31 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "04" 2024-02-05 2024-02-15 0.025 33.9 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "04" 2024-02-05 2024-02-15 0.05 36 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "04" 2024-02-05 2024-02-15 0.1 41.9 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "04" 2024-02-05 2024-02-15 0.15 46 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "04" 2024-02-05 2024-02-15 0.2 48 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "04" 2024-02-05 2024-02-15 0.25 51 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "04" 2024-02-05 2024-02-15 0.3 55 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "04" 2024-02-05 2024-02-15 0.35 56 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "04" 2024-02-05 2024-02-15 0.4 56.6 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "04" 2024-02-05 2024-02-15 0.45 60.55 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "04" 2024-02-05 2024-02-15 0.5 62.5 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "04" 2024-02-05 2024-02-15 0.55 64 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "04" 2024-02-05 2024-02-15 0.6 66 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "04" 2024-02-05 2024-02-15 0.65 69 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "04" 2024-02-05 2024-02-15 0.7 71.3 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "04" 2024-02-05 2024-02-15 0.75 75 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "04" 2024-02-05 2024-02-15 0.8 78 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "04" 2024-02-05 2024-02-15 0.85 80.15 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "04" 2024-02-05 2024-02-15 0.9 83 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "04" 2024-02-05 2024-02-15 0.95 87.1 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "04" 2024-02-05 2024-02-15 0.975 91.525 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "04" 2024-02-05 2024-02-15 0.99 93.1900000000001 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "04" 2024-02-05 2024-02-16 0.01 25 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "04" 2024-02-05 2024-02-16 0.025 31.475 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "04" 2024-02-05 2024-02-16 0.05 34 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "04" 2024-02-05 2024-02-16 0.1 43.8 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "04" 2024-02-05 2024-02-16 0.15 46.85 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "04" 2024-02-05 2024-02-16 0.2 48.8 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "04" 2024-02-05 2024-02-16 0.25 51.75 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "04" 2024-02-05 2024-02-16 0.3 56 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "04" 2024-02-05 2024-02-16 0.35 57 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "04" 2024-02-05 2024-02-16 0.4 59 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "04" 2024-02-05 2024-02-16 0.45 61 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "04" 2024-02-05 2024-02-16 0.5 61 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "04" 2024-02-05 2024-02-16 0.55 64 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "04" 2024-02-05 2024-02-16 0.6 67 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "04" 2024-02-05 2024-02-16 0.65 70 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "04" 2024-02-05 2024-02-16 0.7 71.3 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "04" 2024-02-05 2024-02-16 0.75 73.25 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "04" 2024-02-05 2024-02-16 0.8 76.4 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "04" 2024-02-05 2024-02-16 0.85 82 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "04" 2024-02-05 2024-02-16 0.9 89.1 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "04" 2024-02-05 2024-02-16 0.95 94.05 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "04" 2024-02-05 2024-02-16 0.975 96 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "04" 2024-02-05 2024-02-16 0.99 98.1200000000001 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "04" 2024-02-05 2024-02-17 0.01 28.94 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "04" 2024-02-05 2024-02-17 0.025 31.475 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "04" 2024-02-05 2024-02-17 0.05 33 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "04" 2024-02-05 2024-02-17 0.1 36 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "04" 2024-02-05 2024-02-17 0.15 42 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "04" 2024-02-05 2024-02-17 0.2 44.8 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "04" 2024-02-05 2024-02-17 0.25 48 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "04" 2024-02-05 2024-02-17 0.3 51 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "04" 2024-02-05 2024-02-17 0.35 52 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "04" 2024-02-05 2024-02-17 0.4 55.2 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "04" 2024-02-05 2024-02-17 0.45 57 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "04" 2024-02-05 2024-02-17 0.5 59 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "04" 2024-02-05 2024-02-17 0.55 60 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "04" 2024-02-05 2024-02-17 0.6 63 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "04" 2024-02-05 2024-02-17 0.65 65 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "04" 2024-02-05 2024-02-17 0.7 67 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "04" 2024-02-05 2024-02-17 0.75 70 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "04" 2024-02-05 2024-02-17 0.8 71.2 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "04" 2024-02-05 2024-02-17 0.85 76.15 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "04" 2024-02-05 2024-02-17 0.9 78.1 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "04" 2024-02-05 2024-02-17 0.95 85.05 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "04" 2024-02-05 2024-02-17 0.975 88.525 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "04" 2024-02-05 2024-02-17 0.99 101.06 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "04" 2024-02-05 2024-02-18 0.01 25.98 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "04" 2024-02-05 2024-02-18 0.025 31.95 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "04" 2024-02-05 2024-02-18 0.05 34 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "04" 2024-02-05 2024-02-18 0.1 37 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "04" 2024-02-05 2024-02-18 0.15 41.85 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "04" 2024-02-05 2024-02-18 0.2 49.2 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "04" 2024-02-05 2024-02-18 0.25 51 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "04" 2024-02-05 2024-02-18 0.3 53 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "04" 2024-02-05 2024-02-18 0.35 54.65 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "04" 2024-02-05 2024-02-18 0.4 57 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "04" 2024-02-05 2024-02-18 0.45 61.55 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "04" 2024-02-05 2024-02-18 0.5 65 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "04" 2024-02-05 2024-02-18 0.55 67.45 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "04" 2024-02-05 2024-02-18 0.6 68.4 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "04" 2024-02-05 2024-02-18 0.65 70 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "04" 2024-02-05 2024-02-18 0.7 71.3 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "04" 2024-02-05 2024-02-18 0.75 76.25 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "04" 2024-02-05 2024-02-18 0.8 79 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "04" 2024-02-05 2024-02-18 0.85 81 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "04" 2024-02-05 2024-02-18 0.9 85.2 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "04" 2024-02-05 2024-02-18 0.95 92.15 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "04" 2024-02-05 2024-02-18 0.975 99.575 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "04" 2024-02-05 2024-02-18 0.99 116.22 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "04" 2024-02-05 2024-02-19 0.01 26.94 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "04" 2024-02-05 2024-02-19 0.025 31.475 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "04" 2024-02-05 2024-02-19 0.05 33.95 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "04" 2024-02-05 2024-02-19 0.1 41.6 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "04" 2024-02-05 2024-02-19 0.15 47.55 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "04" 2024-02-05 2024-02-19 0.2 50.8 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "04" 2024-02-05 2024-02-19 0.25 53.75 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "04" 2024-02-05 2024-02-19 0.3 55 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "04" 2024-02-05 2024-02-19 0.35 58.65 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "04" 2024-02-05 2024-02-19 0.4 60.6 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "04" 2024-02-05 2024-02-19 0.45 62 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "04" 2024-02-05 2024-02-19 0.5 65 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "04" 2024-02-05 2024-02-19 0.55 66.45 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "04" 2024-02-05 2024-02-19 0.6 68 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "04" 2024-02-05 2024-02-19 0.65 70 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "04" 2024-02-05 2024-02-19 0.7 73 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "04" 2024-02-05 2024-02-19 0.75 75.25 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "04" 2024-02-05 2024-02-19 0.8 79 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "04" 2024-02-05 2024-02-19 0.85 84.15 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "04" 2024-02-05 2024-02-19 0.9 89 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "04" 2024-02-05 2024-02-19 0.95 97 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "04" 2024-02-05 2024-02-19 0.975 104.525 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "04" 2024-02-05 2024-02-19 0.99 108.23 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "04" 2024-02-05 2024-02-20 0.01 25.99 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "04" 2024-02-05 2024-02-20 0.025 30.9 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "04" 2024-02-05 2024-02-20 0.05 34 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "04" 2024-02-05 2024-02-20 0.1 38.8 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "04" 2024-02-05 2024-02-20 0.15 45.85 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "04" 2024-02-05 2024-02-20 0.2 49 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "04" 2024-02-05 2024-02-20 0.25 52 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "04" 2024-02-05 2024-02-20 0.3 55 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "04" 2024-02-05 2024-02-20 0.35 59 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "04" 2024-02-05 2024-02-20 0.4 60 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "04" 2024-02-05 2024-02-20 0.45 63 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "04" 2024-02-05 2024-02-20 0.5 64.5 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "04" 2024-02-05 2024-02-20 0.55 68 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "04" 2024-02-05 2024-02-20 0.6 70 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "04" 2024-02-05 2024-02-20 0.65 73 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "04" 2024-02-05 2024-02-20 0.7 73.3 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "04" 2024-02-05 2024-02-20 0.75 75.25 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "04" 2024-02-05 2024-02-20 0.8 79.2 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "04" 2024-02-05 2024-02-20 0.85 83.15 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "04" 2024-02-05 2024-02-20 0.9 86 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "04" 2024-02-05 2024-02-20 0.95 91.15 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "04" 2024-02-05 2024-02-20 0.975 97.525 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "04" 2024-02-05 2024-02-20 0.99 102.05 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "04" 2024-02-05 2024-02-21 0.01 26.95 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "04" 2024-02-05 2024-02-21 0.025 27.475 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "04" 2024-02-05 2024-02-21 0.05 29.95 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "04" 2024-02-05 2024-02-21 0.1 40.9 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "04" 2024-02-05 2024-02-21 0.15 43.85 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "04" 2024-02-05 2024-02-21 0.2 48.8 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "04" 2024-02-05 2024-02-21 0.25 54 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "04" 2024-02-05 2024-02-21 0.3 56.7 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "04" 2024-02-05 2024-02-21 0.35 58 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "04" 2024-02-05 2024-02-21 0.4 60.6 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "04" 2024-02-05 2024-02-21 0.45 61.55 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "04" 2024-02-05 2024-02-21 0.5 64 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "04" 2024-02-05 2024-02-21 0.55 65.9 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "04" 2024-02-05 2024-02-21 0.6 69 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "04" 2024-02-05 2024-02-21 0.65 71 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "04" 2024-02-05 2024-02-21 0.7 73 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "04" 2024-02-05 2024-02-21 0.75 77.25 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "04" 2024-02-05 2024-02-21 0.8 81.4 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "04" 2024-02-05 2024-02-21 0.85 85.15 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "04" 2024-02-05 2024-02-21 0.9 93 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "04" 2024-02-05 2024-02-21 0.95 105.25 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "04" 2024-02-05 2024-02-21 0.975 113 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "04" 2024-02-05 2024-02-21 0.99 119.08 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "04" 2024-02-05 2024-02-22 0.01 25.9 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "04" 2024-02-05 2024-02-22 0.025 26 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "04" 2024-02-05 2024-02-22 0.05 29.85 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "04" 2024-02-05 2024-02-22 0.1 34.9 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "04" 2024-02-05 2024-02-22 0.15 41 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "04" 2024-02-05 2024-02-22 0.2 44.6 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "04" 2024-02-05 2024-02-22 0.25 49 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "04" 2024-02-05 2024-02-22 0.3 51.7 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "04" 2024-02-05 2024-02-22 0.35 55 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "04" 2024-02-05 2024-02-22 0.4 58.6 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "04" 2024-02-05 2024-02-22 0.45 60 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "04" 2024-02-05 2024-02-22 0.5 61 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "04" 2024-02-05 2024-02-22 0.55 62.45 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "04" 2024-02-05 2024-02-22 0.6 63 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "04" 2024-02-05 2024-02-22 0.65 65.35 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "04" 2024-02-05 2024-02-22 0.7 67 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "04" 2024-02-05 2024-02-22 0.75 68.75 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "04" 2024-02-05 2024-02-22 0.8 75 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "04" 2024-02-05 2024-02-22 0.85 80 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "04" 2024-02-05 2024-02-22 0.9 84 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "04" 2024-02-05 2024-02-22 0.95 90.25 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "04" 2024-02-05 2024-02-22 0.975 103.1 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "04" 2024-02-05 2024-02-22 0.99 117.08 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "04" 2024-02-05 2024-02-23 0.01 20.99 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "04" 2024-02-05 2024-02-23 0.025 25.475 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "04" 2024-02-05 2024-02-23 0.05 31.9 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "04" 2024-02-05 2024-02-23 0.1 37 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "04" 2024-02-05 2024-02-23 0.15 43.85 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "04" 2024-02-05 2024-02-23 0.2 47.8 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "04" 2024-02-05 2024-02-23 0.25 50 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "04" 2024-02-05 2024-02-23 0.3 51.7 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "04" 2024-02-05 2024-02-23 0.35 53 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "04" 2024-02-05 2024-02-23 0.4 54 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "04" 2024-02-05 2024-02-23 0.45 56 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "04" 2024-02-05 2024-02-23 0.5 57.5 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "04" 2024-02-05 2024-02-23 0.55 59.45 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "04" 2024-02-05 2024-02-23 0.6 61.4 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "04" 2024-02-05 2024-02-23 0.65 64.35 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "04" 2024-02-05 2024-02-23 0.7 65.6 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "04" 2024-02-05 2024-02-23 0.75 70.5 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "04" 2024-02-05 2024-02-23 0.8 72.4 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "04" 2024-02-05 2024-02-23 0.85 76 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "04" 2024-02-05 2024-02-23 0.9 79.4 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "04" 2024-02-05 2024-02-23 0.95 94.1 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "04" 2024-02-05 2024-02-23 0.975 99.6749999999999 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "04" 2024-02-05 2024-02-23 0.99 104.35 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "04" 2024-02-05 2024-02-24 0.01 24.96 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "04" 2024-02-05 2024-02-24 0.025 28 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "04" 2024-02-05 2024-02-24 0.05 32.9 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "04" 2024-02-05 2024-02-24 0.1 38 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "04" 2024-02-05 2024-02-24 0.15 41 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "04" 2024-02-05 2024-02-24 0.2 44 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "04" 2024-02-05 2024-02-24 0.25 46.75 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "04" 2024-02-05 2024-02-24 0.3 49.4 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "04" 2024-02-05 2024-02-24 0.35 52.65 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "04" 2024-02-05 2024-02-24 0.4 55.6 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "04" 2024-02-05 2024-02-24 0.45 58.55 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "04" 2024-02-05 2024-02-24 0.5 63.5 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "04" 2024-02-05 2024-02-24 0.55 65 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "04" 2024-02-05 2024-02-24 0.6 66 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "04" 2024-02-05 2024-02-24 0.65 67.35 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "04" 2024-02-05 2024-02-24 0.7 71 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "04" 2024-02-05 2024-02-24 0.75 74 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "04" 2024-02-05 2024-02-24 0.8 76.4 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "04" 2024-02-05 2024-02-24 0.85 83.3 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "04" 2024-02-05 2024-02-24 0.9 91.2 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "04" 2024-02-05 2024-02-24 0.95 94.2 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "04" 2024-02-05 2024-02-24 0.975 104.05 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "04" 2024-02-05 2024-02-24 0.99 121.01 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "04" 2024-02-05 2024-02-25 0.01 20.99 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "04" 2024-02-05 2024-02-25 0.025 24.95 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "04" 2024-02-05 2024-02-25 0.05 27 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "04" 2024-02-05 2024-02-25 0.1 38.8 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "04" 2024-02-05 2024-02-25 0.15 43.85 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "04" 2024-02-05 2024-02-25 0.2 46.8 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "04" 2024-02-05 2024-02-25 0.25 51.25 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "04" 2024-02-05 2024-02-25 0.3 53.7 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "04" 2024-02-05 2024-02-25 0.35 55.65 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "04" 2024-02-05 2024-02-25 0.4 58.6 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "04" 2024-02-05 2024-02-25 0.45 60.55 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "04" 2024-02-05 2024-02-25 0.5 62 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "04" 2024-02-05 2024-02-25 0.55 64 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "04" 2024-02-05 2024-02-25 0.6 65 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "04" 2024-02-05 2024-02-25 0.65 69 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "04" 2024-02-05 2024-02-25 0.7 70 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "04" 2024-02-05 2024-02-25 0.75 71 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "04" 2024-02-05 2024-02-25 0.8 73.2 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "04" 2024-02-05 2024-02-25 0.85 79 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "04" 2024-02-05 2024-02-25 0.9 82.4 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "04" 2024-02-05 2024-02-25 0.95 97.1 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "04" 2024-02-05 2024-02-25 0.975 99.525 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "04" 2024-02-05 2024-02-25 0.99 103.05 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "04" 2024-02-05 2024-02-26 0.01 17.96 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "04" 2024-02-05 2024-02-26 0.025 26.95 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "04" 2024-02-05 2024-02-26 0.05 28.95 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "04" 2024-02-05 2024-02-26 0.1 36.9 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "04" 2024-02-05 2024-02-26 0.15 39 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "04" 2024-02-05 2024-02-26 0.2 47.4 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "04" 2024-02-05 2024-02-26 0.25 51.25 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "04" 2024-02-05 2024-02-26 0.3 55 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "04" 2024-02-05 2024-02-26 0.35 57 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "04" 2024-02-05 2024-02-26 0.4 58 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "04" 2024-02-05 2024-02-26 0.45 61.1 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "04" 2024-02-05 2024-02-26 0.5 64.5 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "04" 2024-02-05 2024-02-26 0.55 69 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "04" 2024-02-05 2024-02-26 0.6 71 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "04" 2024-02-05 2024-02-26 0.65 72.35 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "04" 2024-02-05 2024-02-26 0.7 77 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "04" 2024-02-05 2024-02-26 0.75 78.25 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "04" 2024-02-05 2024-02-26 0.8 81.2 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "04" 2024-02-05 2024-02-26 0.85 85.15 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "04" 2024-02-05 2024-02-26 0.9 90 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "04" 2024-02-05 2024-02-26 0.95 97.05 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "04" 2024-02-05 2024-02-26 0.975 100.525 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "04" 2024-02-05 2024-02-26 0.99 109.09 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "04" 2024-02-05 2024-02-27 0.01 23.88 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "04" 2024-02-05 2024-02-27 0.025 25 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "04" 2024-02-05 2024-02-27 0.05 27 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "04" 2024-02-05 2024-02-27 0.1 39 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "04" 2024-02-05 2024-02-27 0.15 46 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "04" 2024-02-05 2024-02-27 0.2 49.8 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "04" 2024-02-05 2024-02-27 0.25 53.75 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "04" 2024-02-05 2024-02-27 0.3 55 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "04" 2024-02-05 2024-02-27 0.35 59.3 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "04" 2024-02-05 2024-02-27 0.4 61 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "04" 2024-02-05 2024-02-27 0.45 63.55 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "04" 2024-02-05 2024-02-27 0.5 66 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "04" 2024-02-05 2024-02-27 0.55 67 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "04" 2024-02-05 2024-02-27 0.6 69 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "04" 2024-02-05 2024-02-27 0.65 70.35 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "04" 2024-02-05 2024-02-27 0.7 74.3 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "04" 2024-02-05 2024-02-27 0.75 77.25 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "04" 2024-02-05 2024-02-27 0.8 80.2 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "04" 2024-02-05 2024-02-27 0.85 83.15 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "04" 2024-02-05 2024-02-27 0.9 88.7000000000001 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "04" 2024-02-05 2024-02-27 0.95 107.05 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "04" 2024-02-05 2024-02-27 0.975 109 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "04" 2024-02-05 2024-02-27 0.99 111.01 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "04" 2024-02-05 2024-02-28 0.01 24.93 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "04" 2024-02-05 2024-02-28 0.025 29 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "04" 2024-02-05 2024-02-28 0.05 34.9 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "04" 2024-02-05 2024-02-28 0.1 41.7 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "04" 2024-02-05 2024-02-28 0.15 44.85 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "04" 2024-02-05 2024-02-28 0.2 47 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "04" 2024-02-05 2024-02-28 0.25 52.75 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "04" 2024-02-05 2024-02-28 0.3 54.7 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "04" 2024-02-05 2024-02-28 0.35 59.65 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "04" 2024-02-05 2024-02-28 0.4 63.6 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "04" 2024-02-05 2024-02-28 0.45 65.55 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "04" 2024-02-05 2024-02-28 0.5 67 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "04" 2024-02-05 2024-02-28 0.55 70.45 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "04" 2024-02-05 2024-02-28 0.6 72.4 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "04" 2024-02-05 2024-02-28 0.65 75.35 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "04" 2024-02-05 2024-02-28 0.7 77 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "04" 2024-02-05 2024-02-28 0.75 78 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "04" 2024-02-05 2024-02-28 0.8 81 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "04" 2024-02-05 2024-02-28 0.85 84 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "04" 2024-02-05 2024-02-28 0.9 92.1 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "04" 2024-02-05 2024-02-28 0.95 101.15 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "04" 2024-02-05 2024-02-28 0.975 108.625 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "04" 2024-02-05 2024-02-28 0.99 125.09 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "04" 2024-02-05 2024-02-29 0.01 19.96 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "04" 2024-02-05 2024-02-29 0.025 23.8 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "04" 2024-02-05 2024-02-29 0.05 31.85 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "04" 2024-02-05 2024-02-29 0.1 36.7 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "04" 2024-02-05 2024-02-29 0.15 39 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "04" 2024-02-05 2024-02-29 0.2 44 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "04" 2024-02-05 2024-02-29 0.25 49 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "04" 2024-02-05 2024-02-29 0.3 52.7 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "04" 2024-02-05 2024-02-29 0.35 55.65 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "04" 2024-02-05 2024-02-29 0.4 57.6 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "04" 2024-02-05 2024-02-29 0.45 59 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "04" 2024-02-05 2024-02-29 0.5 60 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "04" 2024-02-05 2024-02-29 0.55 62 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "04" 2024-02-05 2024-02-29 0.6 65 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "04" 2024-02-05 2024-02-29 0.65 67 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "04" 2024-02-05 2024-02-29 0.7 68 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "04" 2024-02-05 2024-02-29 0.75 70 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "04" 2024-02-05 2024-02-29 0.8 73.2 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "04" 2024-02-05 2024-02-29 0.85 81.15 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "04" 2024-02-05 2024-02-29 0.9 88 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "04" 2024-02-05 2024-02-29 0.95 94.05 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "04" 2024-02-05 2024-02-29 0.975 102.525 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "04" 2024-02-05 2024-02-29 0.99 106.35 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "04" 2024-02-05 2024-03-01 0.01 22.92 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "04" 2024-02-05 2024-03-01 0.025 26.475 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "04" 2024-02-05 2024-03-01 0.05 28.95 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "04" 2024-02-05 2024-03-01 0.1 33.9 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "04" 2024-02-05 2024-03-01 0.15 40.85 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "04" 2024-02-05 2024-03-01 0.2 47.8 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "04" 2024-02-05 2024-03-01 0.25 49 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "04" 2024-02-05 2024-03-01 0.3 51 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "04" 2024-02-05 2024-03-01 0.35 53.65 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "04" 2024-02-05 2024-03-01 0.4 56.6 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "04" 2024-02-05 2024-03-01 0.45 58 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "04" 2024-02-05 2024-03-01 0.5 60.5 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "04" 2024-02-05 2024-03-01 0.55 65 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "04" 2024-02-05 2024-03-01 0.6 66 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "04" 2024-02-05 2024-03-01 0.65 69 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "04" 2024-02-05 2024-03-01 0.7 72 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "04" 2024-02-05 2024-03-01 0.75 75.25 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "04" 2024-02-05 2024-03-01 0.8 79 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "04" 2024-02-05 2024-03-01 0.85 83 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "04" 2024-02-05 2024-03-01 0.9 89.1 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "04" 2024-02-05 2024-03-01 0.95 100.05 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "04" 2024-02-05 2024-03-01 0.975 109.2 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "04" 2024-02-05 2024-03-01 0.99 115.02 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "04" 2024-02-05 2024-03-02 0.01 20.98 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "04" 2024-02-05 2024-03-02 0.025 22.95 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "04" 2024-02-05 2024-03-02 0.05 28 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "04" 2024-02-05 2024-03-02 0.1 33.9 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "04" 2024-02-05 2024-03-02 0.15 38.85 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "04" 2024-02-05 2024-03-02 0.2 47.8 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "04" 2024-02-05 2024-03-02 0.25 49 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "04" 2024-02-05 2024-03-02 0.3 50.7 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "04" 2024-02-05 2024-03-02 0.35 53.65 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "04" 2024-02-05 2024-03-02 0.4 56 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "04" 2024-02-05 2024-03-02 0.45 57.55 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "04" 2024-02-05 2024-03-02 0.5 59 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "04" 2024-02-05 2024-03-02 0.55 59 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "04" 2024-02-05 2024-03-02 0.6 61 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "04" 2024-02-05 2024-03-02 0.65 64 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "04" 2024-02-05 2024-03-02 0.7 65.3 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "04" 2024-02-05 2024-03-02 0.75 68 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "04" 2024-02-05 2024-03-02 0.8 70.2 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "04" 2024-02-05 2024-03-02 0.85 75 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "04" 2024-02-05 2024-03-02 0.9 86.3 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "04" 2024-02-05 2024-03-02 0.95 97.15 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "04" 2024-02-05 2024-03-02 0.975 105.1 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "04" 2024-02-05 2024-03-02 0.99 138.08 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "04" 2024-02-05 2024-03-03 0.01 18.99 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "04" 2024-02-05 2024-03-03 0.025 21.95 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "04" 2024-02-05 2024-03-03 0.05 26.9 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "04" 2024-02-05 2024-03-03 0.1 33.8 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "04" 2024-02-05 2024-03-03 0.15 37.85 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "04" 2024-02-05 2024-03-03 0.2 40.8 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "04" 2024-02-05 2024-03-03 0.25 45.5 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "04" 2024-02-05 2024-03-03 0.3 48.7 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "04" 2024-02-05 2024-03-03 0.35 54.3 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "04" 2024-02-05 2024-03-03 0.4 56.6 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "04" 2024-02-05 2024-03-03 0.45 57 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "04" 2024-02-05 2024-03-03 0.5 60.5 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "04" 2024-02-05 2024-03-03 0.55 62 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "04" 2024-02-05 2024-03-03 0.6 65.8 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "04" 2024-02-05 2024-03-03 0.65 68 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "04" 2024-02-05 2024-03-03 0.7 70.3 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "04" 2024-02-05 2024-03-03 0.75 74.25 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "04" 2024-02-05 2024-03-03 0.8 77.4 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "04" 2024-02-05 2024-03-03 0.85 82 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "04" 2024-02-05 2024-03-03 0.9 94 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "04" 2024-02-05 2024-03-03 0.95 108.05 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "04" 2024-02-05 2024-03-03 0.975 111 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "04" 2024-02-05 2024-03-03 0.99 112.01 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "04" 2024-02-05 2024-03-04 0.01 13.96 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "04" 2024-02-05 2024-03-04 0.025 22.95 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "04" 2024-02-05 2024-03-04 0.05 25.95 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "04" 2024-02-05 2024-03-04 0.1 36.9 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "04" 2024-02-05 2024-03-04 0.15 42.85 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "04" 2024-02-05 2024-03-04 0.2 47 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "04" 2024-02-05 2024-03-04 0.25 49 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "04" 2024-02-05 2024-03-04 0.3 53 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "04" 2024-02-05 2024-03-04 0.35 55.65 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "04" 2024-02-05 2024-03-04 0.4 57.6 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "04" 2024-02-05 2024-03-04 0.45 60 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "04" 2024-02-05 2024-03-04 0.5 63 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "04" 2024-02-05 2024-03-04 0.55 66.45 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "04" 2024-02-05 2024-03-04 0.6 68 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "04" 2024-02-05 2024-03-04 0.65 71 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "04" 2024-02-05 2024-03-04 0.7 74 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "04" 2024-02-05 2024-03-04 0.75 78.75 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "04" 2024-02-05 2024-03-04 0.8 87.2 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "04" 2024-02-05 2024-03-04 0.85 92 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "04" 2024-02-05 2024-03-04 0.9 97.1 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "04" 2024-02-05 2024-03-04 0.95 103.2 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "04" 2024-02-05 2024-03-04 0.975 111.575 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "04" 2024-02-05 2024-03-04 0.99 113.1 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "06" 2024-02-05 2024-02-06 0.01 205.97 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "06" 2024-02-05 2024-02-06 0.025 212.425 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "06" 2024-02-05 2024-02-06 0.05 216.95 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "06" 2024-02-05 2024-02-06 0.1 222 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "06" 2024-02-05 2024-02-06 0.15 229.4 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "06" 2024-02-05 2024-02-06 0.2 234.8 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "06" 2024-02-05 2024-02-06 0.25 239 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "06" 2024-02-05 2024-02-06 0.3 247 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "06" 2024-02-05 2024-02-06 0.35 248.65 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "06" 2024-02-05 2024-02-06 0.4 251.6 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "06" 2024-02-05 2024-02-06 0.45 260 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "06" 2024-02-05 2024-02-06 0.5 262.5 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "06" 2024-02-05 2024-02-06 0.55 268.35 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "06" 2024-02-05 2024-02-06 0.6 271.4 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "06" 2024-02-05 2024-02-06 0.65 276.35 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "06" 2024-02-05 2024-02-06 0.7 278.3 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "06" 2024-02-05 2024-02-06 0.75 283.25 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "06" 2024-02-05 2024-02-06 0.8 290.2 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "06" 2024-02-05 2024-02-06 0.85 305 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "06" 2024-02-05 2024-02-06 0.9 312.1 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "06" 2024-02-05 2024-02-06 0.95 328.4 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "06" 2024-02-05 2024-02-06 0.975 343.525 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "06" 2024-02-05 2024-02-06 0.99 348.01 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "06" 2024-02-05 2024-02-07 0.01 179.88 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "06" 2024-02-05 2024-02-07 0.025 186.95 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "06" 2024-02-05 2024-02-07 0.05 200.9 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "06" 2024-02-05 2024-02-07 0.1 221.7 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "06" 2024-02-05 2024-02-07 0.15 228.85 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "06" 2024-02-05 2024-02-07 0.2 232.8 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "06" 2024-02-05 2024-02-07 0.25 236.75 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "06" 2024-02-05 2024-02-07 0.3 242 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "06" 2024-02-05 2024-02-07 0.35 246.6 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "06" 2024-02-05 2024-02-07 0.4 254.6 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "06" 2024-02-05 2024-02-07 0.45 257.55 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "06" 2024-02-05 2024-02-07 0.5 259 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "06" 2024-02-05 2024-02-07 0.55 265 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "06" 2024-02-05 2024-02-07 0.6 266.4 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "06" 2024-02-05 2024-02-07 0.65 269.35 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "06" 2024-02-05 2024-02-07 0.7 275 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "06" 2024-02-05 2024-02-07 0.75 277.25 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "06" 2024-02-05 2024-02-07 0.8 281.4 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "06" 2024-02-05 2024-02-07 0.85 288.15 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "06" 2024-02-05 2024-02-07 0.9 295.1 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "06" 2024-02-05 2024-02-07 0.95 311.15 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "06" 2024-02-05 2024-02-07 0.975 324.15 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "06" 2024-02-05 2024-02-07 0.99 328.07 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "06" 2024-02-05 2024-02-08 0.01 194.84 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "06" 2024-02-05 2024-02-08 0.025 195.95 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "06" 2024-02-05 2024-02-08 0.05 200.8 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "06" 2024-02-05 2024-02-08 0.1 211.9 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "06" 2024-02-05 2024-02-08 0.15 216 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "06" 2024-02-05 2024-02-08 0.2 219 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "06" 2024-02-05 2024-02-08 0.25 223 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "06" 2024-02-05 2024-02-08 0.3 226 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "06" 2024-02-05 2024-02-08 0.35 229.95 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "06" 2024-02-05 2024-02-08 0.4 233 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "06" 2024-02-05 2024-02-08 0.45 240.2 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "06" 2024-02-05 2024-02-08 0.5 247.5 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "06" 2024-02-05 2024-02-08 0.55 251.45 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "06" 2024-02-05 2024-02-08 0.6 254 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "06" 2024-02-05 2024-02-08 0.65 258.35 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "06" 2024-02-05 2024-02-08 0.7 264 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "06" 2024-02-05 2024-02-08 0.75 266 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "06" 2024-02-05 2024-02-08 0.8 270 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "06" 2024-02-05 2024-02-08 0.85 276.15 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "06" 2024-02-05 2024-02-08 0.9 281.2 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "06" 2024-02-05 2024-02-08 0.95 293.05 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "06" 2024-02-05 2024-02-08 0.975 298.625 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "06" 2024-02-05 2024-02-08 0.99 309.17 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "06" 2024-02-05 2024-02-09 0.01 171.88 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "06" 2024-02-05 2024-02-09 0.025 184.475 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "06" 2024-02-05 2024-02-09 0.05 200.7 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "06" 2024-02-05 2024-02-09 0.1 208.7 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "06" 2024-02-05 2024-02-09 0.15 212 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "06" 2024-02-05 2024-02-09 0.2 215.8 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "06" 2024-02-05 2024-02-09 0.25 223 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "06" 2024-02-05 2024-02-09 0.3 224 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "06" 2024-02-05 2024-02-09 0.35 225.65 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "06" 2024-02-05 2024-02-09 0.4 230 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "06" 2024-02-05 2024-02-09 0.45 232.55 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "06" 2024-02-05 2024-02-09 0.5 236.5 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "06" 2024-02-05 2024-02-09 0.55 241.9 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "06" 2024-02-05 2024-02-09 0.6 244.4 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "06" 2024-02-05 2024-02-09 0.65 249 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "06" 2024-02-05 2024-02-09 0.7 254.3 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "06" 2024-02-05 2024-02-09 0.75 259.25 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "06" 2024-02-05 2024-02-09 0.8 272 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "06" 2024-02-05 2024-02-09 0.85 276.15 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "06" 2024-02-05 2024-02-09 0.9 283.3 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "06" 2024-02-05 2024-02-09 0.95 293.15 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "06" 2024-02-05 2024-02-09 0.975 309.2 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "06" 2024-02-05 2024-02-09 0.99 315.16 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "06" 2024-02-05 2024-02-10 0.01 145.93 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "06" 2024-02-05 2024-02-10 0.025 152.85 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "06" 2024-02-05 2024-02-10 0.05 165.85 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "06" 2024-02-05 2024-02-10 0.1 173.5 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "06" 2024-02-05 2024-02-10 0.15 183.85 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "06" 2024-02-05 2024-02-10 0.2 188.4 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "06" 2024-02-05 2024-02-10 0.25 193 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "06" 2024-02-05 2024-02-10 0.3 195.7 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "06" 2024-02-05 2024-02-10 0.35 201.95 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "06" 2024-02-05 2024-02-10 0.4 207.2 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "06" 2024-02-05 2024-02-10 0.45 216.55 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "06" 2024-02-05 2024-02-10 0.5 219.5 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "06" 2024-02-05 2024-02-10 0.55 223 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "06" 2024-02-05 2024-02-10 0.6 226 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "06" 2024-02-05 2024-02-10 0.65 229.35 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "06" 2024-02-05 2024-02-10 0.7 233.3 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "06" 2024-02-05 2024-02-10 0.75 240.5 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "06" 2024-02-05 2024-02-10 0.8 245.2 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "06" 2024-02-05 2024-02-10 0.85 251.45 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "06" 2024-02-05 2024-02-10 0.9 257.1 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "06" 2024-02-05 2024-02-10 0.95 265.05 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "06" 2024-02-05 2024-02-10 0.975 281.825 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "06" 2024-02-05 2024-02-10 0.99 295.09 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "06" 2024-02-05 2024-02-11 0.01 135.95 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "06" 2024-02-05 2024-02-11 0.025 151.325 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "06" 2024-02-05 2024-02-11 0.05 158.8 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "06" 2024-02-05 2024-02-11 0.1 168.9 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "06" 2024-02-05 2024-02-11 0.15 175.7 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "06" 2024-02-05 2024-02-11 0.2 178.8 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "06" 2024-02-05 2024-02-11 0.25 184 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "06" 2024-02-05 2024-02-11 0.3 187 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "06" 2024-02-05 2024-02-11 0.35 193.65 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "06" 2024-02-05 2024-02-11 0.4 195.6 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "06" 2024-02-05 2024-02-11 0.45 199.1 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "06" 2024-02-05 2024-02-11 0.5 202.5 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "06" 2024-02-05 2024-02-11 0.55 208 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "06" 2024-02-05 2024-02-11 0.6 211 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "06" 2024-02-05 2024-02-11 0.65 213.35 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "06" 2024-02-05 2024-02-11 0.7 218 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "06" 2024-02-05 2024-02-11 0.75 222.25 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "06" 2024-02-05 2024-02-11 0.8 227.6 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "06" 2024-02-05 2024-02-11 0.85 235 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "06" 2024-02-05 2024-02-11 0.9 243.3 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "06" 2024-02-05 2024-02-11 0.95 265.25 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "06" 2024-02-05 2024-02-11 0.975 277.05 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "06" 2024-02-05 2024-02-11 0.99 302.18 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "06" 2024-02-05 2024-02-12 0.01 149.98 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "06" 2024-02-05 2024-02-12 0.025 155.475 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "06" 2024-02-05 2024-02-12 0.05 164.8 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "06" 2024-02-05 2024-02-12 0.1 170.9 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "06" 2024-02-05 2024-02-12 0.15 176.85 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "06" 2024-02-05 2024-02-12 0.2 183.4 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "06" 2024-02-05 2024-02-12 0.25 189 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "06" 2024-02-05 2024-02-12 0.3 194 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "06" 2024-02-05 2024-02-12 0.35 195.65 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "06" 2024-02-05 2024-02-12 0.4 198.6 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "06" 2024-02-05 2024-02-12 0.45 203 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "06" 2024-02-05 2024-02-12 0.5 207 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "06" 2024-02-05 2024-02-12 0.55 211.45 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "06" 2024-02-05 2024-02-12 0.6 213.8 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "06" 2024-02-05 2024-02-12 0.65 222.35 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "06" 2024-02-05 2024-02-12 0.7 229.6 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "06" 2024-02-05 2024-02-12 0.75 238.5 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "06" 2024-02-05 2024-02-12 0.8 246.2 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "06" 2024-02-05 2024-02-12 0.85 258.3 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "06" 2024-02-05 2024-02-12 0.9 264.1 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "06" 2024-02-05 2024-02-12 0.95 273.4 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "06" 2024-02-05 2024-02-12 0.975 285.525 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "06" 2024-02-05 2024-02-12 0.99 290.06 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "06" 2024-02-05 2024-02-13 0.01 134.91 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "06" 2024-02-05 2024-02-13 0.025 146.95 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "06" 2024-02-05 2024-02-13 0.05 159.7 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "06" 2024-02-05 2024-02-13 0.1 176.3 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "06" 2024-02-05 2024-02-13 0.15 180 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "06" 2024-02-05 2024-02-13 0.2 190.8 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "06" 2024-02-05 2024-02-13 0.25 194.75 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "06" 2024-02-05 2024-02-13 0.3 201.8 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "06" 2024-02-05 2024-02-13 0.35 206.65 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "06" 2024-02-05 2024-02-13 0.4 211.6 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "06" 2024-02-05 2024-02-13 0.45 214.55 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "06" 2024-02-05 2024-02-13 0.5 218.5 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "06" 2024-02-05 2024-02-13 0.55 220 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "06" 2024-02-05 2024-02-13 0.6 221.4 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "06" 2024-02-05 2024-02-13 0.65 228 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "06" 2024-02-05 2024-02-13 0.7 235 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "06" 2024-02-05 2024-02-13 0.75 244.5 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "06" 2024-02-05 2024-02-13 0.8 250.8 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "06" 2024-02-05 2024-02-13 0.85 266.15 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "06" 2024-02-05 2024-02-13 0.9 275.2 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "06" 2024-02-05 2024-02-13 0.95 284.4 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "06" 2024-02-05 2024-02-13 0.975 299.525 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "06" 2024-02-05 2024-02-13 0.99 304.25 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "06" 2024-02-05 2024-02-14 0.01 125.94 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "06" 2024-02-05 2024-02-14 0.025 129.95 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "06" 2024-02-05 2024-02-14 0.05 156.8 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "06" 2024-02-05 2024-02-14 0.1 164.9 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "06" 2024-02-05 2024-02-14 0.15 178.55 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "06" 2024-02-05 2024-02-14 0.2 188.4 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "06" 2024-02-05 2024-02-14 0.25 194.75 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "06" 2024-02-05 2024-02-14 0.3 198.7 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "06" 2024-02-05 2024-02-14 0.35 204.6 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "06" 2024-02-05 2024-02-14 0.4 210 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "06" 2024-02-05 2024-02-14 0.45 211.1 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "06" 2024-02-05 2024-02-14 0.5 214.5 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "06" 2024-02-05 2024-02-14 0.55 219.9 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "06" 2024-02-05 2024-02-14 0.6 224.4 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "06" 2024-02-05 2024-02-14 0.65 228.35 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "06" 2024-02-05 2024-02-14 0.7 233.6 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "06" 2024-02-05 2024-02-14 0.75 242.25 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "06" 2024-02-05 2024-02-14 0.8 246.4 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "06" 2024-02-05 2024-02-14 0.85 256.15 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "06" 2024-02-05 2024-02-14 0.9 268.4 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "06" 2024-02-05 2024-02-14 0.95 295.2 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "06" 2024-02-05 2024-02-14 0.975 306.3 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "06" 2024-02-05 2024-02-14 0.99 313.31 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "06" 2024-02-05 2024-02-15 0.01 139.88 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "06" 2024-02-05 2024-02-15 0.025 145.8 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "06" 2024-02-05 2024-02-15 0.05 150.95 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "06" 2024-02-05 2024-02-15 0.1 157.9 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "06" 2024-02-05 2024-02-15 0.15 162.7 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "06" 2024-02-05 2024-02-15 0.2 171 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "06" 2024-02-05 2024-02-15 0.25 177.5 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "06" 2024-02-05 2024-02-15 0.3 181 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "06" 2024-02-05 2024-02-15 0.35 184.65 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "06" 2024-02-05 2024-02-15 0.4 191 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "06" 2024-02-05 2024-02-15 0.45 197.55 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "06" 2024-02-05 2024-02-15 0.5 203 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "06" 2024-02-05 2024-02-15 0.55 208.45 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "06" 2024-02-05 2024-02-15 0.6 211.8 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "06" 2024-02-05 2024-02-15 0.65 219.7 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "06" 2024-02-05 2024-02-15 0.7 228.9 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "06" 2024-02-05 2024-02-15 0.75 237.5 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "06" 2024-02-05 2024-02-15 0.8 242.4 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "06" 2024-02-05 2024-02-15 0.85 247.6 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "06" 2024-02-05 2024-02-15 0.9 262 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "06" 2024-02-05 2024-02-15 0.95 296.1 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "06" 2024-02-05 2024-02-15 0.975 310.825 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "06" 2024-02-05 2024-02-15 0.99 320.44 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "06" 2024-02-05 2024-02-16 0.01 121.75 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "06" 2024-02-05 2024-02-16 0.025 128.75 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "06" 2024-02-05 2024-02-16 0.05 141 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "06" 2024-02-05 2024-02-16 0.1 150.9 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "06" 2024-02-05 2024-02-16 0.15 159 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "06" 2024-02-05 2024-02-16 0.2 164.8 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "06" 2024-02-05 2024-02-16 0.25 168.75 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "06" 2024-02-05 2024-02-16 0.3 177.7 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "06" 2024-02-05 2024-02-16 0.35 181 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "06" 2024-02-05 2024-02-16 0.4 184.6 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "06" 2024-02-05 2024-02-16 0.45 188 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "06" 2024-02-05 2024-02-16 0.5 197 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "06" 2024-02-05 2024-02-16 0.55 202 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "06" 2024-02-05 2024-02-16 0.6 210.8 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "06" 2024-02-05 2024-02-16 0.65 219.8 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "06" 2024-02-05 2024-02-16 0.7 232 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "06" 2024-02-05 2024-02-16 0.75 238.5 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "06" 2024-02-05 2024-02-16 0.8 246.2 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "06" 2024-02-05 2024-02-16 0.85 257 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "06" 2024-02-05 2024-02-16 0.9 260.3 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "06" 2024-02-05 2024-02-16 0.95 284.1 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "06" 2024-02-05 2024-02-16 0.975 295.625 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "06" 2024-02-05 2024-02-16 0.99 299.31 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "06" 2024-02-05 2024-02-17 0.01 96.84 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "06" 2024-02-05 2024-02-17 0.025 100.8 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "06" 2024-02-05 2024-02-17 0.05 115.6 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "06" 2024-02-05 2024-02-17 0.1 134.9 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "06" 2024-02-05 2024-02-17 0.15 140.85 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "06" 2024-02-05 2024-02-17 0.2 145 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "06" 2024-02-05 2024-02-17 0.25 146.75 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "06" 2024-02-05 2024-02-17 0.3 151.7 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "06" 2024-02-05 2024-02-17 0.35 155.65 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "06" 2024-02-05 2024-02-17 0.4 157 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "06" 2024-02-05 2024-02-17 0.45 164.75 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "06" 2024-02-05 2024-02-17 0.5 180.5 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "06" 2024-02-05 2024-02-17 0.55 185.45 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "06" 2024-02-05 2024-02-17 0.6 193 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "06" 2024-02-05 2024-02-17 0.65 196 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "06" 2024-02-05 2024-02-17 0.7 201 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "06" 2024-02-05 2024-02-17 0.75 205.25 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "06" 2024-02-05 2024-02-17 0.8 213.2 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "06" 2024-02-05 2024-02-17 0.85 217.75 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "06" 2024-02-05 2024-02-17 0.9 235.2 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "06" 2024-02-05 2024-02-17 0.95 253.2 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "06" 2024-02-05 2024-02-17 0.975 267.1 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "06" 2024-02-05 2024-02-17 0.99 274.13 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "06" 2024-02-05 2024-02-18 0.01 87.99 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "06" 2024-02-05 2024-02-18 0.025 98.95 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "06" 2024-02-05 2024-02-18 0.05 106.8 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "06" 2024-02-05 2024-02-18 0.1 127.9 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "06" 2024-02-05 2024-02-18 0.15 131 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "06" 2024-02-05 2024-02-18 0.2 135 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "06" 2024-02-05 2024-02-18 0.25 139.75 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "06" 2024-02-05 2024-02-18 0.3 145.7 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "06" 2024-02-05 2024-02-18 0.35 153 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "06" 2024-02-05 2024-02-18 0.4 161 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "06" 2024-02-05 2024-02-18 0.45 164.55 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "06" 2024-02-05 2024-02-18 0.5 170 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "06" 2024-02-05 2024-02-18 0.55 173 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "06" 2024-02-05 2024-02-18 0.6 175.4 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "06" 2024-02-05 2024-02-18 0.65 184.7 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "06" 2024-02-05 2024-02-18 0.7 193.3 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "06" 2024-02-05 2024-02-18 0.75 198.25 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "06" 2024-02-05 2024-02-18 0.8 212 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "06" 2024-02-05 2024-02-18 0.85 223.15 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "06" 2024-02-05 2024-02-18 0.9 232.1 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "06" 2024-02-05 2024-02-18 0.95 259.05 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "06" 2024-02-05 2024-02-18 0.975 290.5 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "06" 2024-02-05 2024-02-18 0.99 301.05 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "06" 2024-02-05 2024-02-19 0.01 103.85 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "06" 2024-02-05 2024-02-19 0.025 108.425 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "06" 2024-02-05 2024-02-19 0.05 114.8 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "06" 2024-02-05 2024-02-19 0.1 131.9 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "06" 2024-02-05 2024-02-19 0.15 143.55 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "06" 2024-02-05 2024-02-19 0.2 146.6 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "06" 2024-02-05 2024-02-19 0.25 151.75 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "06" 2024-02-05 2024-02-19 0.3 155.4 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "06" 2024-02-05 2024-02-19 0.35 162 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "06" 2024-02-05 2024-02-19 0.4 165.6 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "06" 2024-02-05 2024-02-19 0.45 169.55 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "06" 2024-02-05 2024-02-19 0.5 171.5 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "06" 2024-02-05 2024-02-19 0.55 174 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "06" 2024-02-05 2024-02-19 0.6 179.4 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "06" 2024-02-05 2024-02-19 0.65 191.4 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "06" 2024-02-05 2024-02-19 0.7 205.3 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "06" 2024-02-05 2024-02-19 0.75 211.5 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "06" 2024-02-05 2024-02-19 0.8 223 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "06" 2024-02-05 2024-02-19 0.85 239.15 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "06" 2024-02-05 2024-02-19 0.9 249.1 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "06" 2024-02-05 2024-02-19 0.95 276.45 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "06" 2024-02-05 2024-02-19 0.975 294.575 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "06" 2024-02-05 2024-02-19 0.99 300.28 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "06" 2024-02-05 2024-02-20 0.01 100.98 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "06" 2024-02-05 2024-02-20 0.025 108.9 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "06" 2024-02-05 2024-02-20 0.05 114 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "06" 2024-02-05 2024-02-20 0.1 129.8 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "06" 2024-02-05 2024-02-20 0.15 142.7 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "06" 2024-02-05 2024-02-20 0.2 148.6 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "06" 2024-02-05 2024-02-20 0.25 152.5 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "06" 2024-02-05 2024-02-20 0.3 155.7 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "06" 2024-02-05 2024-02-20 0.35 159.3 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "06" 2024-02-05 2024-02-20 0.4 165.6 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "06" 2024-02-05 2024-02-20 0.45 176.1 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "06" 2024-02-05 2024-02-20 0.5 179.5 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "06" 2024-02-05 2024-02-20 0.55 192 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "06" 2024-02-05 2024-02-20 0.6 199.4 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "06" 2024-02-05 2024-02-20 0.65 204.35 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "06" 2024-02-05 2024-02-20 0.7 217 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "06" 2024-02-05 2024-02-20 0.75 221.5 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "06" 2024-02-05 2024-02-20 0.8 233.4 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "06" 2024-02-05 2024-02-20 0.85 243.75 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "06" 2024-02-05 2024-02-20 0.9 265.1 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "06" 2024-02-05 2024-02-20 0.95 278.15 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "06" 2024-02-05 2024-02-20 0.975 290.2 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "06" 2024-02-05 2024-02-20 0.99 331.01 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "06" 2024-02-05 2024-02-21 0.01 92.69 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "06" 2024-02-05 2024-02-21 0.025 103.95 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "06" 2024-02-05 2024-02-21 0.05 115.6 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "06" 2024-02-05 2024-02-21 0.1 123.9 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "06" 2024-02-05 2024-02-21 0.15 129.85 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "06" 2024-02-05 2024-02-21 0.2 137 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "06" 2024-02-05 2024-02-21 0.25 145.5 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "06" 2024-02-05 2024-02-21 0.3 152.7 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "06" 2024-02-05 2024-02-21 0.35 159 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "06" 2024-02-05 2024-02-21 0.4 163.2 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "06" 2024-02-05 2024-02-21 0.45 169 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "06" 2024-02-05 2024-02-21 0.5 177.5 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "06" 2024-02-05 2024-02-21 0.55 183 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "06" 2024-02-05 2024-02-21 0.6 187 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "06" 2024-02-05 2024-02-21 0.65 192.75 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "06" 2024-02-05 2024-02-21 0.7 203.6 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "06" 2024-02-05 2024-02-21 0.75 215.25 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "06" 2024-02-05 2024-02-21 0.8 225 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "06" 2024-02-05 2024-02-21 0.85 242.45 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "06" 2024-02-05 2024-02-21 0.9 256.3 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "06" 2024-02-05 2024-02-21 0.95 267.55 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "06" 2024-02-05 2024-02-21 0.975 311.15 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "06" 2024-02-05 2024-02-21 0.99 317.35 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "06" 2024-02-05 2024-02-22 0.01 81.91 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "06" 2024-02-05 2024-02-22 0.025 94.9 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "06" 2024-02-05 2024-02-22 0.05 103.9 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "06" 2024-02-05 2024-02-22 0.1 121.8 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "06" 2024-02-05 2024-02-22 0.15 125.85 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "06" 2024-02-05 2024-02-22 0.2 132.6 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "06" 2024-02-05 2024-02-22 0.25 138 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "06" 2024-02-05 2024-02-22 0.3 145 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "06" 2024-02-05 2024-02-22 0.35 151.95 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "06" 2024-02-05 2024-02-22 0.4 159 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "06" 2024-02-05 2024-02-22 0.45 163.1 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "06" 2024-02-05 2024-02-22 0.5 166 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "06" 2024-02-05 2024-02-22 0.55 176 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "06" 2024-02-05 2024-02-22 0.6 186 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "06" 2024-02-05 2024-02-22 0.65 188.35 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "06" 2024-02-05 2024-02-22 0.7 204.9 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "06" 2024-02-05 2024-02-22 0.75 212 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "06" 2024-02-05 2024-02-22 0.8 218 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "06" 2024-02-05 2024-02-22 0.85 229.9 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "06" 2024-02-05 2024-02-22 0.9 244.1 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "06" 2024-02-05 2024-02-22 0.95 258 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "06" 2024-02-05 2024-02-22 0.975 272.025 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "06" 2024-02-05 2024-02-22 0.99 285.2 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "06" 2024-02-05 2024-02-23 0.01 70.97 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "06" 2024-02-05 2024-02-23 0.025 84.425 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "06" 2024-02-05 2024-02-23 0.05 87.9 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "06" 2024-02-05 2024-02-23 0.1 114.9 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "06" 2024-02-05 2024-02-23 0.15 118.85 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "06" 2024-02-05 2024-02-23 0.2 125.6 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "06" 2024-02-05 2024-02-23 0.25 132.75 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "06" 2024-02-05 2024-02-23 0.3 139.2 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "06" 2024-02-05 2024-02-23 0.35 147.65 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "06" 2024-02-05 2024-02-23 0.4 152.6 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "06" 2024-02-05 2024-02-23 0.45 160.1 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "06" 2024-02-05 2024-02-23 0.5 166 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "06" 2024-02-05 2024-02-23 0.55 174.45 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "06" 2024-02-05 2024-02-23 0.6 184.6 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "06" 2024-02-05 2024-02-23 0.65 192 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "06" 2024-02-05 2024-02-23 0.7 198.3 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "06" 2024-02-05 2024-02-23 0.75 204.5 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "06" 2024-02-05 2024-02-23 0.8 226.2 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "06" 2024-02-05 2024-02-23 0.85 236.3 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "06" 2024-02-05 2024-02-23 0.9 255.9 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "06" 2024-02-05 2024-02-23 0.95 301.05 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "06" 2024-02-05 2024-02-23 0.975 306.675 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "06" 2024-02-05 2024-02-23 0.99 311.52 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "06" 2024-02-05 2024-02-24 0.01 67.94 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "06" 2024-02-05 2024-02-24 0.025 73.475 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "06" 2024-02-05 2024-02-24 0.05 78.75 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "06" 2024-02-05 2024-02-24 0.1 100.8 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "06" 2024-02-05 2024-02-24 0.15 104.7 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "06" 2024-02-05 2024-02-24 0.2 117.8 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "06" 2024-02-05 2024-02-24 0.25 122.5 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "06" 2024-02-05 2024-02-24 0.3 126 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "06" 2024-02-05 2024-02-24 0.35 128.65 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "06" 2024-02-05 2024-02-24 0.4 131.6 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "06" 2024-02-05 2024-02-24 0.45 138.55 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "06" 2024-02-05 2024-02-24 0.5 147 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "06" 2024-02-05 2024-02-24 0.55 154.45 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "06" 2024-02-05 2024-02-24 0.6 160 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "06" 2024-02-05 2024-02-24 0.65 167.35 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "06" 2024-02-05 2024-02-24 0.7 176.3 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "06" 2024-02-05 2024-02-24 0.75 187.75 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "06" 2024-02-05 2024-02-24 0.8 199.4 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "06" 2024-02-05 2024-02-24 0.85 208.45 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "06" 2024-02-05 2024-02-24 0.9 215.1 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "06" 2024-02-05 2024-02-24 0.95 234.5 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "06" 2024-02-05 2024-02-24 0.975 254.575 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "06" 2024-02-05 2024-02-24 0.99 292.23 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "06" 2024-02-05 2024-02-25 0.01 60.95 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "06" 2024-02-05 2024-02-25 0.025 69.95 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "06" 2024-02-05 2024-02-25 0.05 82.8 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "06" 2024-02-05 2024-02-25 0.1 91.3 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "06" 2024-02-05 2024-02-25 0.15 98.85 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "06" 2024-02-05 2024-02-25 0.2 106.6 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "06" 2024-02-05 2024-02-25 0.25 112 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "06" 2024-02-05 2024-02-25 0.3 117 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "06" 2024-02-05 2024-02-25 0.35 120.3 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "06" 2024-02-05 2024-02-25 0.4 127.2 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "06" 2024-02-05 2024-02-25 0.45 130 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "06" 2024-02-05 2024-02-25 0.5 138.5 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "06" 2024-02-05 2024-02-25 0.55 146.9 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "06" 2024-02-05 2024-02-25 0.6 153.6 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "06" 2024-02-05 2024-02-25 0.65 169.05 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "06" 2024-02-05 2024-02-25 0.7 176.6 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "06" 2024-02-05 2024-02-25 0.75 181.5 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "06" 2024-02-05 2024-02-25 0.8 194.6 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "06" 2024-02-05 2024-02-25 0.85 207.65 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "06" 2024-02-05 2024-02-25 0.9 225.1 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "06" 2024-02-05 2024-02-25 0.95 242.4 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "06" 2024-02-05 2024-02-25 0.975 265.15 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "06" 2024-02-05 2024-02-25 0.99 292.49 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "06" 2024-02-05 2024-02-26 0.01 68.84 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "06" 2024-02-05 2024-02-26 0.025 70.95 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "06" 2024-02-05 2024-02-26 0.05 83.85 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "06" 2024-02-05 2024-02-26 0.1 92.7 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "06" 2024-02-05 2024-02-26 0.15 107.8 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "06" 2024-02-05 2024-02-26 0.2 115.8 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "06" 2024-02-05 2024-02-26 0.25 122 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "06" 2024-02-05 2024-02-26 0.3 124.7 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "06" 2024-02-05 2024-02-26 0.35 134.3 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "06" 2024-02-05 2024-02-26 0.4 141 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "06" 2024-02-05 2024-02-26 0.45 145.55 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "06" 2024-02-05 2024-02-26 0.5 152 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "06" 2024-02-05 2024-02-26 0.55 154 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "06" 2024-02-05 2024-02-26 0.6 164.2 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "06" 2024-02-05 2024-02-26 0.65 172 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "06" 2024-02-05 2024-02-26 0.7 183 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "06" 2024-02-05 2024-02-26 0.75 194 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "06" 2024-02-05 2024-02-26 0.8 207.2 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "06" 2024-02-05 2024-02-26 0.85 218 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "06" 2024-02-05 2024-02-26 0.9 230 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "06" 2024-02-05 2024-02-26 0.95 254.7 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "06" 2024-02-05 2024-02-26 0.975 281 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "06" 2024-02-05 2024-02-26 0.99 338.12 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "06" 2024-02-05 2024-02-27 0.01 62.92 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "06" 2024-02-05 2024-02-27 0.025 78.225 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "06" 2024-02-05 2024-02-27 0.05 85 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "06" 2024-02-05 2024-02-27 0.1 99.9 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "06" 2024-02-05 2024-02-27 0.15 108.85 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "06" 2024-02-05 2024-02-27 0.2 118.6 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "06" 2024-02-05 2024-02-27 0.25 124 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "06" 2024-02-05 2024-02-27 0.3 131.4 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "06" 2024-02-05 2024-02-27 0.35 135.65 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "06" 2024-02-05 2024-02-27 0.4 139.2 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "06" 2024-02-05 2024-02-27 0.45 145.55 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "06" 2024-02-05 2024-02-27 0.5 150 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "06" 2024-02-05 2024-02-27 0.55 156.45 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "06" 2024-02-05 2024-02-27 0.6 169.4 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "06" 2024-02-05 2024-02-27 0.65 179.35 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "06" 2024-02-05 2024-02-27 0.7 189.9 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "06" 2024-02-05 2024-02-27 0.75 208 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "06" 2024-02-05 2024-02-27 0.8 216.2 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "06" 2024-02-05 2024-02-27 0.85 232.45 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "06" 2024-02-05 2024-02-27 0.9 246.9 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "06" 2024-02-05 2024-02-27 0.95 283.4 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "06" 2024-02-05 2024-02-27 0.975 308.4 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "06" 2024-02-05 2024-02-27 0.99 318.34 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "06" 2024-02-05 2024-02-28 0.01 54.92 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "06" 2024-02-05 2024-02-28 0.025 60 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "06" 2024-02-05 2024-02-28 0.05 76.15 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "06" 2024-02-05 2024-02-28 0.1 95.6 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "06" 2024-02-05 2024-02-28 0.15 105.85 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "06" 2024-02-05 2024-02-28 0.2 113 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "06" 2024-02-05 2024-02-28 0.25 117.75 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "06" 2024-02-05 2024-02-28 0.3 127 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "06" 2024-02-05 2024-02-28 0.35 131.65 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "06" 2024-02-05 2024-02-28 0.4 143.6 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "06" 2024-02-05 2024-02-28 0.45 152 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "06" 2024-02-05 2024-02-28 0.5 155 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "06" 2024-02-05 2024-02-28 0.55 160.45 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "06" 2024-02-05 2024-02-28 0.6 168.2 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "06" 2024-02-05 2024-02-28 0.65 175 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "06" 2024-02-05 2024-02-28 0.7 182.3 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "06" 2024-02-05 2024-02-28 0.75 191 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "06" 2024-02-05 2024-02-28 0.8 202.2 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "06" 2024-02-05 2024-02-28 0.85 236.9 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "06" 2024-02-05 2024-02-28 0.9 260.8 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "06" 2024-02-05 2024-02-28 0.95 287.05 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "06" 2024-02-05 2024-02-28 0.975 292.525 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "06" 2024-02-05 2024-02-28 0.99 406.09 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "06" 2024-02-05 2024-02-29 0.01 54.9 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "06" 2024-02-05 2024-02-29 0.025 70.85 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "06" 2024-02-05 2024-02-29 0.05 81.65 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "06" 2024-02-05 2024-02-29 0.1 90.8 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "06" 2024-02-05 2024-02-29 0.15 98.55 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "06" 2024-02-05 2024-02-29 0.2 102.8 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "06" 2024-02-05 2024-02-29 0.25 110.75 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "06" 2024-02-05 2024-02-29 0.3 114.7 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "06" 2024-02-05 2024-02-29 0.35 120.3 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "06" 2024-02-05 2024-02-29 0.4 126.8 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "06" 2024-02-05 2024-02-29 0.45 138 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "06" 2024-02-05 2024-02-29 0.5 144.5 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "06" 2024-02-05 2024-02-29 0.55 155 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "06" 2024-02-05 2024-02-29 0.6 166.4 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "06" 2024-02-05 2024-02-29 0.65 171.35 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "06" 2024-02-05 2024-02-29 0.7 181.9 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "06" 2024-02-05 2024-02-29 0.75 192.5 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "06" 2024-02-05 2024-02-29 0.8 214.4 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "06" 2024-02-05 2024-02-29 0.85 234.45 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "06" 2024-02-05 2024-02-29 0.9 255.9 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "06" 2024-02-05 2024-02-29 0.95 271.55 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "06" 2024-02-05 2024-02-29 0.975 295.1 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "06" 2024-02-05 2024-02-29 0.99 304.69 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "06" 2024-02-05 2024-03-01 0.01 50.89 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "06" 2024-02-05 2024-03-01 0.025 58.9 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "06" 2024-02-05 2024-03-01 0.05 74.6 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "06" 2024-02-05 2024-03-01 0.1 82.8 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "06" 2024-02-05 2024-03-01 0.15 93 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "06" 2024-02-05 2024-03-01 0.2 100 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "06" 2024-02-05 2024-03-01 0.25 106 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "06" 2024-02-05 2024-03-01 0.3 111.7 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "06" 2024-02-05 2024-03-01 0.35 114.65 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "06" 2024-02-05 2024-03-01 0.4 122.2 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "06" 2024-02-05 2024-03-01 0.45 127.55 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "06" 2024-02-05 2024-03-01 0.5 135 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "06" 2024-02-05 2024-03-01 0.55 143.25 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "06" 2024-02-05 2024-03-01 0.6 159.2 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "06" 2024-02-05 2024-03-01 0.65 174.7 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "06" 2024-02-05 2024-03-01 0.7 180.3 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "06" 2024-02-05 2024-03-01 0.75 188.25 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "06" 2024-02-05 2024-03-01 0.8 198.6 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "06" 2024-02-05 2024-03-01 0.85 221.75 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "06" 2024-02-05 2024-03-01 0.9 241.2 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "06" 2024-02-05 2024-03-01 0.95 263.15 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "06" 2024-02-05 2024-03-01 0.975 299.075 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "06" 2024-02-05 2024-03-01 0.99 313.4 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "06" 2024-02-05 2024-03-02 0.01 43.98 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "06" 2024-02-05 2024-03-02 0.025 46.95 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "06" 2024-02-05 2024-03-02 0.05 55.75 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "06" 2024-02-05 2024-03-02 0.1 72.8 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "06" 2024-02-05 2024-03-02 0.15 84.85 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "06" 2024-02-05 2024-03-02 0.2 92.4 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "06" 2024-02-05 2024-03-02 0.25 96.75 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "06" 2024-02-05 2024-03-02 0.3 100 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "06" 2024-02-05 2024-03-02 0.35 104 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "06" 2024-02-05 2024-03-02 0.4 109.6 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "06" 2024-02-05 2024-03-02 0.45 113.55 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "06" 2024-02-05 2024-03-02 0.5 119.5 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "06" 2024-02-05 2024-03-02 0.55 133.8 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "06" 2024-02-05 2024-03-02 0.6 146.8 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "06" 2024-02-05 2024-03-02 0.65 154 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "06" 2024-02-05 2024-03-02 0.7 162.2 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "06" 2024-02-05 2024-03-02 0.75 178.25 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "06" 2024-02-05 2024-03-02 0.8 187.4 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "06" 2024-02-05 2024-03-02 0.85 205.9 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "06" 2024-02-05 2024-03-02 0.9 217.1 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "06" 2024-02-05 2024-03-02 0.95 246.75 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "06" 2024-02-05 2024-03-02 0.975 271.45 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "06" 2024-02-05 2024-03-02 0.99 307.17 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "06" 2024-02-05 2024-03-03 0.01 34 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "06" 2024-02-05 2024-03-03 0.025 48.375 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "06" 2024-02-05 2024-03-03 0.05 53.95 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "06" 2024-02-05 2024-03-03 0.1 69 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "06" 2024-02-05 2024-03-03 0.15 72 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "06" 2024-02-05 2024-03-03 0.2 84.6 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "06" 2024-02-05 2024-03-03 0.25 91.75 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "06" 2024-02-05 2024-03-03 0.3 94.7 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "06" 2024-02-05 2024-03-03 0.35 98.65 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "06" 2024-02-05 2024-03-03 0.4 104.4 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "06" 2024-02-05 2024-03-03 0.45 110.2 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "06" 2024-02-05 2024-03-03 0.5 127.5 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "06" 2024-02-05 2024-03-03 0.55 131.35 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "06" 2024-02-05 2024-03-03 0.6 138.2 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "06" 2024-02-05 2024-03-03 0.65 147 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "06" 2024-02-05 2024-03-03 0.7 155.9 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "06" 2024-02-05 2024-03-03 0.75 168 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "06" 2024-02-05 2024-03-03 0.8 190.2 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "06" 2024-02-05 2024-03-03 0.85 198.5 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "06" 2024-02-05 2024-03-03 0.9 220.8 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "06" 2024-02-05 2024-03-03 0.95 258.7 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "06" 2024-02-05 2024-03-03 0.975 280.875 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "06" 2024-02-05 2024-03-03 0.99 302.36 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "06" 2024-02-05 2024-03-04 0.01 41.96 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "06" 2024-02-05 2024-03-04 0.025 46.425 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "06" 2024-02-05 2024-03-04 0.05 53 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "06" 2024-02-05 2024-03-04 0.1 72.1 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "06" 2024-02-05 2024-03-04 0.15 80 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "06" 2024-02-05 2024-03-04 0.2 84.2 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "06" 2024-02-05 2024-03-04 0.25 92 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "06" 2024-02-05 2024-03-04 0.3 97.7 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "06" 2024-02-05 2024-03-04 0.35 104.65 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "06" 2024-02-05 2024-03-04 0.4 108.6 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "06" 2024-02-05 2024-03-04 0.45 117.2 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "06" 2024-02-05 2024-03-04 0.5 127 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "06" 2024-02-05 2024-03-04 0.55 132.9 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "06" 2024-02-05 2024-03-04 0.6 142.4 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "06" 2024-02-05 2024-03-04 0.65 155.7 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "06" 2024-02-05 2024-03-04 0.7 166.9 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "06" 2024-02-05 2024-03-04 0.75 173 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "06" 2024-02-05 2024-03-04 0.8 188.2 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "06" 2024-02-05 2024-03-04 0.85 212.6 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "06" 2024-02-05 2024-03-04 0.9 245.3 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "06" 2024-02-05 2024-03-04 0.95 282 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "06" 2024-02-05 2024-03-04 0.975 312.25 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "06" 2024-02-05 2024-03-04 0.99 356.2 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "08" 2024-02-05 2024-02-06 0.01 21.98 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "08" 2024-02-05 2024-02-06 0.025 26.95 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "08" 2024-02-05 2024-02-06 0.05 28.95 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "08" 2024-02-05 2024-02-06 0.1 32 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "08" 2024-02-05 2024-02-06 0.15 34 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "08" 2024-02-05 2024-02-06 0.2 35 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "08" 2024-02-05 2024-02-06 0.25 35.75 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "08" 2024-02-05 2024-02-06 0.3 36 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "08" 2024-02-05 2024-02-06 0.35 37 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "08" 2024-02-05 2024-02-06 0.4 38 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "08" 2024-02-05 2024-02-06 0.45 39 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "08" 2024-02-05 2024-02-06 0.5 42 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "08" 2024-02-05 2024-02-06 0.55 43 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "08" 2024-02-05 2024-02-06 0.6 44 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "08" 2024-02-05 2024-02-06 0.65 46.35 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "08" 2024-02-05 2024-02-06 0.7 48 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "08" 2024-02-05 2024-02-06 0.75 51 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "08" 2024-02-05 2024-02-06 0.8 52.2 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "08" 2024-02-05 2024-02-06 0.85 55 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "08" 2024-02-05 2024-02-06 0.9 61.1 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "08" 2024-02-05 2024-02-06 0.95 64.1 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "08" 2024-02-05 2024-02-06 0.975 70.05 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "08" 2024-02-05 2024-02-06 0.99 73.04 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "08" 2024-02-05 2024-02-07 0.01 15.97 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "08" 2024-02-05 2024-02-07 0.025 20.475 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "08" 2024-02-05 2024-02-07 0.05 21 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "08" 2024-02-05 2024-02-07 0.1 28 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "08" 2024-02-05 2024-02-07 0.15 29 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "08" 2024-02-05 2024-02-07 0.2 31.8 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "08" 2024-02-05 2024-02-07 0.25 33 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "08" 2024-02-05 2024-02-07 0.3 34.7 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "08" 2024-02-05 2024-02-07 0.35 35 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "08" 2024-02-05 2024-02-07 0.4 37 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "08" 2024-02-05 2024-02-07 0.45 39.55 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "08" 2024-02-05 2024-02-07 0.5 41 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "08" 2024-02-05 2024-02-07 0.55 42 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "08" 2024-02-05 2024-02-07 0.6 43 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "08" 2024-02-05 2024-02-07 0.65 43.35 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "08" 2024-02-05 2024-02-07 0.7 45.3 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "08" 2024-02-05 2024-02-07 0.75 47 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "08" 2024-02-05 2024-02-07 0.8 49 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "08" 2024-02-05 2024-02-07 0.85 51.15 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "08" 2024-02-05 2024-02-07 0.9 57.1 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "08" 2024-02-05 2024-02-07 0.95 61.1 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "08" 2024-02-05 2024-02-07 0.975 66.525 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "08" 2024-02-05 2024-02-07 0.99 71.02 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "08" 2024-02-05 2024-02-08 0.01 25.98 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "08" 2024-02-05 2024-02-08 0.025 28 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "08" 2024-02-05 2024-02-08 0.05 29 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "08" 2024-02-05 2024-02-08 0.1 31.9 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "08" 2024-02-05 2024-02-08 0.15 33 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "08" 2024-02-05 2024-02-08 0.2 35 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "08" 2024-02-05 2024-02-08 0.25 38 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "08" 2024-02-05 2024-02-08 0.3 40.7 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "08" 2024-02-05 2024-02-08 0.35 42 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "08" 2024-02-05 2024-02-08 0.4 44 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "08" 2024-02-05 2024-02-08 0.45 46 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "08" 2024-02-05 2024-02-08 0.5 47 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "08" 2024-02-05 2024-02-08 0.55 49 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "08" 2024-02-05 2024-02-08 0.6 49 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "08" 2024-02-05 2024-02-08 0.65 50.35 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "08" 2024-02-05 2024-02-08 0.7 51.3 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "08" 2024-02-05 2024-02-08 0.75 53.25 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "08" 2024-02-05 2024-02-08 0.8 58 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "08" 2024-02-05 2024-02-08 0.85 60.15 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "08" 2024-02-05 2024-02-08 0.9 63.1 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "08" 2024-02-05 2024-02-08 0.95 67 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "08" 2024-02-05 2024-02-08 0.975 77.05 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "08" 2024-02-05 2024-02-08 0.99 100.04 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "08" 2024-02-05 2024-02-09 0.01 20 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "08" 2024-02-05 2024-02-09 0.025 22.9 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "08" 2024-02-05 2024-02-09 0.05 26.95 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "08" 2024-02-05 2024-02-09 0.1 29 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "08" 2024-02-05 2024-02-09 0.15 32 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "08" 2024-02-05 2024-02-09 0.2 32.8 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "08" 2024-02-05 2024-02-09 0.25 34 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "08" 2024-02-05 2024-02-09 0.3 35.7 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "08" 2024-02-05 2024-02-09 0.35 37 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "08" 2024-02-05 2024-02-09 0.4 38.6 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "08" 2024-02-05 2024-02-09 0.45 40.55 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "08" 2024-02-05 2024-02-09 0.5 44 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "08" 2024-02-05 2024-02-09 0.55 46 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "08" 2024-02-05 2024-02-09 0.6 47 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "08" 2024-02-05 2024-02-09 0.65 48.35 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "08" 2024-02-05 2024-02-09 0.7 49.3 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "08" 2024-02-05 2024-02-09 0.75 51.25 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "08" 2024-02-05 2024-02-09 0.8 53 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "08" 2024-02-05 2024-02-09 0.85 55.3 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "08" 2024-02-05 2024-02-09 0.9 63.3 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "08" 2024-02-05 2024-02-09 0.95 67.05 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "08" 2024-02-05 2024-02-09 0.975 70 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "08" 2024-02-05 2024-02-09 0.99 73.01 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "08" 2024-02-05 2024-02-10 0.01 18.98 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "08" 2024-02-05 2024-02-10 0.025 20 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "08" 2024-02-05 2024-02-10 0.05 20.95 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "08" 2024-02-05 2024-02-10 0.1 25.9 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "08" 2024-02-05 2024-02-10 0.15 27.85 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "08" 2024-02-05 2024-02-10 0.2 30 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "08" 2024-02-05 2024-02-10 0.25 33 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "08" 2024-02-05 2024-02-10 0.3 35.7 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "08" 2024-02-05 2024-02-10 0.35 36.65 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "08" 2024-02-05 2024-02-10 0.4 38 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "08" 2024-02-05 2024-02-10 0.45 41 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "08" 2024-02-05 2024-02-10 0.5 41.5 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "08" 2024-02-05 2024-02-10 0.55 43 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "08" 2024-02-05 2024-02-10 0.6 44 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "08" 2024-02-05 2024-02-10 0.65 44 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "08" 2024-02-05 2024-02-10 0.7 46 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "08" 2024-02-05 2024-02-10 0.75 48 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "08" 2024-02-05 2024-02-10 0.8 51.2 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "08" 2024-02-05 2024-02-10 0.85 53 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "08" 2024-02-05 2024-02-10 0.9 56.2 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "08" 2024-02-05 2024-02-10 0.95 64.15 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "08" 2024-02-05 2024-02-10 0.975 67.525 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "08" 2024-02-05 2024-02-10 0.99 71.03 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "08" 2024-02-05 2024-02-11 0.01 21.97 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "08" 2024-02-05 2024-02-11 0.025 22 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "08" 2024-02-05 2024-02-11 0.05 22.95 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "08" 2024-02-05 2024-02-11 0.1 25.9 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "08" 2024-02-05 2024-02-11 0.15 27.85 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "08" 2024-02-05 2024-02-11 0.2 30 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "08" 2024-02-05 2024-02-11 0.25 31.75 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "08" 2024-02-05 2024-02-11 0.3 34 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "08" 2024-02-05 2024-02-11 0.35 35 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "08" 2024-02-05 2024-02-11 0.4 37 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "08" 2024-02-05 2024-02-11 0.45 39.55 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "08" 2024-02-05 2024-02-11 0.5 42 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "08" 2024-02-05 2024-02-11 0.55 43.45 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "08" 2024-02-05 2024-02-11 0.6 45.4 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "08" 2024-02-05 2024-02-11 0.65 47 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "08" 2024-02-05 2024-02-11 0.7 49.3 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "08" 2024-02-05 2024-02-11 0.75 52.25 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "08" 2024-02-05 2024-02-11 0.8 56 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "08" 2024-02-05 2024-02-11 0.85 59.15 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "08" 2024-02-05 2024-02-11 0.9 64 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "08" 2024-02-05 2024-02-11 0.95 68.05 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "08" 2024-02-05 2024-02-11 0.975 72.525 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "08" 2024-02-05 2024-02-11 0.99 76.2100000000001 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "08" 2024-02-05 2024-02-12 0.01 22.97 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "08" 2024-02-05 2024-02-12 0.025 24.475 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "08" 2024-02-05 2024-02-12 0.05 27 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "08" 2024-02-05 2024-02-12 0.1 29.9 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "08" 2024-02-05 2024-02-12 0.15 33.85 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "08" 2024-02-05 2024-02-12 0.2 39.8 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "08" 2024-02-05 2024-02-12 0.25 41 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "08" 2024-02-05 2024-02-12 0.3 42 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "08" 2024-02-05 2024-02-12 0.35 43 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "08" 2024-02-05 2024-02-12 0.4 44 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "08" 2024-02-05 2024-02-12 0.45 46 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "08" 2024-02-05 2024-02-12 0.5 48.5 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "08" 2024-02-05 2024-02-12 0.55 50 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "08" 2024-02-05 2024-02-12 0.6 50.4 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "08" 2024-02-05 2024-02-12 0.65 51.35 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "08" 2024-02-05 2024-02-12 0.7 53 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "08" 2024-02-05 2024-02-12 0.75 55 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "08" 2024-02-05 2024-02-12 0.8 58.4 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "08" 2024-02-05 2024-02-12 0.85 62 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "08" 2024-02-05 2024-02-12 0.9 68.1 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "08" 2024-02-05 2024-02-12 0.95 80.05 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "08" 2024-02-05 2024-02-12 0.975 85.575 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "08" 2024-02-05 2024-02-12 0.99 99.07 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "08" 2024-02-05 2024-02-13 0.01 17.99 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "08" 2024-02-05 2024-02-13 0.025 18.95 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "08" 2024-02-05 2024-02-13 0.05 23 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "08" 2024-02-05 2024-02-13 0.1 27.8 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "08" 2024-02-05 2024-02-13 0.15 32 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "08" 2024-02-05 2024-02-13 0.2 33.8 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "08" 2024-02-05 2024-02-13 0.25 35.75 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "08" 2024-02-05 2024-02-13 0.3 38 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "08" 2024-02-05 2024-02-13 0.35 40.65 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "08" 2024-02-05 2024-02-13 0.4 41 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "08" 2024-02-05 2024-02-13 0.45 43 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "08" 2024-02-05 2024-02-13 0.5 45 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "08" 2024-02-05 2024-02-13 0.55 47 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "08" 2024-02-05 2024-02-13 0.6 49 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "08" 2024-02-05 2024-02-13 0.65 50.35 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "08" 2024-02-05 2024-02-13 0.7 52 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "08" 2024-02-05 2024-02-13 0.75 54.5 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "08" 2024-02-05 2024-02-13 0.8 59 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "08" 2024-02-05 2024-02-13 0.85 64.3 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "08" 2024-02-05 2024-02-13 0.9 69.1 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "08" 2024-02-05 2024-02-13 0.95 83.2 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "08" 2024-02-05 2024-02-13 0.975 90.1 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "08" 2024-02-05 2024-02-13 0.99 92.3200000000002 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "08" 2024-02-05 2024-02-14 0.01 20.98 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "08" 2024-02-05 2024-02-14 0.025 21.475 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "08" 2024-02-05 2024-02-14 0.05 22 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "08" 2024-02-05 2024-02-14 0.1 27 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "08" 2024-02-05 2024-02-14 0.15 28.85 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "08" 2024-02-05 2024-02-14 0.2 30.8 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "08" 2024-02-05 2024-02-14 0.25 33 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "08" 2024-02-05 2024-02-14 0.3 34 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "08" 2024-02-05 2024-02-14 0.35 38 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "08" 2024-02-05 2024-02-14 0.4 39 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "08" 2024-02-05 2024-02-14 0.45 41 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "08" 2024-02-05 2024-02-14 0.5 42.5 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "08" 2024-02-05 2024-02-14 0.55 45 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "08" 2024-02-05 2024-02-14 0.6 47.4 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "08" 2024-02-05 2024-02-14 0.65 51 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "08" 2024-02-05 2024-02-14 0.7 54.3 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "08" 2024-02-05 2024-02-14 0.75 58.25 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "08" 2024-02-05 2024-02-14 0.8 64.2 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "08" 2024-02-05 2024-02-14 0.85 68.15 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "08" 2024-02-05 2024-02-14 0.9 74.2 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "08" 2024-02-05 2024-02-14 0.95 88.15 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "08" 2024-02-05 2024-02-14 0.975 94.05 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "08" 2024-02-05 2024-02-14 0.99 97.1300000000001 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "08" 2024-02-05 2024-02-15 0.01 18.97 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "08" 2024-02-05 2024-02-15 0.025 21 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "08" 2024-02-05 2024-02-15 0.05 22 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "08" 2024-02-05 2024-02-15 0.1 28.9 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "08" 2024-02-05 2024-02-15 0.15 32 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "08" 2024-02-05 2024-02-15 0.2 35.8 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "08" 2024-02-05 2024-02-15 0.25 38 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "08" 2024-02-05 2024-02-15 0.3 40.7 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "08" 2024-02-05 2024-02-15 0.35 42 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "08" 2024-02-05 2024-02-15 0.4 43 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "08" 2024-02-05 2024-02-15 0.45 44.55 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "08" 2024-02-05 2024-02-15 0.5 47 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "08" 2024-02-05 2024-02-15 0.55 49 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "08" 2024-02-05 2024-02-15 0.6 52.8 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "08" 2024-02-05 2024-02-15 0.65 56 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "08" 2024-02-05 2024-02-15 0.7 58 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "08" 2024-02-05 2024-02-15 0.75 64 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "08" 2024-02-05 2024-02-15 0.8 67 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "08" 2024-02-05 2024-02-15 0.85 72.2 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "08" 2024-02-05 2024-02-15 0.9 87.1 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "08" 2024-02-05 2024-02-15 0.95 91.1 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "08" 2024-02-05 2024-02-15 0.975 93.525 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "08" 2024-02-05 2024-02-15 0.99 99.3100000000002 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "08" 2024-02-05 2024-02-16 0.01 14.99 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "08" 2024-02-05 2024-02-16 0.025 18.425 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "08" 2024-02-05 2024-02-16 0.05 20.95 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "08" 2024-02-05 2024-02-16 0.1 26.8 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "08" 2024-02-05 2024-02-16 0.15 29 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "08" 2024-02-05 2024-02-16 0.2 31.8 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "08" 2024-02-05 2024-02-16 0.25 34 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "08" 2024-02-05 2024-02-16 0.3 35.7 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "08" 2024-02-05 2024-02-16 0.35 38 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "08" 2024-02-05 2024-02-16 0.4 41 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "08" 2024-02-05 2024-02-16 0.45 42.55 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "08" 2024-02-05 2024-02-16 0.5 44.5 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "08" 2024-02-05 2024-02-16 0.55 46.45 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "08" 2024-02-05 2024-02-16 0.6 50.4 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "08" 2024-02-05 2024-02-16 0.65 53.35 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "08" 2024-02-05 2024-02-16 0.7 56 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "08" 2024-02-05 2024-02-16 0.75 59.25 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "08" 2024-02-05 2024-02-16 0.8 64.6 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "08" 2024-02-05 2024-02-16 0.85 73.45 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "08" 2024-02-05 2024-02-16 0.9 80.1 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "08" 2024-02-05 2024-02-16 0.95 94.05 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "08" 2024-02-05 2024-02-16 0.975 97.575 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "08" 2024-02-05 2024-02-16 0.99 102.14 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "08" 2024-02-05 2024-02-17 0.01 17.99 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "08" 2024-02-05 2024-02-17 0.025 19.425 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "08" 2024-02-05 2024-02-17 0.05 21.95 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "08" 2024-02-05 2024-02-17 0.1 24 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "08" 2024-02-05 2024-02-17 0.15 27 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "08" 2024-02-05 2024-02-17 0.2 29 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "08" 2024-02-05 2024-02-17 0.25 30 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "08" 2024-02-05 2024-02-17 0.3 32 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "08" 2024-02-05 2024-02-17 0.35 35 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "08" 2024-02-05 2024-02-17 0.4 36.6 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "08" 2024-02-05 2024-02-17 0.45 38 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "08" 2024-02-05 2024-02-17 0.5 40 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "08" 2024-02-05 2024-02-17 0.55 44.45 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "08" 2024-02-05 2024-02-17 0.6 47 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "08" 2024-02-05 2024-02-17 0.65 49.35 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "08" 2024-02-05 2024-02-17 0.7 50 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "08" 2024-02-05 2024-02-17 0.75 53.25 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "08" 2024-02-05 2024-02-17 0.8 58.2 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "08" 2024-02-05 2024-02-17 0.85 65.45 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "08" 2024-02-05 2024-02-17 0.9 74.2 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "08" 2024-02-05 2024-02-17 0.95 84.1 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "08" 2024-02-05 2024-02-17 0.975 95.1 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "08" 2024-02-05 2024-02-17 0.99 103.07 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "08" 2024-02-05 2024-02-18 0.01 13 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "08" 2024-02-05 2024-02-18 0.025 17 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "08" 2024-02-05 2024-02-18 0.05 18.95 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "08" 2024-02-05 2024-02-18 0.1 24 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "08" 2024-02-05 2024-02-18 0.15 27.7 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "08" 2024-02-05 2024-02-18 0.2 30.8 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "08" 2024-02-05 2024-02-18 0.25 33.5 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "08" 2024-02-05 2024-02-18 0.3 35.7 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "08" 2024-02-05 2024-02-18 0.35 37 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "08" 2024-02-05 2024-02-18 0.4 39.6 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "08" 2024-02-05 2024-02-18 0.45 43.55 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "08" 2024-02-05 2024-02-18 0.5 46.5 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "08" 2024-02-05 2024-02-18 0.55 49 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "08" 2024-02-05 2024-02-18 0.6 52.8 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "08" 2024-02-05 2024-02-18 0.65 55.35 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "08" 2024-02-05 2024-02-18 0.7 58.3 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "08" 2024-02-05 2024-02-18 0.75 62 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "08" 2024-02-05 2024-02-18 0.8 71 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "08" 2024-02-05 2024-02-18 0.85 78.15 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "08" 2024-02-05 2024-02-18 0.9 83.1 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "08" 2024-02-05 2024-02-18 0.95 103.3 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "08" 2024-02-05 2024-02-18 0.975 109.525 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "08" 2024-02-05 2024-02-18 0.99 135.06 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "08" 2024-02-05 2024-02-19 0.01 18.97 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "08" 2024-02-05 2024-02-19 0.025 21.475 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "08" 2024-02-05 2024-02-19 0.05 22.95 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "08" 2024-02-05 2024-02-19 0.1 26.9 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "08" 2024-02-05 2024-02-19 0.15 30.85 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "08" 2024-02-05 2024-02-19 0.2 33.8 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "08" 2024-02-05 2024-02-19 0.25 35.75 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "08" 2024-02-05 2024-02-19 0.3 38 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "08" 2024-02-05 2024-02-19 0.35 42 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "08" 2024-02-05 2024-02-19 0.4 44 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "08" 2024-02-05 2024-02-19 0.45 46 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "08" 2024-02-05 2024-02-19 0.5 50.5 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "08" 2024-02-05 2024-02-19 0.55 54 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "08" 2024-02-05 2024-02-19 0.6 57 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "08" 2024-02-05 2024-02-19 0.65 60.35 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "08" 2024-02-05 2024-02-19 0.7 64.3 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "08" 2024-02-05 2024-02-19 0.75 67 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "08" 2024-02-05 2024-02-19 0.8 72.6 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "08" 2024-02-05 2024-02-19 0.85 83.45 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "08" 2024-02-05 2024-02-19 0.9 90.6000000000001 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "08" 2024-02-05 2024-02-19 0.95 111.15 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "08" 2024-02-05 2024-02-19 0.975 115.575 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "08" 2024-02-05 2024-02-19 0.99 138.08 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "08" 2024-02-05 2024-02-20 0.01 17.98 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "08" 2024-02-05 2024-02-20 0.025 19.9 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "08" 2024-02-05 2024-02-20 0.05 24 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "08" 2024-02-05 2024-02-20 0.1 26 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "08" 2024-02-05 2024-02-20 0.15 29.85 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "08" 2024-02-05 2024-02-20 0.2 30 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "08" 2024-02-05 2024-02-20 0.25 32 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "08" 2024-02-05 2024-02-20 0.3 34 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "08" 2024-02-05 2024-02-20 0.35 37.3 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "08" 2024-02-05 2024-02-20 0.4 40 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "08" 2024-02-05 2024-02-20 0.45 43.55 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "08" 2024-02-05 2024-02-20 0.5 49 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "08" 2024-02-05 2024-02-20 0.55 52 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "08" 2024-02-05 2024-02-20 0.6 54.6 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "08" 2024-02-05 2024-02-20 0.65 58 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "08" 2024-02-05 2024-02-20 0.7 62.3 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "08" 2024-02-05 2024-02-20 0.75 68.75 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "08" 2024-02-05 2024-02-20 0.8 74.2 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "08" 2024-02-05 2024-02-20 0.85 82.2 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "08" 2024-02-05 2024-02-20 0.9 93.1 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "08" 2024-02-05 2024-02-20 0.95 106.55 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "08" 2024-02-05 2024-02-20 0.975 123.775 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "08" 2024-02-05 2024-02-20 0.99 163.01 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "08" 2024-02-05 2024-02-21 0.01 15.99 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "08" 2024-02-05 2024-02-21 0.025 17.95 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "08" 2024-02-05 2024-02-21 0.05 20.95 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "08" 2024-02-05 2024-02-21 0.1 24 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "08" 2024-02-05 2024-02-21 0.15 27 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "08" 2024-02-05 2024-02-21 0.2 29 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "08" 2024-02-05 2024-02-21 0.25 33 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "08" 2024-02-05 2024-02-21 0.3 34.7 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "08" 2024-02-05 2024-02-21 0.35 37 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "08" 2024-02-05 2024-02-21 0.4 42 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "08" 2024-02-05 2024-02-21 0.45 44 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "08" 2024-02-05 2024-02-21 0.5 46.5 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "08" 2024-02-05 2024-02-21 0.55 50 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "08" 2024-02-05 2024-02-21 0.6 53.4 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "08" 2024-02-05 2024-02-21 0.65 58.35 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "08" 2024-02-05 2024-02-21 0.7 61.6 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "08" 2024-02-05 2024-02-21 0.75 67 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "08" 2024-02-05 2024-02-21 0.8 71 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "08" 2024-02-05 2024-02-21 0.85 74.6 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "08" 2024-02-05 2024-02-21 0.9 99.1 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "08" 2024-02-05 2024-02-21 0.95 108.35 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "08" 2024-02-05 2024-02-21 0.975 131.675 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "08" 2024-02-05 2024-02-21 0.99 144.07 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "08" 2024-02-05 2024-02-22 0.01 14.95 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "08" 2024-02-05 2024-02-22 0.025 16.425 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "08" 2024-02-05 2024-02-22 0.05 20.85 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "08" 2024-02-05 2024-02-22 0.1 23.9 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "08" 2024-02-05 2024-02-22 0.15 29.7 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "08" 2024-02-05 2024-02-22 0.2 33.8 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "08" 2024-02-05 2024-02-22 0.25 37.75 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "08" 2024-02-05 2024-02-22 0.3 40 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "08" 2024-02-05 2024-02-22 0.35 42.3 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "08" 2024-02-05 2024-02-22 0.4 44 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "08" 2024-02-05 2024-02-22 0.45 46.55 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "08" 2024-02-05 2024-02-22 0.5 49 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "08" 2024-02-05 2024-02-22 0.55 53 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "08" 2024-02-05 2024-02-22 0.6 55.4 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "08" 2024-02-05 2024-02-22 0.65 59 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "08" 2024-02-05 2024-02-22 0.7 69.3 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "08" 2024-02-05 2024-02-22 0.75 77 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "08" 2024-02-05 2024-02-22 0.8 82.2 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "08" 2024-02-05 2024-02-22 0.85 90.15 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "08" 2024-02-05 2024-02-22 0.9 100.4 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "08" 2024-02-05 2024-02-22 0.95 113.35 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "08" 2024-02-05 2024-02-22 0.975 154.825 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "08" 2024-02-05 2024-02-22 0.99 168.25 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "08" 2024-02-05 2024-02-23 0.01 9.98 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "08" 2024-02-05 2024-02-23 0.025 13.9 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "08" 2024-02-05 2024-02-23 0.05 20 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "08" 2024-02-05 2024-02-23 0.1 23.9 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "08" 2024-02-05 2024-02-23 0.15 26 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "08" 2024-02-05 2024-02-23 0.2 27.8 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "08" 2024-02-05 2024-02-23 0.25 31.75 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "08" 2024-02-05 2024-02-23 0.3 34 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "08" 2024-02-05 2024-02-23 0.35 36 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "08" 2024-02-05 2024-02-23 0.4 38 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "08" 2024-02-05 2024-02-23 0.45 40 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "08" 2024-02-05 2024-02-23 0.5 43 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "08" 2024-02-05 2024-02-23 0.55 47.8 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "08" 2024-02-05 2024-02-23 0.6 51 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "08" 2024-02-05 2024-02-23 0.65 53.35 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "08" 2024-02-05 2024-02-23 0.7 63.9 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "08" 2024-02-05 2024-02-23 0.75 72.25 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "08" 2024-02-05 2024-02-23 0.8 77 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "08" 2024-02-05 2024-02-23 0.85 89.45 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "08" 2024-02-05 2024-02-23 0.9 98.1 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "08" 2024-02-05 2024-02-23 0.95 126.25 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "08" 2024-02-05 2024-02-23 0.975 140.45 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "08" 2024-02-05 2024-02-23 0.99 164.19 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "08" 2024-02-05 2024-02-24 0.01 10.98 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "08" 2024-02-05 2024-02-24 0.025 13 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "08" 2024-02-05 2024-02-24 0.05 18.9 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "08" 2024-02-05 2024-02-24 0.1 20 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "08" 2024-02-05 2024-02-24 0.15 23.85 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "08" 2024-02-05 2024-02-24 0.2 25 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "08" 2024-02-05 2024-02-24 0.25 28 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "08" 2024-02-05 2024-02-24 0.3 31.7 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "08" 2024-02-05 2024-02-24 0.35 34 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "08" 2024-02-05 2024-02-24 0.4 37 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "08" 2024-02-05 2024-02-24 0.45 39.55 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "08" 2024-02-05 2024-02-24 0.5 44 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "08" 2024-02-05 2024-02-24 0.55 46 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "08" 2024-02-05 2024-02-24 0.6 47 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "08" 2024-02-05 2024-02-24 0.65 52.35 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "08" 2024-02-05 2024-02-24 0.7 59.3 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "08" 2024-02-05 2024-02-24 0.75 67.25 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "08" 2024-02-05 2024-02-24 0.8 70.2 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "08" 2024-02-05 2024-02-24 0.85 82 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "08" 2024-02-05 2024-02-24 0.9 99.5 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "08" 2024-02-05 2024-02-24 0.95 122.35 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "08" 2024-02-05 2024-02-24 0.975 139.825 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "08" 2024-02-05 2024-02-24 0.99 150.25 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "08" 2024-02-05 2024-02-25 0.01 12.98 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "08" 2024-02-05 2024-02-25 0.025 15.475 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "08" 2024-02-05 2024-02-25 0.05 16 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "08" 2024-02-05 2024-02-25 0.1 22 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "08" 2024-02-05 2024-02-25 0.15 26.85 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "08" 2024-02-05 2024-02-25 0.2 29 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "08" 2024-02-05 2024-02-25 0.25 31.5 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "08" 2024-02-05 2024-02-25 0.3 34 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "08" 2024-02-05 2024-02-25 0.35 36 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "08" 2024-02-05 2024-02-25 0.4 38 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "08" 2024-02-05 2024-02-25 0.45 43 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "08" 2024-02-05 2024-02-25 0.5 46 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "08" 2024-02-05 2024-02-25 0.55 52.45 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "08" 2024-02-05 2024-02-25 0.6 55.4 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "08" 2024-02-05 2024-02-25 0.65 59.35 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "08" 2024-02-05 2024-02-25 0.7 64 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "08" 2024-02-05 2024-02-25 0.75 68 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "08" 2024-02-05 2024-02-25 0.8 80.2 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "08" 2024-02-05 2024-02-25 0.85 92.3 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "08" 2024-02-05 2024-02-25 0.9 111.1 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "08" 2024-02-05 2024-02-25 0.95 135 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "08" 2024-02-05 2024-02-25 0.975 158.075 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "08" 2024-02-05 2024-02-25 0.99 194.13 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "08" 2024-02-05 2024-02-26 0.01 15 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "08" 2024-02-05 2024-02-26 0.025 16 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "08" 2024-02-05 2024-02-26 0.05 17.95 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "08" 2024-02-05 2024-02-26 0.1 24.9 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "08" 2024-02-05 2024-02-26 0.15 32 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "08" 2024-02-05 2024-02-26 0.2 33.8 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "08" 2024-02-05 2024-02-26 0.25 37 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "08" 2024-02-05 2024-02-26 0.3 40 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "08" 2024-02-05 2024-02-26 0.35 42 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "08" 2024-02-05 2024-02-26 0.4 44 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "08" 2024-02-05 2024-02-26 0.45 50.55 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "08" 2024-02-05 2024-02-26 0.5 55.5 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "08" 2024-02-05 2024-02-26 0.55 56.45 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "08" 2024-02-05 2024-02-26 0.6 66.4 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "08" 2024-02-05 2024-02-26 0.65 70.7 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "08" 2024-02-05 2024-02-26 0.7 74.6 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "08" 2024-02-05 2024-02-26 0.75 82 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "08" 2024-02-05 2024-02-26 0.8 89.2 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "08" 2024-02-05 2024-02-26 0.85 105 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "08" 2024-02-05 2024-02-26 0.9 123.1 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "08" 2024-02-05 2024-02-26 0.95 144.65 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "08" 2024-02-05 2024-02-26 0.975 191.625 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "08" 2024-02-05 2024-02-26 0.99 241.33 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "08" 2024-02-05 2024-02-27 0.01 8 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "08" 2024-02-05 2024-02-27 0.025 17 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "08" 2024-02-05 2024-02-27 0.05 18.95 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "08" 2024-02-05 2024-02-27 0.1 20.9 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "08" 2024-02-05 2024-02-27 0.15 25.55 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "08" 2024-02-05 2024-02-27 0.2 30 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "08" 2024-02-05 2024-02-27 0.25 31 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "08" 2024-02-05 2024-02-27 0.3 34 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "08" 2024-02-05 2024-02-27 0.35 36.65 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "08" 2024-02-05 2024-02-27 0.4 40.6 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "08" 2024-02-05 2024-02-27 0.45 42 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "08" 2024-02-05 2024-02-27 0.5 47 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "08" 2024-02-05 2024-02-27 0.55 53 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "08" 2024-02-05 2024-02-27 0.6 55.4 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "08" 2024-02-05 2024-02-27 0.65 59.7 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "08" 2024-02-05 2024-02-27 0.7 69.6 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "08" 2024-02-05 2024-02-27 0.75 78.5 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "08" 2024-02-05 2024-02-27 0.8 87.2 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "08" 2024-02-05 2024-02-27 0.85 108 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "08" 2024-02-05 2024-02-27 0.9 121.2 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "08" 2024-02-05 2024-02-27 0.95 156.4 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "08" 2024-02-05 2024-02-27 0.975 193.525 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "08" 2024-02-05 2024-02-27 0.99 234.08 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "08" 2024-02-05 2024-02-28 0.01 9 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "08" 2024-02-05 2024-02-28 0.025 14.275 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "08" 2024-02-05 2024-02-28 0.05 19.95 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "08" 2024-02-05 2024-02-28 0.1 22.9 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "08" 2024-02-05 2024-02-28 0.15 25 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "08" 2024-02-05 2024-02-28 0.2 26.8 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "08" 2024-02-05 2024-02-28 0.25 28.75 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "08" 2024-02-05 2024-02-28 0.3 32.7 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "08" 2024-02-05 2024-02-28 0.35 35 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "08" 2024-02-05 2024-02-28 0.4 39 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "08" 2024-02-05 2024-02-28 0.45 42.55 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "08" 2024-02-05 2024-02-28 0.5 48.5 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "08" 2024-02-05 2024-02-28 0.55 51 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "08" 2024-02-05 2024-02-28 0.6 54.4 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "08" 2024-02-05 2024-02-28 0.65 65.35 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "08" 2024-02-05 2024-02-28 0.7 69.9 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "08" 2024-02-05 2024-02-28 0.75 78.25 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "08" 2024-02-05 2024-02-28 0.8 87.2 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "08" 2024-02-05 2024-02-28 0.85 101.35 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "08" 2024-02-05 2024-02-28 0.9 126.1 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "08" 2024-02-05 2024-02-28 0.95 146.6 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "08" 2024-02-05 2024-02-28 0.975 196.975 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "08" 2024-02-05 2024-02-28 0.99 248.49 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "08" 2024-02-05 2024-02-29 0.01 7.98 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "08" 2024-02-05 2024-02-29 0.025 10.85 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "08" 2024-02-05 2024-02-29 0.05 15.95 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "08" 2024-02-05 2024-02-29 0.1 21.9 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "08" 2024-02-05 2024-02-29 0.15 25.85 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "08" 2024-02-05 2024-02-29 0.2 27.8 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "08" 2024-02-05 2024-02-29 0.25 31 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "08" 2024-02-05 2024-02-29 0.3 34.7 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "08" 2024-02-05 2024-02-29 0.35 41.3 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "08" 2024-02-05 2024-02-29 0.4 43.6 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "08" 2024-02-05 2024-02-29 0.45 49.1 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "08" 2024-02-05 2024-02-29 0.5 54 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "08" 2024-02-05 2024-02-29 0.55 57 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "08" 2024-02-05 2024-02-29 0.6 67.8 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "08" 2024-02-05 2024-02-29 0.65 76 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "08" 2024-02-05 2024-02-29 0.7 80.3 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "08" 2024-02-05 2024-02-29 0.75 87.25 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "08" 2024-02-05 2024-02-29 0.8 95.2 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "08" 2024-02-05 2024-02-29 0.85 116 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "08" 2024-02-05 2024-02-29 0.9 138.1 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "08" 2024-02-05 2024-02-29 0.95 178.3 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "08" 2024-02-05 2024-02-29 0.975 202.2 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "08" 2024-02-05 2024-02-29 0.99 283.44 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "08" 2024-02-05 2024-03-01 0.01 8.99 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "08" 2024-02-05 2024-03-01 0.025 12.85 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "08" 2024-02-05 2024-03-01 0.05 17 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "08" 2024-02-05 2024-03-01 0.1 18.9 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "08" 2024-02-05 2024-03-01 0.15 22 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "08" 2024-02-05 2024-03-01 0.2 25 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "08" 2024-02-05 2024-03-01 0.25 28.75 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "08" 2024-02-05 2024-03-01 0.3 32 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "08" 2024-02-05 2024-03-01 0.35 37 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "08" 2024-02-05 2024-03-01 0.4 40 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "08" 2024-02-05 2024-03-01 0.45 44.55 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "08" 2024-02-05 2024-03-01 0.5 48 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "08" 2024-02-05 2024-03-01 0.55 52.35 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "08" 2024-02-05 2024-03-01 0.6 58.4 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "08" 2024-02-05 2024-03-01 0.65 69.35 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "08" 2024-02-05 2024-03-01 0.7 74.3 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "08" 2024-02-05 2024-03-01 0.75 78.25 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "08" 2024-02-05 2024-03-01 0.8 85.2 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "08" 2024-02-05 2024-03-01 0.85 100.15 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "08" 2024-02-05 2024-03-01 0.9 125.3 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "08" 2024-02-05 2024-03-01 0.95 178.05 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "08" 2024-02-05 2024-03-01 0.975 223.499999999999 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "08" 2024-02-05 2024-03-01 0.99 270.54 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "08" 2024-02-05 2024-03-02 0.01 6.98 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "08" 2024-02-05 2024-03-02 0.025 10.95 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "08" 2024-02-05 2024-03-02 0.05 14.9 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "08" 2024-02-05 2024-03-02 0.1 18.9 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "08" 2024-02-05 2024-03-02 0.15 22 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "08" 2024-02-05 2024-03-02 0.2 24 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "08" 2024-02-05 2024-03-02 0.25 26.75 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "08" 2024-02-05 2024-03-02 0.3 31.7 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "08" 2024-02-05 2024-03-02 0.35 33 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "08" 2024-02-05 2024-03-02 0.4 36.2 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "08" 2024-02-05 2024-03-02 0.45 39.55 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "08" 2024-02-05 2024-03-02 0.5 45.5 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "08" 2024-02-05 2024-03-02 0.55 48.45 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "08" 2024-02-05 2024-03-02 0.6 56.4 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "08" 2024-02-05 2024-03-02 0.65 64.7 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "08" 2024-02-05 2024-03-02 0.7 71.3 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "08" 2024-02-05 2024-03-02 0.75 75.5 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "08" 2024-02-05 2024-03-02 0.8 82.2 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "08" 2024-02-05 2024-03-02 0.85 94 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "08" 2024-02-05 2024-03-02 0.9 113.9 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "08" 2024-02-05 2024-03-02 0.95 169.6 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "08" 2024-02-05 2024-03-02 0.975 212.35 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "08" 2024-02-05 2024-03-02 0.99 230.15 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "08" 2024-02-05 2024-03-03 0.01 6 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "08" 2024-02-05 2024-03-03 0.025 9 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "08" 2024-02-05 2024-03-03 0.05 11.95 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "08" 2024-02-05 2024-03-03 0.1 18.7 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "08" 2024-02-05 2024-03-03 0.15 26 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "08" 2024-02-05 2024-03-03 0.2 27.6 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "08" 2024-02-05 2024-03-03 0.25 31 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "08" 2024-02-05 2024-03-03 0.3 33 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "08" 2024-02-05 2024-03-03 0.35 38.65 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "08" 2024-02-05 2024-03-03 0.4 41.2 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "08" 2024-02-05 2024-03-03 0.45 45 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "08" 2024-02-05 2024-03-03 0.5 46.5 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "08" 2024-02-05 2024-03-03 0.55 50.9 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "08" 2024-02-05 2024-03-03 0.6 57.2 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "08" 2024-02-05 2024-03-03 0.65 70 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "08" 2024-02-05 2024-03-03 0.7 72 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "08" 2024-02-05 2024-03-03 0.75 80.0000000000001 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "08" 2024-02-05 2024-03-03 0.8 89.4 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "08" 2024-02-05 2024-03-03 0.85 119.9 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "08" 2024-02-05 2024-03-03 0.9 149.1 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "08" 2024-02-05 2024-03-03 0.95 181.65 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "08" 2024-02-05 2024-03-03 0.975 238.3 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "08" 2024-02-05 2024-03-03 0.99 281.85 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "08" 2024-02-05 2024-03-04 0.01 7.99 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "08" 2024-02-05 2024-03-04 0.025 10.425 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "08" 2024-02-05 2024-03-04 0.05 13.9 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "08" 2024-02-05 2024-03-04 0.1 19.9 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "08" 2024-02-05 2024-03-04 0.15 25.7 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "08" 2024-02-05 2024-03-04 0.2 30 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "08" 2024-02-05 2024-03-04 0.25 34 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "08" 2024-02-05 2024-03-04 0.3 36.7 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "08" 2024-02-05 2024-03-04 0.35 43 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "08" 2024-02-05 2024-03-04 0.4 45.6 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "08" 2024-02-05 2024-03-04 0.45 49 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "08" 2024-02-05 2024-03-04 0.5 54 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "08" 2024-02-05 2024-03-04 0.55 59.9 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "08" 2024-02-05 2024-03-04 0.6 68.4 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "08" 2024-02-05 2024-03-04 0.65 73.35 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "08" 2024-02-05 2024-03-04 0.7 83.3 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "08" 2024-02-05 2024-03-04 0.75 92.0000000000001 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "08" 2024-02-05 2024-03-04 0.8 105.6 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "08" 2024-02-05 2024-03-04 0.85 125.65 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "08" 2024-02-05 2024-03-04 0.9 157.3 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "08" 2024-02-05 2024-03-04 0.95 193.3 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "08" 2024-02-05 2024-03-04 0.975 267.899999999999 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "08" 2024-02-05 2024-03-04 0.99 336.050000000001 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "09" 2024-02-05 2024-02-06 0.01 26.99 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "09" 2024-02-05 2024-02-06 0.025 28.475 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "09" 2024-02-05 2024-02-06 0.05 30.95 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "09" 2024-02-05 2024-02-06 0.1 37.9 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "09" 2024-02-05 2024-02-06 0.15 42.85 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "09" 2024-02-05 2024-02-06 0.2 44.8 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "09" 2024-02-05 2024-02-06 0.25 48.75 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "09" 2024-02-05 2024-02-06 0.3 50.7 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "09" 2024-02-05 2024-02-06 0.35 52 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "09" 2024-02-05 2024-02-06 0.4 54.6 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "09" 2024-02-05 2024-02-06 0.45 56.55 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "09" 2024-02-05 2024-02-06 0.5 59.5 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "09" 2024-02-05 2024-02-06 0.55 64 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "09" 2024-02-05 2024-02-06 0.6 65.8 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "09" 2024-02-05 2024-02-06 0.65 68 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "09" 2024-02-05 2024-02-06 0.7 69 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "09" 2024-02-05 2024-02-06 0.75 72 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "09" 2024-02-05 2024-02-06 0.8 75 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "09" 2024-02-05 2024-02-06 0.85 77 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "09" 2024-02-05 2024-02-06 0.9 80.1 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "09" 2024-02-05 2024-02-06 0.95 87.05 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "09" 2024-02-05 2024-02-06 0.975 98.2999999999999 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "09" 2024-02-05 2024-02-06 0.99 104.04 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "09" 2024-02-05 2024-02-07 0.01 27.97 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "09" 2024-02-05 2024-02-07 0.025 28 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "09" 2024-02-05 2024-02-07 0.05 31.95 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "09" 2024-02-05 2024-02-07 0.1 36 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "09" 2024-02-05 2024-02-07 0.15 39 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "09" 2024-02-05 2024-02-07 0.2 40.8 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "09" 2024-02-05 2024-02-07 0.25 42 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "09" 2024-02-05 2024-02-07 0.3 43 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "09" 2024-02-05 2024-02-07 0.35 46.65 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "09" 2024-02-05 2024-02-07 0.4 49 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "09" 2024-02-05 2024-02-07 0.45 52 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "09" 2024-02-05 2024-02-07 0.5 52.5 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "09" 2024-02-05 2024-02-07 0.55 55 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "09" 2024-02-05 2024-02-07 0.6 57 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "09" 2024-02-05 2024-02-07 0.65 58 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "09" 2024-02-05 2024-02-07 0.7 60.3 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "09" 2024-02-05 2024-02-07 0.75 62 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "09" 2024-02-05 2024-02-07 0.8 65.2 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "09" 2024-02-05 2024-02-07 0.85 69.15 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "09" 2024-02-05 2024-02-07 0.9 76.1 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "09" 2024-02-05 2024-02-07 0.95 83.1 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "09" 2024-02-05 2024-02-07 0.975 85.525 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "09" 2024-02-05 2024-02-07 0.99 98.05 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "09" 2024-02-05 2024-02-08 0.01 31.95 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "09" 2024-02-05 2024-02-08 0.025 32 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "09" 2024-02-05 2024-02-08 0.05 34 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "09" 2024-02-05 2024-02-08 0.1 37.8 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "09" 2024-02-05 2024-02-08 0.15 39.85 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "09" 2024-02-05 2024-02-08 0.2 43 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "09" 2024-02-05 2024-02-08 0.25 45.75 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "09" 2024-02-05 2024-02-08 0.3 49.7 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "09" 2024-02-05 2024-02-08 0.35 52 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "09" 2024-02-05 2024-02-08 0.4 53 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "09" 2024-02-05 2024-02-08 0.45 54 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "09" 2024-02-05 2024-02-08 0.5 56 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "09" 2024-02-05 2024-02-08 0.55 57.45 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "09" 2024-02-05 2024-02-08 0.6 60 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "09" 2024-02-05 2024-02-08 0.65 62 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "09" 2024-02-05 2024-02-08 0.7 63.3 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "09" 2024-02-05 2024-02-08 0.75 67 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "09" 2024-02-05 2024-02-08 0.8 70 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "09" 2024-02-05 2024-02-08 0.85 74 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "09" 2024-02-05 2024-02-08 0.9 79.1 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "09" 2024-02-05 2024-02-08 0.95 82.25 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "09" 2024-02-05 2024-02-08 0.975 91.625 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "09" 2024-02-05 2024-02-08 0.99 95.09 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "09" 2024-02-05 2024-02-09 0.01 25.98 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "09" 2024-02-05 2024-02-09 0.025 30.475 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "09" 2024-02-05 2024-02-09 0.05 33.95 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "09" 2024-02-05 2024-02-09 0.1 38 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "09" 2024-02-05 2024-02-09 0.15 42.7 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "09" 2024-02-05 2024-02-09 0.2 44 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "09" 2024-02-05 2024-02-09 0.25 46 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "09" 2024-02-05 2024-02-09 0.3 47 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "09" 2024-02-05 2024-02-09 0.35 48.65 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "09" 2024-02-05 2024-02-09 0.4 51 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "09" 2024-02-05 2024-02-09 0.45 51.55 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "09" 2024-02-05 2024-02-09 0.5 53 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "09" 2024-02-05 2024-02-09 0.55 55.45 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "09" 2024-02-05 2024-02-09 0.6 57.4 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "09" 2024-02-05 2024-02-09 0.65 60 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "09" 2024-02-05 2024-02-09 0.7 61 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "09" 2024-02-05 2024-02-09 0.75 63.25 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "09" 2024-02-05 2024-02-09 0.8 66 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "09" 2024-02-05 2024-02-09 0.85 71.15 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "09" 2024-02-05 2024-02-09 0.9 75.1 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "09" 2024-02-05 2024-02-09 0.95 81 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "09" 2024-02-05 2024-02-09 0.975 86.7249999999999 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "09" 2024-02-05 2024-02-09 0.99 92.06 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "09" 2024-02-05 2024-02-10 0.01 30.94 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "09" 2024-02-05 2024-02-10 0.025 32 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "09" 2024-02-05 2024-02-10 0.05 35.95 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "09" 2024-02-05 2024-02-10 0.1 40 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "09" 2024-02-05 2024-02-10 0.15 42.85 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "09" 2024-02-05 2024-02-10 0.2 44.8 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "09" 2024-02-05 2024-02-10 0.25 45 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "09" 2024-02-05 2024-02-10 0.3 47 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "09" 2024-02-05 2024-02-10 0.35 48.65 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "09" 2024-02-05 2024-02-10 0.4 50 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "09" 2024-02-05 2024-02-10 0.45 54 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "09" 2024-02-05 2024-02-10 0.5 54.5 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "09" 2024-02-05 2024-02-10 0.55 56 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "09" 2024-02-05 2024-02-10 0.6 58 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "09" 2024-02-05 2024-02-10 0.65 60 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "09" 2024-02-05 2024-02-10 0.7 61 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "09" 2024-02-05 2024-02-10 0.75 63.2500000000001 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "09" 2024-02-05 2024-02-10 0.8 69 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "09" 2024-02-05 2024-02-10 0.85 71 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "09" 2024-02-05 2024-02-10 0.9 72.1 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "09" 2024-02-05 2024-02-10 0.95 77.15 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "09" 2024-02-05 2024-02-10 0.975 85 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "09" 2024-02-05 2024-02-10 0.99 85.06 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "09" 2024-02-05 2024-02-11 0.01 21.93 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "09" 2024-02-05 2024-02-11 0.025 23.475 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "09" 2024-02-05 2024-02-11 0.05 28 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "09" 2024-02-05 2024-02-11 0.1 34 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "09" 2024-02-05 2024-02-11 0.15 37.85 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "09" 2024-02-05 2024-02-11 0.2 41 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "09" 2024-02-05 2024-02-11 0.25 42 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "09" 2024-02-05 2024-02-11 0.3 43 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "09" 2024-02-05 2024-02-11 0.35 44.65 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "09" 2024-02-05 2024-02-11 0.4 45.6 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "09" 2024-02-05 2024-02-11 0.45 47.55 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "09" 2024-02-05 2024-02-11 0.5 49 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "09" 2024-02-05 2024-02-11 0.55 50.45 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "09" 2024-02-05 2024-02-11 0.6 51 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "09" 2024-02-05 2024-02-11 0.65 54 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "09" 2024-02-05 2024-02-11 0.7 57.3 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "09" 2024-02-05 2024-02-11 0.75 60 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "09" 2024-02-05 2024-02-11 0.8 61.2 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "09" 2024-02-05 2024-02-11 0.85 64.15 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "09" 2024-02-05 2024-02-11 0.9 67.1 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "09" 2024-02-05 2024-02-11 0.95 71.1 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "09" 2024-02-05 2024-02-11 0.975 76.1499999999999 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "09" 2024-02-05 2024-02-11 0.99 84.1300000000001 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "09" 2024-02-05 2024-02-12 0.01 25.96 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "09" 2024-02-05 2024-02-12 0.025 26.475 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "09" 2024-02-05 2024-02-12 0.05 31.9 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "09" 2024-02-05 2024-02-12 0.1 36.7 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "09" 2024-02-05 2024-02-12 0.15 38 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "09" 2024-02-05 2024-02-12 0.2 41.8 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "09" 2024-02-05 2024-02-12 0.25 43 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "09" 2024-02-05 2024-02-12 0.3 44.7 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "09" 2024-02-05 2024-02-12 0.35 46.65 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "09" 2024-02-05 2024-02-12 0.4 49 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "09" 2024-02-05 2024-02-12 0.45 50 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "09" 2024-02-05 2024-02-12 0.5 53 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "09" 2024-02-05 2024-02-12 0.55 55 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "09" 2024-02-05 2024-02-12 0.6 55.4 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "09" 2024-02-05 2024-02-12 0.65 57.35 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "09" 2024-02-05 2024-02-12 0.7 60 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "09" 2024-02-05 2024-02-12 0.75 61.25 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "09" 2024-02-05 2024-02-12 0.8 66.2 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "09" 2024-02-05 2024-02-12 0.85 70.15 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "09" 2024-02-05 2024-02-12 0.9 76 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "09" 2024-02-05 2024-02-12 0.95 81.2 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "09" 2024-02-05 2024-02-12 0.975 89 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "09" 2024-02-05 2024-02-12 0.99 93.1800000000001 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "09" 2024-02-05 2024-02-13 0.01 31.99 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "09" 2024-02-05 2024-02-13 0.025 32.475 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "09" 2024-02-05 2024-02-13 0.05 35.85 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "09" 2024-02-05 2024-02-13 0.1 41.7 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "09" 2024-02-05 2024-02-13 0.15 43 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "09" 2024-02-05 2024-02-13 0.2 45 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "09" 2024-02-05 2024-02-13 0.25 47 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "09" 2024-02-05 2024-02-13 0.3 49 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "09" 2024-02-05 2024-02-13 0.35 51.65 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "09" 2024-02-05 2024-02-13 0.4 53.6 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "09" 2024-02-05 2024-02-13 0.45 55 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "09" 2024-02-05 2024-02-13 0.5 56.5 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "09" 2024-02-05 2024-02-13 0.55 59 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "09" 2024-02-05 2024-02-13 0.6 61.4 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "09" 2024-02-05 2024-02-13 0.65 65 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "09" 2024-02-05 2024-02-13 0.7 66 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "09" 2024-02-05 2024-02-13 0.75 69 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "09" 2024-02-05 2024-02-13 0.8 71.2 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "09" 2024-02-05 2024-02-13 0.85 75.15 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "09" 2024-02-05 2024-02-13 0.9 78.1 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "09" 2024-02-05 2024-02-13 0.95 87.1 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "09" 2024-02-05 2024-02-13 0.975 92 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "09" 2024-02-05 2024-02-13 0.99 96.06 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "09" 2024-02-05 2024-02-14 0.01 22.98 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "09" 2024-02-05 2024-02-14 0.025 26.425 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "09" 2024-02-05 2024-02-14 0.05 32.85 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "09" 2024-02-05 2024-02-14 0.1 37 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "09" 2024-02-05 2024-02-14 0.15 42.85 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "09" 2024-02-05 2024-02-14 0.2 44 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "09" 2024-02-05 2024-02-14 0.25 46 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "09" 2024-02-05 2024-02-14 0.3 49 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "09" 2024-02-05 2024-02-14 0.35 51.65 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "09" 2024-02-05 2024-02-14 0.4 53.6 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "09" 2024-02-05 2024-02-14 0.45 56 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "09" 2024-02-05 2024-02-14 0.5 57.5 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "09" 2024-02-05 2024-02-14 0.55 58.45 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "09" 2024-02-05 2024-02-14 0.6 61 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "09" 2024-02-05 2024-02-14 0.65 63 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "09" 2024-02-05 2024-02-14 0.7 64.3 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "09" 2024-02-05 2024-02-14 0.75 68 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "09" 2024-02-05 2024-02-14 0.8 71 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "09" 2024-02-05 2024-02-14 0.85 72.15 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "09" 2024-02-05 2024-02-14 0.9 76.2 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "09" 2024-02-05 2024-02-14 0.95 92.1 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "09" 2024-02-05 2024-02-14 0.975 99.1499999999999 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "09" 2024-02-05 2024-02-14 0.99 104.34 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "09" 2024-02-05 2024-02-15 0.01 29 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "09" 2024-02-05 2024-02-15 0.025 31.9 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "09" 2024-02-05 2024-02-15 0.05 37 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "09" 2024-02-05 2024-02-15 0.1 41.9 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "09" 2024-02-05 2024-02-15 0.15 44.85 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "09" 2024-02-05 2024-02-15 0.2 45.8 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "09" 2024-02-05 2024-02-15 0.25 47 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "09" 2024-02-05 2024-02-15 0.3 47 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "09" 2024-02-05 2024-02-15 0.35 49.65 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "09" 2024-02-05 2024-02-15 0.4 51.2 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "09" 2024-02-05 2024-02-15 0.45 53 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "09" 2024-02-05 2024-02-15 0.5 55 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "09" 2024-02-05 2024-02-15 0.55 56 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "09" 2024-02-05 2024-02-15 0.6 58 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "09" 2024-02-05 2024-02-15 0.65 60.7 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "09" 2024-02-05 2024-02-15 0.7 66.3 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "09" 2024-02-05 2024-02-15 0.75 71 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "09" 2024-02-05 2024-02-15 0.8 72.2 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "09" 2024-02-05 2024-02-15 0.85 74.3 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "09" 2024-02-05 2024-02-15 0.9 79 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "09" 2024-02-05 2024-02-15 0.95 86.15 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "09" 2024-02-05 2024-02-15 0.975 92 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "09" 2024-02-05 2024-02-15 0.99 97.1400000000001 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "09" 2024-02-05 2024-02-16 0.01 28.99 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "09" 2024-02-05 2024-02-16 0.025 29 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "09" 2024-02-05 2024-02-16 0.05 29.95 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "09" 2024-02-05 2024-02-16 0.1 33.8 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "09" 2024-02-05 2024-02-16 0.15 40.55 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "09" 2024-02-05 2024-02-16 0.2 44 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "09" 2024-02-05 2024-02-16 0.25 45 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "09" 2024-02-05 2024-02-16 0.3 46.7 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "09" 2024-02-05 2024-02-16 0.35 48.65 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "09" 2024-02-05 2024-02-16 0.4 49 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "09" 2024-02-05 2024-02-16 0.45 51.55 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "09" 2024-02-05 2024-02-16 0.5 56.5 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "09" 2024-02-05 2024-02-16 0.55 58.45 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "09" 2024-02-05 2024-02-16 0.6 59.4 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "09" 2024-02-05 2024-02-16 0.65 60 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "09" 2024-02-05 2024-02-16 0.7 61.3 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "09" 2024-02-05 2024-02-16 0.75 64.25 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "09" 2024-02-05 2024-02-16 0.8 69.2 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "09" 2024-02-05 2024-02-16 0.85 72.15 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "09" 2024-02-05 2024-02-16 0.9 79 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "09" 2024-02-05 2024-02-16 0.95 84.05 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "09" 2024-02-05 2024-02-16 0.975 87.575 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "09" 2024-02-05 2024-02-16 0.99 97.06 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "09" 2024-02-05 2024-02-17 0.01 24.97 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "09" 2024-02-05 2024-02-17 0.025 27 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "09" 2024-02-05 2024-02-17 0.05 31.95 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "09" 2024-02-05 2024-02-17 0.1 34 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "09" 2024-02-05 2024-02-17 0.15 36 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "09" 2024-02-05 2024-02-17 0.2 38 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "09" 2024-02-05 2024-02-17 0.25 41 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "09" 2024-02-05 2024-02-17 0.3 44 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "09" 2024-02-05 2024-02-17 0.35 45 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "09" 2024-02-05 2024-02-17 0.4 47.6 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "09" 2024-02-05 2024-02-17 0.45 49 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "09" 2024-02-05 2024-02-17 0.5 52 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "09" 2024-02-05 2024-02-17 0.55 54.45 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "09" 2024-02-05 2024-02-17 0.6 55.4 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "09" 2024-02-05 2024-02-17 0.65 59.7 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "09" 2024-02-05 2024-02-17 0.7 63 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "09" 2024-02-05 2024-02-17 0.75 66 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "09" 2024-02-05 2024-02-17 0.8 69 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "09" 2024-02-05 2024-02-17 0.85 74.15 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "09" 2024-02-05 2024-02-17 0.9 80.1 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "09" 2024-02-05 2024-02-17 0.95 83.1 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "09" 2024-02-05 2024-02-17 0.975 92.1499999999999 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "09" 2024-02-05 2024-02-17 0.99 97.2300000000001 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "09" 2024-02-05 2024-02-18 0.01 23.98 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "09" 2024-02-05 2024-02-18 0.025 27.475 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "09" 2024-02-05 2024-02-18 0.05 29.95 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "09" 2024-02-05 2024-02-18 0.1 33.9 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "09" 2024-02-05 2024-02-18 0.15 35 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "09" 2024-02-05 2024-02-18 0.2 36 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "09" 2024-02-05 2024-02-18 0.25 38.5 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "09" 2024-02-05 2024-02-18 0.3 40 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "09" 2024-02-05 2024-02-18 0.35 41.65 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "09" 2024-02-05 2024-02-18 0.4 43 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "09" 2024-02-05 2024-02-18 0.45 44 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "09" 2024-02-05 2024-02-18 0.5 46 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "09" 2024-02-05 2024-02-18 0.55 49.45 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "09" 2024-02-05 2024-02-18 0.6 52 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "09" 2024-02-05 2024-02-18 0.65 53.35 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "09" 2024-02-05 2024-02-18 0.7 55 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "09" 2024-02-05 2024-02-18 0.75 57.25 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "09" 2024-02-05 2024-02-18 0.8 60 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "09" 2024-02-05 2024-02-18 0.85 63 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "09" 2024-02-05 2024-02-18 0.9 68.1 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "09" 2024-02-05 2024-02-18 0.95 73.05 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "09" 2024-02-05 2024-02-18 0.975 77.575 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "09" 2024-02-05 2024-02-18 0.99 84.2500000000001 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "09" 2024-02-05 2024-02-19 0.01 28.95 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "09" 2024-02-05 2024-02-19 0.025 30 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "09" 2024-02-05 2024-02-19 0.05 33 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "09" 2024-02-05 2024-02-19 0.1 35.9 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "09" 2024-02-05 2024-02-19 0.15 38 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "09" 2024-02-05 2024-02-19 0.2 40.8 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "09" 2024-02-05 2024-02-19 0.25 42 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "09" 2024-02-05 2024-02-19 0.3 43 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "09" 2024-02-05 2024-02-19 0.35 46.65 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "09" 2024-02-05 2024-02-19 0.4 49 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "09" 2024-02-05 2024-02-19 0.45 50 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "09" 2024-02-05 2024-02-19 0.5 52 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "09" 2024-02-05 2024-02-19 0.55 53.45 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "09" 2024-02-05 2024-02-19 0.6 55.4 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "09" 2024-02-05 2024-02-19 0.65 56.7 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "09" 2024-02-05 2024-02-19 0.7 61.3 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "09" 2024-02-05 2024-02-19 0.75 63.5 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "09" 2024-02-05 2024-02-19 0.8 68.2 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "09" 2024-02-05 2024-02-19 0.85 75 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "09" 2024-02-05 2024-02-19 0.9 78.2 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "09" 2024-02-05 2024-02-19 0.95 84.4 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "09" 2024-02-05 2024-02-19 0.975 93.525 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "09" 2024-02-05 2024-02-19 0.99 96 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "09" 2024-02-05 2024-02-20 0.01 26.99 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "09" 2024-02-05 2024-02-20 0.025 28.475 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "09" 2024-02-05 2024-02-20 0.05 33 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "09" 2024-02-05 2024-02-20 0.1 38 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "09" 2024-02-05 2024-02-20 0.15 40.85 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "09" 2024-02-05 2024-02-20 0.2 44.6 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "09" 2024-02-05 2024-02-20 0.25 47.75 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "09" 2024-02-05 2024-02-20 0.3 50 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "09" 2024-02-05 2024-02-20 0.35 52 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "09" 2024-02-05 2024-02-20 0.4 54 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "09" 2024-02-05 2024-02-20 0.45 55.55 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "09" 2024-02-05 2024-02-20 0.5 57 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "09" 2024-02-05 2024-02-20 0.55 58.45 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "09" 2024-02-05 2024-02-20 0.6 60.4 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "09" 2024-02-05 2024-02-20 0.65 63 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "09" 2024-02-05 2024-02-20 0.7 65 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "09" 2024-02-05 2024-02-20 0.75 70.25 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "09" 2024-02-05 2024-02-20 0.8 72.2 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "09" 2024-02-05 2024-02-20 0.85 76 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "09" 2024-02-05 2024-02-20 0.9 80 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "09" 2024-02-05 2024-02-20 0.95 86.05 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "09" 2024-02-05 2024-02-20 0.975 88.525 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "09" 2024-02-05 2024-02-20 0.99 89.03 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "09" 2024-02-05 2024-02-21 0.01 27.93 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "09" 2024-02-05 2024-02-21 0.025 30.95 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "09" 2024-02-05 2024-02-21 0.05 33 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "09" 2024-02-05 2024-02-21 0.1 37.9 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "09" 2024-02-05 2024-02-21 0.15 40 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "09" 2024-02-05 2024-02-21 0.2 43 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "09" 2024-02-05 2024-02-21 0.25 43 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "09" 2024-02-05 2024-02-21 0.3 46 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "09" 2024-02-05 2024-02-21 0.35 48 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "09" 2024-02-05 2024-02-21 0.4 48.6 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "09" 2024-02-05 2024-02-21 0.45 50 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "09" 2024-02-05 2024-02-21 0.5 53 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "09" 2024-02-05 2024-02-21 0.55 55 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "09" 2024-02-05 2024-02-21 0.6 59 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "09" 2024-02-05 2024-02-21 0.65 60.35 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "09" 2024-02-05 2024-02-21 0.7 61.6 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "09" 2024-02-05 2024-02-21 0.75 64 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "09" 2024-02-05 2024-02-21 0.8 66 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "09" 2024-02-05 2024-02-21 0.85 70.15 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "09" 2024-02-05 2024-02-21 0.9 75.1 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "09" 2024-02-05 2024-02-21 0.95 79.5 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "09" 2024-02-05 2024-02-21 0.975 93.525 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "09" 2024-02-05 2024-02-21 0.99 98.1700000000001 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "09" 2024-02-05 2024-02-22 0.01 25.92 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "09" 2024-02-05 2024-02-22 0.025 27.95 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "09" 2024-02-05 2024-02-22 0.05 32 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "09" 2024-02-05 2024-02-22 0.1 36 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "09" 2024-02-05 2024-02-22 0.15 40 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "09" 2024-02-05 2024-02-22 0.2 42.8 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "09" 2024-02-05 2024-02-22 0.25 45 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "09" 2024-02-05 2024-02-22 0.3 47 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "09" 2024-02-05 2024-02-22 0.35 48 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "09" 2024-02-05 2024-02-22 0.4 50.6 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "09" 2024-02-05 2024-02-22 0.45 52 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "09" 2024-02-05 2024-02-22 0.5 53 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "09" 2024-02-05 2024-02-22 0.55 55 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "09" 2024-02-05 2024-02-22 0.6 56 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "09" 2024-02-05 2024-02-22 0.65 58 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "09" 2024-02-05 2024-02-22 0.7 59.6 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "09" 2024-02-05 2024-02-22 0.75 65 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "09" 2024-02-05 2024-02-22 0.8 68.4 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "09" 2024-02-05 2024-02-22 0.85 74 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "09" 2024-02-05 2024-02-22 0.9 79.2 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "09" 2024-02-05 2024-02-22 0.95 88.05 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "09" 2024-02-05 2024-02-22 0.975 91.525 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "09" 2024-02-05 2024-02-22 0.99 98.1300000000001 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "09" 2024-02-05 2024-02-23 0.01 22.99 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "09" 2024-02-05 2024-02-23 0.025 28.95 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "09" 2024-02-05 2024-02-23 0.05 31 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "09" 2024-02-05 2024-02-23 0.1 33 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "09" 2024-02-05 2024-02-23 0.15 38.7 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "09" 2024-02-05 2024-02-23 0.2 42 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "09" 2024-02-05 2024-02-23 0.25 44 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "09" 2024-02-05 2024-02-23 0.3 45.7 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "09" 2024-02-05 2024-02-23 0.35 50 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "09" 2024-02-05 2024-02-23 0.4 51 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "09" 2024-02-05 2024-02-23 0.45 54 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "09" 2024-02-05 2024-02-23 0.5 55.5 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "09" 2024-02-05 2024-02-23 0.55 57 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "09" 2024-02-05 2024-02-23 0.6 59 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "09" 2024-02-05 2024-02-23 0.65 61 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "09" 2024-02-05 2024-02-23 0.7 62 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "09" 2024-02-05 2024-02-23 0.75 65 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "09" 2024-02-05 2024-02-23 0.8 69.4 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "09" 2024-02-05 2024-02-23 0.85 74.15 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "09" 2024-02-05 2024-02-23 0.9 80 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "09" 2024-02-05 2024-02-23 0.95 87.05 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "09" 2024-02-05 2024-02-23 0.975 89.05 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "09" 2024-02-05 2024-02-23 0.99 91.1100000000001 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "09" 2024-02-05 2024-02-24 0.01 26.97 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "09" 2024-02-05 2024-02-24 0.025 29 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "09" 2024-02-05 2024-02-24 0.05 31 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "09" 2024-02-05 2024-02-24 0.1 33 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "09" 2024-02-05 2024-02-24 0.15 36 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "09" 2024-02-05 2024-02-24 0.2 38.8 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "09" 2024-02-05 2024-02-24 0.25 40 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "09" 2024-02-05 2024-02-24 0.3 42 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "09" 2024-02-05 2024-02-24 0.35 44 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "09" 2024-02-05 2024-02-24 0.4 46 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "09" 2024-02-05 2024-02-24 0.45 48.55 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "09" 2024-02-05 2024-02-24 0.5 50 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "09" 2024-02-05 2024-02-24 0.55 52 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "09" 2024-02-05 2024-02-24 0.6 53 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "09" 2024-02-05 2024-02-24 0.65 55.35 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "09" 2024-02-05 2024-02-24 0.7 57.3 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "09" 2024-02-05 2024-02-24 0.75 59.25 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "09" 2024-02-05 2024-02-24 0.8 61.2 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "09" 2024-02-05 2024-02-24 0.85 64.15 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "09" 2024-02-05 2024-02-24 0.9 71 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "09" 2024-02-05 2024-02-24 0.95 75.1 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "09" 2024-02-05 2024-02-24 0.975 80.575 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "09" 2024-02-05 2024-02-24 0.99 88.02 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "09" 2024-02-05 2024-02-25 0.01 20.96 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "09" 2024-02-05 2024-02-25 0.025 23.375 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "09" 2024-02-05 2024-02-25 0.05 26.95 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "09" 2024-02-05 2024-02-25 0.1 30 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "09" 2024-02-05 2024-02-25 0.15 32 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "09" 2024-02-05 2024-02-25 0.2 34 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "09" 2024-02-05 2024-02-25 0.25 36.75 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "09" 2024-02-05 2024-02-25 0.3 38 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "09" 2024-02-05 2024-02-25 0.35 40 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "09" 2024-02-05 2024-02-25 0.4 41 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "09" 2024-02-05 2024-02-25 0.45 43.55 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "09" 2024-02-05 2024-02-25 0.5 45.5 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "09" 2024-02-05 2024-02-25 0.55 48.45 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "09" 2024-02-05 2024-02-25 0.6 51 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "09" 2024-02-05 2024-02-25 0.65 53 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "09" 2024-02-05 2024-02-25 0.7 55.3 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "09" 2024-02-05 2024-02-25 0.75 58.25 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "09" 2024-02-05 2024-02-25 0.8 61 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "09" 2024-02-05 2024-02-25 0.85 65 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "09" 2024-02-05 2024-02-25 0.9 69 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "09" 2024-02-05 2024-02-25 0.95 72 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "09" 2024-02-05 2024-02-25 0.975 77.1499999999999 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "09" 2024-02-05 2024-02-25 0.99 80.01 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "09" 2024-02-05 2024-02-26 0.01 26.9 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "09" 2024-02-05 2024-02-26 0.025 30.95 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "09" 2024-02-05 2024-02-26 0.05 33.95 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "09" 2024-02-05 2024-02-26 0.1 35.9 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "09" 2024-02-05 2024-02-26 0.15 38.7 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "09" 2024-02-05 2024-02-26 0.2 40 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "09" 2024-02-05 2024-02-26 0.25 43 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "09" 2024-02-05 2024-02-26 0.3 45 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "09" 2024-02-05 2024-02-26 0.35 46.65 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "09" 2024-02-05 2024-02-26 0.4 48.6 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "09" 2024-02-05 2024-02-26 0.45 50.55 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "09" 2024-02-05 2024-02-26 0.5 52 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "09" 2024-02-05 2024-02-26 0.55 53 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "09" 2024-02-05 2024-02-26 0.6 54 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "09" 2024-02-05 2024-02-26 0.65 58.7 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "09" 2024-02-05 2024-02-26 0.7 65 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "09" 2024-02-05 2024-02-26 0.75 66.25 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "09" 2024-02-05 2024-02-26 0.8 70 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "09" 2024-02-05 2024-02-26 0.85 71.3 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "09" 2024-02-05 2024-02-26 0.9 75 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "09" 2024-02-05 2024-02-26 0.95 80.05 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "09" 2024-02-05 2024-02-26 0.975 87.2499999999999 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "09" 2024-02-05 2024-02-26 0.99 93.1500000000001 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "09" 2024-02-05 2024-02-27 0.01 26.97 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "09" 2024-02-05 2024-02-27 0.025 29.95 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "09" 2024-02-05 2024-02-27 0.05 34.9 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "09" 2024-02-05 2024-02-27 0.1 40.8 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "09" 2024-02-05 2024-02-27 0.15 44 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "09" 2024-02-05 2024-02-27 0.2 45 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "09" 2024-02-05 2024-02-27 0.25 47 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "09" 2024-02-05 2024-02-27 0.3 49 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "09" 2024-02-05 2024-02-27 0.35 50.3 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "09" 2024-02-05 2024-02-27 0.4 52.6 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "09" 2024-02-05 2024-02-27 0.45 55 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "09" 2024-02-05 2024-02-27 0.5 57 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "09" 2024-02-05 2024-02-27 0.55 59 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "09" 2024-02-05 2024-02-27 0.6 61 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "09" 2024-02-05 2024-02-27 0.65 62.35 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "09" 2024-02-05 2024-02-27 0.7 65 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "09" 2024-02-05 2024-02-27 0.75 66.25 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "09" 2024-02-05 2024-02-27 0.8 70 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "09" 2024-02-05 2024-02-27 0.85 72.15 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "09" 2024-02-05 2024-02-27 0.9 75.1 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "09" 2024-02-05 2024-02-27 0.95 87.15 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "09" 2024-02-05 2024-02-27 0.975 91.575 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "09" 2024-02-05 2024-02-27 0.99 94.06 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "09" 2024-02-05 2024-02-28 0.01 24.97 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "09" 2024-02-05 2024-02-28 0.025 27 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "09" 2024-02-05 2024-02-28 0.05 28 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "09" 2024-02-05 2024-02-28 0.1 31.9 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "09" 2024-02-05 2024-02-28 0.15 35.85 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "09" 2024-02-05 2024-02-28 0.2 38.8 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "09" 2024-02-05 2024-02-28 0.25 41 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "09" 2024-02-05 2024-02-28 0.3 44 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "09" 2024-02-05 2024-02-28 0.35 45 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "09" 2024-02-05 2024-02-28 0.4 47 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "09" 2024-02-05 2024-02-28 0.45 50.55 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "09" 2024-02-05 2024-02-28 0.5 52 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "09" 2024-02-05 2024-02-28 0.55 53.45 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "09" 2024-02-05 2024-02-28 0.6 56 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "09" 2024-02-05 2024-02-28 0.65 58.35 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "09" 2024-02-05 2024-02-28 0.7 60 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "09" 2024-02-05 2024-02-28 0.75 62 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "09" 2024-02-05 2024-02-28 0.8 65.2 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "09" 2024-02-05 2024-02-28 0.85 69.3 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "09" 2024-02-05 2024-02-28 0.9 76.1 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "09" 2024-02-05 2024-02-28 0.95 81.05 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "09" 2024-02-05 2024-02-28 0.975 88.7749999999999 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "09" 2024-02-05 2024-02-28 0.99 100.34 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "09" 2024-02-05 2024-02-29 0.01 19.93 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "09" 2024-02-05 2024-02-29 0.025 23.375 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "09" 2024-02-05 2024-02-29 0.05 27 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "09" 2024-02-05 2024-02-29 0.1 34.8 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "09" 2024-02-05 2024-02-29 0.15 37.85 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "09" 2024-02-05 2024-02-29 0.2 40 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "09" 2024-02-05 2024-02-29 0.25 41 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "09" 2024-02-05 2024-02-29 0.3 45.4 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "09" 2024-02-05 2024-02-29 0.35 48 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "09" 2024-02-05 2024-02-29 0.4 50 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "09" 2024-02-05 2024-02-29 0.45 51.55 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "09" 2024-02-05 2024-02-29 0.5 53 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "09" 2024-02-05 2024-02-29 0.55 55.45 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "09" 2024-02-05 2024-02-29 0.6 57.8 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "09" 2024-02-05 2024-02-29 0.65 60.35 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "09" 2024-02-05 2024-02-29 0.7 62.3 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "09" 2024-02-05 2024-02-29 0.75 64.25 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "09" 2024-02-05 2024-02-29 0.8 67 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "09" 2024-02-05 2024-02-29 0.85 70 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "09" 2024-02-05 2024-02-29 0.9 79 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "09" 2024-02-05 2024-02-29 0.95 97 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "09" 2024-02-05 2024-02-29 0.975 98.05 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "09" 2024-02-05 2024-02-29 0.99 100.03 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "09" 2024-02-05 2024-03-01 0.01 22.98 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "09" 2024-02-05 2024-03-01 0.025 27.95 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "09" 2024-02-05 2024-03-01 0.05 30.9 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "09" 2024-02-05 2024-03-01 0.1 32 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "09" 2024-02-05 2024-03-01 0.15 37.7 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "09" 2024-02-05 2024-03-01 0.2 42 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "09" 2024-02-05 2024-03-01 0.25 43 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "09" 2024-02-05 2024-03-01 0.3 46.7 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "09" 2024-02-05 2024-03-01 0.35 50 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "09" 2024-02-05 2024-03-01 0.4 51.6 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "09" 2024-02-05 2024-03-01 0.45 52.55 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "09" 2024-02-05 2024-03-01 0.5 55 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "09" 2024-02-05 2024-03-01 0.55 57 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "09" 2024-02-05 2024-03-01 0.6 58.4 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "09" 2024-02-05 2024-03-01 0.65 60.35 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "09" 2024-02-05 2024-03-01 0.7 63 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "09" 2024-02-05 2024-03-01 0.75 64.25 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "09" 2024-02-05 2024-03-01 0.8 66.2 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "09" 2024-02-05 2024-03-01 0.85 70 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "09" 2024-02-05 2024-03-01 0.9 77.1 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "09" 2024-02-05 2024-03-01 0.95 82.05 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "09" 2024-02-05 2024-03-01 0.975 84.575 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "09" 2024-02-05 2024-03-01 0.99 88.09 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "09" 2024-02-05 2024-03-02 0.01 22 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "09" 2024-02-05 2024-03-02 0.025 25.85 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "09" 2024-02-05 2024-03-02 0.05 33 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "09" 2024-02-05 2024-03-02 0.1 34.9 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "09" 2024-02-05 2024-03-02 0.15 37 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "09" 2024-02-05 2024-03-02 0.2 40 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "09" 2024-02-05 2024-03-02 0.25 43 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "09" 2024-02-05 2024-03-02 0.3 45 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "09" 2024-02-05 2024-03-02 0.35 46 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "09" 2024-02-05 2024-03-02 0.4 47.6 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "09" 2024-02-05 2024-03-02 0.45 50 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "09" 2024-02-05 2024-03-02 0.5 52.5 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "09" 2024-02-05 2024-03-02 0.55 54 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "09" 2024-02-05 2024-03-02 0.6 55 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "09" 2024-02-05 2024-03-02 0.65 56 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "09" 2024-02-05 2024-03-02 0.7 57.3 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "09" 2024-02-05 2024-03-02 0.75 61.25 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "09" 2024-02-05 2024-03-02 0.8 62.2 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "09" 2024-02-05 2024-03-02 0.85 68.15 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "09" 2024-02-05 2024-03-02 0.9 73 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "09" 2024-02-05 2024-03-02 0.95 79.2 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "09" 2024-02-05 2024-03-02 0.975 84.05 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "09" 2024-02-05 2024-03-02 0.99 97.1100000000001 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "09" 2024-02-05 2024-03-03 0.01 21 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "09" 2024-02-05 2024-03-03 0.025 23.425 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "09" 2024-02-05 2024-03-03 0.05 26.95 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "09" 2024-02-05 2024-03-03 0.1 29.9 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "09" 2024-02-05 2024-03-03 0.15 32.85 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "09" 2024-02-05 2024-03-03 0.2 35.8 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "09" 2024-02-05 2024-03-03 0.25 38 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "09" 2024-02-05 2024-03-03 0.3 40 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "09" 2024-02-05 2024-03-03 0.35 43 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "09" 2024-02-05 2024-03-03 0.4 44.6 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "09" 2024-02-05 2024-03-03 0.45 46 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "09" 2024-02-05 2024-03-03 0.5 49 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "09" 2024-02-05 2024-03-03 0.55 51 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "09" 2024-02-05 2024-03-03 0.6 53 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "09" 2024-02-05 2024-03-03 0.65 54.35 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "09" 2024-02-05 2024-03-03 0.7 58 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "09" 2024-02-05 2024-03-03 0.75 60 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "09" 2024-02-05 2024-03-03 0.8 63.2 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "09" 2024-02-05 2024-03-03 0.85 68.15 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "09" 2024-02-05 2024-03-03 0.9 73.2 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "09" 2024-02-05 2024-03-03 0.95 80 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "09" 2024-02-05 2024-03-03 0.975 86.05 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "09" 2024-02-05 2024-03-03 0.99 104.07 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "09" 2024-02-05 2024-03-04 0.01 19.99 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "09" 2024-02-05 2024-03-04 0.025 23.425 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "09" 2024-02-05 2024-03-04 0.05 29.9 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "09" 2024-02-05 2024-03-04 0.1 33 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "09" 2024-02-05 2024-03-04 0.15 36.7 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "09" 2024-02-05 2024-03-04 0.2 42 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "09" 2024-02-05 2024-03-04 0.25 45 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "09" 2024-02-05 2024-03-04 0.3 46.7 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "09" 2024-02-05 2024-03-04 0.35 48.65 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "09" 2024-02-05 2024-03-04 0.4 52 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "09" 2024-02-05 2024-03-04 0.45 53 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "09" 2024-02-05 2024-03-04 0.5 54 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "09" 2024-02-05 2024-03-04 0.55 56 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "09" 2024-02-05 2024-03-04 0.6 57.8 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "09" 2024-02-05 2024-03-04 0.65 61 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "09" 2024-02-05 2024-03-04 0.7 63.3 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "09" 2024-02-05 2024-03-04 0.75 66 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "09" 2024-02-05 2024-03-04 0.8 68.2 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "09" 2024-02-05 2024-03-04 0.85 72.15 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "09" 2024-02-05 2024-03-04 0.9 76.1 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "09" 2024-02-05 2024-03-04 0.95 81.2 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "09" 2024-02-05 2024-03-04 0.975 85 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "09" 2024-02-05 2024-03-04 0.99 92.03 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "11" 2024-02-05 2024-02-06 0.01 2.98 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "11" 2024-02-05 2024-02-06 0.025 4 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "11" 2024-02-05 2024-02-06 0.05 4 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "11" 2024-02-05 2024-02-06 0.1 5.9 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "11" 2024-02-05 2024-02-06 0.15 7 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "11" 2024-02-05 2024-02-06 0.2 8 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "11" 2024-02-05 2024-02-06 0.25 8 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "11" 2024-02-05 2024-02-06 0.3 9 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "11" 2024-02-05 2024-02-06 0.35 10 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "11" 2024-02-05 2024-02-06 0.4 11 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "11" 2024-02-05 2024-02-06 0.45 11 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "11" 2024-02-05 2024-02-06 0.5 12 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "11" 2024-02-05 2024-02-06 0.55 13 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "11" 2024-02-05 2024-02-06 0.6 14 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "11" 2024-02-05 2024-02-06 0.65 14 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "11" 2024-02-05 2024-02-06 0.7 15.3 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "11" 2024-02-05 2024-02-06 0.75 17 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "11" 2024-02-05 2024-02-06 0.8 18 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "11" 2024-02-05 2024-02-06 0.85 19 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "11" 2024-02-05 2024-02-06 0.9 20.1 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "11" 2024-02-05 2024-02-06 0.95 22.05 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "11" 2024-02-05 2024-02-06 0.975 23 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "11" 2024-02-05 2024-02-06 0.99 23 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "11" 2024-02-05 2024-02-07 0.01 3 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "11" 2024-02-05 2024-02-07 0.025 4.475 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "11" 2024-02-05 2024-02-07 0.05 6 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "11" 2024-02-05 2024-02-07 0.1 7 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "11" 2024-02-05 2024-02-07 0.15 8 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "11" 2024-02-05 2024-02-07 0.2 9 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "11" 2024-02-05 2024-02-07 0.25 9 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "11" 2024-02-05 2024-02-07 0.3 10 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "11" 2024-02-05 2024-02-07 0.35 10 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "11" 2024-02-05 2024-02-07 0.4 11 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "11" 2024-02-05 2024-02-07 0.45 11 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "11" 2024-02-05 2024-02-07 0.5 12 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "11" 2024-02-05 2024-02-07 0.55 12 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "11" 2024-02-05 2024-02-07 0.6 13 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "11" 2024-02-05 2024-02-07 0.65 14 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "11" 2024-02-05 2024-02-07 0.7 15 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "11" 2024-02-05 2024-02-07 0.75 16 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "11" 2024-02-05 2024-02-07 0.8 17 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "11" 2024-02-05 2024-02-07 0.85 18 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "11" 2024-02-05 2024-02-07 0.9 20.1 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "11" 2024-02-05 2024-02-07 0.95 22 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "11" 2024-02-05 2024-02-07 0.975 23.525 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "11" 2024-02-05 2024-02-07 0.99 25.05 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "11" 2024-02-05 2024-02-08 0.01 2.99 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "11" 2024-02-05 2024-02-08 0.025 4 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "11" 2024-02-05 2024-02-08 0.05 5 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "11" 2024-02-05 2024-02-08 0.1 7 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "11" 2024-02-05 2024-02-08 0.15 7 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "11" 2024-02-05 2024-02-08 0.2 7 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "11" 2024-02-05 2024-02-08 0.25 8 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "11" 2024-02-05 2024-02-08 0.3 8 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "11" 2024-02-05 2024-02-08 0.35 9 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "11" 2024-02-05 2024-02-08 0.4 9 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "11" 2024-02-05 2024-02-08 0.45 10 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "11" 2024-02-05 2024-02-08 0.5 10 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "11" 2024-02-05 2024-02-08 0.55 11 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "11" 2024-02-05 2024-02-08 0.6 11.4 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "11" 2024-02-05 2024-02-08 0.65 12 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "11" 2024-02-05 2024-02-08 0.7 13 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "11" 2024-02-05 2024-02-08 0.75 14 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "11" 2024-02-05 2024-02-08 0.8 15 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "11" 2024-02-05 2024-02-08 0.85 16 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "11" 2024-02-05 2024-02-08 0.9 18.1 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "11" 2024-02-05 2024-02-08 0.95 20.05 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "11" 2024-02-05 2024-02-08 0.975 23.1 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "11" 2024-02-05 2024-02-08 0.99 25.1000000000001 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "11" 2024-02-05 2024-02-09 0.01 3.99 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "11" 2024-02-05 2024-02-09 0.025 4 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "11" 2024-02-05 2024-02-09 0.05 5 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "11" 2024-02-05 2024-02-09 0.1 6 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "11" 2024-02-05 2024-02-09 0.15 7 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "11" 2024-02-05 2024-02-09 0.2 7 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "11" 2024-02-05 2024-02-09 0.25 7 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "11" 2024-02-05 2024-02-09 0.3 8 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "11" 2024-02-05 2024-02-09 0.35 9 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "11" 2024-02-05 2024-02-09 0.4 9 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "11" 2024-02-05 2024-02-09 0.45 10 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "11" 2024-02-05 2024-02-09 0.5 10 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "11" 2024-02-05 2024-02-09 0.55 11 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "11" 2024-02-05 2024-02-09 0.6 11 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "11" 2024-02-05 2024-02-09 0.65 12 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "11" 2024-02-05 2024-02-09 0.7 13 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "11" 2024-02-05 2024-02-09 0.75 14 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "11" 2024-02-05 2024-02-09 0.8 15 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "11" 2024-02-05 2024-02-09 0.85 15 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "11" 2024-02-05 2024-02-09 0.9 16.1 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "11" 2024-02-05 2024-02-09 0.95 21 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "11" 2024-02-05 2024-02-09 0.975 24.625 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "11" 2024-02-05 2024-02-09 0.99 29.03 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "11" 2024-02-05 2024-02-10 0.01 4 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "11" 2024-02-05 2024-02-10 0.025 5 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "11" 2024-02-05 2024-02-10 0.05 5 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "11" 2024-02-05 2024-02-10 0.1 6 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "11" 2024-02-05 2024-02-10 0.15 7.85 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "11" 2024-02-05 2024-02-10 0.2 8 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "11" 2024-02-05 2024-02-10 0.25 9 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "11" 2024-02-05 2024-02-10 0.3 9 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "11" 2024-02-05 2024-02-10 0.35 9 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "11" 2024-02-05 2024-02-10 0.4 9 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "11" 2024-02-05 2024-02-10 0.45 10 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "11" 2024-02-05 2024-02-10 0.5 10 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "11" 2024-02-05 2024-02-10 0.55 11 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "11" 2024-02-05 2024-02-10 0.6 12 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "11" 2024-02-05 2024-02-10 0.65 12 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "11" 2024-02-05 2024-02-10 0.7 13 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "11" 2024-02-05 2024-02-10 0.75 14 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "11" 2024-02-05 2024-02-10 0.8 14 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "11" 2024-02-05 2024-02-10 0.85 15 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "11" 2024-02-05 2024-02-10 0.9 15.2 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "11" 2024-02-05 2024-02-10 0.95 19.05 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "11" 2024-02-05 2024-02-10 0.975 21 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "11" 2024-02-05 2024-02-10 0.99 24.04 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "11" 2024-02-05 2024-02-11 0.01 1 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "11" 2024-02-05 2024-02-11 0.025 3.475 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "11" 2024-02-05 2024-02-11 0.05 4 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "11" 2024-02-05 2024-02-11 0.1 5 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "11" 2024-02-05 2024-02-11 0.15 7 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "11" 2024-02-05 2024-02-11 0.2 8 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "11" 2024-02-05 2024-02-11 0.25 8.75 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "11" 2024-02-05 2024-02-11 0.3 9 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "11" 2024-02-05 2024-02-11 0.35 9 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "11" 2024-02-05 2024-02-11 0.4 10 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "11" 2024-02-05 2024-02-11 0.45 10.55 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "11" 2024-02-05 2024-02-11 0.5 11 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "11" 2024-02-05 2024-02-11 0.55 12 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "11" 2024-02-05 2024-02-11 0.6 13 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "11" 2024-02-05 2024-02-11 0.65 13 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "11" 2024-02-05 2024-02-11 0.7 14 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "11" 2024-02-05 2024-02-11 0.75 14 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "11" 2024-02-05 2024-02-11 0.8 15 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "11" 2024-02-05 2024-02-11 0.85 17 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "11" 2024-02-05 2024-02-11 0.9 19 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "11" 2024-02-05 2024-02-11 0.95 20.05 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "11" 2024-02-05 2024-02-11 0.975 21.525 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "11" 2024-02-05 2024-02-11 0.99 22.01 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "11" 2024-02-05 2024-02-12 0.01 3.97 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "11" 2024-02-05 2024-02-12 0.025 6 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "11" 2024-02-05 2024-02-12 0.05 6.95 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "11" 2024-02-05 2024-02-12 0.1 7.9 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "11" 2024-02-05 2024-02-12 0.15 9 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "11" 2024-02-05 2024-02-12 0.2 10 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "11" 2024-02-05 2024-02-12 0.25 10 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "11" 2024-02-05 2024-02-12 0.3 11 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "11" 2024-02-05 2024-02-12 0.35 11 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "11" 2024-02-05 2024-02-12 0.4 12 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "11" 2024-02-05 2024-02-12 0.45 12 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "11" 2024-02-05 2024-02-12 0.5 13 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "11" 2024-02-05 2024-02-12 0.55 14 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "11" 2024-02-05 2024-02-12 0.6 15 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "11" 2024-02-05 2024-02-12 0.65 15.35 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "11" 2024-02-05 2024-02-12 0.7 17 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "11" 2024-02-05 2024-02-12 0.75 18 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "11" 2024-02-05 2024-02-12 0.8 19 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "11" 2024-02-05 2024-02-12 0.85 20 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "11" 2024-02-05 2024-02-12 0.9 23 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "11" 2024-02-05 2024-02-12 0.95 25 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "11" 2024-02-05 2024-02-12 0.975 29.525 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "11" 2024-02-05 2024-02-12 0.99 34.08 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "11" 2024-02-05 2024-02-13 0.01 2.98 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "11" 2024-02-05 2024-02-13 0.025 4 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "11" 2024-02-05 2024-02-13 0.05 5 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "11" 2024-02-05 2024-02-13 0.1 6.9 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "11" 2024-02-05 2024-02-13 0.15 7 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "11" 2024-02-05 2024-02-13 0.2 8 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "11" 2024-02-05 2024-02-13 0.25 9 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "11" 2024-02-05 2024-02-13 0.3 9.7 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "11" 2024-02-05 2024-02-13 0.35 10 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "11" 2024-02-05 2024-02-13 0.4 10 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "11" 2024-02-05 2024-02-13 0.45 11 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "11" 2024-02-05 2024-02-13 0.5 12 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "11" 2024-02-05 2024-02-13 0.55 13 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "11" 2024-02-05 2024-02-13 0.6 13.4 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "11" 2024-02-05 2024-02-13 0.65 14 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "11" 2024-02-05 2024-02-13 0.7 15 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "11" 2024-02-05 2024-02-13 0.75 15.25 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "11" 2024-02-05 2024-02-13 0.8 16 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "11" 2024-02-05 2024-02-13 0.85 17 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "11" 2024-02-05 2024-02-13 0.9 19 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "11" 2024-02-05 2024-02-13 0.95 21 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "11" 2024-02-05 2024-02-13 0.975 24.525 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "11" 2024-02-05 2024-02-13 0.99 26 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "11" 2024-02-05 2024-02-14 0.01 4 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "11" 2024-02-05 2024-02-14 0.025 5 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "11" 2024-02-05 2024-02-14 0.05 5 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "11" 2024-02-05 2024-02-14 0.1 7 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "11" 2024-02-05 2024-02-14 0.15 8 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "11" 2024-02-05 2024-02-14 0.2 8.8 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "11" 2024-02-05 2024-02-14 0.25 9 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "11" 2024-02-05 2024-02-14 0.3 10 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "11" 2024-02-05 2024-02-14 0.35 10 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "11" 2024-02-05 2024-02-14 0.4 10.6 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "11" 2024-02-05 2024-02-14 0.45 12 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "11" 2024-02-05 2024-02-14 0.5 13 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "11" 2024-02-05 2024-02-14 0.55 14 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "11" 2024-02-05 2024-02-14 0.6 14 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "11" 2024-02-05 2024-02-14 0.65 14.35 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "11" 2024-02-05 2024-02-14 0.7 15 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "11" 2024-02-05 2024-02-14 0.75 15.25 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "11" 2024-02-05 2024-02-14 0.8 17 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "11" 2024-02-05 2024-02-14 0.85 17 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "11" 2024-02-05 2024-02-14 0.9 19.1 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "11" 2024-02-05 2024-02-14 0.95 22.05 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "11" 2024-02-05 2024-02-14 0.975 24.525 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "11" 2024-02-05 2024-02-14 0.99 26.01 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "11" 2024-02-05 2024-02-15 0.01 2.99 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "11" 2024-02-05 2024-02-15 0.025 3 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "11" 2024-02-05 2024-02-15 0.05 4 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "11" 2024-02-05 2024-02-15 0.1 5 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "11" 2024-02-05 2024-02-15 0.15 6 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "11" 2024-02-05 2024-02-15 0.2 6 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "11" 2024-02-05 2024-02-15 0.25 7 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "11" 2024-02-05 2024-02-15 0.3 7.7 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "11" 2024-02-05 2024-02-15 0.35 9 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "11" 2024-02-05 2024-02-15 0.4 9 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "11" 2024-02-05 2024-02-15 0.45 10 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "11" 2024-02-05 2024-02-15 0.5 11 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "11" 2024-02-05 2024-02-15 0.55 11 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "11" 2024-02-05 2024-02-15 0.6 12 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "11" 2024-02-05 2024-02-15 0.65 12.35 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "11" 2024-02-05 2024-02-15 0.7 13.3 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "11" 2024-02-05 2024-02-15 0.75 14 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "11" 2024-02-05 2024-02-15 0.8 15 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "11" 2024-02-05 2024-02-15 0.85 16 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "11" 2024-02-05 2024-02-15 0.9 17.1 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "11" 2024-02-05 2024-02-15 0.95 20.05 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "11" 2024-02-05 2024-02-15 0.975 22.525 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "11" 2024-02-05 2024-02-15 0.99 25.01 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "11" 2024-02-05 2024-02-16 0.01 2 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "11" 2024-02-05 2024-02-16 0.025 3 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "11" 2024-02-05 2024-02-16 0.05 4 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "11" 2024-02-05 2024-02-16 0.1 5 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "11" 2024-02-05 2024-02-16 0.15 5 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "11" 2024-02-05 2024-02-16 0.2 6 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "11" 2024-02-05 2024-02-16 0.25 7 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "11" 2024-02-05 2024-02-16 0.3 7.7 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "11" 2024-02-05 2024-02-16 0.35 8 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "11" 2024-02-05 2024-02-16 0.4 9 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "11" 2024-02-05 2024-02-16 0.45 9.55 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "11" 2024-02-05 2024-02-16 0.5 10 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "11" 2024-02-05 2024-02-16 0.55 11 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "11" 2024-02-05 2024-02-16 0.6 11 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "11" 2024-02-05 2024-02-16 0.65 12 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "11" 2024-02-05 2024-02-16 0.7 13 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "11" 2024-02-05 2024-02-16 0.75 14 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "11" 2024-02-05 2024-02-16 0.8 14 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "11" 2024-02-05 2024-02-16 0.85 15 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "11" 2024-02-05 2024-02-16 0.9 16 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "11" 2024-02-05 2024-02-16 0.95 16 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "11" 2024-02-05 2024-02-16 0.975 17.525 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "11" 2024-02-05 2024-02-16 0.99 20.02 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "11" 2024-02-05 2024-02-17 0.01 3 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "11" 2024-02-05 2024-02-17 0.025 3 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "11" 2024-02-05 2024-02-17 0.05 4 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "11" 2024-02-05 2024-02-17 0.1 5 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "11" 2024-02-05 2024-02-17 0.15 6 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "11" 2024-02-05 2024-02-17 0.2 7.8 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "11" 2024-02-05 2024-02-17 0.25 8 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "11" 2024-02-05 2024-02-17 0.3 8 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "11" 2024-02-05 2024-02-17 0.35 9 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "11" 2024-02-05 2024-02-17 0.4 9 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "11" 2024-02-05 2024-02-17 0.45 10 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "11" 2024-02-05 2024-02-17 0.5 10 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "11" 2024-02-05 2024-02-17 0.55 11 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "11" 2024-02-05 2024-02-17 0.6 11.4 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "11" 2024-02-05 2024-02-17 0.65 12 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "11" 2024-02-05 2024-02-17 0.7 13 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "11" 2024-02-05 2024-02-17 0.75 13.25 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "11" 2024-02-05 2024-02-17 0.8 14 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "11" 2024-02-05 2024-02-17 0.85 15 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "11" 2024-02-05 2024-02-17 0.9 16.1 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "11" 2024-02-05 2024-02-17 0.95 22.05 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "11" 2024-02-05 2024-02-17 0.975 24.525 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "11" 2024-02-05 2024-02-17 0.99 28.04 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "11" 2024-02-05 2024-02-18 0.01 2 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "11" 2024-02-05 2024-02-18 0.025 3.475 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "11" 2024-02-05 2024-02-18 0.05 4 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "11" 2024-02-05 2024-02-18 0.1 5 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "11" 2024-02-05 2024-02-18 0.15 6 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "11" 2024-02-05 2024-02-18 0.2 7 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "11" 2024-02-05 2024-02-18 0.25 8 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "11" 2024-02-05 2024-02-18 0.3 8 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "11" 2024-02-05 2024-02-18 0.35 9 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "11" 2024-02-05 2024-02-18 0.4 9 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "11" 2024-02-05 2024-02-18 0.45 10 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "11" 2024-02-05 2024-02-18 0.5 10 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "11" 2024-02-05 2024-02-18 0.55 11 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "11" 2024-02-05 2024-02-18 0.6 11 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "11" 2024-02-05 2024-02-18 0.65 12 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "11" 2024-02-05 2024-02-18 0.7 12 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "11" 2024-02-05 2024-02-18 0.75 13 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "11" 2024-02-05 2024-02-18 0.8 14 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "11" 2024-02-05 2024-02-18 0.85 16 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "11" 2024-02-05 2024-02-18 0.9 17.1 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "11" 2024-02-05 2024-02-18 0.95 20.05 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "11" 2024-02-05 2024-02-18 0.975 21.525 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "11" 2024-02-05 2024-02-18 0.99 28.01 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "11" 2024-02-05 2024-02-19 0.01 4.99 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "11" 2024-02-05 2024-02-19 0.025 5 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "11" 2024-02-05 2024-02-19 0.05 6 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "11" 2024-02-05 2024-02-19 0.1 7.9 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "11" 2024-02-05 2024-02-19 0.15 9 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "11" 2024-02-05 2024-02-19 0.2 9 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "11" 2024-02-05 2024-02-19 0.25 10 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "11" 2024-02-05 2024-02-19 0.3 11 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "11" 2024-02-05 2024-02-19 0.35 11 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "11" 2024-02-05 2024-02-19 0.4 12 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "11" 2024-02-05 2024-02-19 0.45 12.55 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "11" 2024-02-05 2024-02-19 0.5 13 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "11" 2024-02-05 2024-02-19 0.55 14 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "11" 2024-02-05 2024-02-19 0.6 14 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "11" 2024-02-05 2024-02-19 0.65 15 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "11" 2024-02-05 2024-02-19 0.7 16 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "11" 2024-02-05 2024-02-19 0.75 17 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "11" 2024-02-05 2024-02-19 0.8 18 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "11" 2024-02-05 2024-02-19 0.85 19 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "11" 2024-02-05 2024-02-19 0.9 21 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "11" 2024-02-05 2024-02-19 0.95 25.1 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "11" 2024-02-05 2024-02-19 0.975 27 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "11" 2024-02-05 2024-02-19 0.99 28.04 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "11" 2024-02-05 2024-02-20 0.01 2 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "11" 2024-02-05 2024-02-20 0.025 3.475 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "11" 2024-02-05 2024-02-20 0.05 4.95 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "11" 2024-02-05 2024-02-20 0.1 6 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "11" 2024-02-05 2024-02-20 0.15 7 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "11" 2024-02-05 2024-02-20 0.2 8 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "11" 2024-02-05 2024-02-20 0.25 8.75 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "11" 2024-02-05 2024-02-20 0.3 9.7 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "11" 2024-02-05 2024-02-20 0.35 10 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "11" 2024-02-05 2024-02-20 0.4 11 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "11" 2024-02-05 2024-02-20 0.45 12 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "11" 2024-02-05 2024-02-20 0.5 12 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "11" 2024-02-05 2024-02-20 0.55 13 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "11" 2024-02-05 2024-02-20 0.6 13 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "11" 2024-02-05 2024-02-20 0.65 14 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "11" 2024-02-05 2024-02-20 0.7 15.3 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "11" 2024-02-05 2024-02-20 0.75 16.25 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "11" 2024-02-05 2024-02-20 0.8 18 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "11" 2024-02-05 2024-02-20 0.85 19 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "11" 2024-02-05 2024-02-20 0.9 20 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "11" 2024-02-05 2024-02-20 0.95 24 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "11" 2024-02-05 2024-02-20 0.975 24.525 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "11" 2024-02-05 2024-02-20 0.99 25 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "11" 2024-02-05 2024-02-21 0.01 1.99 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "11" 2024-02-05 2024-02-21 0.025 4 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "11" 2024-02-05 2024-02-21 0.05 4 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "11" 2024-02-05 2024-02-21 0.1 6 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "11" 2024-02-05 2024-02-21 0.15 7 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "11" 2024-02-05 2024-02-21 0.2 8 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "11" 2024-02-05 2024-02-21 0.25 8 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "11" 2024-02-05 2024-02-21 0.3 9 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "11" 2024-02-05 2024-02-21 0.35 9.65000000000001 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "11" 2024-02-05 2024-02-21 0.4 11 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "11" 2024-02-05 2024-02-21 0.45 11 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "11" 2024-02-05 2024-02-21 0.5 12 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "11" 2024-02-05 2024-02-21 0.55 13 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "11" 2024-02-05 2024-02-21 0.6 13 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "11" 2024-02-05 2024-02-21 0.65 14 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "11" 2024-02-05 2024-02-21 0.7 14 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "11" 2024-02-05 2024-02-21 0.75 15 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "11" 2024-02-05 2024-02-21 0.8 17.2 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "11" 2024-02-05 2024-02-21 0.85 20 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "11" 2024-02-05 2024-02-21 0.9 21 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "11" 2024-02-05 2024-02-21 0.95 23.05 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "11" 2024-02-05 2024-02-21 0.975 26 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "11" 2024-02-05 2024-02-21 0.99 26.01 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "11" 2024-02-05 2024-02-22 0.01 2.99 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "11" 2024-02-05 2024-02-22 0.025 3.475 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "11" 2024-02-05 2024-02-22 0.05 4 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "11" 2024-02-05 2024-02-22 0.1 5 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "11" 2024-02-05 2024-02-22 0.15 6 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "11" 2024-02-05 2024-02-22 0.2 7 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "11" 2024-02-05 2024-02-22 0.25 7.75 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "11" 2024-02-05 2024-02-22 0.3 8 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "11" 2024-02-05 2024-02-22 0.35 9 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "11" 2024-02-05 2024-02-22 0.4 10 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "11" 2024-02-05 2024-02-22 0.45 11 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "11" 2024-02-05 2024-02-22 0.5 11 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "11" 2024-02-05 2024-02-22 0.55 11 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "11" 2024-02-05 2024-02-22 0.6 12 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "11" 2024-02-05 2024-02-22 0.65 13 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "11" 2024-02-05 2024-02-22 0.7 13 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "11" 2024-02-05 2024-02-22 0.75 14.25 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "11" 2024-02-05 2024-02-22 0.8 16 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "11" 2024-02-05 2024-02-22 0.85 17 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "11" 2024-02-05 2024-02-22 0.9 18 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "11" 2024-02-05 2024-02-22 0.95 19.05 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "11" 2024-02-05 2024-02-22 0.975 20.525 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "11" 2024-02-05 2024-02-22 0.99 22.01 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "11" 2024-02-05 2024-02-23 0.01 2.99 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "11" 2024-02-05 2024-02-23 0.025 3.475 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "11" 2024-02-05 2024-02-23 0.05 4 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "11" 2024-02-05 2024-02-23 0.1 5.9 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "11" 2024-02-05 2024-02-23 0.15 6.85 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "11" 2024-02-05 2024-02-23 0.2 7 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "11" 2024-02-05 2024-02-23 0.25 7.75 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "11" 2024-02-05 2024-02-23 0.3 8 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "11" 2024-02-05 2024-02-23 0.35 8 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "11" 2024-02-05 2024-02-23 0.4 9 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "11" 2024-02-05 2024-02-23 0.45 9.55 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "11" 2024-02-05 2024-02-23 0.5 10 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "11" 2024-02-05 2024-02-23 0.55 11 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "11" 2024-02-05 2024-02-23 0.6 12 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "11" 2024-02-05 2024-02-23 0.65 13 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "11" 2024-02-05 2024-02-23 0.7 14 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "11" 2024-02-05 2024-02-23 0.75 14.25 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "11" 2024-02-05 2024-02-23 0.8 15.2 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "11" 2024-02-05 2024-02-23 0.85 17 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "11" 2024-02-05 2024-02-23 0.9 19.1 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "11" 2024-02-05 2024-02-23 0.95 22 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "11" 2024-02-05 2024-02-23 0.975 23.525 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "11" 2024-02-05 2024-02-23 0.99 24.06 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "11" 2024-02-05 2024-02-24 0.01 3 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "11" 2024-02-05 2024-02-24 0.025 4 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "11" 2024-02-05 2024-02-24 0.05 4 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "11" 2024-02-05 2024-02-24 0.1 5 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "11" 2024-02-05 2024-02-24 0.15 6 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "11" 2024-02-05 2024-02-24 0.2 6.8 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "11" 2024-02-05 2024-02-24 0.25 7 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "11" 2024-02-05 2024-02-24 0.3 7 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "11" 2024-02-05 2024-02-24 0.35 8 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "11" 2024-02-05 2024-02-24 0.4 9 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "11" 2024-02-05 2024-02-24 0.45 10 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "11" 2024-02-05 2024-02-24 0.5 11 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "11" 2024-02-05 2024-02-24 0.55 11 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "11" 2024-02-05 2024-02-24 0.6 12 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "11" 2024-02-05 2024-02-24 0.65 12 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "11" 2024-02-05 2024-02-24 0.7 13 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "11" 2024-02-05 2024-02-24 0.75 13 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "11" 2024-02-05 2024-02-24 0.8 15 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "11" 2024-02-05 2024-02-24 0.85 16 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "11" 2024-02-05 2024-02-24 0.9 17.2 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "11" 2024-02-05 2024-02-24 0.95 22 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "11" 2024-02-05 2024-02-24 0.975 23.05 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "11" 2024-02-05 2024-02-24 0.99 24.02 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "11" 2024-02-05 2024-02-25 0.01 2 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "11" 2024-02-05 2024-02-25 0.025 3.475 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "11" 2024-02-05 2024-02-25 0.05 4 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "11" 2024-02-05 2024-02-25 0.1 5.9 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "11" 2024-02-05 2024-02-25 0.15 6 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "11" 2024-02-05 2024-02-25 0.2 7 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "11" 2024-02-05 2024-02-25 0.25 7 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "11" 2024-02-05 2024-02-25 0.3 8 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "11" 2024-02-05 2024-02-25 0.35 8 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "11" 2024-02-05 2024-02-25 0.4 9 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "11" 2024-02-05 2024-02-25 0.45 10 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "11" 2024-02-05 2024-02-25 0.5 11 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "11" 2024-02-05 2024-02-25 0.55 11 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "11" 2024-02-05 2024-02-25 0.6 11 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "11" 2024-02-05 2024-02-25 0.65 12 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "11" 2024-02-05 2024-02-25 0.7 13 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "11" 2024-02-05 2024-02-25 0.75 13 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "11" 2024-02-05 2024-02-25 0.8 13 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "11" 2024-02-05 2024-02-25 0.85 14 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "11" 2024-02-05 2024-02-25 0.9 16.1 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "11" 2024-02-05 2024-02-25 0.95 18 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "11" 2024-02-05 2024-02-25 0.975 23.625 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "11" 2024-02-05 2024-02-25 0.99 27.08 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "11" 2024-02-05 2024-02-26 0.01 2.99 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "11" 2024-02-05 2024-02-26 0.025 4.475 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "11" 2024-02-05 2024-02-26 0.05 5.95 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "11" 2024-02-05 2024-02-26 0.1 6.9 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "11" 2024-02-05 2024-02-26 0.15 7 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "11" 2024-02-05 2024-02-26 0.2 8 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "11" 2024-02-05 2024-02-26 0.25 9 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "11" 2024-02-05 2024-02-26 0.3 10 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "11" 2024-02-05 2024-02-26 0.35 10.65 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "11" 2024-02-05 2024-02-26 0.4 11.6 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "11" 2024-02-05 2024-02-26 0.45 12 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "11" 2024-02-05 2024-02-26 0.5 13 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "11" 2024-02-05 2024-02-26 0.55 13 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "11" 2024-02-05 2024-02-26 0.6 14 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "11" 2024-02-05 2024-02-26 0.65 15 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "11" 2024-02-05 2024-02-26 0.7 15 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "11" 2024-02-05 2024-02-26 0.75 16.25 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "11" 2024-02-05 2024-02-26 0.8 17 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "11" 2024-02-05 2024-02-26 0.85 19 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "11" 2024-02-05 2024-02-26 0.9 20 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "11" 2024-02-05 2024-02-26 0.95 22 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "11" 2024-02-05 2024-02-26 0.975 25.525 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "11" 2024-02-05 2024-02-26 0.99 26.02 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "11" 2024-02-05 2024-02-27 0.01 1.99 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "11" 2024-02-05 2024-02-27 0.025 2.475 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "11" 2024-02-05 2024-02-27 0.05 4 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "11" 2024-02-05 2024-02-27 0.1 5 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "11" 2024-02-05 2024-02-27 0.15 6 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "11" 2024-02-05 2024-02-27 0.2 7.8 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "11" 2024-02-05 2024-02-27 0.25 8 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "11" 2024-02-05 2024-02-27 0.3 9 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "11" 2024-02-05 2024-02-27 0.35 10 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "11" 2024-02-05 2024-02-27 0.4 10 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "11" 2024-02-05 2024-02-27 0.45 10 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "11" 2024-02-05 2024-02-27 0.5 11 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "11" 2024-02-05 2024-02-27 0.55 11.45 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "11" 2024-02-05 2024-02-27 0.6 12 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "11" 2024-02-05 2024-02-27 0.65 13 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "11" 2024-02-05 2024-02-27 0.7 14.3 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "11" 2024-02-05 2024-02-27 0.75 16 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "11" 2024-02-05 2024-02-27 0.8 17 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "11" 2024-02-05 2024-02-27 0.85 19 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "11" 2024-02-05 2024-02-27 0.9 21 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "11" 2024-02-05 2024-02-27 0.95 23 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "11" 2024-02-05 2024-02-27 0.975 24.05 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "11" 2024-02-05 2024-02-27 0.99 26.03 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "11" 2024-02-05 2024-02-28 0.01 2.98 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "11" 2024-02-05 2024-02-28 0.025 3.475 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "11" 2024-02-05 2024-02-28 0.05 4.95 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "11" 2024-02-05 2024-02-28 0.1 6 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "11" 2024-02-05 2024-02-28 0.15 7 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "11" 2024-02-05 2024-02-28 0.2 7 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "11" 2024-02-05 2024-02-28 0.25 8 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "11" 2024-02-05 2024-02-28 0.3 8 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "11" 2024-02-05 2024-02-28 0.35 9 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "11" 2024-02-05 2024-02-28 0.4 10 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "11" 2024-02-05 2024-02-28 0.45 11 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "11" 2024-02-05 2024-02-28 0.5 12 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "11" 2024-02-05 2024-02-28 0.55 13 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "11" 2024-02-05 2024-02-28 0.6 13.4 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "11" 2024-02-05 2024-02-28 0.65 15 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "11" 2024-02-05 2024-02-28 0.7 15 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "11" 2024-02-05 2024-02-28 0.75 16 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "11" 2024-02-05 2024-02-28 0.8 17.2 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "11" 2024-02-05 2024-02-28 0.85 19 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "11" 2024-02-05 2024-02-28 0.9 20 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "11" 2024-02-05 2024-02-28 0.95 22.05 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "11" 2024-02-05 2024-02-28 0.975 25.05 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "11" 2024-02-05 2024-02-28 0.99 29.02 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "11" 2024-02-05 2024-02-29 0.01 2.99 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "11" 2024-02-05 2024-02-29 0.025 3 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "11" 2024-02-05 2024-02-29 0.05 3.95 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "11" 2024-02-05 2024-02-29 0.1 5 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "11" 2024-02-05 2024-02-29 0.15 6 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "11" 2024-02-05 2024-02-29 0.2 7 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "11" 2024-02-05 2024-02-29 0.25 8 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "11" 2024-02-05 2024-02-29 0.3 8 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "11" 2024-02-05 2024-02-29 0.35 9.65000000000001 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "11" 2024-02-05 2024-02-29 0.4 10 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "11" 2024-02-05 2024-02-29 0.45 11 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "11" 2024-02-05 2024-02-29 0.5 11 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "11" 2024-02-05 2024-02-29 0.55 12 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "11" 2024-02-05 2024-02-29 0.6 12.4 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "11" 2024-02-05 2024-02-29 0.65 13 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "11" 2024-02-05 2024-02-29 0.7 14 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "11" 2024-02-05 2024-02-29 0.75 14 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "11" 2024-02-05 2024-02-29 0.8 15 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "11" 2024-02-05 2024-02-29 0.85 16.15 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "11" 2024-02-05 2024-02-29 0.9 18.1 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "11" 2024-02-05 2024-02-29 0.95 23.05 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "11" 2024-02-05 2024-02-29 0.975 26.05 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "11" 2024-02-05 2024-02-29 0.99 31.01 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "11" 2024-02-05 2024-03-01 0.01 1.99 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "11" 2024-02-05 2024-03-01 0.025 3 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "11" 2024-02-05 2024-03-01 0.05 3.95 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "11" 2024-02-05 2024-03-01 0.1 4 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "11" 2024-02-05 2024-03-01 0.15 5 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "11" 2024-02-05 2024-03-01 0.2 5.8 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "11" 2024-02-05 2024-03-01 0.25 6.75 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "11" 2024-02-05 2024-03-01 0.3 7 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "11" 2024-02-05 2024-03-01 0.35 8 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "11" 2024-02-05 2024-03-01 0.4 8.6 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "11" 2024-02-05 2024-03-01 0.45 9 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "11" 2024-02-05 2024-03-01 0.5 9.5 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "11" 2024-02-05 2024-03-01 0.55 10 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "11" 2024-02-05 2024-03-01 0.6 10.4 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "11" 2024-02-05 2024-03-01 0.65 11.35 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "11" 2024-02-05 2024-03-01 0.7 12 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "11" 2024-02-05 2024-03-01 0.75 13 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "11" 2024-02-05 2024-03-01 0.8 14 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "11" 2024-02-05 2024-03-01 0.85 16.15 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "11" 2024-02-05 2024-03-01 0.9 18.1 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "11" 2024-02-05 2024-03-01 0.95 21 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "11" 2024-02-05 2024-03-01 0.975 24 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "11" 2024-02-05 2024-03-01 0.99 25.04 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "11" 2024-02-05 2024-03-02 0.01 1.99 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "11" 2024-02-05 2024-03-02 0.025 2 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "11" 2024-02-05 2024-03-02 0.05 3.95 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "11" 2024-02-05 2024-03-02 0.1 4.9 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "11" 2024-02-05 2024-03-02 0.15 5 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "11" 2024-02-05 2024-03-02 0.2 5.8 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "11" 2024-02-05 2024-03-02 0.25 6 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "11" 2024-02-05 2024-03-02 0.3 6.7 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "11" 2024-02-05 2024-03-02 0.35 8 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "11" 2024-02-05 2024-03-02 0.4 8 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "11" 2024-02-05 2024-03-02 0.45 9 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "11" 2024-02-05 2024-03-02 0.5 9.5 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "11" 2024-02-05 2024-03-02 0.55 10 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "11" 2024-02-05 2024-03-02 0.6 11 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "11" 2024-02-05 2024-03-02 0.65 12 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "11" 2024-02-05 2024-03-02 0.7 13 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "11" 2024-02-05 2024-03-02 0.75 14 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "11" 2024-02-05 2024-03-02 0.8 14.2 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "11" 2024-02-05 2024-03-02 0.85 15.15 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "11" 2024-02-05 2024-03-02 0.9 18 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "11" 2024-02-05 2024-03-02 0.95 20.05 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "11" 2024-02-05 2024-03-02 0.975 23 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "11" 2024-02-05 2024-03-02 0.99 30.01 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "11" 2024-02-05 2024-03-03 0.01 3 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "11" 2024-02-05 2024-03-03 0.025 3 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "11" 2024-02-05 2024-03-03 0.05 4 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "11" 2024-02-05 2024-03-03 0.1 4.9 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "11" 2024-02-05 2024-03-03 0.15 5 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "11" 2024-02-05 2024-03-03 0.2 6 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "11" 2024-02-05 2024-03-03 0.25 7 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "11" 2024-02-05 2024-03-03 0.3 8 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "11" 2024-02-05 2024-03-03 0.35 8 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "11" 2024-02-05 2024-03-03 0.4 9 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "11" 2024-02-05 2024-03-03 0.45 10 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "11" 2024-02-05 2024-03-03 0.5 10 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "11" 2024-02-05 2024-03-03 0.55 11 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "11" 2024-02-05 2024-03-03 0.6 11 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "11" 2024-02-05 2024-03-03 0.65 12 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "11" 2024-02-05 2024-03-03 0.7 12 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "11" 2024-02-05 2024-03-03 0.75 13 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "11" 2024-02-05 2024-03-03 0.8 14.2 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "11" 2024-02-05 2024-03-03 0.85 16 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "11" 2024-02-05 2024-03-03 0.9 18 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "11" 2024-02-05 2024-03-03 0.95 20.05 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "11" 2024-02-05 2024-03-03 0.975 22.525 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "11" 2024-02-05 2024-03-03 0.99 24.01 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "11" 2024-02-05 2024-03-04 0.01 3 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "11" 2024-02-05 2024-03-04 0.025 4 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "11" 2024-02-05 2024-03-04 0.05 5.95 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "11" 2024-02-05 2024-03-04 0.1 6.9 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "11" 2024-02-05 2024-03-04 0.15 7 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "11" 2024-02-05 2024-03-04 0.2 8 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "11" 2024-02-05 2024-03-04 0.25 9 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "11" 2024-02-05 2024-03-04 0.3 10 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "11" 2024-02-05 2024-03-04 0.35 11 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "11" 2024-02-05 2024-03-04 0.4 12 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "11" 2024-02-05 2024-03-04 0.45 12 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "11" 2024-02-05 2024-03-04 0.5 13 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "11" 2024-02-05 2024-03-04 0.55 14 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "11" 2024-02-05 2024-03-04 0.6 14 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "11" 2024-02-05 2024-03-04 0.65 15 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "11" 2024-02-05 2024-03-04 0.7 16 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "11" 2024-02-05 2024-03-04 0.75 17 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "11" 2024-02-05 2024-03-04 0.8 17.2 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "11" 2024-02-05 2024-03-04 0.85 20 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "11" 2024-02-05 2024-03-04 0.9 22.3 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "11" 2024-02-05 2024-03-04 0.95 30.05 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "11" 2024-02-05 2024-03-04 0.975 32.05 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "11" 2024-02-05 2024-03-04 0.99 35 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "10" 2024-02-05 2024-02-06 0.01 2.98 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "10" 2024-02-05 2024-02-06 0.025 4 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "10" 2024-02-05 2024-02-06 0.05 4 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "10" 2024-02-05 2024-02-06 0.1 5 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "10" 2024-02-05 2024-02-06 0.15 5 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "10" 2024-02-05 2024-02-06 0.2 6 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "10" 2024-02-05 2024-02-06 0.25 6.75 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "10" 2024-02-05 2024-02-06 0.3 8 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "10" 2024-02-05 2024-02-06 0.35 8 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "10" 2024-02-05 2024-02-06 0.4 9 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "10" 2024-02-05 2024-02-06 0.45 9.55 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "10" 2024-02-05 2024-02-06 0.5 10 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "10" 2024-02-05 2024-02-06 0.55 10 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "10" 2024-02-05 2024-02-06 0.6 11 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "10" 2024-02-05 2024-02-06 0.65 12 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "10" 2024-02-05 2024-02-06 0.7 12 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "10" 2024-02-05 2024-02-06 0.75 12 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "10" 2024-02-05 2024-02-06 0.8 13 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "10" 2024-02-05 2024-02-06 0.85 14 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "10" 2024-02-05 2024-02-06 0.9 15 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "10" 2024-02-05 2024-02-06 0.95 16 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "10" 2024-02-05 2024-02-06 0.975 19.05 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "10" 2024-02-05 2024-02-06 0.99 20 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "10" 2024-02-05 2024-02-07 0.01 1 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "10" 2024-02-05 2024-02-07 0.025 1.95 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "10" 2024-02-05 2024-02-07 0.05 3 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "10" 2024-02-05 2024-02-07 0.1 4 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "10" 2024-02-05 2024-02-07 0.15 5 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "10" 2024-02-05 2024-02-07 0.2 6 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "10" 2024-02-05 2024-02-07 0.25 6 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "10" 2024-02-05 2024-02-07 0.3 7 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "10" 2024-02-05 2024-02-07 0.35 7 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "10" 2024-02-05 2024-02-07 0.4 7 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "10" 2024-02-05 2024-02-07 0.45 8 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "10" 2024-02-05 2024-02-07 0.5 8 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "10" 2024-02-05 2024-02-07 0.55 8.45 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "10" 2024-02-05 2024-02-07 0.6 9 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "10" 2024-02-05 2024-02-07 0.65 10 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "10" 2024-02-05 2024-02-07 0.7 10 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "10" 2024-02-05 2024-02-07 0.75 11 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "10" 2024-02-05 2024-02-07 0.8 11 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "10" 2024-02-05 2024-02-07 0.85 12 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "10" 2024-02-05 2024-02-07 0.9 14 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "10" 2024-02-05 2024-02-07 0.95 15.05 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "10" 2024-02-05 2024-02-07 0.975 16 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "10" 2024-02-05 2024-02-07 0.99 17.06 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "10" 2024-02-05 2024-02-08 0.01 2.99 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "10" 2024-02-05 2024-02-08 0.025 3 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "10" 2024-02-05 2024-02-08 0.05 4 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "10" 2024-02-05 2024-02-08 0.1 4 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "10" 2024-02-05 2024-02-08 0.15 5 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "10" 2024-02-05 2024-02-08 0.2 5 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "10" 2024-02-05 2024-02-08 0.25 6 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "10" 2024-02-05 2024-02-08 0.3 6.7 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "10" 2024-02-05 2024-02-08 0.35 7 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "10" 2024-02-05 2024-02-08 0.4 7 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "10" 2024-02-05 2024-02-08 0.45 8 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "10" 2024-02-05 2024-02-08 0.5 8 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "10" 2024-02-05 2024-02-08 0.55 9 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "10" 2024-02-05 2024-02-08 0.6 9 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "10" 2024-02-05 2024-02-08 0.65 10 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "10" 2024-02-05 2024-02-08 0.7 11 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "10" 2024-02-05 2024-02-08 0.75 11 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "10" 2024-02-05 2024-02-08 0.8 12.2 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "10" 2024-02-05 2024-02-08 0.85 14 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "10" 2024-02-05 2024-02-08 0.9 15 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "10" 2024-02-05 2024-02-08 0.95 16.05 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "10" 2024-02-05 2024-02-08 0.975 19 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "10" 2024-02-05 2024-02-08 0.99 19.01 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "10" 2024-02-05 2024-02-09 0.01 0.99 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "10" 2024-02-05 2024-02-09 0.025 2 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "10" 2024-02-05 2024-02-09 0.05 2.95 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "10" 2024-02-05 2024-02-09 0.1 4 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "10" 2024-02-05 2024-02-09 0.15 5 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "10" 2024-02-05 2024-02-09 0.2 5 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "10" 2024-02-05 2024-02-09 0.25 6 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "10" 2024-02-05 2024-02-09 0.3 6 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "10" 2024-02-05 2024-02-09 0.35 6 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "10" 2024-02-05 2024-02-09 0.4 7 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "10" 2024-02-05 2024-02-09 0.45 7.55 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "10" 2024-02-05 2024-02-09 0.5 9 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "10" 2024-02-05 2024-02-09 0.55 9 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "10" 2024-02-05 2024-02-09 0.6 9 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "10" 2024-02-05 2024-02-09 0.65 10 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "10" 2024-02-05 2024-02-09 0.7 10 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "10" 2024-02-05 2024-02-09 0.75 11 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "10" 2024-02-05 2024-02-09 0.8 11 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "10" 2024-02-05 2024-02-09 0.85 11.15 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "10" 2024-02-05 2024-02-09 0.9 12.1 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "10" 2024-02-05 2024-02-09 0.95 14 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "10" 2024-02-05 2024-02-09 0.975 15.525 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "10" 2024-02-05 2024-02-09 0.99 16.05 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "10" 2024-02-05 2024-02-10 0.01 2.99 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "10" 2024-02-05 2024-02-10 0.025 3 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "10" 2024-02-05 2024-02-10 0.05 3.95 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "10" 2024-02-05 2024-02-10 0.1 4 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "10" 2024-02-05 2024-02-10 0.15 5 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "10" 2024-02-05 2024-02-10 0.2 6 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "10" 2024-02-05 2024-02-10 0.25 6 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "10" 2024-02-05 2024-02-10 0.3 6 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "10" 2024-02-05 2024-02-10 0.35 7 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "10" 2024-02-05 2024-02-10 0.4 7 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "10" 2024-02-05 2024-02-10 0.45 7 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "10" 2024-02-05 2024-02-10 0.5 8 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "10" 2024-02-05 2024-02-10 0.55 9 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "10" 2024-02-05 2024-02-10 0.6 9 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "10" 2024-02-05 2024-02-10 0.65 10 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "10" 2024-02-05 2024-02-10 0.7 11 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "10" 2024-02-05 2024-02-10 0.75 11 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "10" 2024-02-05 2024-02-10 0.8 12 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "10" 2024-02-05 2024-02-10 0.85 13 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "10" 2024-02-05 2024-02-10 0.9 14 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "10" 2024-02-05 2024-02-10 0.95 15 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "10" 2024-02-05 2024-02-10 0.975 16 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "10" 2024-02-05 2024-02-10 0.99 19.03 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "10" 2024-02-05 2024-02-11 0.01 1.99 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "10" 2024-02-05 2024-02-11 0.025 2 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "10" 2024-02-05 2024-02-11 0.05 2 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "10" 2024-02-05 2024-02-11 0.1 3 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "10" 2024-02-05 2024-02-11 0.15 3 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "10" 2024-02-05 2024-02-11 0.2 3 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "10" 2024-02-05 2024-02-11 0.25 4 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "10" 2024-02-05 2024-02-11 0.3 4 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "10" 2024-02-05 2024-02-11 0.35 5 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "10" 2024-02-05 2024-02-11 0.4 5 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "10" 2024-02-05 2024-02-11 0.45 6 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "10" 2024-02-05 2024-02-11 0.5 7 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "10" 2024-02-05 2024-02-11 0.55 7 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "10" 2024-02-05 2024-02-11 0.6 8 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "10" 2024-02-05 2024-02-11 0.65 8 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "10" 2024-02-05 2024-02-11 0.7 9 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "10" 2024-02-05 2024-02-11 0.75 9 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "10" 2024-02-05 2024-02-11 0.8 10 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "10" 2024-02-05 2024-02-11 0.85 11 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "10" 2024-02-05 2024-02-11 0.9 11.1 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "10" 2024-02-05 2024-02-11 0.95 13 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "10" 2024-02-05 2024-02-11 0.975 15.525 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "10" 2024-02-05 2024-02-11 0.99 17.01 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "10" 2024-02-05 2024-02-12 0.01 1 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "10" 2024-02-05 2024-02-12 0.025 1 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "10" 2024-02-05 2024-02-12 0.05 2 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "10" 2024-02-05 2024-02-12 0.1 3 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "10" 2024-02-05 2024-02-12 0.15 4 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "10" 2024-02-05 2024-02-12 0.2 4 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "10" 2024-02-05 2024-02-12 0.25 5 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "10" 2024-02-05 2024-02-12 0.3 5 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "10" 2024-02-05 2024-02-12 0.35 6 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "10" 2024-02-05 2024-02-12 0.4 6 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "10" 2024-02-05 2024-02-12 0.45 6.55 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "10" 2024-02-05 2024-02-12 0.5 7 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "10" 2024-02-05 2024-02-12 0.55 7 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "10" 2024-02-05 2024-02-12 0.6 8 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "10" 2024-02-05 2024-02-12 0.65 8 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "10" 2024-02-05 2024-02-12 0.7 9 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "10" 2024-02-05 2024-02-12 0.75 10 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "10" 2024-02-05 2024-02-12 0.8 10 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "10" 2024-02-05 2024-02-12 0.85 10.15 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "10" 2024-02-05 2024-02-12 0.9 11.1 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "10" 2024-02-05 2024-02-12 0.95 14.05 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "10" 2024-02-05 2024-02-12 0.975 15.525 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "10" 2024-02-05 2024-02-12 0.99 17.05 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "10" 2024-02-05 2024-02-13 0.01 1 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "10" 2024-02-05 2024-02-13 0.025 2 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "10" 2024-02-05 2024-02-13 0.05 2 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "10" 2024-02-05 2024-02-13 0.1 3 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "10" 2024-02-05 2024-02-13 0.15 4 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "10" 2024-02-05 2024-02-13 0.2 5.8 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "10" 2024-02-05 2024-02-13 0.25 6 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "10" 2024-02-05 2024-02-13 0.3 7 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "10" 2024-02-05 2024-02-13 0.35 7 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "10" 2024-02-05 2024-02-13 0.4 8 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "10" 2024-02-05 2024-02-13 0.45 9 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "10" 2024-02-05 2024-02-13 0.5 9 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "10" 2024-02-05 2024-02-13 0.55 9.45 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "10" 2024-02-05 2024-02-13 0.6 10 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "10" 2024-02-05 2024-02-13 0.65 11 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "10" 2024-02-05 2024-02-13 0.7 11 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "10" 2024-02-05 2024-02-13 0.75 12 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "10" 2024-02-05 2024-02-13 0.8 12 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "10" 2024-02-05 2024-02-13 0.85 13.15 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "10" 2024-02-05 2024-02-13 0.9 14.1 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "10" 2024-02-05 2024-02-13 0.95 17 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "10" 2024-02-05 2024-02-13 0.975 17 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "10" 2024-02-05 2024-02-13 0.99 19.02 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "10" 2024-02-05 2024-02-14 0.01 1.99 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "10" 2024-02-05 2024-02-14 0.025 2 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "10" 2024-02-05 2024-02-14 0.05 2.95 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "10" 2024-02-05 2024-02-14 0.1 3 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "10" 2024-02-05 2024-02-14 0.15 4 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "10" 2024-02-05 2024-02-14 0.2 4 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "10" 2024-02-05 2024-02-14 0.25 5 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "10" 2024-02-05 2024-02-14 0.3 5.7 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "10" 2024-02-05 2024-02-14 0.35 6 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "10" 2024-02-05 2024-02-14 0.4 7 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "10" 2024-02-05 2024-02-14 0.45 7 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "10" 2024-02-05 2024-02-14 0.5 8 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "10" 2024-02-05 2024-02-14 0.55 8 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "10" 2024-02-05 2024-02-14 0.6 8 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "10" 2024-02-05 2024-02-14 0.65 9 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "10" 2024-02-05 2024-02-14 0.7 10 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "10" 2024-02-05 2024-02-14 0.75 10 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "10" 2024-02-05 2024-02-14 0.8 11 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "10" 2024-02-05 2024-02-14 0.85 11 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "10" 2024-02-05 2024-02-14 0.9 12.1 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "10" 2024-02-05 2024-02-14 0.95 14 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "10" 2024-02-05 2024-02-14 0.975 17.05 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "10" 2024-02-05 2024-02-14 0.99 19.06 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "10" 2024-02-05 2024-02-15 0.01 1 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "10" 2024-02-05 2024-02-15 0.025 2 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "10" 2024-02-05 2024-02-15 0.05 3 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "10" 2024-02-05 2024-02-15 0.1 4 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "10" 2024-02-05 2024-02-15 0.15 5 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "10" 2024-02-05 2024-02-15 0.2 5 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "10" 2024-02-05 2024-02-15 0.25 6 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "10" 2024-02-05 2024-02-15 0.3 6 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "10" 2024-02-05 2024-02-15 0.35 6 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "10" 2024-02-05 2024-02-15 0.4 6 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "10" 2024-02-05 2024-02-15 0.45 7 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "10" 2024-02-05 2024-02-15 0.5 7 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "10" 2024-02-05 2024-02-15 0.55 8 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "10" 2024-02-05 2024-02-15 0.6 9 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "10" 2024-02-05 2024-02-15 0.65 9 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "10" 2024-02-05 2024-02-15 0.7 10 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "10" 2024-02-05 2024-02-15 0.75 11 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "10" 2024-02-05 2024-02-15 0.8 11.2 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "10" 2024-02-05 2024-02-15 0.85 13 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "10" 2024-02-05 2024-02-15 0.9 14 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "10" 2024-02-05 2024-02-15 0.95 16 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "10" 2024-02-05 2024-02-15 0.975 17.525 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "10" 2024-02-05 2024-02-15 0.99 19 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "10" 2024-02-05 2024-02-16 0.01 1.99 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "10" 2024-02-05 2024-02-16 0.025 2.475 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "10" 2024-02-05 2024-02-16 0.05 3 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "10" 2024-02-05 2024-02-16 0.1 4 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "10" 2024-02-05 2024-02-16 0.15 4 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "10" 2024-02-05 2024-02-16 0.2 4.8 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "10" 2024-02-05 2024-02-16 0.25 5 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "10" 2024-02-05 2024-02-16 0.3 5 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "10" 2024-02-05 2024-02-16 0.35 6 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "10" 2024-02-05 2024-02-16 0.4 6 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "10" 2024-02-05 2024-02-16 0.45 7 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "10" 2024-02-05 2024-02-16 0.5 7 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "10" 2024-02-05 2024-02-16 0.55 7 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "10" 2024-02-05 2024-02-16 0.6 8 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "10" 2024-02-05 2024-02-16 0.65 8 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "10" 2024-02-05 2024-02-16 0.7 9 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "10" 2024-02-05 2024-02-16 0.75 9 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "10" 2024-02-05 2024-02-16 0.8 10 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "10" 2024-02-05 2024-02-16 0.85 11 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "10" 2024-02-05 2024-02-16 0.9 12 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "10" 2024-02-05 2024-02-16 0.95 13 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "10" 2024-02-05 2024-02-16 0.975 15.1 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "10" 2024-02-05 2024-02-16 0.99 22.03 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "10" 2024-02-05 2024-02-17 0.01 1 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "10" 2024-02-05 2024-02-17 0.025 2.475 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "10" 2024-02-05 2024-02-17 0.05 3.95 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "10" 2024-02-05 2024-02-17 0.1 4 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "10" 2024-02-05 2024-02-17 0.15 4 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "10" 2024-02-05 2024-02-17 0.2 5 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "10" 2024-02-05 2024-02-17 0.25 5.75 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "10" 2024-02-05 2024-02-17 0.3 6 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "10" 2024-02-05 2024-02-17 0.35 6 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "10" 2024-02-05 2024-02-17 0.4 7 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "10" 2024-02-05 2024-02-17 0.45 8 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "10" 2024-02-05 2024-02-17 0.5 8 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "10" 2024-02-05 2024-02-17 0.55 8 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "10" 2024-02-05 2024-02-17 0.6 9 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "10" 2024-02-05 2024-02-17 0.65 9 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "10" 2024-02-05 2024-02-17 0.7 10 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "10" 2024-02-05 2024-02-17 0.75 10 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "10" 2024-02-05 2024-02-17 0.8 11 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "10" 2024-02-05 2024-02-17 0.85 12 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "10" 2024-02-05 2024-02-17 0.9 14 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "10" 2024-02-05 2024-02-17 0.95 15.05 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "10" 2024-02-05 2024-02-17 0.975 17.05 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "10" 2024-02-05 2024-02-17 0.99 19.02 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "10" 2024-02-05 2024-02-18 0.01 0 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "10" 2024-02-05 2024-02-18 0.025 1.475 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "10" 2024-02-05 2024-02-18 0.05 2.95 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "10" 2024-02-05 2024-02-18 0.1 3 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "10" 2024-02-05 2024-02-18 0.15 3.85 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "10" 2024-02-05 2024-02-18 0.2 4 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "10" 2024-02-05 2024-02-18 0.25 4 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "10" 2024-02-05 2024-02-18 0.3 5 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "10" 2024-02-05 2024-02-18 0.35 5 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "10" 2024-02-05 2024-02-18 0.4 6 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "10" 2024-02-05 2024-02-18 0.45 6 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "10" 2024-02-05 2024-02-18 0.5 7 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "10" 2024-02-05 2024-02-18 0.55 7 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "10" 2024-02-05 2024-02-18 0.6 8 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "10" 2024-02-05 2024-02-18 0.65 8 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "10" 2024-02-05 2024-02-18 0.7 8 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "10" 2024-02-05 2024-02-18 0.75 9 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "10" 2024-02-05 2024-02-18 0.8 9 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "10" 2024-02-05 2024-02-18 0.85 10 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "10" 2024-02-05 2024-02-18 0.9 11 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "10" 2024-02-05 2024-02-18 0.95 15 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "10" 2024-02-05 2024-02-18 0.975 19.1 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "10" 2024-02-05 2024-02-18 0.99 21.01 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "10" 2024-02-05 2024-02-19 0.01 1 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "10" 2024-02-05 2024-02-19 0.025 1 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "10" 2024-02-05 2024-02-19 0.05 1 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "10" 2024-02-05 2024-02-19 0.1 2 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "10" 2024-02-05 2024-02-19 0.15 3 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "10" 2024-02-05 2024-02-19 0.2 4 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "10" 2024-02-05 2024-02-19 0.25 4 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "10" 2024-02-05 2024-02-19 0.3 4 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "10" 2024-02-05 2024-02-19 0.35 5 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "10" 2024-02-05 2024-02-19 0.4 5 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "10" 2024-02-05 2024-02-19 0.45 6 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "10" 2024-02-05 2024-02-19 0.5 6 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "10" 2024-02-05 2024-02-19 0.55 7 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "10" 2024-02-05 2024-02-19 0.6 7 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "10" 2024-02-05 2024-02-19 0.65 8 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "10" 2024-02-05 2024-02-19 0.7 9 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "10" 2024-02-05 2024-02-19 0.75 9 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "10" 2024-02-05 2024-02-19 0.8 9 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "10" 2024-02-05 2024-02-19 0.85 10.15 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "10" 2024-02-05 2024-02-19 0.9 12.1 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "10" 2024-02-05 2024-02-19 0.95 16 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "10" 2024-02-05 2024-02-19 0.975 18.525 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "10" 2024-02-05 2024-02-19 0.99 20.08 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "10" 2024-02-05 2024-02-20 0.01 1.99 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "10" 2024-02-05 2024-02-20 0.025 2 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "10" 2024-02-05 2024-02-20 0.05 3 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "10" 2024-02-05 2024-02-20 0.1 4 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "10" 2024-02-05 2024-02-20 0.15 5 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "10" 2024-02-05 2024-02-20 0.2 5 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "10" 2024-02-05 2024-02-20 0.25 6 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "10" 2024-02-05 2024-02-20 0.3 6 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "10" 2024-02-05 2024-02-20 0.35 7 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "10" 2024-02-05 2024-02-20 0.4 7 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "10" 2024-02-05 2024-02-20 0.45 8 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "10" 2024-02-05 2024-02-20 0.5 8 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "10" 2024-02-05 2024-02-20 0.55 8.45 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "10" 2024-02-05 2024-02-20 0.6 9 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "10" 2024-02-05 2024-02-20 0.65 10 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "10" 2024-02-05 2024-02-20 0.7 10 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "10" 2024-02-05 2024-02-20 0.75 11 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "10" 2024-02-05 2024-02-20 0.8 11.2 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "10" 2024-02-05 2024-02-20 0.85 12 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "10" 2024-02-05 2024-02-20 0.9 14.1 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "10" 2024-02-05 2024-02-20 0.95 17 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "10" 2024-02-05 2024-02-20 0.975 17.525 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "10" 2024-02-05 2024-02-20 0.99 18.02 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "10" 2024-02-05 2024-02-21 0.01 0.99 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "10" 2024-02-05 2024-02-21 0.025 2 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "10" 2024-02-05 2024-02-21 0.05 2 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "10" 2024-02-05 2024-02-21 0.1 3 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "10" 2024-02-05 2024-02-21 0.15 4 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "10" 2024-02-05 2024-02-21 0.2 4 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "10" 2024-02-05 2024-02-21 0.25 4 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "10" 2024-02-05 2024-02-21 0.3 5 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "10" 2024-02-05 2024-02-21 0.35 5 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "10" 2024-02-05 2024-02-21 0.4 6 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "10" 2024-02-05 2024-02-21 0.45 6 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "10" 2024-02-05 2024-02-21 0.5 6 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "10" 2024-02-05 2024-02-21 0.55 7 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "10" 2024-02-05 2024-02-21 0.6 7 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "10" 2024-02-05 2024-02-21 0.65 8 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "10" 2024-02-05 2024-02-21 0.7 8 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "10" 2024-02-05 2024-02-21 0.75 9 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "10" 2024-02-05 2024-02-21 0.8 10 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "10" 2024-02-05 2024-02-21 0.85 11 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "10" 2024-02-05 2024-02-21 0.9 13 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "10" 2024-02-05 2024-02-21 0.95 14 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "10" 2024-02-05 2024-02-21 0.975 18.1 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "10" 2024-02-05 2024-02-21 0.99 21.01 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "10" 2024-02-05 2024-02-22 0.01 0 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "10" 2024-02-05 2024-02-22 0.025 1 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "10" 2024-02-05 2024-02-22 0.05 1.95 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "10" 2024-02-05 2024-02-22 0.1 2.9 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "10" 2024-02-05 2024-02-22 0.15 3 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "10" 2024-02-05 2024-02-22 0.2 3.8 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "10" 2024-02-05 2024-02-22 0.25 4 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "10" 2024-02-05 2024-02-22 0.3 4 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "10" 2024-02-05 2024-02-22 0.35 5 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "10" 2024-02-05 2024-02-22 0.4 5 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "10" 2024-02-05 2024-02-22 0.45 6 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "10" 2024-02-05 2024-02-22 0.5 6 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "10" 2024-02-05 2024-02-22 0.55 7 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "10" 2024-02-05 2024-02-22 0.6 7.40000000000001 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "10" 2024-02-05 2024-02-22 0.65 8.35000000000001 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "10" 2024-02-05 2024-02-22 0.7 9 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "10" 2024-02-05 2024-02-22 0.75 10.25 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "10" 2024-02-05 2024-02-22 0.8 11 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "10" 2024-02-05 2024-02-22 0.85 13 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "10" 2024-02-05 2024-02-22 0.9 14 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "10" 2024-02-05 2024-02-22 0.95 17 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "10" 2024-02-05 2024-02-22 0.975 17.525 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "10" 2024-02-05 2024-02-22 0.99 22 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "10" 2024-02-05 2024-02-23 0.01 0 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "10" 2024-02-05 2024-02-23 0.025 1 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "10" 2024-02-05 2024-02-23 0.05 1 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "10" 2024-02-05 2024-02-23 0.1 2 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "10" 2024-02-05 2024-02-23 0.15 2.85 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "10" 2024-02-05 2024-02-23 0.2 3 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "10" 2024-02-05 2024-02-23 0.25 4 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "10" 2024-02-05 2024-02-23 0.3 4 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "10" 2024-02-05 2024-02-23 0.35 4 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "10" 2024-02-05 2024-02-23 0.4 5 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "10" 2024-02-05 2024-02-23 0.45 5.55 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "10" 2024-02-05 2024-02-23 0.5 6 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "10" 2024-02-05 2024-02-23 0.55 7 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "10" 2024-02-05 2024-02-23 0.6 7 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "10" 2024-02-05 2024-02-23 0.65 8 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "10" 2024-02-05 2024-02-23 0.7 8 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "10" 2024-02-05 2024-02-23 0.75 9 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "10" 2024-02-05 2024-02-23 0.8 10 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "10" 2024-02-05 2024-02-23 0.85 11.15 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "10" 2024-02-05 2024-02-23 0.9 12.1 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "10" 2024-02-05 2024-02-23 0.95 14.1 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "10" 2024-02-05 2024-02-23 0.975 17.525 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "10" 2024-02-05 2024-02-23 0.99 21.1600000000001 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "10" 2024-02-05 2024-02-24 0.01 0.99 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "10" 2024-02-05 2024-02-24 0.025 1 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "10" 2024-02-05 2024-02-24 0.05 2 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "10" 2024-02-05 2024-02-24 0.1 3 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "10" 2024-02-05 2024-02-24 0.15 3 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "10" 2024-02-05 2024-02-24 0.2 4 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "10" 2024-02-05 2024-02-24 0.25 4 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "10" 2024-02-05 2024-02-24 0.3 5 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "10" 2024-02-05 2024-02-24 0.35 6 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "10" 2024-02-05 2024-02-24 0.4 7 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "10" 2024-02-05 2024-02-24 0.45 7 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "10" 2024-02-05 2024-02-24 0.5 8 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "10" 2024-02-05 2024-02-24 0.55 8 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "10" 2024-02-05 2024-02-24 0.6 8 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "10" 2024-02-05 2024-02-24 0.65 8.35000000000001 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "10" 2024-02-05 2024-02-24 0.7 9 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "10" 2024-02-05 2024-02-24 0.75 9 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "10" 2024-02-05 2024-02-24 0.8 10 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "10" 2024-02-05 2024-02-24 0.85 12 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "10" 2024-02-05 2024-02-24 0.9 13.1 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "10" 2024-02-05 2024-02-24 0.95 15 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "10" 2024-02-05 2024-02-24 0.975 18.525 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "10" 2024-02-05 2024-02-24 0.99 20.04 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "10" 2024-02-05 2024-02-25 0.01 0 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "10" 2024-02-05 2024-02-25 0.025 0.475 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "10" 2024-02-05 2024-02-25 0.05 1 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "10" 2024-02-05 2024-02-25 0.1 2 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "10" 2024-02-05 2024-02-25 0.15 2 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "10" 2024-02-05 2024-02-25 0.2 3 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "10" 2024-02-05 2024-02-25 0.25 4 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "10" 2024-02-05 2024-02-25 0.3 4 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "10" 2024-02-05 2024-02-25 0.35 4.65000000000001 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "10" 2024-02-05 2024-02-25 0.4 5 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "10" 2024-02-05 2024-02-25 0.45 6 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "10" 2024-02-05 2024-02-25 0.5 6 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "10" 2024-02-05 2024-02-25 0.55 7 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "10" 2024-02-05 2024-02-25 0.6 7 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "10" 2024-02-05 2024-02-25 0.65 8 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "10" 2024-02-05 2024-02-25 0.7 8.30000000000001 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "10" 2024-02-05 2024-02-25 0.75 9 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "10" 2024-02-05 2024-02-25 0.8 10 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "10" 2024-02-05 2024-02-25 0.85 10 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "10" 2024-02-05 2024-02-25 0.9 12 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "10" 2024-02-05 2024-02-25 0.95 15 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "10" 2024-02-05 2024-02-25 0.975 17.1 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "10" 2024-02-05 2024-02-25 0.99 21.04 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "10" 2024-02-05 2024-02-26 0.01 0 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "10" 2024-02-05 2024-02-26 0.025 0.475 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "10" 2024-02-05 2024-02-26 0.05 1 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "10" 2024-02-05 2024-02-26 0.1 1.9 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "10" 2024-02-05 2024-02-26 0.15 2 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "10" 2024-02-05 2024-02-26 0.2 3 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "10" 2024-02-05 2024-02-26 0.25 4 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "10" 2024-02-05 2024-02-26 0.3 4 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "10" 2024-02-05 2024-02-26 0.35 5 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "10" 2024-02-05 2024-02-26 0.4 5 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "10" 2024-02-05 2024-02-26 0.45 5.55 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "10" 2024-02-05 2024-02-26 0.5 6 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "10" 2024-02-05 2024-02-26 0.55 6 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "10" 2024-02-05 2024-02-26 0.6 7 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "10" 2024-02-05 2024-02-26 0.65 7 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "10" 2024-02-05 2024-02-26 0.7 8 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "10" 2024-02-05 2024-02-26 0.75 9 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "10" 2024-02-05 2024-02-26 0.8 9.2 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "10" 2024-02-05 2024-02-26 0.85 11 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "10" 2024-02-05 2024-02-26 0.9 12.1 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "10" 2024-02-05 2024-02-26 0.95 15.15 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "10" 2024-02-05 2024-02-26 0.975 19 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "10" 2024-02-05 2024-02-26 0.99 21.01 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "10" 2024-02-05 2024-02-27 0.01 1 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "10" 2024-02-05 2024-02-27 0.025 2 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "10" 2024-02-05 2024-02-27 0.05 2 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "10" 2024-02-05 2024-02-27 0.1 3 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "10" 2024-02-05 2024-02-27 0.15 4 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "10" 2024-02-05 2024-02-27 0.2 4 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "10" 2024-02-05 2024-02-27 0.25 5 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "10" 2024-02-05 2024-02-27 0.3 5 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "10" 2024-02-05 2024-02-27 0.35 6 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "10" 2024-02-05 2024-02-27 0.4 6 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "10" 2024-02-05 2024-02-27 0.45 6 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "10" 2024-02-05 2024-02-27 0.5 7 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "10" 2024-02-05 2024-02-27 0.55 7 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "10" 2024-02-05 2024-02-27 0.6 8 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "10" 2024-02-05 2024-02-27 0.65 9 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "10" 2024-02-05 2024-02-27 0.7 10 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "10" 2024-02-05 2024-02-27 0.75 11 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "10" 2024-02-05 2024-02-27 0.8 12 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "10" 2024-02-05 2024-02-27 0.85 13 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "10" 2024-02-05 2024-02-27 0.9 14.1 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "10" 2024-02-05 2024-02-27 0.95 17 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "10" 2024-02-05 2024-02-27 0.975 19.525 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "10" 2024-02-05 2024-02-27 0.99 21 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "10" 2024-02-05 2024-02-28 0.01 0 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "10" 2024-02-05 2024-02-28 0.025 1 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "10" 2024-02-05 2024-02-28 0.05 1.95 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "10" 2024-02-05 2024-02-28 0.1 2 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "10" 2024-02-05 2024-02-28 0.15 3 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "10" 2024-02-05 2024-02-28 0.2 3 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "10" 2024-02-05 2024-02-28 0.25 4 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "10" 2024-02-05 2024-02-28 0.3 4.7 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "10" 2024-02-05 2024-02-28 0.35 5 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "10" 2024-02-05 2024-02-28 0.4 6 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "10" 2024-02-05 2024-02-28 0.45 6 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "10" 2024-02-05 2024-02-28 0.5 7 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "10" 2024-02-05 2024-02-28 0.55 8 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "10" 2024-02-05 2024-02-28 0.6 8 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "10" 2024-02-05 2024-02-28 0.65 9 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "10" 2024-02-05 2024-02-28 0.7 9.30000000000001 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "10" 2024-02-05 2024-02-28 0.75 10 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "10" 2024-02-05 2024-02-28 0.8 11 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "10" 2024-02-05 2024-02-28 0.85 12 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "10" 2024-02-05 2024-02-28 0.9 13 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "10" 2024-02-05 2024-02-28 0.95 16 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "10" 2024-02-05 2024-02-28 0.975 17 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "10" 2024-02-05 2024-02-28 0.99 18.03 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "10" 2024-02-05 2024-02-29 0.01 1 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "10" 2024-02-05 2024-02-29 0.025 1 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "10" 2024-02-05 2024-02-29 0.05 2 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "10" 2024-02-05 2024-02-29 0.1 2 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "10" 2024-02-05 2024-02-29 0.15 3 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "10" 2024-02-05 2024-02-29 0.2 3.8 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "10" 2024-02-05 2024-02-29 0.25 4 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "10" 2024-02-05 2024-02-29 0.3 4 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "10" 2024-02-05 2024-02-29 0.35 5 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "10" 2024-02-05 2024-02-29 0.4 5.6 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "10" 2024-02-05 2024-02-29 0.45 6 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "10" 2024-02-05 2024-02-29 0.5 6 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "10" 2024-02-05 2024-02-29 0.55 7 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "10" 2024-02-05 2024-02-29 0.6 7 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "10" 2024-02-05 2024-02-29 0.65 8 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "10" 2024-02-05 2024-02-29 0.7 9 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "10" 2024-02-05 2024-02-29 0.75 9 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "10" 2024-02-05 2024-02-29 0.8 10.2 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "10" 2024-02-05 2024-02-29 0.85 11 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "10" 2024-02-05 2024-02-29 0.9 12.1 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "10" 2024-02-05 2024-02-29 0.95 18 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "10" 2024-02-05 2024-02-29 0.975 19 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "10" 2024-02-05 2024-02-29 0.99 23.08 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "10" 2024-02-05 2024-03-01 0.01 0 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "10" 2024-02-05 2024-03-01 0.025 1 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "10" 2024-02-05 2024-03-01 0.05 1 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "10" 2024-02-05 2024-03-01 0.1 2 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "10" 2024-02-05 2024-03-01 0.15 2 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "10" 2024-02-05 2024-03-01 0.2 3 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "10" 2024-02-05 2024-03-01 0.25 3 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "10" 2024-02-05 2024-03-01 0.3 4 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "10" 2024-02-05 2024-03-01 0.35 4 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "10" 2024-02-05 2024-03-01 0.4 5 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "10" 2024-02-05 2024-03-01 0.45 5.55 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "10" 2024-02-05 2024-03-01 0.5 6 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "10" 2024-02-05 2024-03-01 0.55 7 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "10" 2024-02-05 2024-03-01 0.6 8 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "10" 2024-02-05 2024-03-01 0.65 8 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "10" 2024-02-05 2024-03-01 0.7 9 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "10" 2024-02-05 2024-03-01 0.75 10 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "10" 2024-02-05 2024-03-01 0.8 10 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "10" 2024-02-05 2024-03-01 0.85 11 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "10" 2024-02-05 2024-03-01 0.9 14 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "10" 2024-02-05 2024-03-01 0.95 17.05 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "10" 2024-02-05 2024-03-01 0.975 20.05 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "10" 2024-02-05 2024-03-01 0.99 23.03 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "10" 2024-02-05 2024-03-02 0.01 0 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "10" 2024-02-05 2024-03-02 0.025 1 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "10" 2024-02-05 2024-03-02 0.05 1 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "10" 2024-02-05 2024-03-02 0.1 2 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "10" 2024-02-05 2024-03-02 0.15 2 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "10" 2024-02-05 2024-03-02 0.2 3 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "10" 2024-02-05 2024-03-02 0.25 4 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "10" 2024-02-05 2024-03-02 0.3 5 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "10" 2024-02-05 2024-03-02 0.35 5 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "10" 2024-02-05 2024-03-02 0.4 5.6 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "10" 2024-02-05 2024-03-02 0.45 6 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "10" 2024-02-05 2024-03-02 0.5 7 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "10" 2024-02-05 2024-03-02 0.55 7.45 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "10" 2024-02-05 2024-03-02 0.6 8 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "10" 2024-02-05 2024-03-02 0.65 9 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "10" 2024-02-05 2024-03-02 0.7 9.30000000000001 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "10" 2024-02-05 2024-03-02 0.75 11 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "10" 2024-02-05 2024-03-02 0.8 11.2 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "10" 2024-02-05 2024-03-02 0.85 13 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "10" 2024-02-05 2024-03-02 0.9 15.1 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "10" 2024-02-05 2024-03-02 0.95 16.1 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "10" 2024-02-05 2024-03-02 0.975 19 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "10" 2024-02-05 2024-03-02 0.99 19.02 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "10" 2024-02-05 2024-03-03 0.01 0 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "10" 2024-02-05 2024-03-03 0.025 0.475 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "10" 2024-02-05 2024-03-03 0.05 1 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "10" 2024-02-05 2024-03-03 0.1 1 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "10" 2024-02-05 2024-03-03 0.15 2 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "10" 2024-02-05 2024-03-03 0.2 2 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "10" 2024-02-05 2024-03-03 0.25 3 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "10" 2024-02-05 2024-03-03 0.3 4 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "10" 2024-02-05 2024-03-03 0.35 4 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "10" 2024-02-05 2024-03-03 0.4 5 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "10" 2024-02-05 2024-03-03 0.45 5 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "10" 2024-02-05 2024-03-03 0.5 6 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "10" 2024-02-05 2024-03-03 0.55 6.45 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "10" 2024-02-05 2024-03-03 0.6 7 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "10" 2024-02-05 2024-03-03 0.65 8 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "10" 2024-02-05 2024-03-03 0.7 9 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "10" 2024-02-05 2024-03-03 0.75 9 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "10" 2024-02-05 2024-03-03 0.8 9 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "10" 2024-02-05 2024-03-03 0.85 10 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "10" 2024-02-05 2024-03-03 0.9 11.1 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "10" 2024-02-05 2024-03-03 0.95 13 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "10" 2024-02-05 2024-03-03 0.975 13 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "10" 2024-02-05 2024-03-03 0.99 14.05 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "10" 2024-02-05 2024-03-04 0.01 0 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "10" 2024-02-05 2024-03-04 0.025 0.475 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "10" 2024-02-05 2024-03-04 0.05 1 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "10" 2024-02-05 2024-03-04 0.1 1 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "10" 2024-02-05 2024-03-04 0.15 2 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "10" 2024-02-05 2024-03-04 0.2 3 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "10" 2024-02-05 2024-03-04 0.25 3 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "10" 2024-02-05 2024-03-04 0.3 4 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "10" 2024-02-05 2024-03-04 0.35 4 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "10" 2024-02-05 2024-03-04 0.4 5 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "10" 2024-02-05 2024-03-04 0.45 5 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "10" 2024-02-05 2024-03-04 0.5 6 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "10" 2024-02-05 2024-03-04 0.55 6 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "10" 2024-02-05 2024-03-04 0.6 7 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "10" 2024-02-05 2024-03-04 0.65 8 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "10" 2024-02-05 2024-03-04 0.7 8 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "10" 2024-02-05 2024-03-04 0.75 9 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "10" 2024-02-05 2024-03-04 0.8 10 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "10" 2024-02-05 2024-03-04 0.85 11 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "10" 2024-02-05 2024-03-04 0.9 12 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "10" 2024-02-05 2024-03-04 0.95 14 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "10" 2024-02-05 2024-03-04 0.975 14.525 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "10" 2024-02-05 2024-03-04 0.99 20.04 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "12" 2024-02-05 2024-02-06 0.01 244.92 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "12" 2024-02-05 2024-02-06 0.025 249.425 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "12" 2024-02-05 2024-02-06 0.05 260.55 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "12" 2024-02-05 2024-02-06 0.1 268.9 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "12" 2024-02-05 2024-02-06 0.15 273.85 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "12" 2024-02-05 2024-02-06 0.2 290.2 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "12" 2024-02-05 2024-02-06 0.25 296.75 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "12" 2024-02-05 2024-02-06 0.3 302 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "12" 2024-02-05 2024-02-06 0.35 308.3 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "12" 2024-02-05 2024-02-06 0.4 316.6 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "12" 2024-02-05 2024-02-06 0.45 322.55 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "12" 2024-02-05 2024-02-06 0.5 332 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "12" 2024-02-05 2024-02-06 0.55 335 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "12" 2024-02-05 2024-02-06 0.6 340.8 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "12" 2024-02-05 2024-02-06 0.65 347.05 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "12" 2024-02-05 2024-02-06 0.7 354 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "12" 2024-02-05 2024-02-06 0.75 362 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "12" 2024-02-05 2024-02-06 0.8 375.2 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "12" 2024-02-05 2024-02-06 0.85 379.75 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "12" 2024-02-05 2024-02-06 0.9 398.4 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "12" 2024-02-05 2024-02-06 0.95 412.1 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "12" 2024-02-05 2024-02-06 0.975 421.1 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "12" 2024-02-05 2024-02-06 0.99 436.18 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "12" 2024-02-05 2024-02-07 0.01 220 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "12" 2024-02-05 2024-02-07 0.025 231.425 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "12" 2024-02-05 2024-02-07 0.05 236.85 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "12" 2024-02-05 2024-02-07 0.1 257.8 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "12" 2024-02-05 2024-02-07 0.15 276.85 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "12" 2024-02-05 2024-02-07 0.2 280 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "12" 2024-02-05 2024-02-07 0.25 284.75 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "12" 2024-02-05 2024-02-07 0.3 287.7 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "12" 2024-02-05 2024-02-07 0.35 292.3 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "12" 2024-02-05 2024-02-07 0.4 298.6 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "12" 2024-02-05 2024-02-07 0.45 303.55 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "12" 2024-02-05 2024-02-07 0.5 307 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "12" 2024-02-05 2024-02-07 0.55 311.8 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "12" 2024-02-05 2024-02-07 0.6 317.8 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "12" 2024-02-05 2024-02-07 0.65 321 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "12" 2024-02-05 2024-02-07 0.7 327 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "12" 2024-02-05 2024-02-07 0.75 330.25 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "12" 2024-02-05 2024-02-07 0.8 338 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "12" 2024-02-05 2024-02-07 0.85 347.65 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "12" 2024-02-05 2024-02-07 0.9 384.2 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "12" 2024-02-05 2024-02-07 0.95 397.1 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "12" 2024-02-05 2024-02-07 0.975 407.525 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "12" 2024-02-05 2024-02-07 0.99 414.03 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "12" 2024-02-05 2024-02-08 0.01 205.98 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "12" 2024-02-05 2024-02-08 0.025 229.8 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "12" 2024-02-05 2024-02-08 0.05 237.85 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "12" 2024-02-05 2024-02-08 0.1 246.9 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "12" 2024-02-05 2024-02-08 0.15 256 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "12" 2024-02-05 2024-02-08 0.2 264.6 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "12" 2024-02-05 2024-02-08 0.25 273.75 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "12" 2024-02-05 2024-02-08 0.3 279.7 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "12" 2024-02-05 2024-02-08 0.35 287.3 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "12" 2024-02-05 2024-02-08 0.4 291 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "12" 2024-02-05 2024-02-08 0.45 295.1 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "12" 2024-02-05 2024-02-08 0.5 301.5 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "12" 2024-02-05 2024-02-08 0.55 307.9 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "12" 2024-02-05 2024-02-08 0.6 321.4 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "12" 2024-02-05 2024-02-08 0.65 325.35 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "12" 2024-02-05 2024-02-08 0.7 329.6 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "12" 2024-02-05 2024-02-08 0.75 338 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "12" 2024-02-05 2024-02-08 0.8 348 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "12" 2024-02-05 2024-02-08 0.85 363 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "12" 2024-02-05 2024-02-08 0.9 370 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "12" 2024-02-05 2024-02-08 0.95 403.15 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "12" 2024-02-05 2024-02-08 0.975 428 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "12" 2024-02-05 2024-02-08 0.99 444.28 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "12" 2024-02-05 2024-02-09 0.01 247.85 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "12" 2024-02-05 2024-02-09 0.025 249 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "12" 2024-02-05 2024-02-09 0.05 253.85 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "12" 2024-02-05 2024-02-09 0.1 264.7 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "12" 2024-02-05 2024-02-09 0.15 272 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "12" 2024-02-05 2024-02-09 0.2 276.8 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "12" 2024-02-05 2024-02-09 0.25 292.25 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "12" 2024-02-05 2024-02-09 0.3 297.7 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "12" 2024-02-05 2024-02-09 0.35 302.65 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "12" 2024-02-05 2024-02-09 0.4 308.6 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "12" 2024-02-05 2024-02-09 0.45 310 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "12" 2024-02-05 2024-02-09 0.5 314 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "12" 2024-02-05 2024-02-09 0.55 320.9 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "12" 2024-02-05 2024-02-09 0.6 329.2 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "12" 2024-02-05 2024-02-09 0.65 335.35 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "12" 2024-02-05 2024-02-09 0.7 340.3 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "12" 2024-02-05 2024-02-09 0.75 347 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "12" 2024-02-05 2024-02-09 0.8 359 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "12" 2024-02-05 2024-02-09 0.85 373.3 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "12" 2024-02-05 2024-02-09 0.9 387 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "12" 2024-02-05 2024-02-09 0.95 406.6 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "12" 2024-02-05 2024-02-09 0.975 427.925 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "12" 2024-02-05 2024-02-09 0.99 437.11 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "12" 2024-02-05 2024-02-10 0.01 228.93 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "12" 2024-02-05 2024-02-10 0.025 231.9 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "12" 2024-02-05 2024-02-10 0.05 235.95 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "12" 2024-02-05 2024-02-10 0.1 246.8 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "12" 2024-02-05 2024-02-10 0.15 256 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "12" 2024-02-05 2024-02-10 0.2 261.8 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "12" 2024-02-05 2024-02-10 0.25 266.75 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "12" 2024-02-05 2024-02-10 0.3 279.7 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "12" 2024-02-05 2024-02-10 0.35 283 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "12" 2024-02-05 2024-02-10 0.4 287.6 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "12" 2024-02-05 2024-02-10 0.45 297.3 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "12" 2024-02-05 2024-02-10 0.5 302 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "12" 2024-02-05 2024-02-10 0.55 307 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "12" 2024-02-05 2024-02-10 0.6 309 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "12" 2024-02-05 2024-02-10 0.65 319 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "12" 2024-02-05 2024-02-10 0.7 328.6 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "12" 2024-02-05 2024-02-10 0.75 339.5 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "12" 2024-02-05 2024-02-10 0.8 344.6 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "12" 2024-02-05 2024-02-10 0.85 355.45 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "12" 2024-02-05 2024-02-10 0.9 381.4 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "12" 2024-02-05 2024-02-10 0.95 405 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "12" 2024-02-05 2024-02-10 0.975 414.825 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "12" 2024-02-05 2024-02-10 0.99 426.15 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "12" 2024-02-05 2024-02-11 0.01 215.93 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "12" 2024-02-05 2024-02-11 0.025 221.8 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "12" 2024-02-05 2024-02-11 0.05 233.8 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "12" 2024-02-05 2024-02-11 0.1 251.7 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "12" 2024-02-05 2024-02-11 0.15 258.85 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "12" 2024-02-05 2024-02-11 0.2 264 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "12" 2024-02-05 2024-02-11 0.25 270.75 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "12" 2024-02-05 2024-02-11 0.3 276 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "12" 2024-02-05 2024-02-11 0.35 284 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "12" 2024-02-05 2024-02-11 0.4 291.4 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "12" 2024-02-05 2024-02-11 0.45 302 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "12" 2024-02-05 2024-02-11 0.5 308 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "12" 2024-02-05 2024-02-11 0.55 316 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "12" 2024-02-05 2024-02-11 0.6 321 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "12" 2024-02-05 2024-02-11 0.65 325.05 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "12" 2024-02-05 2024-02-11 0.7 328.9 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "12" 2024-02-05 2024-02-11 0.75 337 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "12" 2024-02-05 2024-02-11 0.8 344 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "12" 2024-02-05 2024-02-11 0.85 363 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "12" 2024-02-05 2024-02-11 0.9 384.1 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "12" 2024-02-05 2024-02-11 0.95 418.2 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "12" 2024-02-05 2024-02-11 0.975 433.975 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "12" 2024-02-05 2024-02-11 0.99 455.21 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "12" 2024-02-05 2024-02-12 0.01 234.9 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "12" 2024-02-05 2024-02-12 0.025 241.475 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "12" 2024-02-05 2024-02-12 0.05 250.95 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "12" 2024-02-05 2024-02-12 0.1 261 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "12" 2024-02-05 2024-02-12 0.15 273 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "12" 2024-02-05 2024-02-12 0.2 280 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "12" 2024-02-05 2024-02-12 0.25 285 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "12" 2024-02-05 2024-02-12 0.3 297.2 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "12" 2024-02-05 2024-02-12 0.35 308.95 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "12" 2024-02-05 2024-02-12 0.4 316 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "12" 2024-02-05 2024-02-12 0.45 327.1 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "12" 2024-02-05 2024-02-12 0.5 337.5 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "12" 2024-02-05 2024-02-12 0.55 344 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "12" 2024-02-05 2024-02-12 0.6 353 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "12" 2024-02-05 2024-02-12 0.65 361 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "12" 2024-02-05 2024-02-12 0.7 365.2 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "12" 2024-02-05 2024-02-12 0.75 378.25 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "12" 2024-02-05 2024-02-12 0.8 383.4 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "12" 2024-02-05 2024-02-12 0.85 402.15 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "12" 2024-02-05 2024-02-12 0.9 427.9 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "12" 2024-02-05 2024-02-12 0.95 457.1 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "12" 2024-02-05 2024-02-12 0.975 469.1 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "12" 2024-02-05 2024-02-12 0.99 505.41 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "12" 2024-02-05 2024-02-13 0.01 232.98 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "12" 2024-02-05 2024-02-13 0.025 234 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "12" 2024-02-05 2024-02-13 0.05 249 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "12" 2024-02-05 2024-02-13 0.1 266.6 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "12" 2024-02-05 2024-02-13 0.15 279.25 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "12" 2024-02-05 2024-02-13 0.2 291.2 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "12" 2024-02-05 2024-02-13 0.25 301.5 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "12" 2024-02-05 2024-02-13 0.3 306.7 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "12" 2024-02-05 2024-02-13 0.35 320 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "12" 2024-02-05 2024-02-13 0.4 325 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "12" 2024-02-05 2024-02-13 0.45 332.1 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "12" 2024-02-05 2024-02-13 0.5 342 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "12" 2024-02-05 2024-02-13 0.55 347 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "12" 2024-02-05 2024-02-13 0.6 354.2 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "12" 2024-02-05 2024-02-13 0.65 369.35 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "12" 2024-02-05 2024-02-13 0.7 374.6 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "12" 2024-02-05 2024-02-13 0.75 385.25 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "12" 2024-02-05 2024-02-13 0.8 397.6 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "12" 2024-02-05 2024-02-13 0.85 407.3 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "12" 2024-02-05 2024-02-13 0.9 434 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "12" 2024-02-05 2024-02-13 0.95 490.3 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "12" 2024-02-05 2024-02-13 0.975 537.575 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "12" 2024-02-05 2024-02-13 0.99 539.52 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "12" 2024-02-05 2024-02-14 0.01 212.98 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "12" 2024-02-05 2024-02-14 0.025 230.475 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "12" 2024-02-05 2024-02-14 0.05 233.95 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "12" 2024-02-05 2024-02-14 0.1 245.7 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "12" 2024-02-05 2024-02-14 0.15 250.85 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "12" 2024-02-05 2024-02-14 0.2 259 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "12" 2024-02-05 2024-02-14 0.25 270.75 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "12" 2024-02-05 2024-02-14 0.3 280.7 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "12" 2024-02-05 2024-02-14 0.35 285.65 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "12" 2024-02-05 2024-02-14 0.4 300.6 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "12" 2024-02-05 2024-02-14 0.45 308.55 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "12" 2024-02-05 2024-02-14 0.5 312 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "12" 2024-02-05 2024-02-14 0.55 317.45 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "12" 2024-02-05 2024-02-14 0.6 321.6 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "12" 2024-02-05 2024-02-14 0.65 337.7 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "12" 2024-02-05 2024-02-14 0.7 343.3 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "12" 2024-02-05 2024-02-14 0.75 349.5 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "12" 2024-02-05 2024-02-14 0.8 357.2 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "12" 2024-02-05 2024-02-14 0.85 383.6 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "12" 2024-02-05 2024-02-14 0.9 408.4 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "12" 2024-02-05 2024-02-14 0.95 444.35 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "12" 2024-02-05 2024-02-14 0.975 553.25 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "12" 2024-02-05 2024-02-14 0.99 561.42 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "12" 2024-02-05 2024-02-15 0.01 211.85 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "12" 2024-02-05 2024-02-15 0.025 216.325 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "12" 2024-02-05 2024-02-15 0.05 231.7 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "12" 2024-02-05 2024-02-15 0.1 242.8 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "12" 2024-02-05 2024-02-15 0.15 259.7 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "12" 2024-02-05 2024-02-15 0.2 267.8 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "12" 2024-02-05 2024-02-15 0.25 280 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "12" 2024-02-05 2024-02-15 0.3 286.7 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "12" 2024-02-05 2024-02-15 0.35 295 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "12" 2024-02-05 2024-02-15 0.4 299.6 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "12" 2024-02-05 2024-02-15 0.45 309.55 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "12" 2024-02-05 2024-02-15 0.5 320 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "12" 2024-02-05 2024-02-15 0.55 330 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "12" 2024-02-05 2024-02-15 0.6 334.4 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "12" 2024-02-05 2024-02-15 0.65 343 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "12" 2024-02-05 2024-02-15 0.7 353.3 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "12" 2024-02-05 2024-02-15 0.75 359 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "12" 2024-02-05 2024-02-15 0.8 370.4 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "12" 2024-02-05 2024-02-15 0.85 384.45 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "12" 2024-02-05 2024-02-15 0.9 406.1 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "12" 2024-02-05 2024-02-15 0.95 477.75 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "12" 2024-02-05 2024-02-15 0.975 532.775 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "12" 2024-02-05 2024-02-15 0.99 538.01 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "12" 2024-02-05 2024-02-16 0.01 223.72 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "12" 2024-02-05 2024-02-16 0.025 229.85 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "12" 2024-02-05 2024-02-16 0.05 244.75 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "12" 2024-02-05 2024-02-16 0.1 255.6 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "12" 2024-02-05 2024-02-16 0.15 261.85 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "12" 2024-02-05 2024-02-16 0.2 274.6 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "12" 2024-02-05 2024-02-16 0.25 282.25 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "12" 2024-02-05 2024-02-16 0.3 291.1 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "12" 2024-02-05 2024-02-16 0.35 303.3 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "12" 2024-02-05 2024-02-16 0.4 309.6 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "12" 2024-02-05 2024-02-16 0.45 313.1 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "12" 2024-02-05 2024-02-16 0.5 321.5 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "12" 2024-02-05 2024-02-16 0.55 331 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "12" 2024-02-05 2024-02-16 0.6 337.8 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "12" 2024-02-05 2024-02-16 0.65 350.05 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "12" 2024-02-05 2024-02-16 0.7 355.6 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "12" 2024-02-05 2024-02-16 0.75 366.25 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "12" 2024-02-05 2024-02-16 0.8 377.8 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "12" 2024-02-05 2024-02-16 0.85 385.45 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "12" 2024-02-05 2024-02-16 0.9 413.3 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "12" 2024-02-05 2024-02-16 0.95 473.05 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "12" 2024-02-05 2024-02-16 0.975 582.7 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "12" 2024-02-05 2024-02-16 0.99 602.02 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "12" 2024-02-05 2024-02-17 0.01 207.9 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "12" 2024-02-05 2024-02-17 0.025 212.95 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "12" 2024-02-05 2024-02-17 0.05 217 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "12" 2024-02-05 2024-02-17 0.1 239.9 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "12" 2024-02-05 2024-02-17 0.15 249 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "12" 2024-02-05 2024-02-17 0.2 256.8 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "12" 2024-02-05 2024-02-17 0.25 261.5 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "12" 2024-02-05 2024-02-17 0.3 271.4 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "12" 2024-02-05 2024-02-17 0.35 281 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "12" 2024-02-05 2024-02-17 0.4 287.4 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "12" 2024-02-05 2024-02-17 0.45 298.55 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "12" 2024-02-05 2024-02-17 0.5 302 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "12" 2024-02-05 2024-02-17 0.55 313.45 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "12" 2024-02-05 2024-02-17 0.6 323 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "12" 2024-02-05 2024-02-17 0.65 328 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "12" 2024-02-05 2024-02-17 0.7 339.9 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "12" 2024-02-05 2024-02-17 0.75 347.25 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "12" 2024-02-05 2024-02-17 0.8 359.2 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "12" 2024-02-05 2024-02-17 0.85 373.3 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "12" 2024-02-05 2024-02-17 0.9 391.2 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "12" 2024-02-05 2024-02-17 0.95 518.05 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "12" 2024-02-05 2024-02-17 0.975 574.575 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "12" 2024-02-05 2024-02-17 0.99 586.45 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "12" 2024-02-05 2024-02-18 0.01 204.97 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "12" 2024-02-05 2024-02-18 0.025 210.75 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "12" 2024-02-05 2024-02-18 0.05 225.8 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "12" 2024-02-05 2024-02-18 0.1 249 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "12" 2024-02-05 2024-02-18 0.15 255 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "12" 2024-02-05 2024-02-18 0.2 258.8 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "12" 2024-02-05 2024-02-18 0.25 265.5 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "12" 2024-02-05 2024-02-18 0.3 271.7 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "12" 2024-02-05 2024-02-18 0.35 280.3 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "12" 2024-02-05 2024-02-18 0.4 287.6 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "12" 2024-02-05 2024-02-18 0.45 299.55 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "12" 2024-02-05 2024-02-18 0.5 311.5 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "12" 2024-02-05 2024-02-18 0.55 317 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "12" 2024-02-05 2024-02-18 0.6 326.4 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "12" 2024-02-05 2024-02-18 0.65 333 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "12" 2024-02-05 2024-02-18 0.7 343.3 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "12" 2024-02-05 2024-02-18 0.75 357.75 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "12" 2024-02-05 2024-02-18 0.8 367.4 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "12" 2024-02-05 2024-02-18 0.85 393.6 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "12" 2024-02-05 2024-02-18 0.9 406.3 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "12" 2024-02-05 2024-02-18 0.95 432.75 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "12" 2024-02-05 2024-02-18 0.975 512 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "12" 2024-02-05 2024-02-18 0.99 616.45 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "12" 2024-02-05 2024-02-19 0.01 217.98 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "12" 2024-02-05 2024-02-19 0.025 240.475 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "12" 2024-02-05 2024-02-19 0.05 247.65 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "12" 2024-02-05 2024-02-19 0.1 257.7 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "12" 2024-02-05 2024-02-19 0.15 267.7 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "12" 2024-02-05 2024-02-19 0.2 271.6 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "12" 2024-02-05 2024-02-19 0.25 282.25 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "12" 2024-02-05 2024-02-19 0.3 289.7 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "12" 2024-02-05 2024-02-19 0.35 299 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "12" 2024-02-05 2024-02-19 0.4 307.2 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "12" 2024-02-05 2024-02-19 0.45 316.65 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "12" 2024-02-05 2024-02-19 0.5 327 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "12" 2024-02-05 2024-02-19 0.55 337.6 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "12" 2024-02-05 2024-02-19 0.6 347 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "12" 2024-02-05 2024-02-19 0.65 357.7 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "12" 2024-02-05 2024-02-19 0.7 374.3 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "12" 2024-02-05 2024-02-19 0.75 389 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "12" 2024-02-05 2024-02-19 0.8 402.2 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "12" 2024-02-05 2024-02-19 0.85 412.9 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "12" 2024-02-05 2024-02-19 0.9 469 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "12" 2024-02-05 2024-02-19 0.95 535.9 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "12" 2024-02-05 2024-02-19 0.975 583.575 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "12" 2024-02-05 2024-02-19 0.99 639.41 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "12" 2024-02-05 2024-02-20 0.01 203.93 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "12" 2024-02-05 2024-02-20 0.025 235.475 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "12" 2024-02-05 2024-02-20 0.05 244.55 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "12" 2024-02-05 2024-02-20 0.1 253 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "12" 2024-02-05 2024-02-20 0.15 269.25 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "12" 2024-02-05 2024-02-20 0.2 275 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "12" 2024-02-05 2024-02-20 0.25 288 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "12" 2024-02-05 2024-02-20 0.3 298.7 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "12" 2024-02-05 2024-02-20 0.35 307.95 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "12" 2024-02-05 2024-02-20 0.4 315.6 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "12" 2024-02-05 2024-02-20 0.45 325.1 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "12" 2024-02-05 2024-02-20 0.5 333.5 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "12" 2024-02-05 2024-02-20 0.55 342.7 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "12" 2024-02-05 2024-02-20 0.6 360.6 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "12" 2024-02-05 2024-02-20 0.65 367.4 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "12" 2024-02-05 2024-02-20 0.7 376.3 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "12" 2024-02-05 2024-02-20 0.75 386.75 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "12" 2024-02-05 2024-02-20 0.8 412.4 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "12" 2024-02-05 2024-02-20 0.85 435.45 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "12" 2024-02-05 2024-02-20 0.9 461.1 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "12" 2024-02-05 2024-02-20 0.95 534.35 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "12" 2024-02-05 2024-02-20 0.975 627.499999999999 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "12" 2024-02-05 2024-02-20 0.99 675.02 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "12" 2024-02-05 2024-02-21 0.01 194.96 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "12" 2024-02-05 2024-02-21 0.025 215.85 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "12" 2024-02-05 2024-02-21 0.05 223.8 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "12" 2024-02-05 2024-02-21 0.1 232 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "12" 2024-02-05 2024-02-21 0.15 244.85 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "12" 2024-02-05 2024-02-21 0.2 265 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "12" 2024-02-05 2024-02-21 0.25 276.5 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "12" 2024-02-05 2024-02-21 0.3 283.7 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "12" 2024-02-05 2024-02-21 0.35 289.3 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "12" 2024-02-05 2024-02-21 0.4 301.6 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "12" 2024-02-05 2024-02-21 0.45 310.55 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "12" 2024-02-05 2024-02-21 0.5 319.5 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "12" 2024-02-05 2024-02-21 0.55 325.25 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "12" 2024-02-05 2024-02-21 0.6 338.8 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "12" 2024-02-05 2024-02-21 0.65 348.15 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "12" 2024-02-05 2024-02-21 0.7 363 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "12" 2024-02-05 2024-02-21 0.75 367 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "12" 2024-02-05 2024-02-21 0.8 389.2 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "12" 2024-02-05 2024-02-21 0.85 422.15 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "12" 2024-02-05 2024-02-21 0.9 439.2 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "12" 2024-02-05 2024-02-21 0.95 530.3 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "12" 2024-02-05 2024-02-21 0.975 578.15 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "12" 2024-02-05 2024-02-21 0.99 702.920000000001 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "12" 2024-02-05 2024-02-22 0.01 202.95 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "12" 2024-02-05 2024-02-22 0.025 218.85 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "12" 2024-02-05 2024-02-22 0.05 230.7 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "12" 2024-02-05 2024-02-22 0.1 240.9 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "12" 2024-02-05 2024-02-22 0.15 253.85 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "12" 2024-02-05 2024-02-22 0.2 258.6 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "12" 2024-02-05 2024-02-22 0.25 271.75 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "12" 2024-02-05 2024-02-22 0.3 276 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "12" 2024-02-05 2024-02-22 0.35 293 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "12" 2024-02-05 2024-02-22 0.4 307 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "12" 2024-02-05 2024-02-22 0.45 318.55 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "12" 2024-02-05 2024-02-22 0.5 324.5 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "12" 2024-02-05 2024-02-22 0.55 330.35 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "12" 2024-02-05 2024-02-22 0.6 340 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "12" 2024-02-05 2024-02-22 0.65 344.35 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "12" 2024-02-05 2024-02-22 0.7 351.9 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "12" 2024-02-05 2024-02-22 0.75 362.5 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "12" 2024-02-05 2024-02-22 0.8 382.6 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "12" 2024-02-05 2024-02-22 0.85 402 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "12" 2024-02-05 2024-02-22 0.9 413.4 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "12" 2024-02-05 2024-02-22 0.95 490.25 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "12" 2024-02-05 2024-02-22 0.975 581.275 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "12" 2024-02-05 2024-02-22 0.99 704.25 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "12" 2024-02-05 2024-02-23 0.01 224.43 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "12" 2024-02-05 2024-02-23 0.025 229.375 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "12" 2024-02-05 2024-02-23 0.05 240.65 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "12" 2024-02-05 2024-02-23 0.1 255 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "12" 2024-02-05 2024-02-23 0.15 267.25 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "12" 2024-02-05 2024-02-23 0.2 280.8 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "12" 2024-02-05 2024-02-23 0.25 284 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "12" 2024-02-05 2024-02-23 0.3 292.4 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "12" 2024-02-05 2024-02-23 0.35 305.65 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "12" 2024-02-05 2024-02-23 0.4 315.6 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "12" 2024-02-05 2024-02-23 0.45 324.55 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "12" 2024-02-05 2024-02-23 0.5 331 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "12" 2024-02-05 2024-02-23 0.55 335.7 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "12" 2024-02-05 2024-02-23 0.6 354.6 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "12" 2024-02-05 2024-02-23 0.65 359.35 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "12" 2024-02-05 2024-02-23 0.7 372.6 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "12" 2024-02-05 2024-02-23 0.75 385.5 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "12" 2024-02-05 2024-02-23 0.8 400.6 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "12" 2024-02-05 2024-02-23 0.85 418 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "12" 2024-02-05 2024-02-23 0.9 441.7 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "12" 2024-02-05 2024-02-23 0.95 605.9 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "12" 2024-02-05 2024-02-23 0.975 679.375 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "12" 2024-02-05 2024-02-23 0.99 705.940000000001 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "12" 2024-02-05 2024-02-24 0.01 193.92 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "12" 2024-02-05 2024-02-24 0.025 208.95 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "12" 2024-02-05 2024-02-24 0.05 233 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "12" 2024-02-05 2024-02-24 0.1 242.8 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "12" 2024-02-05 2024-02-24 0.15 245.85 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "12" 2024-02-05 2024-02-24 0.2 261.8 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "12" 2024-02-05 2024-02-24 0.25 269.75 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "12" 2024-02-05 2024-02-24 0.3 282.1 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "12" 2024-02-05 2024-02-24 0.35 287.65 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "12" 2024-02-05 2024-02-24 0.4 295.4 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "12" 2024-02-05 2024-02-24 0.45 304 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "12" 2024-02-05 2024-02-24 0.5 310.5 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "12" 2024-02-05 2024-02-24 0.55 319.35 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "12" 2024-02-05 2024-02-24 0.6 328.4 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "12" 2024-02-05 2024-02-24 0.65 333.35 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "12" 2024-02-05 2024-02-24 0.7 345.3 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "12" 2024-02-05 2024-02-24 0.75 359 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "12" 2024-02-05 2024-02-24 0.8 372 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "12" 2024-02-05 2024-02-24 0.85 396.45 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "12" 2024-02-05 2024-02-24 0.9 420.7 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "12" 2024-02-05 2024-02-24 0.95 555.8 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "12" 2024-02-05 2024-02-24 0.975 649.25 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "12" 2024-02-05 2024-02-24 0.99 685.41 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "12" 2024-02-05 2024-02-25 0.01 189.95 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "12" 2024-02-05 2024-02-25 0.025 200.425 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "12" 2024-02-05 2024-02-25 0.05 207.9 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "12" 2024-02-05 2024-02-25 0.1 227.7 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "12" 2024-02-05 2024-02-25 0.15 242.85 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "12" 2024-02-05 2024-02-25 0.2 250 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "12" 2024-02-05 2024-02-25 0.25 268.75 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "12" 2024-02-05 2024-02-25 0.3 273.7 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "12" 2024-02-05 2024-02-25 0.35 283.6 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "12" 2024-02-05 2024-02-25 0.4 294.2 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "12" 2024-02-05 2024-02-25 0.45 302.55 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "12" 2024-02-05 2024-02-25 0.5 310.5 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "12" 2024-02-05 2024-02-25 0.55 318 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "12" 2024-02-05 2024-02-25 0.6 320.8 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "12" 2024-02-05 2024-02-25 0.65 325.35 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "12" 2024-02-05 2024-02-25 0.7 344.7 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "12" 2024-02-05 2024-02-25 0.75 371.5 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "12" 2024-02-05 2024-02-25 0.8 389.8 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "12" 2024-02-05 2024-02-25 0.85 401.3 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "12" 2024-02-05 2024-02-25 0.9 422.7 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "12" 2024-02-05 2024-02-25 0.95 552.55 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "12" 2024-02-05 2024-02-25 0.975 712.424999999999 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "12" 2024-02-05 2024-02-25 0.99 791.91 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "12" 2024-02-05 2024-02-26 0.01 188.88 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "12" 2024-02-05 2024-02-26 0.025 202.7 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "12" 2024-02-05 2024-02-26 0.05 217 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "12" 2024-02-05 2024-02-26 0.1 238 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "12" 2024-02-05 2024-02-26 0.15 257.95 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "12" 2024-02-05 2024-02-26 0.2 275.6 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "12" 2024-02-05 2024-02-26 0.25 283.5 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "12" 2024-02-05 2024-02-26 0.3 287.7 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "12" 2024-02-05 2024-02-26 0.35 300.3 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "12" 2024-02-05 2024-02-26 0.4 310 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "12" 2024-02-05 2024-02-26 0.45 324.55 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "12" 2024-02-05 2024-02-26 0.5 335 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "12" 2024-02-05 2024-02-26 0.55 353.15 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "12" 2024-02-05 2024-02-26 0.6 360.4 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "12" 2024-02-05 2024-02-26 0.65 364.35 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "12" 2024-02-05 2024-02-26 0.7 385.9 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "12" 2024-02-05 2024-02-26 0.75 395.25 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "12" 2024-02-05 2024-02-26 0.8 414.2 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "12" 2024-02-05 2024-02-26 0.85 429.75 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "12" 2024-02-05 2024-02-26 0.9 454.4 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "12" 2024-02-05 2024-02-26 0.95 636.8 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "12" 2024-02-05 2024-02-26 0.975 731.05 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "12" 2024-02-05 2024-02-26 0.99 804.600000000001 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "12" 2024-02-05 2024-02-27 0.01 213.76 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "12" 2024-02-05 2024-02-27 0.025 220.175 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "12" 2024-02-05 2024-02-27 0.05 234.65 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "12" 2024-02-05 2024-02-27 0.1 260.8 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "12" 2024-02-05 2024-02-27 0.15 267.7 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "12" 2024-02-05 2024-02-27 0.2 279.4 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "12" 2024-02-05 2024-02-27 0.25 286.25 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "12" 2024-02-05 2024-02-27 0.3 294.4 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "12" 2024-02-05 2024-02-27 0.35 311.5 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "12" 2024-02-05 2024-02-27 0.4 319.2 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "12" 2024-02-05 2024-02-27 0.45 332.2 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "12" 2024-02-05 2024-02-27 0.5 350.5 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "12" 2024-02-05 2024-02-27 0.55 357 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "12" 2024-02-05 2024-02-27 0.6 361 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "12" 2024-02-05 2024-02-27 0.65 373.7 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "12" 2024-02-05 2024-02-27 0.7 378.3 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "12" 2024-02-05 2024-02-27 0.75 393 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "12" 2024-02-05 2024-02-27 0.8 412 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "12" 2024-02-05 2024-02-27 0.85 425.3 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "12" 2024-02-05 2024-02-27 0.9 473.8 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "12" 2024-02-05 2024-02-27 0.95 650.55 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "12" 2024-02-05 2024-02-27 0.975 710.675 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "12" 2024-02-05 2024-02-27 0.99 911.070000000001 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "12" 2024-02-05 2024-02-28 0.01 192.97 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "12" 2024-02-05 2024-02-28 0.025 199.425 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "12" 2024-02-05 2024-02-28 0.05 215.55 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "12" 2024-02-05 2024-02-28 0.1 235.8 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "12" 2024-02-05 2024-02-28 0.15 243 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "12" 2024-02-05 2024-02-28 0.2 261 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "12" 2024-02-05 2024-02-28 0.25 268.75 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "12" 2024-02-05 2024-02-28 0.3 274.1 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "12" 2024-02-05 2024-02-28 0.35 287.3 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "12" 2024-02-05 2024-02-28 0.4 307.8 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "12" 2024-02-05 2024-02-28 0.45 326.55 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "12" 2024-02-05 2024-02-28 0.5 335 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "12" 2024-02-05 2024-02-28 0.55 339 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "12" 2024-02-05 2024-02-28 0.6 344.4 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "12" 2024-02-05 2024-02-28 0.65 355 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "12" 2024-02-05 2024-02-28 0.7 371 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "12" 2024-02-05 2024-02-28 0.75 375.25 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "12" 2024-02-05 2024-02-28 0.8 396.4 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "12" 2024-02-05 2024-02-28 0.85 413.8 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "12" 2024-02-05 2024-02-28 0.9 463.4 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "12" 2024-02-05 2024-02-28 0.95 609.1 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "12" 2024-02-05 2024-02-28 0.975 793.549999999999 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "12" 2024-02-05 2024-02-28 0.99 924.570000000001 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "12" 2024-02-05 2024-02-29 0.01 200.59 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "12" 2024-02-05 2024-02-29 0.025 207.325 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "12" 2024-02-05 2024-02-29 0.05 214.85 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "12" 2024-02-05 2024-02-29 0.1 243.1 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "12" 2024-02-05 2024-02-29 0.15 257.7 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "12" 2024-02-05 2024-02-29 0.2 266.8 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "12" 2024-02-05 2024-02-29 0.25 277.5 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "12" 2024-02-05 2024-02-29 0.3 285.7 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "12" 2024-02-05 2024-02-29 0.35 294.6 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "12" 2024-02-05 2024-02-29 0.4 303 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "12" 2024-02-05 2024-02-29 0.45 310.55 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "12" 2024-02-05 2024-02-29 0.5 321.5 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "12" 2024-02-05 2024-02-29 0.55 327 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "12" 2024-02-05 2024-02-29 0.6 331 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "12" 2024-02-05 2024-02-29 0.65 346 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "12" 2024-02-05 2024-02-29 0.7 350.3 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "12" 2024-02-05 2024-02-29 0.75 371.75 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "12" 2024-02-05 2024-02-29 0.8 387 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "12" 2024-02-05 2024-02-29 0.85 407.15 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "12" 2024-02-05 2024-02-29 0.9 477.2 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "12" 2024-02-05 2024-02-29 0.95 609.95 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "12" 2024-02-05 2024-02-29 0.975 786.474999999999 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "12" 2024-02-05 2024-02-29 0.99 929.040000000001 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "12" 2024-02-05 2024-03-01 0.01 180.93 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "12" 2024-02-05 2024-03-01 0.025 184.85 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "12" 2024-02-05 2024-03-01 0.05 196.9 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "12" 2024-02-05 2024-03-01 0.1 239 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "12" 2024-02-05 2024-03-01 0.15 257.5 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "12" 2024-02-05 2024-03-01 0.2 264.8 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "12" 2024-02-05 2024-03-01 0.25 283.75 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "12" 2024-02-05 2024-03-01 0.3 288.7 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "12" 2024-02-05 2024-03-01 0.35 302.95 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "12" 2024-02-05 2024-03-01 0.4 312.6 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "12" 2024-02-05 2024-03-01 0.45 321 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "12" 2024-02-05 2024-03-01 0.5 327.5 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "12" 2024-02-05 2024-03-01 0.55 334.8 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "12" 2024-02-05 2024-03-01 0.6 349.8 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "12" 2024-02-05 2024-03-01 0.65 357.35 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "12" 2024-02-05 2024-03-01 0.7 367.3 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "12" 2024-02-05 2024-03-01 0.75 397.25 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "12" 2024-02-05 2024-03-01 0.8 416.2 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "12" 2024-02-05 2024-03-01 0.85 426.15 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "12" 2024-02-05 2024-03-01 0.9 476.4 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "12" 2024-02-05 2024-03-01 0.95 645.35 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "12" 2024-02-05 2024-03-01 0.975 777.025 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "12" 2024-02-05 2024-03-01 0.99 901.400000000001 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "12" 2024-02-05 2024-03-02 0.01 170.97 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "12" 2024-02-05 2024-03-02 0.025 181.75 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "12" 2024-02-05 2024-03-02 0.05 218.45 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "12" 2024-02-05 2024-03-02 0.1 231.9 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "12" 2024-02-05 2024-03-02 0.15 239.55 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "12" 2024-02-05 2024-03-02 0.2 255.4 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "12" 2024-02-05 2024-03-02 0.25 267.75 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "12" 2024-02-05 2024-03-02 0.3 275 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "12" 2024-02-05 2024-03-02 0.35 282.3 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "12" 2024-02-05 2024-03-02 0.4 292.4 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "12" 2024-02-05 2024-03-02 0.45 305 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "12" 2024-02-05 2024-03-02 0.5 317 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "12" 2024-02-05 2024-03-02 0.55 327 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "12" 2024-02-05 2024-03-02 0.6 332.2 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "12" 2024-02-05 2024-03-02 0.65 343.05 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "12" 2024-02-05 2024-03-02 0.7 354.6 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "12" 2024-02-05 2024-03-02 0.75 369.5 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "12" 2024-02-05 2024-03-02 0.8 400.8 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "12" 2024-02-05 2024-03-02 0.85 424.75 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "12" 2024-02-05 2024-03-02 0.9 453.8 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "12" 2024-02-05 2024-03-02 0.95 662.75 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "12" 2024-02-05 2024-03-02 0.975 773.574999999999 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "12" 2024-02-05 2024-03-02 0.99 1004.6 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "12" 2024-02-05 2024-03-03 0.01 161.96 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "12" 2024-02-05 2024-03-03 0.025 178.2 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "12" 2024-02-05 2024-03-03 0.05 197.95 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "12" 2024-02-05 2024-03-03 0.1 217 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "12" 2024-02-05 2024-03-03 0.15 225.7 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "12" 2024-02-05 2024-03-03 0.2 246 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "12" 2024-02-05 2024-03-03 0.25 258.75 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "12" 2024-02-05 2024-03-03 0.3 270.7 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "12" 2024-02-05 2024-03-03 0.35 282.3 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "12" 2024-02-05 2024-03-03 0.4 297.2 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "12" 2024-02-05 2024-03-03 0.45 311.85 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "12" 2024-02-05 2024-03-03 0.5 318 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "12" 2024-02-05 2024-03-03 0.55 326.35 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "12" 2024-02-05 2024-03-03 0.6 343.8 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "12" 2024-02-05 2024-03-03 0.65 361.4 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "12" 2024-02-05 2024-03-03 0.7 367.6 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "12" 2024-02-05 2024-03-03 0.75 374 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "12" 2024-02-05 2024-03-03 0.8 386.4 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "12" 2024-02-05 2024-03-03 0.85 411 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "12" 2024-02-05 2024-03-03 0.9 454 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "12" 2024-02-05 2024-03-03 0.95 652.95 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "12" 2024-02-05 2024-03-03 0.975 794.074999999999 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "12" 2024-02-05 2024-03-03 0.99 1104.95 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "12" 2024-02-05 2024-03-04 0.01 177.68 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "12" 2024-02-05 2024-03-04 0.025 201.8 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "12" 2024-02-05 2024-03-04 0.05 221 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "12" 2024-02-05 2024-03-04 0.1 240.8 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "12" 2024-02-05 2024-03-04 0.15 254.4 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "12" 2024-02-05 2024-03-04 0.2 266.8 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "12" 2024-02-05 2024-03-04 0.25 272 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "12" 2024-02-05 2024-03-04 0.3 282.1 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "12" 2024-02-05 2024-03-04 0.35 295.25 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "12" 2024-02-05 2024-03-04 0.4 304 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "12" 2024-02-05 2024-03-04 0.45 322 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "12" 2024-02-05 2024-03-04 0.5 330 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "12" 2024-02-05 2024-03-04 0.55 341.9 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "12" 2024-02-05 2024-03-04 0.6 354.4 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "12" 2024-02-05 2024-03-04 0.65 372.5 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "12" 2024-02-05 2024-03-04 0.7 390.3 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "12" 2024-02-05 2024-03-04 0.75 405.25 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "12" 2024-02-05 2024-03-04 0.8 435.6 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "12" 2024-02-05 2024-03-04 0.85 457.6 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "12" 2024-02-05 2024-03-04 0.9 482.7 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "12" 2024-02-05 2024-03-04 0.95 698 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "12" 2024-02-05 2024-03-04 0.975 814.1 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "12" 2024-02-05 2024-03-04 0.99 1185.89 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "13" 2024-02-05 2024-02-06 0.01 70.96 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "13" 2024-02-05 2024-02-06 0.025 78.375 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "13" 2024-02-05 2024-02-06 0.05 87.9 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "13" 2024-02-05 2024-02-06 0.1 89 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "13" 2024-02-05 2024-02-06 0.15 94.85 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "13" 2024-02-05 2024-02-06 0.2 98.6 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "13" 2024-02-05 2024-02-06 0.25 101 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "13" 2024-02-05 2024-02-06 0.3 106.7 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "13" 2024-02-05 2024-02-06 0.35 109 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "13" 2024-02-05 2024-02-06 0.4 112 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "13" 2024-02-05 2024-02-06 0.45 115.55 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "13" 2024-02-05 2024-02-06 0.5 117 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "13" 2024-02-05 2024-02-06 0.55 119 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "13" 2024-02-05 2024-02-06 0.6 122 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "13" 2024-02-05 2024-02-06 0.65 124.35 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "13" 2024-02-05 2024-02-06 0.7 126 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "13" 2024-02-05 2024-02-06 0.75 127 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "13" 2024-02-05 2024-02-06 0.8 134 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "13" 2024-02-05 2024-02-06 0.85 139.75 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "13" 2024-02-05 2024-02-06 0.9 148 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "13" 2024-02-05 2024-02-06 0.95 156 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "13" 2024-02-05 2024-02-06 0.975 157.525 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "13" 2024-02-05 2024-02-06 0.99 174.01 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "13" 2024-02-05 2024-02-07 0.01 71.96 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "13" 2024-02-05 2024-02-07 0.025 76.375 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "13" 2024-02-05 2024-02-07 0.05 81 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "13" 2024-02-05 2024-02-07 0.1 91.8 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "13" 2024-02-05 2024-02-07 0.15 93.85 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "13" 2024-02-05 2024-02-07 0.2 99.8 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "13" 2024-02-05 2024-02-07 0.25 101 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "13" 2024-02-05 2024-02-07 0.3 105 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "13" 2024-02-05 2024-02-07 0.35 106 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "13" 2024-02-05 2024-02-07 0.4 108.6 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "13" 2024-02-05 2024-02-07 0.45 112.55 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "13" 2024-02-05 2024-02-07 0.5 116.5 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "13" 2024-02-05 2024-02-07 0.55 119.45 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "13" 2024-02-05 2024-02-07 0.6 121.4 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "13" 2024-02-05 2024-02-07 0.65 124.35 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "13" 2024-02-05 2024-02-07 0.7 129 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "13" 2024-02-05 2024-02-07 0.75 131.25 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "13" 2024-02-05 2024-02-07 0.8 137.2 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "13" 2024-02-05 2024-02-07 0.85 142 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "13" 2024-02-05 2024-02-07 0.9 147.5 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "13" 2024-02-05 2024-02-07 0.95 162.05 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "13" 2024-02-05 2024-02-07 0.975 164.525 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "13" 2024-02-05 2024-02-07 0.99 169.27 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "13" 2024-02-05 2024-02-08 0.01 62 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "13" 2024-02-05 2024-02-08 0.025 71.475 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "13" 2024-02-05 2024-02-08 0.05 74.9 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "13" 2024-02-05 2024-02-08 0.1 82 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "13" 2024-02-05 2024-02-08 0.15 86 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "13" 2024-02-05 2024-02-08 0.2 90 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "13" 2024-02-05 2024-02-08 0.25 94 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "13" 2024-02-05 2024-02-08 0.3 97 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "13" 2024-02-05 2024-02-08 0.35 101.65 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "13" 2024-02-05 2024-02-08 0.4 106.8 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "13" 2024-02-05 2024-02-08 0.45 109 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "13" 2024-02-05 2024-02-08 0.5 112 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "13" 2024-02-05 2024-02-08 0.55 113 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "13" 2024-02-05 2024-02-08 0.6 114.4 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "13" 2024-02-05 2024-02-08 0.65 120.35 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "13" 2024-02-05 2024-02-08 0.7 122 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "13" 2024-02-05 2024-02-08 0.75 125.25 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "13" 2024-02-05 2024-02-08 0.8 131.8 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "13" 2024-02-05 2024-02-08 0.85 140.6 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "13" 2024-02-05 2024-02-08 0.9 148 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "13" 2024-02-05 2024-02-08 0.95 158.05 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "13" 2024-02-05 2024-02-08 0.975 161.625 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "13" 2024-02-05 2024-02-08 0.99 167.01 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "13" 2024-02-05 2024-02-09 0.01 63.94 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "13" 2024-02-05 2024-02-09 0.025 65.95 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "13" 2024-02-05 2024-02-09 0.05 70.95 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "13" 2024-02-05 2024-02-09 0.1 80.7 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "13" 2024-02-05 2024-02-09 0.15 86.85 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "13" 2024-02-05 2024-02-09 0.2 92 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "13" 2024-02-05 2024-02-09 0.25 95.75 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "13" 2024-02-05 2024-02-09 0.3 97 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "13" 2024-02-05 2024-02-09 0.35 102 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "13" 2024-02-05 2024-02-09 0.4 104 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "13" 2024-02-05 2024-02-09 0.45 106.55 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "13" 2024-02-05 2024-02-09 0.5 110 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "13" 2024-02-05 2024-02-09 0.55 114.45 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "13" 2024-02-05 2024-02-09 0.6 119 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "13" 2024-02-05 2024-02-09 0.65 122.05 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "13" 2024-02-05 2024-02-09 0.7 127.3 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "13" 2024-02-05 2024-02-09 0.75 130 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "13" 2024-02-05 2024-02-09 0.8 132.2 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "13" 2024-02-05 2024-02-09 0.85 135.9 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "13" 2024-02-05 2024-02-09 0.9 150 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "13" 2024-02-05 2024-02-09 0.95 156.05 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "13" 2024-02-05 2024-02-09 0.975 160.625 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "13" 2024-02-05 2024-02-09 0.99 176.08 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "13" 2024-02-05 2024-02-10 0.01 60.94 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "13" 2024-02-05 2024-02-10 0.025 65 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "13" 2024-02-05 2024-02-10 0.05 69.95 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "13" 2024-02-05 2024-02-10 0.1 71.9 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "13" 2024-02-05 2024-02-10 0.15 77.85 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "13" 2024-02-05 2024-02-10 0.2 81 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "13" 2024-02-05 2024-02-10 0.25 85.5 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "13" 2024-02-05 2024-02-10 0.3 89.7 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "13" 2024-02-05 2024-02-10 0.35 92.65 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "13" 2024-02-05 2024-02-10 0.4 95.6 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "13" 2024-02-05 2024-02-10 0.45 99.1 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "13" 2024-02-05 2024-02-10 0.5 101 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "13" 2024-02-05 2024-02-10 0.55 103.45 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "13" 2024-02-05 2024-02-10 0.6 105.8 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "13" 2024-02-05 2024-02-10 0.65 108.35 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "13" 2024-02-05 2024-02-10 0.7 112 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "13" 2024-02-05 2024-02-10 0.75 115 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "13" 2024-02-05 2024-02-10 0.8 119.2 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "13" 2024-02-05 2024-02-10 0.85 123.3 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "13" 2024-02-05 2024-02-10 0.9 128.1 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "13" 2024-02-05 2024-02-10 0.95 138.15 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "13" 2024-02-05 2024-02-10 0.975 147.525 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "13" 2024-02-05 2024-02-10 0.99 148.22 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "13" 2024-02-05 2024-02-11 0.01 64 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "13" 2024-02-05 2024-02-11 0.025 66.425 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "13" 2024-02-05 2024-02-11 0.05 70.85 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "13" 2024-02-05 2024-02-11 0.1 77.9 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "13" 2024-02-05 2024-02-11 0.15 79 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "13" 2024-02-05 2024-02-11 0.2 86 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "13" 2024-02-05 2024-02-11 0.25 88 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "13" 2024-02-05 2024-02-11 0.3 90 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "13" 2024-02-05 2024-02-11 0.35 92 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "13" 2024-02-05 2024-02-11 0.4 95.6 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "13" 2024-02-05 2024-02-11 0.45 98.55 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "13" 2024-02-05 2024-02-11 0.5 102 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "13" 2024-02-05 2024-02-11 0.55 104 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "13" 2024-02-05 2024-02-11 0.6 107.4 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "13" 2024-02-05 2024-02-11 0.65 110 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "13" 2024-02-05 2024-02-11 0.7 113 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "13" 2024-02-05 2024-02-11 0.75 118.5 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "13" 2024-02-05 2024-02-11 0.8 122.6 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "13" 2024-02-05 2024-02-11 0.85 129 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "13" 2024-02-05 2024-02-11 0.9 136.1 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "13" 2024-02-05 2024-02-11 0.95 143.1 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "13" 2024-02-05 2024-02-11 0.975 159.575 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "13" 2024-02-05 2024-02-11 0.99 175.15 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "13" 2024-02-05 2024-02-12 0.01 62.93 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "13" 2024-02-05 2024-02-12 0.025 73.85 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "13" 2024-02-05 2024-02-12 0.05 78.95 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "13" 2024-02-05 2024-02-12 0.1 82.9 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "13" 2024-02-05 2024-02-12 0.15 86.55 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "13" 2024-02-05 2024-02-12 0.2 91 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "13" 2024-02-05 2024-02-12 0.25 96 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "13" 2024-02-05 2024-02-12 0.3 98 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "13" 2024-02-05 2024-02-12 0.35 102.65 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "13" 2024-02-05 2024-02-12 0.4 111.2 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "13" 2024-02-05 2024-02-12 0.45 115.1 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "13" 2024-02-05 2024-02-12 0.5 118 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "13" 2024-02-05 2024-02-12 0.55 124 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "13" 2024-02-05 2024-02-12 0.6 126.8 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "13" 2024-02-05 2024-02-12 0.65 133 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "13" 2024-02-05 2024-02-12 0.7 136 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "13" 2024-02-05 2024-02-12 0.75 142 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "13" 2024-02-05 2024-02-12 0.8 145 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "13" 2024-02-05 2024-02-12 0.85 151.15 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "13" 2024-02-05 2024-02-12 0.9 156.1 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "13" 2024-02-05 2024-02-12 0.95 168.1 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "13" 2024-02-05 2024-02-12 0.975 180.3 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "13" 2024-02-05 2024-02-12 0.99 223.22 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "13" 2024-02-05 2024-02-13 0.01 63.99 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "13" 2024-02-05 2024-02-13 0.025 68.475 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "13" 2024-02-05 2024-02-13 0.05 75.9 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "13" 2024-02-05 2024-02-13 0.1 80.9 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "13" 2024-02-05 2024-02-13 0.15 86 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "13" 2024-02-05 2024-02-13 0.2 89 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "13" 2024-02-05 2024-02-13 0.25 93.75 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "13" 2024-02-05 2024-02-13 0.3 96.7 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "13" 2024-02-05 2024-02-13 0.35 104.3 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "13" 2024-02-05 2024-02-13 0.4 111 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "13" 2024-02-05 2024-02-13 0.45 112 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "13" 2024-02-05 2024-02-13 0.5 114.5 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "13" 2024-02-05 2024-02-13 0.55 117.45 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "13" 2024-02-05 2024-02-13 0.6 122.4 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "13" 2024-02-05 2024-02-13 0.65 127 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "13" 2024-02-05 2024-02-13 0.7 133.6 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "13" 2024-02-05 2024-02-13 0.75 138 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "13" 2024-02-05 2024-02-13 0.8 143.4 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "13" 2024-02-05 2024-02-13 0.85 151.15 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "13" 2024-02-05 2024-02-13 0.9 164 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "13" 2024-02-05 2024-02-13 0.95 181.25 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "13" 2024-02-05 2024-02-13 0.975 199.6 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "13" 2024-02-05 2024-02-13 0.99 229.4 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "13" 2024-02-05 2024-02-14 0.01 64.98 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "13" 2024-02-05 2024-02-14 0.025 66 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "13" 2024-02-05 2024-02-14 0.05 75.9 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "13" 2024-02-05 2024-02-14 0.1 87.4 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "13" 2024-02-05 2024-02-14 0.15 92 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "13" 2024-02-05 2024-02-14 0.2 97 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "13" 2024-02-05 2024-02-14 0.25 100.75 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "13" 2024-02-05 2024-02-14 0.3 105.7 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "13" 2024-02-05 2024-02-14 0.35 108 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "13" 2024-02-05 2024-02-14 0.4 110.6 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "13" 2024-02-05 2024-02-14 0.45 114 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "13" 2024-02-05 2024-02-14 0.5 119 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "13" 2024-02-05 2024-02-14 0.55 124 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "13" 2024-02-05 2024-02-14 0.6 126.8 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "13" 2024-02-05 2024-02-14 0.65 131.7 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "13" 2024-02-05 2024-02-14 0.7 136 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "13" 2024-02-05 2024-02-14 0.75 142.25 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "13" 2024-02-05 2024-02-14 0.8 150.6 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "13" 2024-02-05 2024-02-14 0.85 157.15 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "13" 2024-02-05 2024-02-14 0.9 169.7 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "13" 2024-02-05 2024-02-14 0.95 180.25 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "13" 2024-02-05 2024-02-14 0.975 201.275 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "13" 2024-02-05 2024-02-14 0.99 237 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "13" 2024-02-05 2024-02-15 0.01 50.95 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "13" 2024-02-05 2024-02-15 0.025 60.375 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "13" 2024-02-05 2024-02-15 0.05 66.8 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "13" 2024-02-05 2024-02-15 0.1 72.9 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "13" 2024-02-05 2024-02-15 0.15 80.25 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "13" 2024-02-05 2024-02-15 0.2 84.8 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "13" 2024-02-05 2024-02-15 0.25 89.75 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "13" 2024-02-05 2024-02-15 0.3 92.7 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "13" 2024-02-05 2024-02-15 0.35 97.65 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "13" 2024-02-05 2024-02-15 0.4 101 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "13" 2024-02-05 2024-02-15 0.45 105.55 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "13" 2024-02-05 2024-02-15 0.5 114.5 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "13" 2024-02-05 2024-02-15 0.55 117.45 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "13" 2024-02-05 2024-02-15 0.6 123 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "13" 2024-02-05 2024-02-15 0.65 126.7 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "13" 2024-02-05 2024-02-15 0.7 131.9 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "13" 2024-02-05 2024-02-15 0.75 137 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "13" 2024-02-05 2024-02-15 0.8 139 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "13" 2024-02-05 2024-02-15 0.85 146.15 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "13" 2024-02-05 2024-02-15 0.9 151 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "13" 2024-02-05 2024-02-15 0.95 163.4 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "13" 2024-02-05 2024-02-15 0.975 173.525 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "13" 2024-02-05 2024-02-15 0.99 174.22 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "13" 2024-02-05 2024-02-16 0.01 45 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "13" 2024-02-05 2024-02-16 0.025 50.475 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "13" 2024-02-05 2024-02-16 0.05 61 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "13" 2024-02-05 2024-02-16 0.1 71 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "13" 2024-02-05 2024-02-16 0.15 77 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "13" 2024-02-05 2024-02-16 0.2 82 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "13" 2024-02-05 2024-02-16 0.25 87 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "13" 2024-02-05 2024-02-16 0.3 92.7 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "13" 2024-02-05 2024-02-16 0.35 99.65 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "13" 2024-02-05 2024-02-16 0.4 102.6 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "13" 2024-02-05 2024-02-16 0.45 109.1 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "13" 2024-02-05 2024-02-16 0.5 110.5 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "13" 2024-02-05 2024-02-16 0.55 114.45 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "13" 2024-02-05 2024-02-16 0.6 119 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "13" 2024-02-05 2024-02-16 0.65 124 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "13" 2024-02-05 2024-02-16 0.7 126 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "13" 2024-02-05 2024-02-16 0.75 129 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "13" 2024-02-05 2024-02-16 0.8 133 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "13" 2024-02-05 2024-02-16 0.85 147.15 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "13" 2024-02-05 2024-02-16 0.9 152.2 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "13" 2024-02-05 2024-02-16 0.95 159.4 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "13" 2024-02-05 2024-02-16 0.975 181.15 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "13" 2024-02-05 2024-02-16 0.99 193.44 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "13" 2024-02-05 2024-02-17 0.01 51.9 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "13" 2024-02-05 2024-02-17 0.025 59 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "13" 2024-02-05 2024-02-17 0.05 62.85 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "13" 2024-02-05 2024-02-17 0.1 69 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "13" 2024-02-05 2024-02-17 0.15 72 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "13" 2024-02-05 2024-02-17 0.2 75 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "13" 2024-02-05 2024-02-17 0.25 78 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "13" 2024-02-05 2024-02-17 0.3 85 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "13" 2024-02-05 2024-02-17 0.35 90 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "13" 2024-02-05 2024-02-17 0.4 92 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "13" 2024-02-05 2024-02-17 0.45 99.55 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "13" 2024-02-05 2024-02-17 0.5 102 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "13" 2024-02-05 2024-02-17 0.55 108.45 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "13" 2024-02-05 2024-02-17 0.6 110 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "13" 2024-02-05 2024-02-17 0.65 113.35 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "13" 2024-02-05 2024-02-17 0.7 117 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "13" 2024-02-05 2024-02-17 0.75 121.5 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "13" 2024-02-05 2024-02-17 0.8 127.2 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "13" 2024-02-05 2024-02-17 0.85 129 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "13" 2024-02-05 2024-02-17 0.9 136.7 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "13" 2024-02-05 2024-02-17 0.95 150.15 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "13" 2024-02-05 2024-02-17 0.975 173.1 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "13" 2024-02-05 2024-02-17 0.99 205.43 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "13" 2024-02-05 2024-02-18 0.01 52.97 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "13" 2024-02-05 2024-02-18 0.025 56.425 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "13" 2024-02-05 2024-02-18 0.05 60.85 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "13" 2024-02-05 2024-02-18 0.1 70 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "13" 2024-02-05 2024-02-18 0.15 72 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "13" 2024-02-05 2024-02-18 0.2 74.8 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "13" 2024-02-05 2024-02-18 0.25 79.75 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "13" 2024-02-05 2024-02-18 0.3 83.7 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "13" 2024-02-05 2024-02-18 0.35 86.65 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "13" 2024-02-05 2024-02-18 0.4 91.2 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "13" 2024-02-05 2024-02-18 0.45 96 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "13" 2024-02-05 2024-02-18 0.5 101.5 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "13" 2024-02-05 2024-02-18 0.55 106 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "13" 2024-02-05 2024-02-18 0.6 111.4 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "13" 2024-02-05 2024-02-18 0.65 115.35 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "13" 2024-02-05 2024-02-18 0.7 118.3 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "13" 2024-02-05 2024-02-18 0.75 122.75 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "13" 2024-02-05 2024-02-18 0.8 130 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "13" 2024-02-05 2024-02-18 0.85 134.15 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "13" 2024-02-05 2024-02-18 0.9 138.1 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "13" 2024-02-05 2024-02-18 0.95 161.6 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "13" 2024-02-05 2024-02-18 0.975 183.4 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "13" 2024-02-05 2024-02-18 0.99 194 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "13" 2024-02-05 2024-02-19 0.01 54 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "13" 2024-02-05 2024-02-19 0.025 54.475 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "13" 2024-02-05 2024-02-19 0.05 62.95 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "13" 2024-02-05 2024-02-19 0.1 74.8 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "13" 2024-02-05 2024-02-19 0.15 79.7 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "13" 2024-02-05 2024-02-19 0.2 87.8 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "13" 2024-02-05 2024-02-19 0.25 91 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "13" 2024-02-05 2024-02-19 0.3 99.1 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "13" 2024-02-05 2024-02-19 0.35 107.25 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "13" 2024-02-05 2024-02-19 0.4 112.6 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "13" 2024-02-05 2024-02-19 0.45 116 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "13" 2024-02-05 2024-02-19 0.5 122 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "13" 2024-02-05 2024-02-19 0.55 125.9 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "13" 2024-02-05 2024-02-19 0.6 131.4 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "13" 2024-02-05 2024-02-19 0.65 136.35 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "13" 2024-02-05 2024-02-19 0.7 139.3 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "13" 2024-02-05 2024-02-19 0.75 147 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "13" 2024-02-05 2024-02-19 0.8 151.6 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "13" 2024-02-05 2024-02-19 0.85 157.15 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "13" 2024-02-05 2024-02-19 0.9 163.2 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "13" 2024-02-05 2024-02-19 0.95 197.15 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "13" 2024-02-05 2024-02-19 0.975 225.95 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "13" 2024-02-05 2024-02-19 0.99 291.1 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "13" 2024-02-05 2024-02-20 0.01 53.9 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "13" 2024-02-05 2024-02-20 0.025 59 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "13" 2024-02-05 2024-02-20 0.05 64.95 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "13" 2024-02-05 2024-02-20 0.1 72.9 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "13" 2024-02-05 2024-02-20 0.15 77.85 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "13" 2024-02-05 2024-02-20 0.2 82 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "13" 2024-02-05 2024-02-20 0.25 87.75 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "13" 2024-02-05 2024-02-20 0.3 91 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "13" 2024-02-05 2024-02-20 0.35 105.3 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "13" 2024-02-05 2024-02-20 0.4 108.6 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "13" 2024-02-05 2024-02-20 0.45 117.55 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "13" 2024-02-05 2024-02-20 0.5 123 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "13" 2024-02-05 2024-02-20 0.55 130.45 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "13" 2024-02-05 2024-02-20 0.6 137 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "13" 2024-02-05 2024-02-20 0.65 143.05 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "13" 2024-02-05 2024-02-20 0.7 151 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "13" 2024-02-05 2024-02-20 0.75 155.25 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "13" 2024-02-05 2024-02-20 0.8 157.4 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "13" 2024-02-05 2024-02-20 0.85 162.3 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "13" 2024-02-05 2024-02-20 0.9 173.1 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "13" 2024-02-05 2024-02-20 0.95 178.5 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "13" 2024-02-05 2024-02-20 0.975 198.2 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "13" 2024-02-05 2024-02-20 0.99 238.79 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "13" 2024-02-05 2024-02-21 0.01 50.98 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "13" 2024-02-05 2024-02-21 0.025 55.8 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "13" 2024-02-05 2024-02-21 0.05 64.8 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "13" 2024-02-05 2024-02-21 0.1 75 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "13" 2024-02-05 2024-02-21 0.15 85.7 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "13" 2024-02-05 2024-02-21 0.2 89.8 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "13" 2024-02-05 2024-02-21 0.25 96.75 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "13" 2024-02-05 2024-02-21 0.3 106.7 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "13" 2024-02-05 2024-02-21 0.35 109.3 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "13" 2024-02-05 2024-02-21 0.4 114.2 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "13" 2024-02-05 2024-02-21 0.45 119.75 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "13" 2024-02-05 2024-02-21 0.5 126 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "13" 2024-02-05 2024-02-21 0.55 130.45 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "13" 2024-02-05 2024-02-21 0.6 136.4 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "13" 2024-02-05 2024-02-21 0.65 141 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "13" 2024-02-05 2024-02-21 0.7 144.3 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "13" 2024-02-05 2024-02-21 0.75 147.75 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "13" 2024-02-05 2024-02-21 0.8 154.2 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "13" 2024-02-05 2024-02-21 0.85 163.6 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "13" 2024-02-05 2024-02-21 0.9 173.2 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "13" 2024-02-05 2024-02-21 0.95 188.25 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "13" 2024-02-05 2024-02-21 0.975 249.975 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "13" 2024-02-05 2024-02-21 0.99 299.44 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "13" 2024-02-05 2024-02-22 0.01 45.98 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "13" 2024-02-05 2024-02-22 0.025 53.425 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "13" 2024-02-05 2024-02-22 0.05 59 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "13" 2024-02-05 2024-02-22 0.1 67.9 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "13" 2024-02-05 2024-02-22 0.15 76.4 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "13" 2024-02-05 2024-02-22 0.2 82.4 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "13" 2024-02-05 2024-02-22 0.25 86 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "13" 2024-02-05 2024-02-22 0.3 89.7 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "13" 2024-02-05 2024-02-22 0.35 97.95 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "13" 2024-02-05 2024-02-22 0.4 103 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "13" 2024-02-05 2024-02-22 0.45 108.65 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "13" 2024-02-05 2024-02-22 0.5 113.5 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "13" 2024-02-05 2024-02-22 0.55 118.45 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "13" 2024-02-05 2024-02-22 0.6 123.4 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "13" 2024-02-05 2024-02-22 0.65 127.35 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "13" 2024-02-05 2024-02-22 0.7 132.3 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "13" 2024-02-05 2024-02-22 0.75 142.25 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "13" 2024-02-05 2024-02-22 0.8 147.2 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "13" 2024-02-05 2024-02-22 0.85 151.15 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "13" 2024-02-05 2024-02-22 0.9 158.2 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "13" 2024-02-05 2024-02-22 0.95 177.05 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "13" 2024-02-05 2024-02-22 0.975 189.775 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "13" 2024-02-05 2024-02-22 0.99 245.38 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "13" 2024-02-05 2024-02-23 0.01 58.94 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "13" 2024-02-05 2024-02-23 0.025 63 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "13" 2024-02-05 2024-02-23 0.05 63.95 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "13" 2024-02-05 2024-02-23 0.1 67 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "13" 2024-02-05 2024-02-23 0.15 69.85 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "13" 2024-02-05 2024-02-23 0.2 73.6 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "13" 2024-02-05 2024-02-23 0.25 82.75 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "13" 2024-02-05 2024-02-23 0.3 87.7 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "13" 2024-02-05 2024-02-23 0.35 92 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "13" 2024-02-05 2024-02-23 0.4 96 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "13" 2024-02-05 2024-02-23 0.45 103 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "13" 2024-02-05 2024-02-23 0.5 106 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "13" 2024-02-05 2024-02-23 0.55 109.45 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "13" 2024-02-05 2024-02-23 0.6 114.8 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "13" 2024-02-05 2024-02-23 0.65 119.35 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "13" 2024-02-05 2024-02-23 0.7 126.8 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "13" 2024-02-05 2024-02-23 0.75 136 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "13" 2024-02-05 2024-02-23 0.8 142.4 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "13" 2024-02-05 2024-02-23 0.85 154.45 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "13" 2024-02-05 2024-02-23 0.9 168.3 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "13" 2024-02-05 2024-02-23 0.95 186.25 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "13" 2024-02-05 2024-02-23 0.975 203.3 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "13" 2024-02-05 2024-02-23 0.99 259.6 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "13" 2024-02-05 2024-02-24 0.01 41.97 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "13" 2024-02-05 2024-02-24 0.025 46.85 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "13" 2024-02-05 2024-02-24 0.05 53.95 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "13" 2024-02-05 2024-02-24 0.1 57 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "13" 2024-02-05 2024-02-24 0.15 60.85 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "13" 2024-02-05 2024-02-24 0.2 65.8 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "13" 2024-02-05 2024-02-24 0.25 73.25 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "13" 2024-02-05 2024-02-24 0.3 79.1 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "13" 2024-02-05 2024-02-24 0.35 82 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "13" 2024-02-05 2024-02-24 0.4 90 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "13" 2024-02-05 2024-02-24 0.45 95.2 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "13" 2024-02-05 2024-02-24 0.5 101 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "13" 2024-02-05 2024-02-24 0.55 105 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "13" 2024-02-05 2024-02-24 0.6 107.4 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "13" 2024-02-05 2024-02-24 0.65 113 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "13" 2024-02-05 2024-02-24 0.7 120.5 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "13" 2024-02-05 2024-02-24 0.75 131 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "13" 2024-02-05 2024-02-24 0.8 142.2 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "13" 2024-02-05 2024-02-24 0.85 146.3 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "13" 2024-02-05 2024-02-24 0.9 160.1 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "13" 2024-02-05 2024-02-24 0.95 171.45 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "13" 2024-02-05 2024-02-24 0.975 189.2 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "13" 2024-02-05 2024-02-24 0.99 234.2 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "13" 2024-02-05 2024-02-25 0.01 42.93 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "13" 2024-02-05 2024-02-25 0.025 44.475 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "13" 2024-02-05 2024-02-25 0.05 47 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "13" 2024-02-05 2024-02-25 0.1 57.9 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "13" 2024-02-05 2024-02-25 0.15 63.7 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "13" 2024-02-05 2024-02-25 0.2 67.8 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "13" 2024-02-05 2024-02-25 0.25 72 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "13" 2024-02-05 2024-02-25 0.3 76.4 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "13" 2024-02-05 2024-02-25 0.35 84.65 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "13" 2024-02-05 2024-02-25 0.4 88 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "13" 2024-02-05 2024-02-25 0.45 96.55 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "13" 2024-02-05 2024-02-25 0.5 105.5 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "13" 2024-02-05 2024-02-25 0.55 107.45 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "13" 2024-02-05 2024-02-25 0.6 110.8 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "13" 2024-02-05 2024-02-25 0.65 119 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "13" 2024-02-05 2024-02-25 0.7 124 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "13" 2024-02-05 2024-02-25 0.75 127.25 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "13" 2024-02-05 2024-02-25 0.8 132.6 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "13" 2024-02-05 2024-02-25 0.85 145.15 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "13" 2024-02-05 2024-02-25 0.9 154.2 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "13" 2024-02-05 2024-02-25 0.95 180.55 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "13" 2024-02-05 2024-02-25 0.975 209.65 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "13" 2024-02-05 2024-02-25 0.99 222.81 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "13" 2024-02-05 2024-02-26 0.01 49.99 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "13" 2024-02-05 2024-02-26 0.025 55.475 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "13" 2024-02-05 2024-02-26 0.05 57.95 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "13" 2024-02-05 2024-02-26 0.1 68.8 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "13" 2024-02-05 2024-02-26 0.15 74.85 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "13" 2024-02-05 2024-02-26 0.2 82.2 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "13" 2024-02-05 2024-02-26 0.25 89 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "13" 2024-02-05 2024-02-26 0.3 94.4 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "13" 2024-02-05 2024-02-26 0.35 99.65 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "13" 2024-02-05 2024-02-26 0.4 106.6 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "13" 2024-02-05 2024-02-26 0.45 111 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "13" 2024-02-05 2024-02-26 0.5 120.5 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "13" 2024-02-05 2024-02-26 0.55 124.9 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "13" 2024-02-05 2024-02-26 0.6 131 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "13" 2024-02-05 2024-02-26 0.65 134.7 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "13" 2024-02-05 2024-02-26 0.7 141 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "13" 2024-02-05 2024-02-26 0.75 149.75 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "13" 2024-02-05 2024-02-26 0.8 160.6 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "13" 2024-02-05 2024-02-26 0.85 170.45 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "13" 2024-02-05 2024-02-26 0.9 183 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "13" 2024-02-05 2024-02-26 0.95 207.25 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "13" 2024-02-05 2024-02-26 0.975 251.425 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "13" 2024-02-05 2024-02-26 0.99 296.360000000001 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "13" 2024-02-05 2024-02-27 0.01 45 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "13" 2024-02-05 2024-02-27 0.025 50.475 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "13" 2024-02-05 2024-02-27 0.05 54.9 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "13" 2024-02-05 2024-02-27 0.1 63.8 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "13" 2024-02-05 2024-02-27 0.15 69 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "13" 2024-02-05 2024-02-27 0.2 75.8 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "13" 2024-02-05 2024-02-27 0.25 81.75 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "13" 2024-02-05 2024-02-27 0.3 91.4 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "13" 2024-02-05 2024-02-27 0.35 94 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "13" 2024-02-05 2024-02-27 0.4 104.8 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "13" 2024-02-05 2024-02-27 0.45 115 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "13" 2024-02-05 2024-02-27 0.5 123 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "13" 2024-02-05 2024-02-27 0.55 127 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "13" 2024-02-05 2024-02-27 0.6 130.4 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "13" 2024-02-05 2024-02-27 0.65 137.05 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "13" 2024-02-05 2024-02-27 0.7 149 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "13" 2024-02-05 2024-02-27 0.75 154 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "13" 2024-02-05 2024-02-27 0.8 160.6 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "13" 2024-02-05 2024-02-27 0.85 170.75 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "13" 2024-02-05 2024-02-27 0.9 181.3 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "13" 2024-02-05 2024-02-27 0.95 212.05 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "13" 2024-02-05 2024-02-27 0.975 233.075 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "13" 2024-02-05 2024-02-27 0.99 296.89 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "13" 2024-02-05 2024-02-28 0.01 45.95 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "13" 2024-02-05 2024-02-28 0.025 51.325 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "13" 2024-02-05 2024-02-28 0.05 56.95 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "13" 2024-02-05 2024-02-28 0.1 66 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "13" 2024-02-05 2024-02-28 0.15 75 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "13" 2024-02-05 2024-02-28 0.2 80.8 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "13" 2024-02-05 2024-02-28 0.25 84.75 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "13" 2024-02-05 2024-02-28 0.3 99.7 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "13" 2024-02-05 2024-02-28 0.35 104 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "13" 2024-02-05 2024-02-28 0.4 109.2 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "13" 2024-02-05 2024-02-28 0.45 116.55 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "13" 2024-02-05 2024-02-28 0.5 120.5 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "13" 2024-02-05 2024-02-28 0.55 126 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "13" 2024-02-05 2024-02-28 0.6 135 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "13" 2024-02-05 2024-02-28 0.65 139.7 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "13" 2024-02-05 2024-02-28 0.7 145.6 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "13" 2024-02-05 2024-02-28 0.75 155.5 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "13" 2024-02-05 2024-02-28 0.8 165.4 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "13" 2024-02-05 2024-02-28 0.85 181 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "13" 2024-02-05 2024-02-28 0.9 200.6 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "13" 2024-02-05 2024-02-28 0.95 223.25 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "13" 2024-02-05 2024-02-28 0.975 252.725 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "13" 2024-02-05 2024-02-28 0.99 311.68 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "13" 2024-02-05 2024-02-29 0.01 42.95 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "13" 2024-02-05 2024-02-29 0.025 45.9 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "13" 2024-02-05 2024-02-29 0.05 52 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "13" 2024-02-05 2024-02-29 0.1 63.8 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "13" 2024-02-05 2024-02-29 0.15 66.85 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "13" 2024-02-05 2024-02-29 0.2 73.6 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "13" 2024-02-05 2024-02-29 0.25 82 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "13" 2024-02-05 2024-02-29 0.3 94.4 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "13" 2024-02-05 2024-02-29 0.35 98 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "13" 2024-02-05 2024-02-29 0.4 105 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "13" 2024-02-05 2024-02-29 0.45 108.55 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "13" 2024-02-05 2024-02-29 0.5 113 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "13" 2024-02-05 2024-02-29 0.55 121.45 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "13" 2024-02-05 2024-02-29 0.6 126.4 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "13" 2024-02-05 2024-02-29 0.65 129.35 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "13" 2024-02-05 2024-02-29 0.7 134.9 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "13" 2024-02-05 2024-02-29 0.75 144 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "13" 2024-02-05 2024-02-29 0.8 154.8 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "13" 2024-02-05 2024-02-29 0.85 170 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "13" 2024-02-05 2024-02-29 0.9 176.1 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "13" 2024-02-05 2024-02-29 0.95 191.35 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "13" 2024-02-05 2024-02-29 0.975 240.7 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "13" 2024-02-05 2024-02-29 0.99 268.97 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "13" 2024-02-05 2024-03-01 0.01 33.96 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "13" 2024-02-05 2024-03-01 0.025 46.9 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "13" 2024-02-05 2024-03-01 0.05 54 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "13" 2024-02-05 2024-03-01 0.1 61.9 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "13" 2024-02-05 2024-03-01 0.15 67 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "13" 2024-02-05 2024-03-01 0.2 69 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "13" 2024-02-05 2024-03-01 0.25 72.75 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "13" 2024-02-05 2024-03-01 0.3 80.7 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "13" 2024-02-05 2024-03-01 0.35 85.3 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "13" 2024-02-05 2024-03-01 0.4 92.6 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "13" 2024-02-05 2024-03-01 0.45 104.65 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "13" 2024-02-05 2024-03-01 0.5 110.5 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "13" 2024-02-05 2024-03-01 0.55 115.45 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "13" 2024-02-05 2024-03-01 0.6 122.4 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "13" 2024-02-05 2024-03-01 0.65 127.35 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "13" 2024-02-05 2024-03-01 0.7 135.3 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "13" 2024-02-05 2024-03-01 0.75 145.5 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "13" 2024-02-05 2024-03-01 0.8 153 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "13" 2024-02-05 2024-03-01 0.85 168.6 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "13" 2024-02-05 2024-03-01 0.9 187.1 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "13" 2024-02-05 2024-03-01 0.95 201.1 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "13" 2024-02-05 2024-03-01 0.975 237.45 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "13" 2024-02-05 2024-03-01 0.99 299.280000000001 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "13" 2024-02-05 2024-03-02 0.01 29.97 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "13" 2024-02-05 2024-03-02 0.025 34.375 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "13" 2024-02-05 2024-03-02 0.05 41.9 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "13" 2024-02-05 2024-03-02 0.1 51 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "13" 2024-02-05 2024-03-02 0.15 57.55 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "13" 2024-02-05 2024-03-02 0.2 63 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "13" 2024-02-05 2024-03-02 0.25 70.75 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "13" 2024-02-05 2024-03-02 0.3 78 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "13" 2024-02-05 2024-03-02 0.35 84.3 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "13" 2024-02-05 2024-03-02 0.4 89.6 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "13" 2024-02-05 2024-03-02 0.45 92.55 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "13" 2024-02-05 2024-03-02 0.5 96 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "13" 2024-02-05 2024-03-02 0.55 101.9 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "13" 2024-02-05 2024-03-02 0.6 110.8 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "13" 2024-02-05 2024-03-02 0.65 114 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "13" 2024-02-05 2024-03-02 0.7 127.6 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "13" 2024-02-05 2024-03-02 0.75 139 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "13" 2024-02-05 2024-03-02 0.8 149.4 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "13" 2024-02-05 2024-03-02 0.85 159.15 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "13" 2024-02-05 2024-03-02 0.9 172.3 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "13" 2024-02-05 2024-03-02 0.95 189.05 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "13" 2024-02-05 2024-03-02 0.975 221.9 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "13" 2024-02-05 2024-03-02 0.99 296.420000000001 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "13" 2024-02-05 2024-03-03 0.01 29.93 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "13" 2024-02-05 2024-03-03 0.025 31.425 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "13" 2024-02-05 2024-03-03 0.05 46.75 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "13" 2024-02-05 2024-03-03 0.1 55.8 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "13" 2024-02-05 2024-03-03 0.15 61.7 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "13" 2024-02-05 2024-03-03 0.2 68.8 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "13" 2024-02-05 2024-03-03 0.25 71.5 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "13" 2024-02-05 2024-03-03 0.3 79.8 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "13" 2024-02-05 2024-03-03 0.35 87 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "13" 2024-02-05 2024-03-03 0.4 90 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "13" 2024-02-05 2024-03-03 0.45 91 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "13" 2024-02-05 2024-03-03 0.5 101 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "13" 2024-02-05 2024-03-03 0.55 109.45 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "13" 2024-02-05 2024-03-03 0.6 115 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "13" 2024-02-05 2024-03-03 0.65 119.35 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "13" 2024-02-05 2024-03-03 0.7 123 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "13" 2024-02-05 2024-03-03 0.75 134 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "13" 2024-02-05 2024-03-03 0.8 149 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "13" 2024-02-05 2024-03-03 0.85 154.75 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "13" 2024-02-05 2024-03-03 0.9 171.3 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "13" 2024-02-05 2024-03-03 0.95 188.1 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "13" 2024-02-05 2024-03-03 0.975 216.05 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "13" 2024-02-05 2024-03-03 0.99 293.86 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "13" 2024-02-05 2024-03-04 0.01 30.99 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "13" 2024-02-05 2024-03-04 0.025 40.85 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "13" 2024-02-05 2024-03-04 0.05 49.7 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "13" 2024-02-05 2024-03-04 0.1 66 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "13" 2024-02-05 2024-03-04 0.15 69 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "13" 2024-02-05 2024-03-04 0.2 74.8 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "13" 2024-02-05 2024-03-04 0.25 85.75 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "13" 2024-02-05 2024-03-04 0.3 92 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "13" 2024-02-05 2024-03-04 0.35 101.65 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "13" 2024-02-05 2024-03-04 0.4 105.6 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "13" 2024-02-05 2024-03-04 0.45 108.1 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "13" 2024-02-05 2024-03-04 0.5 113 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "13" 2024-02-05 2024-03-04 0.55 123.45 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "13" 2024-02-05 2024-03-04 0.6 131.8 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "13" 2024-02-05 2024-03-04 0.65 135.35 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "13" 2024-02-05 2024-03-04 0.7 144.9 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "13" 2024-02-05 2024-03-04 0.75 159.5 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "13" 2024-02-05 2024-03-04 0.8 172.4 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "13" 2024-02-05 2024-03-04 0.85 189.3 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "13" 2024-02-05 2024-03-04 0.9 205.2 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "13" 2024-02-05 2024-03-04 0.95 222.6 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "13" 2024-02-05 2024-03-04 0.975 254.975 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "13" 2024-02-05 2024-03-04 0.99 340.820000000001 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "15" 2024-02-05 2024-02-06 0.01 9.99 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "15" 2024-02-05 2024-02-06 0.025 10 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "15" 2024-02-05 2024-02-06 0.05 10.95 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "15" 2024-02-05 2024-02-06 0.1 11 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "15" 2024-02-05 2024-02-06 0.15 12 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "15" 2024-02-05 2024-02-06 0.2 14 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "15" 2024-02-05 2024-02-06 0.25 15 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "15" 2024-02-05 2024-02-06 0.3 15.7 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "15" 2024-02-05 2024-02-06 0.35 16 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "15" 2024-02-05 2024-02-06 0.4 16 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "15" 2024-02-05 2024-02-06 0.45 17 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "15" 2024-02-05 2024-02-06 0.5 17 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "15" 2024-02-05 2024-02-06 0.55 18 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "15" 2024-02-05 2024-02-06 0.6 18 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "15" 2024-02-05 2024-02-06 0.65 19 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "15" 2024-02-05 2024-02-06 0.7 19 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "15" 2024-02-05 2024-02-06 0.75 20 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "15" 2024-02-05 2024-02-06 0.8 21 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "15" 2024-02-05 2024-02-06 0.85 22.15 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "15" 2024-02-05 2024-02-06 0.9 24 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "15" 2024-02-05 2024-02-06 0.95 26 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "15" 2024-02-05 2024-02-06 0.975 27 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "15" 2024-02-05 2024-02-06 0.99 27.03 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "15" 2024-02-05 2024-02-07 0.01 6.99 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "15" 2024-02-05 2024-02-07 0.025 8.95 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "15" 2024-02-05 2024-02-07 0.05 10 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "15" 2024-02-05 2024-02-07 0.1 11 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "15" 2024-02-05 2024-02-07 0.15 12 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "15" 2024-02-05 2024-02-07 0.2 12 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "15" 2024-02-05 2024-02-07 0.25 13 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "15" 2024-02-05 2024-02-07 0.3 13 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "15" 2024-02-05 2024-02-07 0.35 14 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "15" 2024-02-05 2024-02-07 0.4 14 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "15" 2024-02-05 2024-02-07 0.45 15 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "15" 2024-02-05 2024-02-07 0.5 16 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "15" 2024-02-05 2024-02-07 0.55 16 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "15" 2024-02-05 2024-02-07 0.6 17 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "15" 2024-02-05 2024-02-07 0.65 17 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "15" 2024-02-05 2024-02-07 0.7 18 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "15" 2024-02-05 2024-02-07 0.75 19 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "15" 2024-02-05 2024-02-07 0.8 20 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "15" 2024-02-05 2024-02-07 0.85 21 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "15" 2024-02-05 2024-02-07 0.9 22 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "15" 2024-02-05 2024-02-07 0.95 25.1 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "15" 2024-02-05 2024-02-07 0.975 27 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "15" 2024-02-05 2024-02-07 0.99 27.01 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "15" 2024-02-05 2024-02-08 0.01 6 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "15" 2024-02-05 2024-02-08 0.025 7.475 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "15" 2024-02-05 2024-02-08 0.05 9 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "15" 2024-02-05 2024-02-08 0.1 9.9 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "15" 2024-02-05 2024-02-08 0.15 11.85 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "15" 2024-02-05 2024-02-08 0.2 13 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "15" 2024-02-05 2024-02-08 0.25 13 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "15" 2024-02-05 2024-02-08 0.3 14 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "15" 2024-02-05 2024-02-08 0.35 15 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "15" 2024-02-05 2024-02-08 0.4 15 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "15" 2024-02-05 2024-02-08 0.45 16 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "15" 2024-02-05 2024-02-08 0.5 16 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "15" 2024-02-05 2024-02-08 0.55 17 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "15" 2024-02-05 2024-02-08 0.6 18 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "15" 2024-02-05 2024-02-08 0.65 19 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "15" 2024-02-05 2024-02-08 0.7 19 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "15" 2024-02-05 2024-02-08 0.75 21 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "15" 2024-02-05 2024-02-08 0.8 21.2 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "15" 2024-02-05 2024-02-08 0.85 23 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "15" 2024-02-05 2024-02-08 0.9 25 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "15" 2024-02-05 2024-02-08 0.95 28.05 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "15" 2024-02-05 2024-02-08 0.975 30 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "15" 2024-02-05 2024-02-08 0.99 30.03 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "15" 2024-02-05 2024-02-09 0.01 7.98 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "15" 2024-02-05 2024-02-09 0.025 9 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "15" 2024-02-05 2024-02-09 0.05 9 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "15" 2024-02-05 2024-02-09 0.1 9 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "15" 2024-02-05 2024-02-09 0.15 10 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "15" 2024-02-05 2024-02-09 0.2 11 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "15" 2024-02-05 2024-02-09 0.25 11 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "15" 2024-02-05 2024-02-09 0.3 12 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "15" 2024-02-05 2024-02-09 0.35 12.65 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "15" 2024-02-05 2024-02-09 0.4 13 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "15" 2024-02-05 2024-02-09 0.45 13.55 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "15" 2024-02-05 2024-02-09 0.5 14.5 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "15" 2024-02-05 2024-02-09 0.55 15 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "15" 2024-02-05 2024-02-09 0.6 16 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "15" 2024-02-05 2024-02-09 0.65 17 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "15" 2024-02-05 2024-02-09 0.7 18 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "15" 2024-02-05 2024-02-09 0.75 18.25 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "15" 2024-02-05 2024-02-09 0.8 19 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "15" 2024-02-05 2024-02-09 0.85 20 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "15" 2024-02-05 2024-02-09 0.9 22 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "15" 2024-02-05 2024-02-09 0.95 23.05 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "15" 2024-02-05 2024-02-09 0.975 24.525 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "15" 2024-02-05 2024-02-09 0.99 25.01 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "15" 2024-02-05 2024-02-10 0.01 6.97 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "15" 2024-02-05 2024-02-10 0.025 7.475 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "15" 2024-02-05 2024-02-10 0.05 9 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "15" 2024-02-05 2024-02-10 0.1 10 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "15" 2024-02-05 2024-02-10 0.15 11 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "15" 2024-02-05 2024-02-10 0.2 12 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "15" 2024-02-05 2024-02-10 0.25 13 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "15" 2024-02-05 2024-02-10 0.3 14 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "15" 2024-02-05 2024-02-10 0.35 14 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "15" 2024-02-05 2024-02-10 0.4 15 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "15" 2024-02-05 2024-02-10 0.45 16 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "15" 2024-02-05 2024-02-10 0.5 16 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "15" 2024-02-05 2024-02-10 0.55 17 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "15" 2024-02-05 2024-02-10 0.6 17.4 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "15" 2024-02-05 2024-02-10 0.65 18 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "15" 2024-02-05 2024-02-10 0.7 19 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "15" 2024-02-05 2024-02-10 0.75 19.25 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "15" 2024-02-05 2024-02-10 0.8 20 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "15" 2024-02-05 2024-02-10 0.85 22 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "15" 2024-02-05 2024-02-10 0.9 23 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "15" 2024-02-05 2024-02-10 0.95 25 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "15" 2024-02-05 2024-02-10 0.975 25.525 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "15" 2024-02-05 2024-02-10 0.99 26 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "15" 2024-02-05 2024-02-11 0.01 9.99 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "15" 2024-02-05 2024-02-11 0.025 10 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "15" 2024-02-05 2024-02-11 0.05 11 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "15" 2024-02-05 2024-02-11 0.1 12.9 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "15" 2024-02-05 2024-02-11 0.15 13 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "15" 2024-02-05 2024-02-11 0.2 14 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "15" 2024-02-05 2024-02-11 0.25 14 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "15" 2024-02-05 2024-02-11 0.3 15 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "15" 2024-02-05 2024-02-11 0.35 16 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "15" 2024-02-05 2024-02-11 0.4 17 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "15" 2024-02-05 2024-02-11 0.45 17 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "15" 2024-02-05 2024-02-11 0.5 18 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "15" 2024-02-05 2024-02-11 0.55 19 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "15" 2024-02-05 2024-02-11 0.6 19.4 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "15" 2024-02-05 2024-02-11 0.65 20 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "15" 2024-02-05 2024-02-11 0.7 20 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "15" 2024-02-05 2024-02-11 0.75 21 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "15" 2024-02-05 2024-02-11 0.8 22 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "15" 2024-02-05 2024-02-11 0.85 23 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "15" 2024-02-05 2024-02-11 0.9 24.1 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "15" 2024-02-05 2024-02-11 0.95 27 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "15" 2024-02-05 2024-02-11 0.975 28 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "15" 2024-02-05 2024-02-11 0.99 31.03 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "15" 2024-02-05 2024-02-12 0.01 6.96 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "15" 2024-02-05 2024-02-12 0.025 9 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "15" 2024-02-05 2024-02-12 0.05 10.95 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "15" 2024-02-05 2024-02-12 0.1 11 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "15" 2024-02-05 2024-02-12 0.15 13.85 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "15" 2024-02-05 2024-02-12 0.2 14.8 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "15" 2024-02-05 2024-02-12 0.25 15 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "15" 2024-02-05 2024-02-12 0.3 15.7 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "15" 2024-02-05 2024-02-12 0.35 16 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "15" 2024-02-05 2024-02-12 0.4 17 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "15" 2024-02-05 2024-02-12 0.45 17 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "15" 2024-02-05 2024-02-12 0.5 18 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "15" 2024-02-05 2024-02-12 0.55 19.45 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "15" 2024-02-05 2024-02-12 0.6 20 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "15" 2024-02-05 2024-02-12 0.65 20 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "15" 2024-02-05 2024-02-12 0.7 21 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "15" 2024-02-05 2024-02-12 0.75 21 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "15" 2024-02-05 2024-02-12 0.8 22 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "15" 2024-02-05 2024-02-12 0.85 23 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "15" 2024-02-05 2024-02-12 0.9 24.1 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "15" 2024-02-05 2024-02-12 0.95 26.1 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "15" 2024-02-05 2024-02-12 0.975 30.1 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "15" 2024-02-05 2024-02-12 0.99 32.1100000000001 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "15" 2024-02-05 2024-02-13 0.01 7.99 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "15" 2024-02-05 2024-02-13 0.025 8.475 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "15" 2024-02-05 2024-02-13 0.05 10 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "15" 2024-02-05 2024-02-13 0.1 12 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "15" 2024-02-05 2024-02-13 0.15 13 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "15" 2024-02-05 2024-02-13 0.2 14 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "15" 2024-02-05 2024-02-13 0.25 14 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "15" 2024-02-05 2024-02-13 0.3 15 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "15" 2024-02-05 2024-02-13 0.35 15 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "15" 2024-02-05 2024-02-13 0.4 16 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "15" 2024-02-05 2024-02-13 0.45 16 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "15" 2024-02-05 2024-02-13 0.5 17 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "15" 2024-02-05 2024-02-13 0.55 17 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "15" 2024-02-05 2024-02-13 0.6 17 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "15" 2024-02-05 2024-02-13 0.65 18 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "15" 2024-02-05 2024-02-13 0.7 18.3 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "15" 2024-02-05 2024-02-13 0.75 19 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "15" 2024-02-05 2024-02-13 0.8 21 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "15" 2024-02-05 2024-02-13 0.85 21.15 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "15" 2024-02-05 2024-02-13 0.9 22 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "15" 2024-02-05 2024-02-13 0.95 23 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "15" 2024-02-05 2024-02-13 0.975 24 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "15" 2024-02-05 2024-02-13 0.99 24.03 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "15" 2024-02-05 2024-02-14 0.01 7 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "15" 2024-02-05 2024-02-14 0.025 8.475 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "15" 2024-02-05 2024-02-14 0.05 9 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "15" 2024-02-05 2024-02-14 0.1 10 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "15" 2024-02-05 2024-02-14 0.15 11.85 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "15" 2024-02-05 2024-02-14 0.2 12 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "15" 2024-02-05 2024-02-14 0.25 12 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "15" 2024-02-05 2024-02-14 0.3 13 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "15" 2024-02-05 2024-02-14 0.35 13.65 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "15" 2024-02-05 2024-02-14 0.4 14 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "15" 2024-02-05 2024-02-14 0.45 15 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "15" 2024-02-05 2024-02-14 0.5 16 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "15" 2024-02-05 2024-02-14 0.55 16.45 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "15" 2024-02-05 2024-02-14 0.6 17.4 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "15" 2024-02-05 2024-02-14 0.65 18 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "15" 2024-02-05 2024-02-14 0.7 19 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "15" 2024-02-05 2024-02-14 0.75 19.25 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "15" 2024-02-05 2024-02-14 0.8 20 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "15" 2024-02-05 2024-02-14 0.85 21.15 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "15" 2024-02-05 2024-02-14 0.9 22.1 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "15" 2024-02-05 2024-02-14 0.95 24.05 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "15" 2024-02-05 2024-02-14 0.975 26 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "15" 2024-02-05 2024-02-14 0.99 28.08 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "15" 2024-02-05 2024-02-15 0.01 8.99 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "15" 2024-02-05 2024-02-15 0.025 9 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "15" 2024-02-05 2024-02-15 0.05 11 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "15" 2024-02-05 2024-02-15 0.1 11.9 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "15" 2024-02-05 2024-02-15 0.15 12.85 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "15" 2024-02-05 2024-02-15 0.2 13.8 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "15" 2024-02-05 2024-02-15 0.25 14 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "15" 2024-02-05 2024-02-15 0.3 14 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "15" 2024-02-05 2024-02-15 0.35 15 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "15" 2024-02-05 2024-02-15 0.4 16 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "15" 2024-02-05 2024-02-15 0.45 16 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "15" 2024-02-05 2024-02-15 0.5 17 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "15" 2024-02-05 2024-02-15 0.55 17 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "15" 2024-02-05 2024-02-15 0.6 18 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "15" 2024-02-05 2024-02-15 0.65 18 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "15" 2024-02-05 2024-02-15 0.7 19 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "15" 2024-02-05 2024-02-15 0.75 19.25 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "15" 2024-02-05 2024-02-15 0.8 21 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "15" 2024-02-05 2024-02-15 0.85 22 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "15" 2024-02-05 2024-02-15 0.9 24 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "15" 2024-02-05 2024-02-15 0.95 25.05 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "15" 2024-02-05 2024-02-15 0.975 30.05 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "15" 2024-02-05 2024-02-15 0.99 34.06 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "15" 2024-02-05 2024-02-16 0.01 6.96 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "15" 2024-02-05 2024-02-16 0.025 7.475 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "15" 2024-02-05 2024-02-16 0.05 9 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "15" 2024-02-05 2024-02-16 0.1 11 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "15" 2024-02-05 2024-02-16 0.15 11.85 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "15" 2024-02-05 2024-02-16 0.2 12.8 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "15" 2024-02-05 2024-02-16 0.25 13 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "15" 2024-02-05 2024-02-16 0.3 14 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "15" 2024-02-05 2024-02-16 0.35 14 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "15" 2024-02-05 2024-02-16 0.4 15 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "15" 2024-02-05 2024-02-16 0.45 15 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "15" 2024-02-05 2024-02-16 0.5 16 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "15" 2024-02-05 2024-02-16 0.55 16.45 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "15" 2024-02-05 2024-02-16 0.6 17 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "15" 2024-02-05 2024-02-16 0.65 18 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "15" 2024-02-05 2024-02-16 0.7 19 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "15" 2024-02-05 2024-02-16 0.75 19 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "15" 2024-02-05 2024-02-16 0.8 21 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "15" 2024-02-05 2024-02-16 0.85 21 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "15" 2024-02-05 2024-02-16 0.9 22.1 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "15" 2024-02-05 2024-02-16 0.95 25 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "15" 2024-02-05 2024-02-16 0.975 26.575 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "15" 2024-02-05 2024-02-16 0.99 29.01 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "15" 2024-02-05 2024-02-17 0.01 6.99 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "15" 2024-02-05 2024-02-17 0.025 8.475 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "15" 2024-02-05 2024-02-17 0.05 9 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "15" 2024-02-05 2024-02-17 0.1 10 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "15" 2024-02-05 2024-02-17 0.15 11 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "15" 2024-02-05 2024-02-17 0.2 11 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "15" 2024-02-05 2024-02-17 0.25 11.75 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "15" 2024-02-05 2024-02-17 0.3 12 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "15" 2024-02-05 2024-02-17 0.35 13 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "15" 2024-02-05 2024-02-17 0.4 13 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "15" 2024-02-05 2024-02-17 0.45 14 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "15" 2024-02-05 2024-02-17 0.5 15 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "15" 2024-02-05 2024-02-17 0.55 16 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "15" 2024-02-05 2024-02-17 0.6 17 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "15" 2024-02-05 2024-02-17 0.65 17.35 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "15" 2024-02-05 2024-02-17 0.7 18 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "15" 2024-02-05 2024-02-17 0.75 19 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "15" 2024-02-05 2024-02-17 0.8 20 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "15" 2024-02-05 2024-02-17 0.85 21.15 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "15" 2024-02-05 2024-02-17 0.9 23 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "15" 2024-02-05 2024-02-17 0.95 24.05 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "15" 2024-02-05 2024-02-17 0.975 25.525 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "15" 2024-02-05 2024-02-17 0.99 27.06 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "15" 2024-02-05 2024-02-18 0.01 9.96 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "15" 2024-02-05 2024-02-18 0.025 11 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "15" 2024-02-05 2024-02-18 0.05 12 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "15" 2024-02-05 2024-02-18 0.1 13 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "15" 2024-02-05 2024-02-18 0.15 14 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "15" 2024-02-05 2024-02-18 0.2 15 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "15" 2024-02-05 2024-02-18 0.25 15 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "15" 2024-02-05 2024-02-18 0.3 16 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "15" 2024-02-05 2024-02-18 0.35 16.65 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "15" 2024-02-05 2024-02-18 0.4 17 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "15" 2024-02-05 2024-02-18 0.45 18 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "15" 2024-02-05 2024-02-18 0.5 19 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "15" 2024-02-05 2024-02-18 0.55 19 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "15" 2024-02-05 2024-02-18 0.6 20 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "15" 2024-02-05 2024-02-18 0.65 21 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "15" 2024-02-05 2024-02-18 0.7 21 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "15" 2024-02-05 2024-02-18 0.75 22 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "15" 2024-02-05 2024-02-18 0.8 23.2 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "15" 2024-02-05 2024-02-18 0.85 25 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "15" 2024-02-05 2024-02-18 0.9 26 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "15" 2024-02-05 2024-02-18 0.95 29 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "15" 2024-02-05 2024-02-18 0.975 30 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "15" 2024-02-05 2024-02-18 0.99 32.02 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "15" 2024-02-05 2024-02-19 0.01 7.99 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "15" 2024-02-05 2024-02-19 0.025 10 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "15" 2024-02-05 2024-02-19 0.05 10 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "15" 2024-02-05 2024-02-19 0.1 12 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "15" 2024-02-05 2024-02-19 0.15 13 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "15" 2024-02-05 2024-02-19 0.2 14 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "15" 2024-02-05 2024-02-19 0.25 15 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "15" 2024-02-05 2024-02-19 0.3 15 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "15" 2024-02-05 2024-02-19 0.35 16 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "15" 2024-02-05 2024-02-19 0.4 16 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "15" 2024-02-05 2024-02-19 0.45 17 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "15" 2024-02-05 2024-02-19 0.5 18 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "15" 2024-02-05 2024-02-19 0.55 18 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "15" 2024-02-05 2024-02-19 0.6 19 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "15" 2024-02-05 2024-02-19 0.65 20 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "15" 2024-02-05 2024-02-19 0.7 21 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "15" 2024-02-05 2024-02-19 0.75 22 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "15" 2024-02-05 2024-02-19 0.8 23 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "15" 2024-02-05 2024-02-19 0.85 25 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "15" 2024-02-05 2024-02-19 0.9 25.1 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "15" 2024-02-05 2024-02-19 0.95 28 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "15" 2024-02-05 2024-02-19 0.975 29 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "15" 2024-02-05 2024-02-19 0.99 30.02 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "15" 2024-02-05 2024-02-20 0.01 5.99 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "15" 2024-02-05 2024-02-20 0.025 8.475 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "15" 2024-02-05 2024-02-20 0.05 9 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "15" 2024-02-05 2024-02-20 0.1 11 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "15" 2024-02-05 2024-02-20 0.15 11 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "15" 2024-02-05 2024-02-20 0.2 12.8 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "15" 2024-02-05 2024-02-20 0.25 14 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "15" 2024-02-05 2024-02-20 0.3 15 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "15" 2024-02-05 2024-02-20 0.35 15 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "15" 2024-02-05 2024-02-20 0.4 16 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "15" 2024-02-05 2024-02-20 0.45 16 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "15" 2024-02-05 2024-02-20 0.5 16 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "15" 2024-02-05 2024-02-20 0.55 17 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "15" 2024-02-05 2024-02-20 0.6 17.4 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "15" 2024-02-05 2024-02-20 0.65 18 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "15" 2024-02-05 2024-02-20 0.7 19 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "15" 2024-02-05 2024-02-20 0.75 20.25 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "15" 2024-02-05 2024-02-20 0.8 21.2 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "15" 2024-02-05 2024-02-20 0.85 23.15 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "15" 2024-02-05 2024-02-20 0.9 25.1 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "15" 2024-02-05 2024-02-20 0.95 27.1 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "15" 2024-02-05 2024-02-20 0.975 29 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "15" 2024-02-05 2024-02-20 0.99 30 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "15" 2024-02-05 2024-02-21 0.01 9 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "15" 2024-02-05 2024-02-21 0.025 9 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "15" 2024-02-05 2024-02-21 0.05 10 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "15" 2024-02-05 2024-02-21 0.1 11 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "15" 2024-02-05 2024-02-21 0.15 11.85 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "15" 2024-02-05 2024-02-21 0.2 12.8 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "15" 2024-02-05 2024-02-21 0.25 13 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "15" 2024-02-05 2024-02-21 0.3 14 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "15" 2024-02-05 2024-02-21 0.35 14 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "15" 2024-02-05 2024-02-21 0.4 15 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "15" 2024-02-05 2024-02-21 0.45 15 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "15" 2024-02-05 2024-02-21 0.5 16 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "15" 2024-02-05 2024-02-21 0.55 16 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "15" 2024-02-05 2024-02-21 0.6 17 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "15" 2024-02-05 2024-02-21 0.65 18 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "15" 2024-02-05 2024-02-21 0.7 18 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "15" 2024-02-05 2024-02-21 0.75 19 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "15" 2024-02-05 2024-02-21 0.8 19.2 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "15" 2024-02-05 2024-02-21 0.85 20 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "15" 2024-02-05 2024-02-21 0.9 21.1 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "15" 2024-02-05 2024-02-21 0.95 24.05 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "15" 2024-02-05 2024-02-21 0.975 25.525 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "15" 2024-02-05 2024-02-21 0.99 30.01 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "15" 2024-02-05 2024-02-22 0.01 6.99 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "15" 2024-02-05 2024-02-22 0.025 8.475 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "15" 2024-02-05 2024-02-22 0.05 10 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "15" 2024-02-05 2024-02-22 0.1 11.9 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "15" 2024-02-05 2024-02-22 0.15 13 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "15" 2024-02-05 2024-02-22 0.2 14 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "15" 2024-02-05 2024-02-22 0.25 14 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "15" 2024-02-05 2024-02-22 0.3 15 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "15" 2024-02-05 2024-02-22 0.35 15 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "15" 2024-02-05 2024-02-22 0.4 15 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "15" 2024-02-05 2024-02-22 0.45 16 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "15" 2024-02-05 2024-02-22 0.5 17 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "15" 2024-02-05 2024-02-22 0.55 18 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "15" 2024-02-05 2024-02-22 0.6 19 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "15" 2024-02-05 2024-02-22 0.65 19.35 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "15" 2024-02-05 2024-02-22 0.7 21 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "15" 2024-02-05 2024-02-22 0.75 21 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "15" 2024-02-05 2024-02-22 0.8 22 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "15" 2024-02-05 2024-02-22 0.85 23 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "15" 2024-02-05 2024-02-22 0.9 25 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "15" 2024-02-05 2024-02-22 0.95 28 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "15" 2024-02-05 2024-02-22 0.975 28 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "15" 2024-02-05 2024-02-22 0.99 28.01 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "15" 2024-02-05 2024-02-23 0.01 5.99 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "15" 2024-02-05 2024-02-23 0.025 7.475 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "15" 2024-02-05 2024-02-23 0.05 8 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "15" 2024-02-05 2024-02-23 0.1 9 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "15" 2024-02-05 2024-02-23 0.15 10 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "15" 2024-02-05 2024-02-23 0.2 11 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "15" 2024-02-05 2024-02-23 0.25 12 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "15" 2024-02-05 2024-02-23 0.3 12 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "15" 2024-02-05 2024-02-23 0.35 13 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "15" 2024-02-05 2024-02-23 0.4 15 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "15" 2024-02-05 2024-02-23 0.45 16 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "15" 2024-02-05 2024-02-23 0.5 16 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "15" 2024-02-05 2024-02-23 0.55 16.45 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "15" 2024-02-05 2024-02-23 0.6 18 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "15" 2024-02-05 2024-02-23 0.65 18 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "15" 2024-02-05 2024-02-23 0.7 19 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "15" 2024-02-05 2024-02-23 0.75 19 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "15" 2024-02-05 2024-02-23 0.8 20 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "15" 2024-02-05 2024-02-23 0.85 21 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "15" 2024-02-05 2024-02-23 0.9 22.1 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "15" 2024-02-05 2024-02-23 0.95 26 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "15" 2024-02-05 2024-02-23 0.975 28 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "15" 2024-02-05 2024-02-23 0.99 35 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "15" 2024-02-05 2024-02-24 0.01 5.99 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "15" 2024-02-05 2024-02-24 0.025 6 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "15" 2024-02-05 2024-02-24 0.05 7.95 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "15" 2024-02-05 2024-02-24 0.1 8 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "15" 2024-02-05 2024-02-24 0.15 10 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "15" 2024-02-05 2024-02-24 0.2 11 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "15" 2024-02-05 2024-02-24 0.25 12 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "15" 2024-02-05 2024-02-24 0.3 12.7 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "15" 2024-02-05 2024-02-24 0.35 13.65 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "15" 2024-02-05 2024-02-24 0.4 14 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "15" 2024-02-05 2024-02-24 0.45 15 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "15" 2024-02-05 2024-02-24 0.5 15.5 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "15" 2024-02-05 2024-02-24 0.55 16 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "15" 2024-02-05 2024-02-24 0.6 17 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "15" 2024-02-05 2024-02-24 0.65 17 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "15" 2024-02-05 2024-02-24 0.7 18 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "15" 2024-02-05 2024-02-24 0.75 20 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "15" 2024-02-05 2024-02-24 0.8 21 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "15" 2024-02-05 2024-02-24 0.85 22 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "15" 2024-02-05 2024-02-24 0.9 22.2 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "15" 2024-02-05 2024-02-24 0.95 27 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "15" 2024-02-05 2024-02-24 0.975 28.525 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "15" 2024-02-05 2024-02-24 0.99 30.02 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "15" 2024-02-05 2024-02-25 0.01 9 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "15" 2024-02-05 2024-02-25 0.025 9.95 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "15" 2024-02-05 2024-02-25 0.05 11 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "15" 2024-02-05 2024-02-25 0.1 12 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "15" 2024-02-05 2024-02-25 0.15 13.85 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "15" 2024-02-05 2024-02-25 0.2 14 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "15" 2024-02-05 2024-02-25 0.25 15 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "15" 2024-02-05 2024-02-25 0.3 15.7 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "15" 2024-02-05 2024-02-25 0.35 16 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "15" 2024-02-05 2024-02-25 0.4 16.6 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "15" 2024-02-05 2024-02-25 0.45 17 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "15" 2024-02-05 2024-02-25 0.5 18 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "15" 2024-02-05 2024-02-25 0.55 19 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "15" 2024-02-05 2024-02-25 0.6 20 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "15" 2024-02-05 2024-02-25 0.65 20.35 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "15" 2024-02-05 2024-02-25 0.7 22 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "15" 2024-02-05 2024-02-25 0.75 23 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "15" 2024-02-05 2024-02-25 0.8 24 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "15" 2024-02-05 2024-02-25 0.85 25 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "15" 2024-02-05 2024-02-25 0.9 27 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "15" 2024-02-05 2024-02-25 0.95 29.1 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "15" 2024-02-05 2024-02-25 0.975 32.05 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "15" 2024-02-05 2024-02-25 0.99 34.02 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "15" 2024-02-05 2024-02-26 0.01 6.99 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "15" 2024-02-05 2024-02-26 0.025 8.475 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "15" 2024-02-05 2024-02-26 0.05 10.95 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "15" 2024-02-05 2024-02-26 0.1 12 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "15" 2024-02-05 2024-02-26 0.15 13 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "15" 2024-02-05 2024-02-26 0.2 13.8 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "15" 2024-02-05 2024-02-26 0.25 15 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "15" 2024-02-05 2024-02-26 0.3 16 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "15" 2024-02-05 2024-02-26 0.35 16 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "15" 2024-02-05 2024-02-26 0.4 16 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "15" 2024-02-05 2024-02-26 0.45 17 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "15" 2024-02-05 2024-02-26 0.5 18 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "15" 2024-02-05 2024-02-26 0.55 18 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "15" 2024-02-05 2024-02-26 0.6 19 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "15" 2024-02-05 2024-02-26 0.65 20 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "15" 2024-02-05 2024-02-26 0.7 21 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "15" 2024-02-05 2024-02-26 0.75 21.25 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "15" 2024-02-05 2024-02-26 0.8 23 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "15" 2024-02-05 2024-02-26 0.85 24 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "15" 2024-02-05 2024-02-26 0.9 25.1 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "15" 2024-02-05 2024-02-26 0.95 30 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "15" 2024-02-05 2024-02-26 0.975 31.05 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "15" 2024-02-05 2024-02-26 0.99 33.02 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "15" 2024-02-05 2024-02-27 0.01 7.99 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "15" 2024-02-05 2024-02-27 0.025 9.475 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "15" 2024-02-05 2024-02-27 0.05 10 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "15" 2024-02-05 2024-02-27 0.1 12.9 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "15" 2024-02-05 2024-02-27 0.15 13 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "15" 2024-02-05 2024-02-27 0.2 13 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "15" 2024-02-05 2024-02-27 0.25 15 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "15" 2024-02-05 2024-02-27 0.3 15 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "15" 2024-02-05 2024-02-27 0.35 16 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "15" 2024-02-05 2024-02-27 0.4 17 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "15" 2024-02-05 2024-02-27 0.45 18 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "15" 2024-02-05 2024-02-27 0.5 18 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "15" 2024-02-05 2024-02-27 0.55 19 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "15" 2024-02-05 2024-02-27 0.6 20 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "15" 2024-02-05 2024-02-27 0.65 21 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "15" 2024-02-05 2024-02-27 0.7 21 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "15" 2024-02-05 2024-02-27 0.75 22 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "15" 2024-02-05 2024-02-27 0.8 23 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "15" 2024-02-05 2024-02-27 0.85 24 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "15" 2024-02-05 2024-02-27 0.9 25.1 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "15" 2024-02-05 2024-02-27 0.95 28 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "15" 2024-02-05 2024-02-27 0.975 28 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "15" 2024-02-05 2024-02-27 0.99 30 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "15" 2024-02-05 2024-02-28 0.01 5 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "15" 2024-02-05 2024-02-28 0.025 6.475 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "15" 2024-02-05 2024-02-28 0.05 8.95 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "15" 2024-02-05 2024-02-28 0.1 10.9 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "15" 2024-02-05 2024-02-28 0.15 11 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "15" 2024-02-05 2024-02-28 0.2 12 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "15" 2024-02-05 2024-02-28 0.25 13 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "15" 2024-02-05 2024-02-28 0.3 13 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "15" 2024-02-05 2024-02-28 0.35 14 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "15" 2024-02-05 2024-02-28 0.4 14 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "15" 2024-02-05 2024-02-28 0.45 15 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "15" 2024-02-05 2024-02-28 0.5 16.5 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "15" 2024-02-05 2024-02-28 0.55 17 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "15" 2024-02-05 2024-02-28 0.6 18 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "15" 2024-02-05 2024-02-28 0.65 18 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "15" 2024-02-05 2024-02-28 0.7 19 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "15" 2024-02-05 2024-02-28 0.75 19 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "15" 2024-02-05 2024-02-28 0.8 20 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "15" 2024-02-05 2024-02-28 0.85 21 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "15" 2024-02-05 2024-02-28 0.9 23 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "15" 2024-02-05 2024-02-28 0.95 25.05 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "15" 2024-02-05 2024-02-28 0.975 27 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "15" 2024-02-05 2024-02-28 0.99 29.02 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "15" 2024-02-05 2024-02-29 0.01 7 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "15" 2024-02-05 2024-02-29 0.025 8 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "15" 2024-02-05 2024-02-29 0.05 9 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "15" 2024-02-05 2024-02-29 0.1 10 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "15" 2024-02-05 2024-02-29 0.15 12 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "15" 2024-02-05 2024-02-29 0.2 13 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "15" 2024-02-05 2024-02-29 0.25 14 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "15" 2024-02-05 2024-02-29 0.3 14 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "15" 2024-02-05 2024-02-29 0.35 15 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "15" 2024-02-05 2024-02-29 0.4 16 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "15" 2024-02-05 2024-02-29 0.45 16 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "15" 2024-02-05 2024-02-29 0.5 16.5 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "15" 2024-02-05 2024-02-29 0.55 17 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "15" 2024-02-05 2024-02-29 0.6 17 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "15" 2024-02-05 2024-02-29 0.65 18 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "15" 2024-02-05 2024-02-29 0.7 18.3 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "15" 2024-02-05 2024-02-29 0.75 20.25 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "15" 2024-02-05 2024-02-29 0.8 21 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "15" 2024-02-05 2024-02-29 0.85 22 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "15" 2024-02-05 2024-02-29 0.9 23 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "15" 2024-02-05 2024-02-29 0.95 29.05 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "15" 2024-02-05 2024-02-29 0.975 30.525 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "15" 2024-02-05 2024-02-29 0.99 32.02 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "15" 2024-02-05 2024-03-01 0.01 6 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "15" 2024-02-05 2024-03-01 0.025 6.475 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "15" 2024-02-05 2024-03-01 0.05 8 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "15" 2024-02-05 2024-03-01 0.1 10 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "15" 2024-02-05 2024-03-01 0.15 11 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "15" 2024-02-05 2024-03-01 0.2 12 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "15" 2024-02-05 2024-03-01 0.25 12 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "15" 2024-02-05 2024-03-01 0.3 13.7 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "15" 2024-02-05 2024-03-01 0.35 14 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "15" 2024-02-05 2024-03-01 0.4 15 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "15" 2024-02-05 2024-03-01 0.45 16 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "15" 2024-02-05 2024-03-01 0.5 17 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "15" 2024-02-05 2024-03-01 0.55 17 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "15" 2024-02-05 2024-03-01 0.6 18 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "15" 2024-02-05 2024-03-01 0.65 19 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "15" 2024-02-05 2024-03-01 0.7 19.3 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "15" 2024-02-05 2024-03-01 0.75 20 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "15" 2024-02-05 2024-03-01 0.8 21 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "15" 2024-02-05 2024-03-01 0.85 22 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "15" 2024-02-05 2024-03-01 0.9 22.1 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "15" 2024-02-05 2024-03-01 0.95 24.05 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "15" 2024-02-05 2024-03-01 0.975 26.05 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "15" 2024-02-05 2024-03-01 0.99 28.1000000000001 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "15" 2024-02-05 2024-03-02 0.01 7 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "15" 2024-02-05 2024-03-02 0.025 7 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "15" 2024-02-05 2024-03-02 0.05 8 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "15" 2024-02-05 2024-03-02 0.1 9 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "15" 2024-02-05 2024-03-02 0.15 9 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "15" 2024-02-05 2024-03-02 0.2 10 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "15" 2024-02-05 2024-03-02 0.25 12 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "15" 2024-02-05 2024-03-02 0.3 12.7 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "15" 2024-02-05 2024-03-02 0.35 13 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "15" 2024-02-05 2024-03-02 0.4 14 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "15" 2024-02-05 2024-03-02 0.45 14 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "15" 2024-02-05 2024-03-02 0.5 15 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "15" 2024-02-05 2024-03-02 0.55 16 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "15" 2024-02-05 2024-03-02 0.6 16 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "15" 2024-02-05 2024-03-02 0.65 17.35 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "15" 2024-02-05 2024-03-02 0.7 18.3 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "15" 2024-02-05 2024-03-02 0.75 19 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "15" 2024-02-05 2024-03-02 0.8 20 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "15" 2024-02-05 2024-03-02 0.85 22 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "15" 2024-02-05 2024-03-02 0.9 25.1 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "15" 2024-02-05 2024-03-02 0.95 27.05 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "15" 2024-02-05 2024-03-02 0.975 28.525 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "15" 2024-02-05 2024-03-02 0.99 33.02 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "15" 2024-02-05 2024-03-03 0.01 7.98 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "15" 2024-02-05 2024-03-03 0.025 9 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "15" 2024-02-05 2024-03-03 0.05 9 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "15" 2024-02-05 2024-03-03 0.1 10.9 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "15" 2024-02-05 2024-03-03 0.15 12 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "15" 2024-02-05 2024-03-03 0.2 14 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "15" 2024-02-05 2024-03-03 0.25 14.75 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "15" 2024-02-05 2024-03-03 0.3 15 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "15" 2024-02-05 2024-03-03 0.35 16 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "15" 2024-02-05 2024-03-03 0.4 16 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "15" 2024-02-05 2024-03-03 0.45 17 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "15" 2024-02-05 2024-03-03 0.5 18 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "15" 2024-02-05 2024-03-03 0.55 18.45 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "15" 2024-02-05 2024-03-03 0.6 19 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "15" 2024-02-05 2024-03-03 0.65 20 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "15" 2024-02-05 2024-03-03 0.7 21 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "15" 2024-02-05 2024-03-03 0.75 21.25 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "15" 2024-02-05 2024-03-03 0.8 22 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "15" 2024-02-05 2024-03-03 0.85 24 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "15" 2024-02-05 2024-03-03 0.9 25.1 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "15" 2024-02-05 2024-03-03 0.95 27 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "15" 2024-02-05 2024-03-03 0.975 27.525 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "15" 2024-02-05 2024-03-03 0.99 28.09 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "15" 2024-02-05 2024-03-04 0.01 7.98 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "15" 2024-02-05 2024-03-04 0.025 8.475 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "15" 2024-02-05 2024-03-04 0.05 10 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "15" 2024-02-05 2024-03-04 0.1 11 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "15" 2024-02-05 2024-03-04 0.15 13 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "15" 2024-02-05 2024-03-04 0.2 14 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "15" 2024-02-05 2024-03-04 0.25 15 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "15" 2024-02-05 2024-03-04 0.3 15 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "15" 2024-02-05 2024-03-04 0.35 15.65 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "15" 2024-02-05 2024-03-04 0.4 16 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "15" 2024-02-05 2024-03-04 0.45 16 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "15" 2024-02-05 2024-03-04 0.5 17 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "15" 2024-02-05 2024-03-04 0.55 18 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "15" 2024-02-05 2024-03-04 0.6 19 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "15" 2024-02-05 2024-03-04 0.65 20 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "15" 2024-02-05 2024-03-04 0.7 20 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "15" 2024-02-05 2024-03-04 0.75 20.25 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "15" 2024-02-05 2024-03-04 0.8 22 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "15" 2024-02-05 2024-03-04 0.85 23 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "15" 2024-02-05 2024-03-04 0.9 24.1 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "15" 2024-02-05 2024-03-04 0.95 29.05 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "15" 2024-02-05 2024-03-04 0.975 31.525 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "15" 2024-02-05 2024-03-04 0.99 35.01 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "19" 2024-02-05 2024-02-06 0.01 6 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "19" 2024-02-05 2024-02-06 0.025 9 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "19" 2024-02-05 2024-02-06 0.05 10 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "19" 2024-02-05 2024-02-06 0.1 11 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "19" 2024-02-05 2024-02-06 0.15 12 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "19" 2024-02-05 2024-02-06 0.2 12.8 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "19" 2024-02-05 2024-02-06 0.25 13 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "19" 2024-02-05 2024-02-06 0.3 13.7 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "19" 2024-02-05 2024-02-06 0.35 14 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "19" 2024-02-05 2024-02-06 0.4 14.6 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "19" 2024-02-05 2024-02-06 0.45 16 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "19" 2024-02-05 2024-02-06 0.5 16 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "19" 2024-02-05 2024-02-06 0.55 17 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "19" 2024-02-05 2024-02-06 0.6 17.4 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "19" 2024-02-05 2024-02-06 0.65 19 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "19" 2024-02-05 2024-02-06 0.7 20 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "19" 2024-02-05 2024-02-06 0.75 22 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "19" 2024-02-05 2024-02-06 0.8 23.2 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "19" 2024-02-05 2024-02-06 0.85 24 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "19" 2024-02-05 2024-02-06 0.9 25.2 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "19" 2024-02-05 2024-02-06 0.95 30.05 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "19" 2024-02-05 2024-02-06 0.975 32 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "19" 2024-02-05 2024-02-06 0.99 33.01 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "19" 2024-02-05 2024-02-07 0.01 5 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "19" 2024-02-05 2024-02-07 0.025 6.425 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "19" 2024-02-05 2024-02-07 0.05 9 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "19" 2024-02-05 2024-02-07 0.1 10 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "19" 2024-02-05 2024-02-07 0.15 11 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "19" 2024-02-05 2024-02-07 0.2 12 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "19" 2024-02-05 2024-02-07 0.25 13 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "19" 2024-02-05 2024-02-07 0.3 14 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "19" 2024-02-05 2024-02-07 0.35 14 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "19" 2024-02-05 2024-02-07 0.4 15 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "19" 2024-02-05 2024-02-07 0.45 16 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "19" 2024-02-05 2024-02-07 0.5 16 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "19" 2024-02-05 2024-02-07 0.55 17 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "19" 2024-02-05 2024-02-07 0.6 18 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "19" 2024-02-05 2024-02-07 0.65 18 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "19" 2024-02-05 2024-02-07 0.7 20 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "19" 2024-02-05 2024-02-07 0.75 21 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "19" 2024-02-05 2024-02-07 0.8 21.2 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "19" 2024-02-05 2024-02-07 0.85 22.15 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "19" 2024-02-05 2024-02-07 0.9 23.1 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "19" 2024-02-05 2024-02-07 0.95 28.25 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "19" 2024-02-05 2024-02-07 0.975 34 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "19" 2024-02-05 2024-02-07 0.99 39.1000000000001 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "19" 2024-02-05 2024-02-08 0.01 5.97 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "19" 2024-02-05 2024-02-08 0.025 6 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "19" 2024-02-05 2024-02-08 0.05 6.95 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "19" 2024-02-05 2024-02-08 0.1 9 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "19" 2024-02-05 2024-02-08 0.15 9.85 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "19" 2024-02-05 2024-02-08 0.2 11 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "19" 2024-02-05 2024-02-08 0.25 12 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "19" 2024-02-05 2024-02-08 0.3 12 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "19" 2024-02-05 2024-02-08 0.35 13 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "19" 2024-02-05 2024-02-08 0.4 14 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "19" 2024-02-05 2024-02-08 0.45 15 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "19" 2024-02-05 2024-02-08 0.5 16 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "19" 2024-02-05 2024-02-08 0.55 17 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "19" 2024-02-05 2024-02-08 0.6 18 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "19" 2024-02-05 2024-02-08 0.65 18 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "19" 2024-02-05 2024-02-08 0.7 19 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "19" 2024-02-05 2024-02-08 0.75 20 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "19" 2024-02-05 2024-02-08 0.8 21.2 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "19" 2024-02-05 2024-02-08 0.85 22.15 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "19" 2024-02-05 2024-02-08 0.9 24 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "19" 2024-02-05 2024-02-08 0.95 27 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "19" 2024-02-05 2024-02-08 0.975 27.525 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "19" 2024-02-05 2024-02-08 0.99 32.1000000000001 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "19" 2024-02-05 2024-02-09 0.01 5.99 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "19" 2024-02-05 2024-02-09 0.025 7 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "19" 2024-02-05 2024-02-09 0.05 7.95 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "19" 2024-02-05 2024-02-09 0.1 9 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "19" 2024-02-05 2024-02-09 0.15 10 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "19" 2024-02-05 2024-02-09 0.2 11 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "19" 2024-02-05 2024-02-09 0.25 12 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "19" 2024-02-05 2024-02-09 0.3 12 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "19" 2024-02-05 2024-02-09 0.35 13.65 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "19" 2024-02-05 2024-02-09 0.4 14 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "19" 2024-02-05 2024-02-09 0.45 15 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "19" 2024-02-05 2024-02-09 0.5 16 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "19" 2024-02-05 2024-02-09 0.55 16 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "19" 2024-02-05 2024-02-09 0.6 17 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "19" 2024-02-05 2024-02-09 0.65 17 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "19" 2024-02-05 2024-02-09 0.7 18 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "19" 2024-02-05 2024-02-09 0.75 19 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "19" 2024-02-05 2024-02-09 0.8 19 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "19" 2024-02-05 2024-02-09 0.85 20 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "19" 2024-02-05 2024-02-09 0.9 24 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "19" 2024-02-05 2024-02-09 0.95 29 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "19" 2024-02-05 2024-02-09 0.975 29.525 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "19" 2024-02-05 2024-02-09 0.99 32.08 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "19" 2024-02-05 2024-02-10 0.01 2.98 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "19" 2024-02-05 2024-02-10 0.025 4.475 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "19" 2024-02-05 2024-02-10 0.05 6 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "19" 2024-02-05 2024-02-10 0.1 7 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "19" 2024-02-05 2024-02-10 0.15 8 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "19" 2024-02-05 2024-02-10 0.2 9 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "19" 2024-02-05 2024-02-10 0.25 10 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "19" 2024-02-05 2024-02-10 0.3 10.7 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "19" 2024-02-05 2024-02-10 0.35 11 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "19" 2024-02-05 2024-02-10 0.4 11 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "19" 2024-02-05 2024-02-10 0.45 12 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "19" 2024-02-05 2024-02-10 0.5 13 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "19" 2024-02-05 2024-02-10 0.55 13 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "19" 2024-02-05 2024-02-10 0.6 14 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "19" 2024-02-05 2024-02-10 0.65 15 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "19" 2024-02-05 2024-02-10 0.7 15 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "19" 2024-02-05 2024-02-10 0.75 15.25 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "19" 2024-02-05 2024-02-10 0.8 16.2 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "19" 2024-02-05 2024-02-10 0.85 18 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "19" 2024-02-05 2024-02-10 0.9 19 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "19" 2024-02-05 2024-02-10 0.95 22.1 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "19" 2024-02-05 2024-02-10 0.975 24 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "19" 2024-02-05 2024-02-10 0.99 25.03 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "19" 2024-02-05 2024-02-11 0.01 2.99 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "19" 2024-02-05 2024-02-11 0.025 3.475 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "19" 2024-02-05 2024-02-11 0.05 5.95 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "19" 2024-02-05 2024-02-11 0.1 6 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "19" 2024-02-05 2024-02-11 0.15 7 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "19" 2024-02-05 2024-02-11 0.2 7 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "19" 2024-02-05 2024-02-11 0.25 8 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "19" 2024-02-05 2024-02-11 0.3 9 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "19" 2024-02-05 2024-02-11 0.35 10 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "19" 2024-02-05 2024-02-11 0.4 11 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "19" 2024-02-05 2024-02-11 0.45 12 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "19" 2024-02-05 2024-02-11 0.5 12 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "19" 2024-02-05 2024-02-11 0.55 13 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "19" 2024-02-05 2024-02-11 0.6 13.4 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "19" 2024-02-05 2024-02-11 0.65 15 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "19" 2024-02-05 2024-02-11 0.7 15 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "19" 2024-02-05 2024-02-11 0.75 16 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "19" 2024-02-05 2024-02-11 0.8 17 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "19" 2024-02-05 2024-02-11 0.85 18 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "19" 2024-02-05 2024-02-11 0.9 19 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "19" 2024-02-05 2024-02-11 0.95 21 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "19" 2024-02-05 2024-02-11 0.975 23.575 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "19" 2024-02-05 2024-02-11 0.99 29.1700000000001 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "19" 2024-02-05 2024-02-12 0.01 5 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "19" 2024-02-05 2024-02-12 0.025 6 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "19" 2024-02-05 2024-02-12 0.05 6.95 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "19" 2024-02-05 2024-02-12 0.1 7.9 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "19" 2024-02-05 2024-02-12 0.15 9 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "19" 2024-02-05 2024-02-12 0.2 10 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "19" 2024-02-05 2024-02-12 0.25 11 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "19" 2024-02-05 2024-02-12 0.3 11 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "19" 2024-02-05 2024-02-12 0.35 12 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "19" 2024-02-05 2024-02-12 0.4 12 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "19" 2024-02-05 2024-02-12 0.45 13 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "19" 2024-02-05 2024-02-12 0.5 13 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "19" 2024-02-05 2024-02-12 0.55 14 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "19" 2024-02-05 2024-02-12 0.6 15 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "19" 2024-02-05 2024-02-12 0.65 16 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "19" 2024-02-05 2024-02-12 0.7 17 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "19" 2024-02-05 2024-02-12 0.75 18 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "19" 2024-02-05 2024-02-12 0.8 19 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "19" 2024-02-05 2024-02-12 0.85 21.15 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "19" 2024-02-05 2024-02-12 0.9 24 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "19" 2024-02-05 2024-02-12 0.95 25 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "19" 2024-02-05 2024-02-12 0.975 31.1999999999999 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "19" 2024-02-05 2024-02-12 0.99 38.1100000000001 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "19" 2024-02-05 2024-02-13 0.01 3.98 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "19" 2024-02-05 2024-02-13 0.025 4.475 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "19" 2024-02-05 2024-02-13 0.05 5 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "19" 2024-02-05 2024-02-13 0.1 7.9 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "19" 2024-02-05 2024-02-13 0.15 9 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "19" 2024-02-05 2024-02-13 0.2 9 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "19" 2024-02-05 2024-02-13 0.25 10 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "19" 2024-02-05 2024-02-13 0.3 10.7 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "19" 2024-02-05 2024-02-13 0.35 11.65 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "19" 2024-02-05 2024-02-13 0.4 12 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "19" 2024-02-05 2024-02-13 0.45 13 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "19" 2024-02-05 2024-02-13 0.5 13 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "19" 2024-02-05 2024-02-13 0.55 14 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "19" 2024-02-05 2024-02-13 0.6 15 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "19" 2024-02-05 2024-02-13 0.65 15 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "19" 2024-02-05 2024-02-13 0.7 16 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "19" 2024-02-05 2024-02-13 0.75 17 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "19" 2024-02-05 2024-02-13 0.8 17.2 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "19" 2024-02-05 2024-02-13 0.85 20 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "19" 2024-02-05 2024-02-13 0.9 22 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "19" 2024-02-05 2024-02-13 0.95 28.05 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "19" 2024-02-05 2024-02-13 0.975 31.525 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "19" 2024-02-05 2024-02-13 0.99 35.1600000000001 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "19" 2024-02-05 2024-02-14 0.01 3.99 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "19" 2024-02-05 2024-02-14 0.025 6 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "19" 2024-02-05 2024-02-14 0.05 6 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "19" 2024-02-05 2024-02-14 0.1 6 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "19" 2024-02-05 2024-02-14 0.15 7.85 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "19" 2024-02-05 2024-02-14 0.2 8 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "19" 2024-02-05 2024-02-14 0.25 9 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "19" 2024-02-05 2024-02-14 0.3 10.7 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "19" 2024-02-05 2024-02-14 0.35 11 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "19" 2024-02-05 2024-02-14 0.4 11 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "19" 2024-02-05 2024-02-14 0.45 12 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "19" 2024-02-05 2024-02-14 0.5 13 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "19" 2024-02-05 2024-02-14 0.55 13 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "19" 2024-02-05 2024-02-14 0.6 14 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "19" 2024-02-05 2024-02-14 0.65 15 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "19" 2024-02-05 2024-02-14 0.7 15 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "19" 2024-02-05 2024-02-14 0.75 15.25 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "19" 2024-02-05 2024-02-14 0.8 16.2 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "19" 2024-02-05 2024-02-14 0.85 18.15 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "19" 2024-02-05 2024-02-14 0.9 20 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "19" 2024-02-05 2024-02-14 0.95 27.05 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "19" 2024-02-05 2024-02-14 0.975 33.575 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "19" 2024-02-05 2024-02-14 0.99 46.07 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "19" 2024-02-05 2024-02-15 0.01 3.99 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "19" 2024-02-05 2024-02-15 0.025 4 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "19" 2024-02-05 2024-02-15 0.05 4 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "19" 2024-02-05 2024-02-15 0.1 6 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "19" 2024-02-05 2024-02-15 0.15 7 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "19" 2024-02-05 2024-02-15 0.2 8 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "19" 2024-02-05 2024-02-15 0.25 8 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "19" 2024-02-05 2024-02-15 0.3 9 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "19" 2024-02-05 2024-02-15 0.35 10 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "19" 2024-02-05 2024-02-15 0.4 11 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "19" 2024-02-05 2024-02-15 0.45 11 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "19" 2024-02-05 2024-02-15 0.5 13 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "19" 2024-02-05 2024-02-15 0.55 13 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "19" 2024-02-05 2024-02-15 0.6 14 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "19" 2024-02-05 2024-02-15 0.65 15 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "19" 2024-02-05 2024-02-15 0.7 16 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "19" 2024-02-05 2024-02-15 0.75 17 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "19" 2024-02-05 2024-02-15 0.8 18 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "19" 2024-02-05 2024-02-15 0.85 19.15 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "19" 2024-02-05 2024-02-15 0.9 21.2 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "19" 2024-02-05 2024-02-15 0.95 25.05 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "19" 2024-02-05 2024-02-15 0.975 32.525 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "19" 2024-02-05 2024-02-15 0.99 35.03 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "19" 2024-02-05 2024-02-16 0.01 4 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "19" 2024-02-05 2024-02-16 0.025 4 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "19" 2024-02-05 2024-02-16 0.05 5 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "19" 2024-02-05 2024-02-16 0.1 6 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "19" 2024-02-05 2024-02-16 0.15 7 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "19" 2024-02-05 2024-02-16 0.2 8.8 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "19" 2024-02-05 2024-02-16 0.25 9 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "19" 2024-02-05 2024-02-16 0.3 9 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "19" 2024-02-05 2024-02-16 0.35 10 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "19" 2024-02-05 2024-02-16 0.4 10 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "19" 2024-02-05 2024-02-16 0.45 11 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "19" 2024-02-05 2024-02-16 0.5 12 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "19" 2024-02-05 2024-02-16 0.55 12 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "19" 2024-02-05 2024-02-16 0.6 13.4 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "19" 2024-02-05 2024-02-16 0.65 14.35 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "19" 2024-02-05 2024-02-16 0.7 15 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "19" 2024-02-05 2024-02-16 0.75 16 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "19" 2024-02-05 2024-02-16 0.8 17 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "19" 2024-02-05 2024-02-16 0.85 19.15 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "19" 2024-02-05 2024-02-16 0.9 21 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "19" 2024-02-05 2024-02-16 0.95 25.1 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "19" 2024-02-05 2024-02-16 0.975 29.05 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "19" 2024-02-05 2024-02-16 0.99 34.03 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "19" 2024-02-05 2024-02-17 0.01 2 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "19" 2024-02-05 2024-02-17 0.025 4 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "19" 2024-02-05 2024-02-17 0.05 5 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "19" 2024-02-05 2024-02-17 0.1 6 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "19" 2024-02-05 2024-02-17 0.15 6 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "19" 2024-02-05 2024-02-17 0.2 7 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "19" 2024-02-05 2024-02-17 0.25 7.75 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "19" 2024-02-05 2024-02-17 0.3 8 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "19" 2024-02-05 2024-02-17 0.35 8 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "19" 2024-02-05 2024-02-17 0.4 8 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "19" 2024-02-05 2024-02-17 0.45 9 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "19" 2024-02-05 2024-02-17 0.5 10 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "19" 2024-02-05 2024-02-17 0.55 11 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "19" 2024-02-05 2024-02-17 0.6 12 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "19" 2024-02-05 2024-02-17 0.65 13 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "19" 2024-02-05 2024-02-17 0.7 13 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "19" 2024-02-05 2024-02-17 0.75 14 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "19" 2024-02-05 2024-02-17 0.8 15 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "19" 2024-02-05 2024-02-17 0.85 17 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "19" 2024-02-05 2024-02-17 0.9 19 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "19" 2024-02-05 2024-02-17 0.95 22.05 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "19" 2024-02-05 2024-02-17 0.975 26.575 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "19" 2024-02-05 2024-02-17 0.99 28.07 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "19" 2024-02-05 2024-02-18 0.01 1.99 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "19" 2024-02-05 2024-02-18 0.025 2.475 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "19" 2024-02-05 2024-02-18 0.05 4 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "19" 2024-02-05 2024-02-18 0.1 5 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "19" 2024-02-05 2024-02-18 0.15 6 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "19" 2024-02-05 2024-02-18 0.2 6.8 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "19" 2024-02-05 2024-02-18 0.25 7 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "19" 2024-02-05 2024-02-18 0.3 7 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "19" 2024-02-05 2024-02-18 0.35 8 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "19" 2024-02-05 2024-02-18 0.4 8 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "19" 2024-02-05 2024-02-18 0.45 9 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "19" 2024-02-05 2024-02-18 0.5 9 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "19" 2024-02-05 2024-02-18 0.55 10 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "19" 2024-02-05 2024-02-18 0.6 11 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "19" 2024-02-05 2024-02-18 0.65 12 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "19" 2024-02-05 2024-02-18 0.7 13 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "19" 2024-02-05 2024-02-18 0.75 13 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "19" 2024-02-05 2024-02-18 0.8 14 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "19" 2024-02-05 2024-02-18 0.85 15 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "19" 2024-02-05 2024-02-18 0.9 16.2 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "19" 2024-02-05 2024-02-18 0.95 18.3 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "19" 2024-02-05 2024-02-18 0.975 27.525 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "19" 2024-02-05 2024-02-18 0.99 29.1200000000001 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "19" 2024-02-05 2024-02-19 0.01 1.99 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "19" 2024-02-05 2024-02-19 0.025 3 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "19" 2024-02-05 2024-02-19 0.05 5 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "19" 2024-02-05 2024-02-19 0.1 6.9 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "19" 2024-02-05 2024-02-19 0.15 7 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "19" 2024-02-05 2024-02-19 0.2 8 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "19" 2024-02-05 2024-02-19 0.25 8.75 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "19" 2024-02-05 2024-02-19 0.3 9 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "19" 2024-02-05 2024-02-19 0.35 10 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "19" 2024-02-05 2024-02-19 0.4 10 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "19" 2024-02-05 2024-02-19 0.45 11 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "19" 2024-02-05 2024-02-19 0.5 11 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "19" 2024-02-05 2024-02-19 0.55 12 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "19" 2024-02-05 2024-02-19 0.6 13 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "19" 2024-02-05 2024-02-19 0.65 14 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "19" 2024-02-05 2024-02-19 0.7 15 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "19" 2024-02-05 2024-02-19 0.75 16 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "19" 2024-02-05 2024-02-19 0.8 16.2 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "19" 2024-02-05 2024-02-19 0.85 19 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "19" 2024-02-05 2024-02-19 0.9 21 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "19" 2024-02-05 2024-02-19 0.95 25.05 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "19" 2024-02-05 2024-02-19 0.975 28 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "19" 2024-02-05 2024-02-19 0.99 31.2300000000001 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "19" 2024-02-05 2024-02-20 0.01 2.98 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "19" 2024-02-05 2024-02-20 0.025 3 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "19" 2024-02-05 2024-02-20 0.05 4 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "19" 2024-02-05 2024-02-20 0.1 5.9 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "19" 2024-02-05 2024-02-20 0.15 6 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "19" 2024-02-05 2024-02-20 0.2 7 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "19" 2024-02-05 2024-02-20 0.25 8 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "19" 2024-02-05 2024-02-20 0.3 9 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "19" 2024-02-05 2024-02-20 0.35 10 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "19" 2024-02-05 2024-02-20 0.4 11 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "19" 2024-02-05 2024-02-20 0.45 11 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "19" 2024-02-05 2024-02-20 0.5 12 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "19" 2024-02-05 2024-02-20 0.55 12 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "19" 2024-02-05 2024-02-20 0.6 13 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "19" 2024-02-05 2024-02-20 0.65 14 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "19" 2024-02-05 2024-02-20 0.7 14 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "19" 2024-02-05 2024-02-20 0.75 15 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "19" 2024-02-05 2024-02-20 0.8 16 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "19" 2024-02-05 2024-02-20 0.85 18 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "19" 2024-02-05 2024-02-20 0.9 21 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "19" 2024-02-05 2024-02-20 0.95 26.05 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "19" 2024-02-05 2024-02-20 0.975 31.625 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "19" 2024-02-05 2024-02-20 0.99 38.01 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "19" 2024-02-05 2024-02-21 0.01 3 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "19" 2024-02-05 2024-02-21 0.025 3.475 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "19" 2024-02-05 2024-02-21 0.05 4 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "19" 2024-02-05 2024-02-21 0.1 4.9 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "19" 2024-02-05 2024-02-21 0.15 5 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "19" 2024-02-05 2024-02-21 0.2 6 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "19" 2024-02-05 2024-02-21 0.25 7 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "19" 2024-02-05 2024-02-21 0.3 7 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "19" 2024-02-05 2024-02-21 0.35 8 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "19" 2024-02-05 2024-02-21 0.4 9 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "19" 2024-02-05 2024-02-21 0.45 10 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "19" 2024-02-05 2024-02-21 0.5 10.5 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "19" 2024-02-05 2024-02-21 0.55 11.45 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "19" 2024-02-05 2024-02-21 0.6 12 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "19" 2024-02-05 2024-02-21 0.65 13 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "19" 2024-02-05 2024-02-21 0.7 13 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "19" 2024-02-05 2024-02-21 0.75 14 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "19" 2024-02-05 2024-02-21 0.8 15 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "19" 2024-02-05 2024-02-21 0.85 16.15 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "19" 2024-02-05 2024-02-21 0.9 19 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "19" 2024-02-05 2024-02-21 0.95 24.15 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "19" 2024-02-05 2024-02-21 0.975 32.1499999999999 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "19" 2024-02-05 2024-02-21 0.99 45.09 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "19" 2024-02-05 2024-02-22 0.01 3 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "19" 2024-02-05 2024-02-22 0.025 3 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "19" 2024-02-05 2024-02-22 0.05 3 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "19" 2024-02-05 2024-02-22 0.1 4 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "19" 2024-02-05 2024-02-22 0.15 5 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "19" 2024-02-05 2024-02-22 0.2 6 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "19" 2024-02-05 2024-02-22 0.25 7 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "19" 2024-02-05 2024-02-22 0.3 7 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "19" 2024-02-05 2024-02-22 0.35 8 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "19" 2024-02-05 2024-02-22 0.4 8 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "19" 2024-02-05 2024-02-22 0.45 9 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "19" 2024-02-05 2024-02-22 0.5 10 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "19" 2024-02-05 2024-02-22 0.55 11 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "19" 2024-02-05 2024-02-22 0.6 11 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "19" 2024-02-05 2024-02-22 0.65 12.35 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "19" 2024-02-05 2024-02-22 0.7 13 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "19" 2024-02-05 2024-02-22 0.75 14 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "19" 2024-02-05 2024-02-22 0.8 15 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "19" 2024-02-05 2024-02-22 0.85 16.15 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "19" 2024-02-05 2024-02-22 0.9 18 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "19" 2024-02-05 2024-02-22 0.95 26.05 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "19" 2024-02-05 2024-02-22 0.975 29.625 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "19" 2024-02-05 2024-02-22 0.99 33.02 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "19" 2024-02-05 2024-02-23 0.01 2.98 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "19" 2024-02-05 2024-02-23 0.025 3 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "19" 2024-02-05 2024-02-23 0.05 3.95 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "19" 2024-02-05 2024-02-23 0.1 4 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "19" 2024-02-05 2024-02-23 0.15 5 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "19" 2024-02-05 2024-02-23 0.2 5 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "19" 2024-02-05 2024-02-23 0.25 6.75 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "19" 2024-02-05 2024-02-23 0.3 7 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "19" 2024-02-05 2024-02-23 0.35 7.65000000000001 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "19" 2024-02-05 2024-02-23 0.4 8 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "19" 2024-02-05 2024-02-23 0.45 9 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "19" 2024-02-05 2024-02-23 0.5 10 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "19" 2024-02-05 2024-02-23 0.55 10.45 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "19" 2024-02-05 2024-02-23 0.6 11.4 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "19" 2024-02-05 2024-02-23 0.65 12 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "19" 2024-02-05 2024-02-23 0.7 13 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "19" 2024-02-05 2024-02-23 0.75 14 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "19" 2024-02-05 2024-02-23 0.8 15 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "19" 2024-02-05 2024-02-23 0.85 16 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "19" 2024-02-05 2024-02-23 0.9 18.1 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "19" 2024-02-05 2024-02-23 0.95 21.1 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "19" 2024-02-05 2024-02-23 0.975 27.1 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "19" 2024-02-05 2024-02-23 0.99 34.02 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "19" 2024-02-05 2024-02-24 0.01 1 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "19" 2024-02-05 2024-02-24 0.025 2 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "19" 2024-02-05 2024-02-24 0.05 2 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "19" 2024-02-05 2024-02-24 0.1 3 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "19" 2024-02-05 2024-02-24 0.15 4 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "19" 2024-02-05 2024-02-24 0.2 4.8 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "19" 2024-02-05 2024-02-24 0.25 5 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "19" 2024-02-05 2024-02-24 0.3 6 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "19" 2024-02-05 2024-02-24 0.35 6 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "19" 2024-02-05 2024-02-24 0.4 7 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "19" 2024-02-05 2024-02-24 0.45 7 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "19" 2024-02-05 2024-02-24 0.5 8 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "19" 2024-02-05 2024-02-24 0.55 9 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "19" 2024-02-05 2024-02-24 0.6 9 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "19" 2024-02-05 2024-02-24 0.65 10 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "19" 2024-02-05 2024-02-24 0.7 11 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "19" 2024-02-05 2024-02-24 0.75 11 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "19" 2024-02-05 2024-02-24 0.8 13 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "19" 2024-02-05 2024-02-24 0.85 15 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "19" 2024-02-05 2024-02-24 0.9 18 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "19" 2024-02-05 2024-02-24 0.95 24 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "19" 2024-02-05 2024-02-24 0.975 25 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "19" 2024-02-05 2024-02-24 0.99 26.05 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "19" 2024-02-05 2024-02-25 0.01 0.99 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "19" 2024-02-05 2024-02-25 0.025 1 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "19" 2024-02-05 2024-02-25 0.05 1.95 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "19" 2024-02-05 2024-02-25 0.1 2.9 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "19" 2024-02-05 2024-02-25 0.15 4 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "19" 2024-02-05 2024-02-25 0.2 5 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "19" 2024-02-05 2024-02-25 0.25 5.75 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "19" 2024-02-05 2024-02-25 0.3 6 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "19" 2024-02-05 2024-02-25 0.35 6 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "19" 2024-02-05 2024-02-25 0.4 7 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "19" 2024-02-05 2024-02-25 0.45 7 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "19" 2024-02-05 2024-02-25 0.5 7 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "19" 2024-02-05 2024-02-25 0.55 8 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "19" 2024-02-05 2024-02-25 0.6 9 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "19" 2024-02-05 2024-02-25 0.65 9 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "19" 2024-02-05 2024-02-25 0.7 10 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "19" 2024-02-05 2024-02-25 0.75 11 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "19" 2024-02-05 2024-02-25 0.8 12.2 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "19" 2024-02-05 2024-02-25 0.85 14.15 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "19" 2024-02-05 2024-02-25 0.9 16.1 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "19" 2024-02-05 2024-02-25 0.95 21.1 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "19" 2024-02-05 2024-02-25 0.975 32.8249999999999 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "19" 2024-02-05 2024-02-25 0.99 40.03 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "19" 2024-02-05 2024-02-26 0.01 1 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "19" 2024-02-05 2024-02-26 0.025 1.475 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "19" 2024-02-05 2024-02-26 0.05 2 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "19" 2024-02-05 2024-02-26 0.1 4 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "19" 2024-02-05 2024-02-26 0.15 5 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "19" 2024-02-05 2024-02-26 0.2 6 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "19" 2024-02-05 2024-02-26 0.25 6 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "19" 2024-02-05 2024-02-26 0.3 7 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "19" 2024-02-05 2024-02-26 0.35 8 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "19" 2024-02-05 2024-02-26 0.4 9 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "19" 2024-02-05 2024-02-26 0.45 9 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "19" 2024-02-05 2024-02-26 0.5 10 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "19" 2024-02-05 2024-02-26 0.55 10.45 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "19" 2024-02-05 2024-02-26 0.6 11 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "19" 2024-02-05 2024-02-26 0.65 12 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "19" 2024-02-05 2024-02-26 0.7 13 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "19" 2024-02-05 2024-02-26 0.75 14 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "19" 2024-02-05 2024-02-26 0.8 16 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "19" 2024-02-05 2024-02-26 0.85 17 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "19" 2024-02-05 2024-02-26 0.9 19.1 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "19" 2024-02-05 2024-02-26 0.95 21 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "19" 2024-02-05 2024-02-26 0.975 29.8249999999999 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "19" 2024-02-05 2024-02-26 0.99 37.1400000000001 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "19" 2024-02-05 2024-02-27 0.01 2 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "19" 2024-02-05 2024-02-27 0.025 2.475 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "19" 2024-02-05 2024-02-27 0.05 3 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "19" 2024-02-05 2024-02-27 0.1 4 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "19" 2024-02-05 2024-02-27 0.15 5 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "19" 2024-02-05 2024-02-27 0.2 5 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "19" 2024-02-05 2024-02-27 0.25 6 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "19" 2024-02-05 2024-02-27 0.3 7 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "19" 2024-02-05 2024-02-27 0.35 7.65000000000001 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "19" 2024-02-05 2024-02-27 0.4 8 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "19" 2024-02-05 2024-02-27 0.45 8 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "19" 2024-02-05 2024-02-27 0.5 9 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "19" 2024-02-05 2024-02-27 0.55 10 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "19" 2024-02-05 2024-02-27 0.6 10 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "19" 2024-02-05 2024-02-27 0.65 11 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "19" 2024-02-05 2024-02-27 0.7 12 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "19" 2024-02-05 2024-02-27 0.75 13 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "19" 2024-02-05 2024-02-27 0.8 14.2 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "19" 2024-02-05 2024-02-27 0.85 16.15 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "19" 2024-02-05 2024-02-27 0.9 19.1 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "19" 2024-02-05 2024-02-27 0.95 23.35 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "19" 2024-02-05 2024-02-27 0.975 34.575 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "19" 2024-02-05 2024-02-27 0.99 39 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "19" 2024-02-05 2024-02-28 0.01 1 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "19" 2024-02-05 2024-02-28 0.025 2 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "19" 2024-02-05 2024-02-28 0.05 2.95 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "19" 2024-02-05 2024-02-28 0.1 3 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "19" 2024-02-05 2024-02-28 0.15 4 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "19" 2024-02-05 2024-02-28 0.2 5 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "19" 2024-02-05 2024-02-28 0.25 7 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "19" 2024-02-05 2024-02-28 0.3 7 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "19" 2024-02-05 2024-02-28 0.35 8 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "19" 2024-02-05 2024-02-28 0.4 8 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "19" 2024-02-05 2024-02-28 0.45 9 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "19" 2024-02-05 2024-02-28 0.5 10 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "19" 2024-02-05 2024-02-28 0.55 11 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "19" 2024-02-05 2024-02-28 0.6 12 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "19" 2024-02-05 2024-02-28 0.65 12 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "19" 2024-02-05 2024-02-28 0.7 12 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "19" 2024-02-05 2024-02-28 0.75 13 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "19" 2024-02-05 2024-02-28 0.8 13.2 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "19" 2024-02-05 2024-02-28 0.85 16 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "19" 2024-02-05 2024-02-28 0.9 18.2 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "19" 2024-02-05 2024-02-28 0.95 25.05 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "19" 2024-02-05 2024-02-28 0.975 30.7249999999999 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "19" 2024-02-05 2024-02-28 0.99 38.01 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "19" 2024-02-05 2024-02-29 0.01 1 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "19" 2024-02-05 2024-02-29 0.025 1.475 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "19" 2024-02-05 2024-02-29 0.05 2 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "19" 2024-02-05 2024-02-29 0.1 3 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "19" 2024-02-05 2024-02-29 0.15 4 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "19" 2024-02-05 2024-02-29 0.2 5 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "19" 2024-02-05 2024-02-29 0.25 5.75 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "19" 2024-02-05 2024-02-29 0.3 6 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "19" 2024-02-05 2024-02-29 0.35 7 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "19" 2024-02-05 2024-02-29 0.4 7 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "19" 2024-02-05 2024-02-29 0.45 8 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "19" 2024-02-05 2024-02-29 0.5 9 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "19" 2024-02-05 2024-02-29 0.55 10 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "19" 2024-02-05 2024-02-29 0.6 11 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "19" 2024-02-05 2024-02-29 0.65 11 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "19" 2024-02-05 2024-02-29 0.7 12 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "19" 2024-02-05 2024-02-29 0.75 13 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "19" 2024-02-05 2024-02-29 0.8 14 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "19" 2024-02-05 2024-02-29 0.85 16.15 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "19" 2024-02-05 2024-02-29 0.9 20 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "19" 2024-02-05 2024-02-29 0.95 25.15 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "19" 2024-02-05 2024-02-29 0.975 32.05 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "19" 2024-02-05 2024-02-29 0.99 38.1500000000001 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "19" 2024-02-05 2024-03-01 0.01 0.99 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "19" 2024-02-05 2024-03-01 0.025 1 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "19" 2024-02-05 2024-03-01 0.05 1 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "19" 2024-02-05 2024-03-01 0.1 2 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "19" 2024-02-05 2024-03-01 0.15 3 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "19" 2024-02-05 2024-03-01 0.2 4 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "19" 2024-02-05 2024-03-01 0.25 4 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "19" 2024-02-05 2024-03-01 0.3 5 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "19" 2024-02-05 2024-03-01 0.35 5.65000000000001 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "19" 2024-02-05 2024-03-01 0.4 6 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "19" 2024-02-05 2024-03-01 0.45 6 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "19" 2024-02-05 2024-03-01 0.5 7 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "19" 2024-02-05 2024-03-01 0.55 7.45 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "19" 2024-02-05 2024-03-01 0.6 9 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "19" 2024-02-05 2024-03-01 0.65 10.35 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "19" 2024-02-05 2024-03-01 0.7 12 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "19" 2024-02-05 2024-03-01 0.75 13.25 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "19" 2024-02-05 2024-03-01 0.8 14.2 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "19" 2024-02-05 2024-03-01 0.85 17 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "19" 2024-02-05 2024-03-01 0.9 19.1 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "19" 2024-02-05 2024-03-01 0.95 21.15 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "19" 2024-02-05 2024-03-01 0.975 28.575 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "19" 2024-02-05 2024-03-01 0.99 34.07 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "19" 2024-02-05 2024-03-02 0.01 0.99 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "19" 2024-02-05 2024-03-02 0.025 1.475 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "19" 2024-02-05 2024-03-02 0.05 2 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "19" 2024-02-05 2024-03-02 0.1 2.9 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "19" 2024-02-05 2024-03-02 0.15 3 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "19" 2024-02-05 2024-03-02 0.2 3.8 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "19" 2024-02-05 2024-03-02 0.25 4 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "19" 2024-02-05 2024-03-02 0.3 4 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "19" 2024-02-05 2024-03-02 0.35 5 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "19" 2024-02-05 2024-03-02 0.4 5 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "19" 2024-02-05 2024-03-02 0.45 6 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "19" 2024-02-05 2024-03-02 0.5 7 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "19" 2024-02-05 2024-03-02 0.55 7.45 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "19" 2024-02-05 2024-03-02 0.6 8 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "19" 2024-02-05 2024-03-02 0.65 9 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "19" 2024-02-05 2024-03-02 0.7 9.30000000000001 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "19" 2024-02-05 2024-03-02 0.75 11 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "19" 2024-02-05 2024-03-02 0.8 12.2 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "19" 2024-02-05 2024-03-02 0.85 14 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "19" 2024-02-05 2024-03-02 0.9 18.3 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "19" 2024-02-05 2024-03-02 0.95 25.1 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "19" 2024-02-05 2024-03-02 0.975 31.575 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "19" 2024-02-05 2024-03-02 0.99 36.01 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "19" 2024-02-05 2024-03-03 0.01 0.99 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "19" 2024-02-05 2024-03-03 0.025 1.475 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "19" 2024-02-05 2024-03-03 0.05 2 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "19" 2024-02-05 2024-03-03 0.1 2 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "19" 2024-02-05 2024-03-03 0.15 3 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "19" 2024-02-05 2024-03-03 0.2 3 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "19" 2024-02-05 2024-03-03 0.25 4 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "19" 2024-02-05 2024-03-03 0.3 4 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "19" 2024-02-05 2024-03-03 0.35 5 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "19" 2024-02-05 2024-03-03 0.4 5.6 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "19" 2024-02-05 2024-03-03 0.45 6 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "19" 2024-02-05 2024-03-03 0.5 7 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "19" 2024-02-05 2024-03-03 0.55 7 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "19" 2024-02-05 2024-03-03 0.6 8 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "19" 2024-02-05 2024-03-03 0.65 8 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "19" 2024-02-05 2024-03-03 0.7 9 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "19" 2024-02-05 2024-03-03 0.75 10 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "19" 2024-02-05 2024-03-03 0.8 10.2 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "19" 2024-02-05 2024-03-03 0.85 13.15 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "19" 2024-02-05 2024-03-03 0.9 16 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "19" 2024-02-05 2024-03-03 0.95 23.05 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "19" 2024-02-05 2024-03-03 0.975 25.525 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "19" 2024-02-05 2024-03-03 0.99 30.09 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "19" 2024-02-05 2024-03-04 0.01 1 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "19" 2024-02-05 2024-03-04 0.025 1 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "19" 2024-02-05 2024-03-04 0.05 2 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "19" 2024-02-05 2024-03-04 0.1 3 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "19" 2024-02-05 2024-03-04 0.15 4 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "19" 2024-02-05 2024-03-04 0.2 4 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "19" 2024-02-05 2024-03-04 0.25 4 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "19" 2024-02-05 2024-03-04 0.3 5 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "19" 2024-02-05 2024-03-04 0.35 5 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "19" 2024-02-05 2024-03-04 0.4 6 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "19" 2024-02-05 2024-03-04 0.45 7 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "19" 2024-02-05 2024-03-04 0.5 8 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "19" 2024-02-05 2024-03-04 0.55 9 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "19" 2024-02-05 2024-03-04 0.6 10 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "19" 2024-02-05 2024-03-04 0.65 11 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "19" 2024-02-05 2024-03-04 0.7 11 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "19" 2024-02-05 2024-03-04 0.75 12 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "19" 2024-02-05 2024-03-04 0.8 13.2 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "19" 2024-02-05 2024-03-04 0.85 15.15 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "19" 2024-02-05 2024-03-04 0.9 18.1 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "19" 2024-02-05 2024-03-04 0.95 23.05 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "19" 2024-02-05 2024-03-04 0.975 30.7249999999999 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "19" 2024-02-05 2024-03-04 0.99 35.1200000000001 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "16" 2024-02-05 2024-02-06 0.01 5.97 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "16" 2024-02-05 2024-02-06 0.025 6.475 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "16" 2024-02-05 2024-02-06 0.05 7 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "16" 2024-02-05 2024-02-06 0.1 7 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "16" 2024-02-05 2024-02-06 0.15 8 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "16" 2024-02-05 2024-02-06 0.2 8.8 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "16" 2024-02-05 2024-02-06 0.25 10 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "16" 2024-02-05 2024-02-06 0.3 11 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "16" 2024-02-05 2024-02-06 0.35 11 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "16" 2024-02-05 2024-02-06 0.4 12 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "16" 2024-02-05 2024-02-06 0.45 12 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "16" 2024-02-05 2024-02-06 0.5 13 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "16" 2024-02-05 2024-02-06 0.55 14 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "16" 2024-02-05 2024-02-06 0.6 15 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "16" 2024-02-05 2024-02-06 0.65 15 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "16" 2024-02-05 2024-02-06 0.7 16 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "16" 2024-02-05 2024-02-06 0.75 17 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "16" 2024-02-05 2024-02-06 0.8 17 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "16" 2024-02-05 2024-02-06 0.85 19 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "16" 2024-02-05 2024-02-06 0.9 20.1 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "16" 2024-02-05 2024-02-06 0.95 23 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "16" 2024-02-05 2024-02-06 0.975 24.525 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "16" 2024-02-05 2024-02-06 0.99 27.08 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "16" 2024-02-05 2024-02-07 0.01 3 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "16" 2024-02-05 2024-02-07 0.025 4 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "16" 2024-02-05 2024-02-07 0.05 5 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "16" 2024-02-05 2024-02-07 0.1 7 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "16" 2024-02-05 2024-02-07 0.15 8 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "16" 2024-02-05 2024-02-07 0.2 8 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "16" 2024-02-05 2024-02-07 0.25 8 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "16" 2024-02-05 2024-02-07 0.3 9 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "16" 2024-02-05 2024-02-07 0.35 9 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "16" 2024-02-05 2024-02-07 0.4 10 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "16" 2024-02-05 2024-02-07 0.45 10 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "16" 2024-02-05 2024-02-07 0.5 11 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "16" 2024-02-05 2024-02-07 0.55 11 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "16" 2024-02-05 2024-02-07 0.6 12 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "16" 2024-02-05 2024-02-07 0.65 12 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "16" 2024-02-05 2024-02-07 0.7 13 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "16" 2024-02-05 2024-02-07 0.75 14 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "16" 2024-02-05 2024-02-07 0.8 15 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "16" 2024-02-05 2024-02-07 0.85 16 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "16" 2024-02-05 2024-02-07 0.9 18.1 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "16" 2024-02-05 2024-02-07 0.95 19.05 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "16" 2024-02-05 2024-02-07 0.975 21 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "16" 2024-02-05 2024-02-07 0.99 22.02 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "16" 2024-02-05 2024-02-08 0.01 3 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "16" 2024-02-05 2024-02-08 0.025 4 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "16" 2024-02-05 2024-02-08 0.05 4 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "16" 2024-02-05 2024-02-08 0.1 5 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "16" 2024-02-05 2024-02-08 0.15 6 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "16" 2024-02-05 2024-02-08 0.2 7 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "16" 2024-02-05 2024-02-08 0.25 7 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "16" 2024-02-05 2024-02-08 0.3 8 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "16" 2024-02-05 2024-02-08 0.35 8 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "16" 2024-02-05 2024-02-08 0.4 8.6 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "16" 2024-02-05 2024-02-08 0.45 9 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "16" 2024-02-05 2024-02-08 0.5 9 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "16" 2024-02-05 2024-02-08 0.55 10 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "16" 2024-02-05 2024-02-08 0.6 10 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "16" 2024-02-05 2024-02-08 0.65 11 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "16" 2024-02-05 2024-02-08 0.7 11 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "16" 2024-02-05 2024-02-08 0.75 12 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "16" 2024-02-05 2024-02-08 0.8 13 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "16" 2024-02-05 2024-02-08 0.85 15 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "16" 2024-02-05 2024-02-08 0.9 17 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "16" 2024-02-05 2024-02-08 0.95 20.05 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "16" 2024-02-05 2024-02-08 0.975 21 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "16" 2024-02-05 2024-02-08 0.99 24.03 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "16" 2024-02-05 2024-02-09 0.01 4.99 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "16" 2024-02-05 2024-02-09 0.025 5 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "16" 2024-02-05 2024-02-09 0.05 5 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "16" 2024-02-05 2024-02-09 0.1 6 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "16" 2024-02-05 2024-02-09 0.15 6 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "16" 2024-02-05 2024-02-09 0.2 7 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "16" 2024-02-05 2024-02-09 0.25 8 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "16" 2024-02-05 2024-02-09 0.3 8 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "16" 2024-02-05 2024-02-09 0.35 8 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "16" 2024-02-05 2024-02-09 0.4 9 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "16" 2024-02-05 2024-02-09 0.45 10 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "16" 2024-02-05 2024-02-09 0.5 11 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "16" 2024-02-05 2024-02-09 0.55 11 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "16" 2024-02-05 2024-02-09 0.6 11 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "16" 2024-02-05 2024-02-09 0.65 12 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "16" 2024-02-05 2024-02-09 0.7 12.3 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "16" 2024-02-05 2024-02-09 0.75 13 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "16" 2024-02-05 2024-02-09 0.8 13.2 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "16" 2024-02-05 2024-02-09 0.85 14 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "16" 2024-02-05 2024-02-09 0.9 15.1 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "16" 2024-02-05 2024-02-09 0.95 19.1 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "16" 2024-02-05 2024-02-09 0.975 22 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "16" 2024-02-05 2024-02-09 0.99 22.02 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "16" 2024-02-05 2024-02-10 0.01 3 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "16" 2024-02-05 2024-02-10 0.025 3.475 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "16" 2024-02-05 2024-02-10 0.05 4 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "16" 2024-02-05 2024-02-10 0.1 4.9 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "16" 2024-02-05 2024-02-10 0.15 5 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "16" 2024-02-05 2024-02-10 0.2 5.8 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "16" 2024-02-05 2024-02-10 0.25 6.75 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "16" 2024-02-05 2024-02-10 0.3 7 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "16" 2024-02-05 2024-02-10 0.35 7.65000000000001 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "16" 2024-02-05 2024-02-10 0.4 8.6 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "16" 2024-02-05 2024-02-10 0.45 9 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "16" 2024-02-05 2024-02-10 0.5 10 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "16" 2024-02-05 2024-02-10 0.55 10 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "16" 2024-02-05 2024-02-10 0.6 11 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "16" 2024-02-05 2024-02-10 0.65 11 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "16" 2024-02-05 2024-02-10 0.7 11 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "16" 2024-02-05 2024-02-10 0.75 12 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "16" 2024-02-05 2024-02-10 0.8 13 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "16" 2024-02-05 2024-02-10 0.85 14 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "16" 2024-02-05 2024-02-10 0.9 15.1 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "16" 2024-02-05 2024-02-10 0.95 18.05 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "16" 2024-02-05 2024-02-10 0.975 20 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "16" 2024-02-05 2024-02-10 0.99 21.04 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "16" 2024-02-05 2024-02-11 0.01 3.98 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "16" 2024-02-05 2024-02-11 0.025 4 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "16" 2024-02-05 2024-02-11 0.05 4.95 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "16" 2024-02-05 2024-02-11 0.1 6 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "16" 2024-02-05 2024-02-11 0.15 6.85 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "16" 2024-02-05 2024-02-11 0.2 7 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "16" 2024-02-05 2024-02-11 0.25 8 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "16" 2024-02-05 2024-02-11 0.3 9 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "16" 2024-02-05 2024-02-11 0.35 9 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "16" 2024-02-05 2024-02-11 0.4 10 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "16" 2024-02-05 2024-02-11 0.45 10 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "16" 2024-02-05 2024-02-11 0.5 11 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "16" 2024-02-05 2024-02-11 0.55 11.45 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "16" 2024-02-05 2024-02-11 0.6 12.4 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "16" 2024-02-05 2024-02-11 0.65 13 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "16" 2024-02-05 2024-02-11 0.7 14 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "16" 2024-02-05 2024-02-11 0.75 15 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "16" 2024-02-05 2024-02-11 0.8 15 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "16" 2024-02-05 2024-02-11 0.85 17 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "16" 2024-02-05 2024-02-11 0.9 17.1 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "16" 2024-02-05 2024-02-11 0.95 19 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "16" 2024-02-05 2024-02-11 0.975 21.05 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "16" 2024-02-05 2024-02-11 0.99 23.08 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "16" 2024-02-05 2024-02-12 0.01 3 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "16" 2024-02-05 2024-02-12 0.025 3 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "16" 2024-02-05 2024-02-12 0.05 4 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "16" 2024-02-05 2024-02-12 0.1 5.9 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "16" 2024-02-05 2024-02-12 0.15 6 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "16" 2024-02-05 2024-02-12 0.2 7 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "16" 2024-02-05 2024-02-12 0.25 8 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "16" 2024-02-05 2024-02-12 0.3 9 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "16" 2024-02-05 2024-02-12 0.35 9 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "16" 2024-02-05 2024-02-12 0.4 9.6 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "16" 2024-02-05 2024-02-12 0.45 10 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "16" 2024-02-05 2024-02-12 0.5 11 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "16" 2024-02-05 2024-02-12 0.55 11 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "16" 2024-02-05 2024-02-12 0.6 12 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "16" 2024-02-05 2024-02-12 0.65 13 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "16" 2024-02-05 2024-02-12 0.7 13 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "16" 2024-02-05 2024-02-12 0.75 14 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "16" 2024-02-05 2024-02-12 0.8 15 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "16" 2024-02-05 2024-02-12 0.85 16 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "16" 2024-02-05 2024-02-12 0.9 17.1 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "16" 2024-02-05 2024-02-12 0.95 20.05 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "16" 2024-02-05 2024-02-12 0.975 23.05 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "16" 2024-02-05 2024-02-12 0.99 25.07 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "16" 2024-02-05 2024-02-13 0.01 2 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "16" 2024-02-05 2024-02-13 0.025 4 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "16" 2024-02-05 2024-02-13 0.05 4.95 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "16" 2024-02-05 2024-02-13 0.1 6 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "16" 2024-02-05 2024-02-13 0.15 7 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "16" 2024-02-05 2024-02-13 0.2 8 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "16" 2024-02-05 2024-02-13 0.25 8 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "16" 2024-02-05 2024-02-13 0.3 9 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "16" 2024-02-05 2024-02-13 0.35 10 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "16" 2024-02-05 2024-02-13 0.4 11 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "16" 2024-02-05 2024-02-13 0.45 11 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "16" 2024-02-05 2024-02-13 0.5 11.5 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "16" 2024-02-05 2024-02-13 0.55 12 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "16" 2024-02-05 2024-02-13 0.6 12 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "16" 2024-02-05 2024-02-13 0.65 13 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "16" 2024-02-05 2024-02-13 0.7 13 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "16" 2024-02-05 2024-02-13 0.75 14 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "16" 2024-02-05 2024-02-13 0.8 15.2 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "16" 2024-02-05 2024-02-13 0.85 17 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "16" 2024-02-05 2024-02-13 0.9 19 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "16" 2024-02-05 2024-02-13 0.95 20.05 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "16" 2024-02-05 2024-02-13 0.975 22.575 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "16" 2024-02-05 2024-02-13 0.99 31.07 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "16" 2024-02-05 2024-02-14 0.01 1.99 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "16" 2024-02-05 2024-02-14 0.025 3 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "16" 2024-02-05 2024-02-14 0.05 3 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "16" 2024-02-05 2024-02-14 0.1 4 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "16" 2024-02-05 2024-02-14 0.15 5 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "16" 2024-02-05 2024-02-14 0.2 5.8 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "16" 2024-02-05 2024-02-14 0.25 6 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "16" 2024-02-05 2024-02-14 0.3 7 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "16" 2024-02-05 2024-02-14 0.35 7 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "16" 2024-02-05 2024-02-14 0.4 8 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "16" 2024-02-05 2024-02-14 0.45 8.55 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "16" 2024-02-05 2024-02-14 0.5 10 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "16" 2024-02-05 2024-02-14 0.55 10 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "16" 2024-02-05 2024-02-14 0.6 10 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "16" 2024-02-05 2024-02-14 0.65 11 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "16" 2024-02-05 2024-02-14 0.7 13 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "16" 2024-02-05 2024-02-14 0.75 13.25 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "16" 2024-02-05 2024-02-14 0.8 15 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "16" 2024-02-05 2024-02-14 0.85 15 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "16" 2024-02-05 2024-02-14 0.9 17.1 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "16" 2024-02-05 2024-02-14 0.95 19 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "16" 2024-02-05 2024-02-14 0.975 22.525 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "16" 2024-02-05 2024-02-14 0.99 25 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "16" 2024-02-05 2024-02-15 0.01 2 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "16" 2024-02-05 2024-02-15 0.025 2 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "16" 2024-02-05 2024-02-15 0.05 3 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "16" 2024-02-05 2024-02-15 0.1 4 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "16" 2024-02-05 2024-02-15 0.15 4.85 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "16" 2024-02-05 2024-02-15 0.2 5 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "16" 2024-02-05 2024-02-15 0.25 6 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "16" 2024-02-05 2024-02-15 0.3 6 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "16" 2024-02-05 2024-02-15 0.35 7 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "16" 2024-02-05 2024-02-15 0.4 8 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "16" 2024-02-05 2024-02-15 0.45 9 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "16" 2024-02-05 2024-02-15 0.5 9 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "16" 2024-02-05 2024-02-15 0.55 10 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "16" 2024-02-05 2024-02-15 0.6 10.4 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "16" 2024-02-05 2024-02-15 0.65 11 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "16" 2024-02-05 2024-02-15 0.7 12 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "16" 2024-02-05 2024-02-15 0.75 13 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "16" 2024-02-05 2024-02-15 0.8 14 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "16" 2024-02-05 2024-02-15 0.85 14 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "16" 2024-02-05 2024-02-15 0.9 15 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "16" 2024-02-05 2024-02-15 0.95 16 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "16" 2024-02-05 2024-02-15 0.975 19.525 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "16" 2024-02-05 2024-02-15 0.99 21 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "16" 2024-02-05 2024-02-16 0.01 0.99 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "16" 2024-02-05 2024-02-16 0.025 3 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "16" 2024-02-05 2024-02-16 0.05 3 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "16" 2024-02-05 2024-02-16 0.1 5 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "16" 2024-02-05 2024-02-16 0.15 5 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "16" 2024-02-05 2024-02-16 0.2 6 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "16" 2024-02-05 2024-02-16 0.25 6 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "16" 2024-02-05 2024-02-16 0.3 7 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "16" 2024-02-05 2024-02-16 0.35 7 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "16" 2024-02-05 2024-02-16 0.4 7.6 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "16" 2024-02-05 2024-02-16 0.45 8 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "16" 2024-02-05 2024-02-16 0.5 8.5 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "16" 2024-02-05 2024-02-16 0.55 9 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "16" 2024-02-05 2024-02-16 0.6 10 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "16" 2024-02-05 2024-02-16 0.65 10.35 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "16" 2024-02-05 2024-02-16 0.7 11 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "16" 2024-02-05 2024-02-16 0.75 12 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "16" 2024-02-05 2024-02-16 0.8 13.2 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "16" 2024-02-05 2024-02-16 0.85 15 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "16" 2024-02-05 2024-02-16 0.9 15.1 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "16" 2024-02-05 2024-02-16 0.95 19.05 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "16" 2024-02-05 2024-02-16 0.975 22.05 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "16" 2024-02-05 2024-02-16 0.99 23.02 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "16" 2024-02-05 2024-02-17 0.01 1 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "16" 2024-02-05 2024-02-17 0.025 2 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "16" 2024-02-05 2024-02-17 0.05 3 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "16" 2024-02-05 2024-02-17 0.1 4 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "16" 2024-02-05 2024-02-17 0.15 5 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "16" 2024-02-05 2024-02-17 0.2 6 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "16" 2024-02-05 2024-02-17 0.25 6 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "16" 2024-02-05 2024-02-17 0.3 6 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "16" 2024-02-05 2024-02-17 0.35 7 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "16" 2024-02-05 2024-02-17 0.4 8 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "16" 2024-02-05 2024-02-17 0.45 8.55 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "16" 2024-02-05 2024-02-17 0.5 9 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "16" 2024-02-05 2024-02-17 0.55 10 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "16" 2024-02-05 2024-02-17 0.6 10 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "16" 2024-02-05 2024-02-17 0.65 11 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "16" 2024-02-05 2024-02-17 0.7 11 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "16" 2024-02-05 2024-02-17 0.75 12 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "16" 2024-02-05 2024-02-17 0.8 13 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "16" 2024-02-05 2024-02-17 0.85 14.15 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "16" 2024-02-05 2024-02-17 0.9 16 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "16" 2024-02-05 2024-02-17 0.95 17.05 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "16" 2024-02-05 2024-02-17 0.975 19 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "16" 2024-02-05 2024-02-17 0.99 22.01 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "16" 2024-02-05 2024-02-18 0.01 1 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "16" 2024-02-05 2024-02-18 0.025 1.475 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "16" 2024-02-05 2024-02-18 0.05 3 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "16" 2024-02-05 2024-02-18 0.1 4 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "16" 2024-02-05 2024-02-18 0.15 5 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "16" 2024-02-05 2024-02-18 0.2 5.8 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "16" 2024-02-05 2024-02-18 0.25 6 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "16" 2024-02-05 2024-02-18 0.3 7 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "16" 2024-02-05 2024-02-18 0.35 8 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "16" 2024-02-05 2024-02-18 0.4 8 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "16" 2024-02-05 2024-02-18 0.45 8.55 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "16" 2024-02-05 2024-02-18 0.5 9 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "16" 2024-02-05 2024-02-18 0.55 10 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "16" 2024-02-05 2024-02-18 0.6 10 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "16" 2024-02-05 2024-02-18 0.65 11 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "16" 2024-02-05 2024-02-18 0.7 12 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "16" 2024-02-05 2024-02-18 0.75 12 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "16" 2024-02-05 2024-02-18 0.8 13 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "16" 2024-02-05 2024-02-18 0.85 14 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "16" 2024-02-05 2024-02-18 0.9 16.1 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "16" 2024-02-05 2024-02-18 0.95 18 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "16" 2024-02-05 2024-02-18 0.975 21 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "16" 2024-02-05 2024-02-18 0.99 25.01 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "16" 2024-02-05 2024-02-19 0.01 0.99 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "16" 2024-02-05 2024-02-19 0.025 1.475 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "16" 2024-02-05 2024-02-19 0.05 3 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "16" 2024-02-05 2024-02-19 0.1 4 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "16" 2024-02-05 2024-02-19 0.15 5 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "16" 2024-02-05 2024-02-19 0.2 6 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "16" 2024-02-05 2024-02-19 0.25 7 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "16" 2024-02-05 2024-02-19 0.3 7 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "16" 2024-02-05 2024-02-19 0.35 8 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "16" 2024-02-05 2024-02-19 0.4 8 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "16" 2024-02-05 2024-02-19 0.45 9 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "16" 2024-02-05 2024-02-19 0.5 10 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "16" 2024-02-05 2024-02-19 0.55 10.45 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "16" 2024-02-05 2024-02-19 0.6 11 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "16" 2024-02-05 2024-02-19 0.65 12 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "16" 2024-02-05 2024-02-19 0.7 13 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "16" 2024-02-05 2024-02-19 0.75 14 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "16" 2024-02-05 2024-02-19 0.8 14 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "16" 2024-02-05 2024-02-19 0.85 15 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "16" 2024-02-05 2024-02-19 0.9 17 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "16" 2024-02-05 2024-02-19 0.95 19.05 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "16" 2024-02-05 2024-02-19 0.975 23 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "16" 2024-02-05 2024-02-19 0.99 26.08 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "16" 2024-02-05 2024-02-20 0.01 1.99 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "16" 2024-02-05 2024-02-20 0.025 2 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "16" 2024-02-05 2024-02-20 0.05 2.95 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "16" 2024-02-05 2024-02-20 0.1 3 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "16" 2024-02-05 2024-02-20 0.15 4.85 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "16" 2024-02-05 2024-02-20 0.2 5 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "16" 2024-02-05 2024-02-20 0.25 6 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "16" 2024-02-05 2024-02-20 0.3 7 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "16" 2024-02-05 2024-02-20 0.35 8 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "16" 2024-02-05 2024-02-20 0.4 8 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "16" 2024-02-05 2024-02-20 0.45 8 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "16" 2024-02-05 2024-02-20 0.5 9 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "16" 2024-02-05 2024-02-20 0.55 10 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "16" 2024-02-05 2024-02-20 0.6 10 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "16" 2024-02-05 2024-02-20 0.65 10.35 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "16" 2024-02-05 2024-02-20 0.7 11 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "16" 2024-02-05 2024-02-20 0.75 13 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "16" 2024-02-05 2024-02-20 0.8 14 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "16" 2024-02-05 2024-02-20 0.85 14 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "16" 2024-02-05 2024-02-20 0.9 16.1 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "16" 2024-02-05 2024-02-20 0.95 19.05 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "16" 2024-02-05 2024-02-20 0.975 21.05 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "16" 2024-02-05 2024-02-20 0.99 25.02 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "16" 2024-02-05 2024-02-21 0.01 1.98 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "16" 2024-02-05 2024-02-21 0.025 2.475 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "16" 2024-02-05 2024-02-21 0.05 3 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "16" 2024-02-05 2024-02-21 0.1 3.9 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "16" 2024-02-05 2024-02-21 0.15 4 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "16" 2024-02-05 2024-02-21 0.2 5 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "16" 2024-02-05 2024-02-21 0.25 6 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "16" 2024-02-05 2024-02-21 0.3 6 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "16" 2024-02-05 2024-02-21 0.35 6.65000000000001 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "16" 2024-02-05 2024-02-21 0.4 7 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "16" 2024-02-05 2024-02-21 0.45 8 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "16" 2024-02-05 2024-02-21 0.5 8 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "16" 2024-02-05 2024-02-21 0.55 9 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "16" 2024-02-05 2024-02-21 0.6 9 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "16" 2024-02-05 2024-02-21 0.65 10 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "16" 2024-02-05 2024-02-21 0.7 11 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "16" 2024-02-05 2024-02-21 0.75 12 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "16" 2024-02-05 2024-02-21 0.8 13 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "16" 2024-02-05 2024-02-21 0.85 14 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "16" 2024-02-05 2024-02-21 0.9 17 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "16" 2024-02-05 2024-02-21 0.95 19 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "16" 2024-02-05 2024-02-21 0.975 21.525 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "16" 2024-02-05 2024-02-21 0.99 25.04 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "16" 2024-02-05 2024-02-22 0.01 0.99 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "16" 2024-02-05 2024-02-22 0.025 2 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "16" 2024-02-05 2024-02-22 0.05 2 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "16" 2024-02-05 2024-02-22 0.1 3 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "16" 2024-02-05 2024-02-22 0.15 4 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "16" 2024-02-05 2024-02-22 0.2 4.8 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "16" 2024-02-05 2024-02-22 0.25 5 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "16" 2024-02-05 2024-02-22 0.3 5 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "16" 2024-02-05 2024-02-22 0.35 6 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "16" 2024-02-05 2024-02-22 0.4 6 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "16" 2024-02-05 2024-02-22 0.45 7 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "16" 2024-02-05 2024-02-22 0.5 7 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "16" 2024-02-05 2024-02-22 0.55 9 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "16" 2024-02-05 2024-02-22 0.6 9 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "16" 2024-02-05 2024-02-22 0.65 10.35 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "16" 2024-02-05 2024-02-22 0.7 11 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "16" 2024-02-05 2024-02-22 0.75 12 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "16" 2024-02-05 2024-02-22 0.8 12 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "16" 2024-02-05 2024-02-22 0.85 13 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "16" 2024-02-05 2024-02-22 0.9 15.1 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "16" 2024-02-05 2024-02-22 0.95 17.05 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "16" 2024-02-05 2024-02-22 0.975 23 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "16" 2024-02-05 2024-02-22 0.99 27.06 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "16" 2024-02-05 2024-02-23 0.01 0.99 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "16" 2024-02-05 2024-02-23 0.025 2 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "16" 2024-02-05 2024-02-23 0.05 2 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "16" 2024-02-05 2024-02-23 0.1 3 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "16" 2024-02-05 2024-02-23 0.15 4 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "16" 2024-02-05 2024-02-23 0.2 4 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "16" 2024-02-05 2024-02-23 0.25 4 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "16" 2024-02-05 2024-02-23 0.3 5 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "16" 2024-02-05 2024-02-23 0.35 6 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "16" 2024-02-05 2024-02-23 0.4 6 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "16" 2024-02-05 2024-02-23 0.45 7 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "16" 2024-02-05 2024-02-23 0.5 7.5 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "16" 2024-02-05 2024-02-23 0.55 8 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "16" 2024-02-05 2024-02-23 0.6 9 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "16" 2024-02-05 2024-02-23 0.65 10 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "16" 2024-02-05 2024-02-23 0.7 10 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "16" 2024-02-05 2024-02-23 0.75 11.25 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "16" 2024-02-05 2024-02-23 0.8 13 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "16" 2024-02-05 2024-02-23 0.85 14 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "16" 2024-02-05 2024-02-23 0.9 15.1 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "16" 2024-02-05 2024-02-23 0.95 18 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "16" 2024-02-05 2024-02-23 0.975 21.1 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "16" 2024-02-05 2024-02-23 0.99 23.02 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "16" 2024-02-05 2024-02-24 0.01 0.99 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "16" 2024-02-05 2024-02-24 0.025 1 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "16" 2024-02-05 2024-02-24 0.05 1.95 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "16" 2024-02-05 2024-02-24 0.1 3.9 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "16" 2024-02-05 2024-02-24 0.15 5 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "16" 2024-02-05 2024-02-24 0.2 5 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "16" 2024-02-05 2024-02-24 0.25 5 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "16" 2024-02-05 2024-02-24 0.3 6 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "16" 2024-02-05 2024-02-24 0.35 6 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "16" 2024-02-05 2024-02-24 0.4 6.6 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "16" 2024-02-05 2024-02-24 0.45 7 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "16" 2024-02-05 2024-02-24 0.5 8 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "16" 2024-02-05 2024-02-24 0.55 9 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "16" 2024-02-05 2024-02-24 0.6 9 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "16" 2024-02-05 2024-02-24 0.65 10 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "16" 2024-02-05 2024-02-24 0.7 10 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "16" 2024-02-05 2024-02-24 0.75 11 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "16" 2024-02-05 2024-02-24 0.8 12 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "16" 2024-02-05 2024-02-24 0.85 13 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "16" 2024-02-05 2024-02-24 0.9 13.2 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "16" 2024-02-05 2024-02-24 0.95 17.05 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "16" 2024-02-05 2024-02-24 0.975 20.05 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "16" 2024-02-05 2024-02-24 0.99 22.1000000000001 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "16" 2024-02-05 2024-02-25 0.01 1 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "16" 2024-02-05 2024-02-25 0.025 2 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "16" 2024-02-05 2024-02-25 0.05 3 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "16" 2024-02-05 2024-02-25 0.1 4 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "16" 2024-02-05 2024-02-25 0.15 4 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "16" 2024-02-05 2024-02-25 0.2 5 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "16" 2024-02-05 2024-02-25 0.25 5 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "16" 2024-02-05 2024-02-25 0.3 6 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "16" 2024-02-05 2024-02-25 0.35 7 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "16" 2024-02-05 2024-02-25 0.4 7 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "16" 2024-02-05 2024-02-25 0.45 7.55 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "16" 2024-02-05 2024-02-25 0.5 8 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "16" 2024-02-05 2024-02-25 0.55 8.45 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "16" 2024-02-05 2024-02-25 0.6 9 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "16" 2024-02-05 2024-02-25 0.65 10 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "16" 2024-02-05 2024-02-25 0.7 11 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "16" 2024-02-05 2024-02-25 0.75 12 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "16" 2024-02-05 2024-02-25 0.8 12.2 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "16" 2024-02-05 2024-02-25 0.85 15 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "16" 2024-02-05 2024-02-25 0.9 17.2 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "16" 2024-02-05 2024-02-25 0.95 21.05 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "16" 2024-02-05 2024-02-25 0.975 23.525 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "16" 2024-02-05 2024-02-25 0.99 26.01 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "16" 2024-02-05 2024-02-26 0.01 0.99 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "16" 2024-02-05 2024-02-26 0.025 2 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "16" 2024-02-05 2024-02-26 0.05 2 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "16" 2024-02-05 2024-02-26 0.1 3 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "16" 2024-02-05 2024-02-26 0.15 4 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "16" 2024-02-05 2024-02-26 0.2 4.8 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "16" 2024-02-05 2024-02-26 0.25 5 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "16" 2024-02-05 2024-02-26 0.3 5 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "16" 2024-02-05 2024-02-26 0.35 6 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "16" 2024-02-05 2024-02-26 0.4 6 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "16" 2024-02-05 2024-02-26 0.45 7 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "16" 2024-02-05 2024-02-26 0.5 7.5 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "16" 2024-02-05 2024-02-26 0.55 8 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "16" 2024-02-05 2024-02-26 0.6 9 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "16" 2024-02-05 2024-02-26 0.65 10 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "16" 2024-02-05 2024-02-26 0.7 11 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "16" 2024-02-05 2024-02-26 0.75 11 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "16" 2024-02-05 2024-02-26 0.8 12.2 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "16" 2024-02-05 2024-02-26 0.85 14 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "16" 2024-02-05 2024-02-26 0.9 15.1 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "16" 2024-02-05 2024-02-26 0.95 21.1 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "16" 2024-02-05 2024-02-26 0.975 24.525 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "16" 2024-02-05 2024-02-26 0.99 27.03 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "16" 2024-02-05 2024-02-27 0.01 1 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "16" 2024-02-05 2024-02-27 0.025 1 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "16" 2024-02-05 2024-02-27 0.05 2.95 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "16" 2024-02-05 2024-02-27 0.1 3 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "16" 2024-02-05 2024-02-27 0.15 4 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "16" 2024-02-05 2024-02-27 0.2 5 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "16" 2024-02-05 2024-02-27 0.25 5 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "16" 2024-02-05 2024-02-27 0.3 6 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "16" 2024-02-05 2024-02-27 0.35 7 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "16" 2024-02-05 2024-02-27 0.4 7 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "16" 2024-02-05 2024-02-27 0.45 8 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "16" 2024-02-05 2024-02-27 0.5 8.5 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "16" 2024-02-05 2024-02-27 0.55 9 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "16" 2024-02-05 2024-02-27 0.6 10 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "16" 2024-02-05 2024-02-27 0.65 10 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "16" 2024-02-05 2024-02-27 0.7 11 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "16" 2024-02-05 2024-02-27 0.75 12 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "16" 2024-02-05 2024-02-27 0.8 13 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "16" 2024-02-05 2024-02-27 0.85 15.15 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "16" 2024-02-05 2024-02-27 0.9 19.1 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "16" 2024-02-05 2024-02-27 0.95 22.1 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "16" 2024-02-05 2024-02-27 0.975 24 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "16" 2024-02-05 2024-02-27 0.99 30.01 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "16" 2024-02-05 2024-02-28 0.01 0 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "16" 2024-02-05 2024-02-28 0.025 0.475 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "16" 2024-02-05 2024-02-28 0.05 1.95 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "16" 2024-02-05 2024-02-28 0.1 2.9 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "16" 2024-02-05 2024-02-28 0.15 3 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "16" 2024-02-05 2024-02-28 0.2 4 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "16" 2024-02-05 2024-02-28 0.25 5 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "16" 2024-02-05 2024-02-28 0.3 6 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "16" 2024-02-05 2024-02-28 0.35 6 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "16" 2024-02-05 2024-02-28 0.4 7 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "16" 2024-02-05 2024-02-28 0.45 7 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "16" 2024-02-05 2024-02-28 0.5 8 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "16" 2024-02-05 2024-02-28 0.55 8 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "16" 2024-02-05 2024-02-28 0.6 9 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "16" 2024-02-05 2024-02-28 0.65 9 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "16" 2024-02-05 2024-02-28 0.7 10 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "16" 2024-02-05 2024-02-28 0.75 11 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "16" 2024-02-05 2024-02-28 0.8 11.2 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "16" 2024-02-05 2024-02-28 0.85 14 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "16" 2024-02-05 2024-02-28 0.9 15 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "16" 2024-02-05 2024-02-28 0.95 23.05 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "16" 2024-02-05 2024-02-28 0.975 26.525 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "16" 2024-02-05 2024-02-28 0.99 29.02 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "16" 2024-02-05 2024-02-29 0.01 0 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "16" 2024-02-05 2024-02-29 0.025 1 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "16" 2024-02-05 2024-02-29 0.05 1 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "16" 2024-02-05 2024-02-29 0.1 2 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "16" 2024-02-05 2024-02-29 0.15 3 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "16" 2024-02-05 2024-02-29 0.2 4 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "16" 2024-02-05 2024-02-29 0.25 4 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "16" 2024-02-05 2024-02-29 0.3 5 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "16" 2024-02-05 2024-02-29 0.35 5 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "16" 2024-02-05 2024-02-29 0.4 6 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "16" 2024-02-05 2024-02-29 0.45 6 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "16" 2024-02-05 2024-02-29 0.5 6.5 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "16" 2024-02-05 2024-02-29 0.55 7 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "16" 2024-02-05 2024-02-29 0.6 8 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "16" 2024-02-05 2024-02-29 0.65 8 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "16" 2024-02-05 2024-02-29 0.7 8.30000000000001 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "16" 2024-02-05 2024-02-29 0.75 10 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "16" 2024-02-05 2024-02-29 0.8 11 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "16" 2024-02-05 2024-02-29 0.85 14.15 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "16" 2024-02-05 2024-02-29 0.9 16.1 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "16" 2024-02-05 2024-02-29 0.95 22.1 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "16" 2024-02-05 2024-02-29 0.975 24.525 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "16" 2024-02-05 2024-02-29 0.99 26.09 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "16" 2024-02-05 2024-03-01 0.01 0.99 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "16" 2024-02-05 2024-03-01 0.025 1 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "16" 2024-02-05 2024-03-01 0.05 1 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "16" 2024-02-05 2024-03-01 0.1 2.9 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "16" 2024-02-05 2024-03-01 0.15 3 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "16" 2024-02-05 2024-03-01 0.2 4 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "16" 2024-02-05 2024-03-01 0.25 4 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "16" 2024-02-05 2024-03-01 0.3 4 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "16" 2024-02-05 2024-03-01 0.35 5 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "16" 2024-02-05 2024-03-01 0.4 6 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "16" 2024-02-05 2024-03-01 0.45 6.55 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "16" 2024-02-05 2024-03-01 0.5 7 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "16" 2024-02-05 2024-03-01 0.55 7 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "16" 2024-02-05 2024-03-01 0.6 8 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "16" 2024-02-05 2024-03-01 0.65 9 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "16" 2024-02-05 2024-03-01 0.7 9 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "16" 2024-02-05 2024-03-01 0.75 10 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "16" 2024-02-05 2024-03-01 0.8 12 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "16" 2024-02-05 2024-03-01 0.85 14.15 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "16" 2024-02-05 2024-03-01 0.9 16.1 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "16" 2024-02-05 2024-03-01 0.95 19.05 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "16" 2024-02-05 2024-03-01 0.975 22.525 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "16" 2024-02-05 2024-03-01 0.99 28.1200000000001 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "16" 2024-02-05 2024-03-02 0.01 0 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "16" 2024-02-05 2024-03-02 0.025 0.475 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "16" 2024-02-05 2024-03-02 0.05 1.95 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "16" 2024-02-05 2024-03-02 0.1 2 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "16" 2024-02-05 2024-03-02 0.15 3 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "16" 2024-02-05 2024-03-02 0.2 3 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "16" 2024-02-05 2024-03-02 0.25 4 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "16" 2024-02-05 2024-03-02 0.3 4 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "16" 2024-02-05 2024-03-02 0.35 4 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "16" 2024-02-05 2024-03-02 0.4 5 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "16" 2024-02-05 2024-03-02 0.45 5 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "16" 2024-02-05 2024-03-02 0.5 5 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "16" 2024-02-05 2024-03-02 0.55 6 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "16" 2024-02-05 2024-03-02 0.6 7 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "16" 2024-02-05 2024-03-02 0.65 7 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "16" 2024-02-05 2024-03-02 0.7 8 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "16" 2024-02-05 2024-03-02 0.75 9 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "16" 2024-02-05 2024-03-02 0.8 11 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "16" 2024-02-05 2024-03-02 0.85 12 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "16" 2024-02-05 2024-03-02 0.9 15 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "16" 2024-02-05 2024-03-02 0.95 22 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "16" 2024-02-05 2024-03-02 0.975 24.05 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "16" 2024-02-05 2024-03-02 0.99 25.04 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "16" 2024-02-05 2024-03-03 0.01 0.99 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "16" 2024-02-05 2024-03-03 0.025 1 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "16" 2024-02-05 2024-03-03 0.05 1 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "16" 2024-02-05 2024-03-03 0.1 2.9 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "16" 2024-02-05 2024-03-03 0.15 3 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "16" 2024-02-05 2024-03-03 0.2 4 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "16" 2024-02-05 2024-03-03 0.25 4.75 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "16" 2024-02-05 2024-03-03 0.3 5 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "16" 2024-02-05 2024-03-03 0.35 6 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "16" 2024-02-05 2024-03-03 0.4 6 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "16" 2024-02-05 2024-03-03 0.45 6.55 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "16" 2024-02-05 2024-03-03 0.5 7.5 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "16" 2024-02-05 2024-03-03 0.55 8 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "16" 2024-02-05 2024-03-03 0.6 8 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "16" 2024-02-05 2024-03-03 0.65 9 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "16" 2024-02-05 2024-03-03 0.7 9.30000000000001 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "16" 2024-02-05 2024-03-03 0.75 11 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "16" 2024-02-05 2024-03-03 0.8 13 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "16" 2024-02-05 2024-03-03 0.85 14.15 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "16" 2024-02-05 2024-03-03 0.9 17 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "16" 2024-02-05 2024-03-03 0.95 21 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "16" 2024-02-05 2024-03-03 0.975 26.7249999999999 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "16" 2024-02-05 2024-03-03 0.99 31.2200000000001 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "16" 2024-02-05 2024-03-04 0.01 0 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "16" 2024-02-05 2024-03-04 0.025 1 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "16" 2024-02-05 2024-03-04 0.05 1 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "16" 2024-02-05 2024-03-04 0.1 1.9 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "16" 2024-02-05 2024-03-04 0.15 3 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "16" 2024-02-05 2024-03-04 0.2 3 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "16" 2024-02-05 2024-03-04 0.25 5 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "16" 2024-02-05 2024-03-04 0.3 5 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "16" 2024-02-05 2024-03-04 0.35 6 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "16" 2024-02-05 2024-03-04 0.4 6 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "16" 2024-02-05 2024-03-04 0.45 6 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "16" 2024-02-05 2024-03-04 0.5 7 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "16" 2024-02-05 2024-03-04 0.55 7 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "16" 2024-02-05 2024-03-04 0.6 8 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "16" 2024-02-05 2024-03-04 0.65 9.35000000000001 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "16" 2024-02-05 2024-03-04 0.7 10.3 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "16" 2024-02-05 2024-03-04 0.75 12 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "16" 2024-02-05 2024-03-04 0.8 14 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "16" 2024-02-05 2024-03-04 0.85 15.3 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "16" 2024-02-05 2024-03-04 0.9 18 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "16" 2024-02-05 2024-03-04 0.95 22.05 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "16" 2024-02-05 2024-03-04 0.975 23.525 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "16" 2024-02-05 2024-03-04 0.99 26.2800000000001 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "17" 2024-02-05 2024-02-06 0.01 50.96 "quantile" "hospital admissions only" +"1 day ahead inc hosp" "17" 2024-02-05 2024-02-06 0.025 53 "quantile" "hospital admissions only" +"1 day ahead inc hosp" "17" 2024-02-05 2024-02-06 0.05 57.75 "quantile" "hospital admissions only" +"1 day ahead inc hosp" "17" 2024-02-05 2024-02-06 0.1 61.8 "quantile" "hospital admissions only" +"1 day ahead inc hosp" "17" 2024-02-05 2024-02-06 0.15 65 "quantile" "hospital admissions only" +"1 day ahead inc hosp" "17" 2024-02-05 2024-02-06 0.2 68 "quantile" "hospital admissions only" +"1 day ahead inc hosp" "17" 2024-02-05 2024-02-06 0.25 70 "quantile" "hospital admissions only" +"1 day ahead inc hosp" "17" 2024-02-05 2024-02-06 0.3 71.7 "quantile" "hospital admissions only" +"1 day ahead inc hosp" "17" 2024-02-05 2024-02-06 0.35 74 "quantile" "hospital admissions only" +"1 day ahead inc hosp" "17" 2024-02-05 2024-02-06 0.4 75.6 "quantile" "hospital admissions only" +"1 day ahead inc hosp" "17" 2024-02-05 2024-02-06 0.45 78 "quantile" "hospital admissions only" +"1 day ahead inc hosp" "17" 2024-02-05 2024-02-06 0.5 79.5 "quantile" "hospital admissions only" +"1 day ahead inc hosp" "17" 2024-02-05 2024-02-06 0.55 81.45 "quantile" "hospital admissions only" +"1 day ahead inc hosp" "17" 2024-02-05 2024-02-06 0.6 83.4 "quantile" "hospital admissions only" +"1 day ahead inc hosp" "17" 2024-02-05 2024-02-06 0.65 85 "quantile" "hospital admissions only" +"1 day ahead inc hosp" "17" 2024-02-05 2024-02-06 0.7 87 "quantile" "hospital admissions only" +"1 day ahead inc hosp" "17" 2024-02-05 2024-02-06 0.75 90.25 "quantile" "hospital admissions only" +"1 day ahead inc hosp" "17" 2024-02-05 2024-02-06 0.8 92.4 "quantile" "hospital admissions only" +"1 day ahead inc hosp" "17" 2024-02-05 2024-02-06 0.85 97.3 "quantile" "hospital admissions only" +"1 day ahead inc hosp" "17" 2024-02-05 2024-02-06 0.9 102 "quantile" "hospital admissions only" +"1 day ahead inc hosp" "17" 2024-02-05 2024-02-06 0.95 108.1 "quantile" "hospital admissions only" +"1 day ahead inc hosp" "17" 2024-02-05 2024-02-06 0.975 112.525 "quantile" "hospital admissions only" +"1 day ahead inc hosp" "17" 2024-02-05 2024-02-06 0.99 113.02 "quantile" "hospital admissions only" +"2 day ahead inc hosp" "17" 2024-02-05 2024-02-07 0.01 51.83 "quantile" "hospital admissions only" +"2 day ahead inc hosp" "17" 2024-02-05 2024-02-07 0.025 53.95 "quantile" "hospital admissions only" +"2 day ahead inc hosp" "17" 2024-02-05 2024-02-07 0.05 58.9 "quantile" "hospital admissions only" +"2 day ahead inc hosp" "17" 2024-02-05 2024-02-07 0.1 61 "quantile" "hospital admissions only" +"2 day ahead inc hosp" "17" 2024-02-05 2024-02-07 0.15 63.7 "quantile" "hospital admissions only" +"2 day ahead inc hosp" "17" 2024-02-05 2024-02-07 0.2 65.8 "quantile" "hospital admissions only" +"2 day ahead inc hosp" "17" 2024-02-05 2024-02-07 0.25 69.75 "quantile" "hospital admissions only" +"2 day ahead inc hosp" "17" 2024-02-05 2024-02-07 0.3 72.7 "quantile" "hospital admissions only" +"2 day ahead inc hosp" "17" 2024-02-05 2024-02-07 0.35 74 "quantile" "hospital admissions only" +"2 day ahead inc hosp" "17" 2024-02-05 2024-02-07 0.4 75 "quantile" "hospital admissions only" +"2 day ahead inc hosp" "17" 2024-02-05 2024-02-07 0.45 76 "quantile" "hospital admissions only" +"2 day ahead inc hosp" "17" 2024-02-05 2024-02-07 0.5 77.5 "quantile" "hospital admissions only" +"2 day ahead inc hosp" "17" 2024-02-05 2024-02-07 0.55 80 "quantile" "hospital admissions only" +"2 day ahead inc hosp" "17" 2024-02-05 2024-02-07 0.6 81.4 "quantile" "hospital admissions only" +"2 day ahead inc hosp" "17" 2024-02-05 2024-02-07 0.65 83 "quantile" "hospital admissions only" +"2 day ahead inc hosp" "17" 2024-02-05 2024-02-07 0.7 85.3 "quantile" "hospital admissions only" +"2 day ahead inc hosp" "17" 2024-02-05 2024-02-07 0.75 86 "quantile" "hospital admissions only" +"2 day ahead inc hosp" "17" 2024-02-05 2024-02-07 0.8 89.6 "quantile" "hospital admissions only" +"2 day ahead inc hosp" "17" 2024-02-05 2024-02-07 0.85 99 "quantile" "hospital admissions only" +"2 day ahead inc hosp" "17" 2024-02-05 2024-02-07 0.9 102.2 "quantile" "hospital admissions only" +"2 day ahead inc hosp" "17" 2024-02-05 2024-02-07 0.95 109.25 "quantile" "hospital admissions only" +"2 day ahead inc hosp" "17" 2024-02-05 2024-02-07 0.975 120.525 "quantile" "hospital admissions only" +"2 day ahead inc hosp" "17" 2024-02-05 2024-02-07 0.99 122.02 "quantile" "hospital admissions only" +"3 day ahead inc hosp" "17" 2024-02-05 2024-02-08 0.01 36.99 "quantile" "hospital admissions only" +"3 day ahead inc hosp" "17" 2024-02-05 2024-02-08 0.025 45.375 "quantile" "hospital admissions only" +"3 day ahead inc hosp" "17" 2024-02-05 2024-02-08 0.05 49.95 "quantile" "hospital admissions only" +"3 day ahead inc hosp" "17" 2024-02-05 2024-02-08 0.1 52.9 "quantile" "hospital admissions only" +"3 day ahead inc hosp" "17" 2024-02-05 2024-02-08 0.15 56.85 "quantile" "hospital admissions only" +"3 day ahead inc hosp" "17" 2024-02-05 2024-02-08 0.2 61 "quantile" "hospital admissions only" +"3 day ahead inc hosp" "17" 2024-02-05 2024-02-08 0.25 64 "quantile" "hospital admissions only" +"3 day ahead inc hosp" "17" 2024-02-05 2024-02-08 0.3 65 "quantile" "hospital admissions only" +"3 day ahead inc hosp" "17" 2024-02-05 2024-02-08 0.35 68.65 "quantile" "hospital admissions only" +"3 day ahead inc hosp" "17" 2024-02-05 2024-02-08 0.4 69.6 "quantile" "hospital admissions only" +"3 day ahead inc hosp" "17" 2024-02-05 2024-02-08 0.45 71.55 "quantile" "hospital admissions only" +"3 day ahead inc hosp" "17" 2024-02-05 2024-02-08 0.5 75 "quantile" "hospital admissions only" +"3 day ahead inc hosp" "17" 2024-02-05 2024-02-08 0.55 77 "quantile" "hospital admissions only" +"3 day ahead inc hosp" "17" 2024-02-05 2024-02-08 0.6 79.4 "quantile" "hospital admissions only" +"3 day ahead inc hosp" "17" 2024-02-05 2024-02-08 0.65 81 "quantile" "hospital admissions only" +"3 day ahead inc hosp" "17" 2024-02-05 2024-02-08 0.7 83.3 "quantile" "hospital admissions only" +"3 day ahead inc hosp" "17" 2024-02-05 2024-02-08 0.75 86.25 "quantile" "hospital admissions only" +"3 day ahead inc hosp" "17" 2024-02-05 2024-02-08 0.8 90 "quantile" "hospital admissions only" +"3 day ahead inc hosp" "17" 2024-02-05 2024-02-08 0.85 95.15 "quantile" "hospital admissions only" +"3 day ahead inc hosp" "17" 2024-02-05 2024-02-08 0.9 99.2 "quantile" "hospital admissions only" +"3 day ahead inc hosp" "17" 2024-02-05 2024-02-08 0.95 107.1 "quantile" "hospital admissions only" +"3 day ahead inc hosp" "17" 2024-02-05 2024-02-08 0.975 110.575 "quantile" "hospital admissions only" +"3 day ahead inc hosp" "17" 2024-02-05 2024-02-08 0.99 114.03 "quantile" "hospital admissions only" +"4 day ahead inc hosp" "17" 2024-02-05 2024-02-09 0.01 45.84 "quantile" "hospital admissions only" +"4 day ahead inc hosp" "17" 2024-02-05 2024-02-09 0.025 47.95 "quantile" "hospital admissions only" +"4 day ahead inc hosp" "17" 2024-02-05 2024-02-09 0.05 49 "quantile" "hospital admissions only" +"4 day ahead inc hosp" "17" 2024-02-05 2024-02-09 0.1 54.8 "quantile" "hospital admissions only" +"4 day ahead inc hosp" "17" 2024-02-05 2024-02-09 0.15 57.85 "quantile" "hospital admissions only" +"4 day ahead inc hosp" "17" 2024-02-05 2024-02-09 0.2 60 "quantile" "hospital admissions only" +"4 day ahead inc hosp" "17" 2024-02-05 2024-02-09 0.25 61.75 "quantile" "hospital admissions only" +"4 day ahead inc hosp" "17" 2024-02-05 2024-02-09 0.3 64 "quantile" "hospital admissions only" +"4 day ahead inc hosp" "17" 2024-02-05 2024-02-09 0.35 64.65 "quantile" "hospital admissions only" +"4 day ahead inc hosp" "17" 2024-02-05 2024-02-09 0.4 66 "quantile" "hospital admissions only" +"4 day ahead inc hosp" "17" 2024-02-05 2024-02-09 0.45 67.55 "quantile" "hospital admissions only" +"4 day ahead inc hosp" "17" 2024-02-05 2024-02-09 0.5 70 "quantile" "hospital admissions only" +"4 day ahead inc hosp" "17" 2024-02-05 2024-02-09 0.55 74 "quantile" "hospital admissions only" +"4 day ahead inc hosp" "17" 2024-02-05 2024-02-09 0.6 76.4 "quantile" "hospital admissions only" +"4 day ahead inc hosp" "17" 2024-02-05 2024-02-09 0.65 78.35 "quantile" "hospital admissions only" +"4 day ahead inc hosp" "17" 2024-02-05 2024-02-09 0.7 79.3 "quantile" "hospital admissions only" +"4 day ahead inc hosp" "17" 2024-02-05 2024-02-09 0.75 81 "quantile" "hospital admissions only" +"4 day ahead inc hosp" "17" 2024-02-05 2024-02-09 0.8 83 "quantile" "hospital admissions only" +"4 day ahead inc hosp" "17" 2024-02-05 2024-02-09 0.85 85 "quantile" "hospital admissions only" +"4 day ahead inc hosp" "17" 2024-02-05 2024-02-09 0.9 87.2 "quantile" "hospital admissions only" +"4 day ahead inc hosp" "17" 2024-02-05 2024-02-09 0.95 104.05 "quantile" "hospital admissions only" +"4 day ahead inc hosp" "17" 2024-02-05 2024-02-09 0.975 113.1 "quantile" "hospital admissions only" +"4 day ahead inc hosp" "17" 2024-02-05 2024-02-09 0.99 132.06 "quantile" "hospital admissions only" +"5 day ahead inc hosp" "17" 2024-02-05 2024-02-10 0.01 35.94 "quantile" "hospital admissions only" +"5 day ahead inc hosp" "17" 2024-02-05 2024-02-10 0.025 38.95 "quantile" "hospital admissions only" +"5 day ahead inc hosp" "17" 2024-02-05 2024-02-10 0.05 41.95 "quantile" "hospital admissions only" +"5 day ahead inc hosp" "17" 2024-02-05 2024-02-10 0.1 43.9 "quantile" "hospital admissions only" +"5 day ahead inc hosp" "17" 2024-02-05 2024-02-10 0.15 49.85 "quantile" "hospital admissions only" +"5 day ahead inc hosp" "17" 2024-02-05 2024-02-10 0.2 52.8 "quantile" "hospital admissions only" +"5 day ahead inc hosp" "17" 2024-02-05 2024-02-10 0.25 54 "quantile" "hospital admissions only" +"5 day ahead inc hosp" "17" 2024-02-05 2024-02-10 0.3 56 "quantile" "hospital admissions only" +"5 day ahead inc hosp" "17" 2024-02-05 2024-02-10 0.35 57 "quantile" "hospital admissions only" +"5 day ahead inc hosp" "17" 2024-02-05 2024-02-10 0.4 59 "quantile" "hospital admissions only" +"5 day ahead inc hosp" "17" 2024-02-05 2024-02-10 0.45 60 "quantile" "hospital admissions only" +"5 day ahead inc hosp" "17" 2024-02-05 2024-02-10 0.5 62 "quantile" "hospital admissions only" +"5 day ahead inc hosp" "17" 2024-02-05 2024-02-10 0.55 63.45 "quantile" "hospital admissions only" +"5 day ahead inc hosp" "17" 2024-02-05 2024-02-10 0.6 66 "quantile" "hospital admissions only" +"5 day ahead inc hosp" "17" 2024-02-05 2024-02-10 0.65 68 "quantile" "hospital admissions only" +"5 day ahead inc hosp" "17" 2024-02-05 2024-02-10 0.7 69 "quantile" "hospital admissions only" +"5 day ahead inc hosp" "17" 2024-02-05 2024-02-10 0.75 73 "quantile" "hospital admissions only" +"5 day ahead inc hosp" "17" 2024-02-05 2024-02-10 0.8 75.4 "quantile" "hospital admissions only" +"5 day ahead inc hosp" "17" 2024-02-05 2024-02-10 0.85 81 "quantile" "hospital admissions only" +"5 day ahead inc hosp" "17" 2024-02-05 2024-02-10 0.9 83.1 "quantile" "hospital admissions only" +"5 day ahead inc hosp" "17" 2024-02-05 2024-02-10 0.95 94.05 "quantile" "hospital admissions only" +"5 day ahead inc hosp" "17" 2024-02-05 2024-02-10 0.975 95.525 "quantile" "hospital admissions only" +"5 day ahead inc hosp" "17" 2024-02-05 2024-02-10 0.99 98.2300000000001 "quantile" "hospital admissions only" +"6 day ahead inc hosp" "17" 2024-02-05 2024-02-11 0.01 28.94 "quantile" "hospital admissions only" +"6 day ahead inc hosp" "17" 2024-02-05 2024-02-11 0.025 32.475 "quantile" "hospital admissions only" +"6 day ahead inc hosp" "17" 2024-02-05 2024-02-11 0.05 38.85 "quantile" "hospital admissions only" +"6 day ahead inc hosp" "17" 2024-02-05 2024-02-11 0.1 43.9 "quantile" "hospital admissions only" +"6 day ahead inc hosp" "17" 2024-02-05 2024-02-11 0.15 45.85 "quantile" "hospital admissions only" +"6 day ahead inc hosp" "17" 2024-02-05 2024-02-11 0.2 47.8 "quantile" "hospital admissions only" +"6 day ahead inc hosp" "17" 2024-02-05 2024-02-11 0.25 49 "quantile" "hospital admissions only" +"6 day ahead inc hosp" "17" 2024-02-05 2024-02-11 0.3 50 "quantile" "hospital admissions only" +"6 day ahead inc hosp" "17" 2024-02-05 2024-02-11 0.35 51.65 "quantile" "hospital admissions only" +"6 day ahead inc hosp" "17" 2024-02-05 2024-02-11 0.4 53 "quantile" "hospital admissions only" +"6 day ahead inc hosp" "17" 2024-02-05 2024-02-11 0.45 55.55 "quantile" "hospital admissions only" +"6 day ahead inc hosp" "17" 2024-02-05 2024-02-11 0.5 57.5 "quantile" "hospital admissions only" +"6 day ahead inc hosp" "17" 2024-02-05 2024-02-11 0.55 61 "quantile" "hospital admissions only" +"6 day ahead inc hosp" "17" 2024-02-05 2024-02-11 0.6 63 "quantile" "hospital admissions only" +"6 day ahead inc hosp" "17" 2024-02-05 2024-02-11 0.65 66.35 "quantile" "hospital admissions only" +"6 day ahead inc hosp" "17" 2024-02-05 2024-02-11 0.7 67.3 "quantile" "hospital admissions only" +"6 day ahead inc hosp" "17" 2024-02-05 2024-02-11 0.75 72 "quantile" "hospital admissions only" +"6 day ahead inc hosp" "17" 2024-02-05 2024-02-11 0.8 73.6 "quantile" "hospital admissions only" +"6 day ahead inc hosp" "17" 2024-02-05 2024-02-11 0.85 81.3 "quantile" "hospital admissions only" +"6 day ahead inc hosp" "17" 2024-02-05 2024-02-11 0.9 85.1 "quantile" "hospital admissions only" +"6 day ahead inc hosp" "17" 2024-02-05 2024-02-11 0.95 98 "quantile" "hospital admissions only" +"6 day ahead inc hosp" "17" 2024-02-05 2024-02-11 0.975 104.05 "quantile" "hospital admissions only" +"6 day ahead inc hosp" "17" 2024-02-05 2024-02-11 0.99 111.04 "quantile" "hospital admissions only" +"7 day ahead inc hosp" "17" 2024-02-05 2024-02-12 0.01 32.98 "quantile" "hospital admissions only" +"7 day ahead inc hosp" "17" 2024-02-05 2024-02-12 0.025 39.375 "quantile" "hospital admissions only" +"7 day ahead inc hosp" "17" 2024-02-05 2024-02-12 0.05 44.9 "quantile" "hospital admissions only" +"7 day ahead inc hosp" "17" 2024-02-05 2024-02-12 0.1 48.9 "quantile" "hospital admissions only" +"7 day ahead inc hosp" "17" 2024-02-05 2024-02-12 0.15 52.7 "quantile" "hospital admissions only" +"7 day ahead inc hosp" "17" 2024-02-05 2024-02-12 0.2 54 "quantile" "hospital admissions only" +"7 day ahead inc hosp" "17" 2024-02-05 2024-02-12 0.25 56 "quantile" "hospital admissions only" +"7 day ahead inc hosp" "17" 2024-02-05 2024-02-12 0.3 58 "quantile" "hospital admissions only" +"7 day ahead inc hosp" "17" 2024-02-05 2024-02-12 0.35 59.65 "quantile" "hospital admissions only" +"7 day ahead inc hosp" "17" 2024-02-05 2024-02-12 0.4 61 "quantile" "hospital admissions only" +"7 day ahead inc hosp" "17" 2024-02-05 2024-02-12 0.45 64 "quantile" "hospital admissions only" +"7 day ahead inc hosp" "17" 2024-02-05 2024-02-12 0.5 67 "quantile" "hospital admissions only" +"7 day ahead inc hosp" "17" 2024-02-05 2024-02-12 0.55 68.45 "quantile" "hospital admissions only" +"7 day ahead inc hosp" "17" 2024-02-05 2024-02-12 0.6 71 "quantile" "hospital admissions only" +"7 day ahead inc hosp" "17" 2024-02-05 2024-02-12 0.65 73 "quantile" "hospital admissions only" +"7 day ahead inc hosp" "17" 2024-02-05 2024-02-12 0.7 75 "quantile" "hospital admissions only" +"7 day ahead inc hosp" "17" 2024-02-05 2024-02-12 0.75 77.25 "quantile" "hospital admissions only" +"7 day ahead inc hosp" "17" 2024-02-05 2024-02-12 0.8 82.2 "quantile" "hospital admissions only" +"7 day ahead inc hosp" "17" 2024-02-05 2024-02-12 0.85 85 "quantile" "hospital admissions only" +"7 day ahead inc hosp" "17" 2024-02-05 2024-02-12 0.9 88 "quantile" "hospital admissions only" +"7 day ahead inc hosp" "17" 2024-02-05 2024-02-12 0.95 96.1 "quantile" "hospital admissions only" +"7 day ahead inc hosp" "17" 2024-02-05 2024-02-12 0.975 107.625 "quantile" "hospital admissions only" +"7 day ahead inc hosp" "17" 2024-02-05 2024-02-12 0.99 113.06 "quantile" "hospital admissions only" +"8 day ahead inc hosp" "17" 2024-02-05 2024-02-13 0.01 38.96 "quantile" "hospital admissions only" +"8 day ahead inc hosp" "17" 2024-02-05 2024-02-13 0.025 43.375 "quantile" "hospital admissions only" +"8 day ahead inc hosp" "17" 2024-02-05 2024-02-13 0.05 48.95 "quantile" "hospital admissions only" +"8 day ahead inc hosp" "17" 2024-02-05 2024-02-13 0.1 50.9 "quantile" "hospital admissions only" +"8 day ahead inc hosp" "17" 2024-02-05 2024-02-13 0.15 53.85 "quantile" "hospital admissions only" +"8 day ahead inc hosp" "17" 2024-02-05 2024-02-13 0.2 55.8 "quantile" "hospital admissions only" +"8 day ahead inc hosp" "17" 2024-02-05 2024-02-13 0.25 58 "quantile" "hospital admissions only" +"8 day ahead inc hosp" "17" 2024-02-05 2024-02-13 0.3 60 "quantile" "hospital admissions only" +"8 day ahead inc hosp" "17" 2024-02-05 2024-02-13 0.35 62 "quantile" "hospital admissions only" +"8 day ahead inc hosp" "17" 2024-02-05 2024-02-13 0.4 63 "quantile" "hospital admissions only" +"8 day ahead inc hosp" "17" 2024-02-05 2024-02-13 0.45 65 "quantile" "hospital admissions only" +"8 day ahead inc hosp" "17" 2024-02-05 2024-02-13 0.5 68 "quantile" "hospital admissions only" +"8 day ahead inc hosp" "17" 2024-02-05 2024-02-13 0.55 70 "quantile" "hospital admissions only" +"8 day ahead inc hosp" "17" 2024-02-05 2024-02-13 0.6 73.4 "quantile" "hospital admissions only" +"8 day ahead inc hosp" "17" 2024-02-05 2024-02-13 0.65 75 "quantile" "hospital admissions only" +"8 day ahead inc hosp" "17" 2024-02-05 2024-02-13 0.7 77 "quantile" "hospital admissions only" +"8 day ahead inc hosp" "17" 2024-02-05 2024-02-13 0.75 78.25 "quantile" "hospital admissions only" +"8 day ahead inc hosp" "17" 2024-02-05 2024-02-13 0.8 82 "quantile" "hospital admissions only" +"8 day ahead inc hosp" "17" 2024-02-05 2024-02-13 0.85 89.15 "quantile" "hospital admissions only" +"8 day ahead inc hosp" "17" 2024-02-05 2024-02-13 0.9 100 "quantile" "hospital admissions only" +"8 day ahead inc hosp" "17" 2024-02-05 2024-02-13 0.95 111.1 "quantile" "hospital admissions only" +"8 day ahead inc hosp" "17" 2024-02-05 2024-02-13 0.975 124.725 "quantile" "hospital admissions only" +"8 day ahead inc hosp" "17" 2024-02-05 2024-02-13 0.99 134.07 "quantile" "hospital admissions only" +"9 day ahead inc hosp" "17" 2024-02-05 2024-02-14 0.01 32 "quantile" "hospital admissions only" +"9 day ahead inc hosp" "17" 2024-02-05 2024-02-14 0.025 36.95 "quantile" "hospital admissions only" +"9 day ahead inc hosp" "17" 2024-02-05 2024-02-14 0.05 38.95 "quantile" "hospital admissions only" +"9 day ahead inc hosp" "17" 2024-02-05 2024-02-14 0.1 45.9 "quantile" "hospital admissions only" +"9 day ahead inc hosp" "17" 2024-02-05 2024-02-14 0.15 50.85 "quantile" "hospital admissions only" +"9 day ahead inc hosp" "17" 2024-02-05 2024-02-14 0.2 54.8 "quantile" "hospital admissions only" +"9 day ahead inc hosp" "17" 2024-02-05 2024-02-14 0.25 57 "quantile" "hospital admissions only" +"9 day ahead inc hosp" "17" 2024-02-05 2024-02-14 0.3 60 "quantile" "hospital admissions only" +"9 day ahead inc hosp" "17" 2024-02-05 2024-02-14 0.35 61.65 "quantile" "hospital admissions only" +"9 day ahead inc hosp" "17" 2024-02-05 2024-02-14 0.4 63 "quantile" "hospital admissions only" +"9 day ahead inc hosp" "17" 2024-02-05 2024-02-14 0.45 65 "quantile" "hospital admissions only" +"9 day ahead inc hosp" "17" 2024-02-05 2024-02-14 0.5 66.5 "quantile" "hospital admissions only" +"9 day ahead inc hosp" "17" 2024-02-05 2024-02-14 0.55 69 "quantile" "hospital admissions only" +"9 day ahead inc hosp" "17" 2024-02-05 2024-02-14 0.6 71 "quantile" "hospital admissions only" +"9 day ahead inc hosp" "17" 2024-02-05 2024-02-14 0.65 73 "quantile" "hospital admissions only" +"9 day ahead inc hosp" "17" 2024-02-05 2024-02-14 0.7 73.3 "quantile" "hospital admissions only" +"9 day ahead inc hosp" "17" 2024-02-05 2024-02-14 0.75 76 "quantile" "hospital admissions only" +"9 day ahead inc hosp" "17" 2024-02-05 2024-02-14 0.8 84 "quantile" "hospital admissions only" +"9 day ahead inc hosp" "17" 2024-02-05 2024-02-14 0.85 91 "quantile" "hospital admissions only" +"9 day ahead inc hosp" "17" 2024-02-05 2024-02-14 0.9 98.1 "quantile" "hospital admissions only" +"9 day ahead inc hosp" "17" 2024-02-05 2024-02-14 0.95 113.15 "quantile" "hospital admissions only" +"9 day ahead inc hosp" "17" 2024-02-05 2024-02-14 0.975 120.05 "quantile" "hospital admissions only" +"9 day ahead inc hosp" "17" 2024-02-05 2024-02-14 0.99 121.16 "quantile" "hospital admissions only" +"10 day ahead inc hosp" "17" 2024-02-05 2024-02-15 0.01 25.99 "quantile" "hospital admissions only" +"10 day ahead inc hosp" "17" 2024-02-05 2024-02-15 0.025 30.95 "quantile" "hospital admissions only" +"10 day ahead inc hosp" "17" 2024-02-05 2024-02-15 0.05 34.9 "quantile" "hospital admissions only" +"10 day ahead inc hosp" "17" 2024-02-05 2024-02-15 0.1 39 "quantile" "hospital admissions only" +"10 day ahead inc hosp" "17" 2024-02-05 2024-02-15 0.15 41.85 "quantile" "hospital admissions only" +"10 day ahead inc hosp" "17" 2024-02-05 2024-02-15 0.2 44 "quantile" "hospital admissions only" +"10 day ahead inc hosp" "17" 2024-02-05 2024-02-15 0.25 47 "quantile" "hospital admissions only" +"10 day ahead inc hosp" "17" 2024-02-05 2024-02-15 0.3 51 "quantile" "hospital admissions only" +"10 day ahead inc hosp" "17" 2024-02-05 2024-02-15 0.35 52.65 "quantile" "hospital admissions only" +"10 day ahead inc hosp" "17" 2024-02-05 2024-02-15 0.4 56 "quantile" "hospital admissions only" +"10 day ahead inc hosp" "17" 2024-02-05 2024-02-15 0.45 58 "quantile" "hospital admissions only" +"10 day ahead inc hosp" "17" 2024-02-05 2024-02-15 0.5 60 "quantile" "hospital admissions only" +"10 day ahead inc hosp" "17" 2024-02-05 2024-02-15 0.55 61 "quantile" "hospital admissions only" +"10 day ahead inc hosp" "17" 2024-02-05 2024-02-15 0.6 63.4 "quantile" "hospital admissions only" +"10 day ahead inc hosp" "17" 2024-02-05 2024-02-15 0.65 66.7 "quantile" "hospital admissions only" +"10 day ahead inc hosp" "17" 2024-02-05 2024-02-15 0.7 71.2 "quantile" "hospital admissions only" +"10 day ahead inc hosp" "17" 2024-02-05 2024-02-15 0.75 78 "quantile" "hospital admissions only" +"10 day ahead inc hosp" "17" 2024-02-05 2024-02-15 0.8 82 "quantile" "hospital admissions only" +"10 day ahead inc hosp" "17" 2024-02-05 2024-02-15 0.85 88.3 "quantile" "hospital admissions only" +"10 day ahead inc hosp" "17" 2024-02-05 2024-02-15 0.9 97 "quantile" "hospital admissions only" +"10 day ahead inc hosp" "17" 2024-02-05 2024-02-15 0.95 102.25 "quantile" "hospital admissions only" +"10 day ahead inc hosp" "17" 2024-02-05 2024-02-15 0.975 112.2 "quantile" "hospital admissions only" +"10 day ahead inc hosp" "17" 2024-02-05 2024-02-15 0.99 120.02 "quantile" "hospital admissions only" +"11 day ahead inc hosp" "17" 2024-02-05 2024-02-16 0.01 27.99 "quantile" "hospital admissions only" +"11 day ahead inc hosp" "17" 2024-02-05 2024-02-16 0.025 29.9 "quantile" "hospital admissions only" +"11 day ahead inc hosp" "17" 2024-02-05 2024-02-16 0.05 34 "quantile" "hospital admissions only" +"11 day ahead inc hosp" "17" 2024-02-05 2024-02-16 0.1 40.8 "quantile" "hospital admissions only" +"11 day ahead inc hosp" "17" 2024-02-05 2024-02-16 0.15 43.85 "quantile" "hospital admissions only" +"11 day ahead inc hosp" "17" 2024-02-05 2024-02-16 0.2 46 "quantile" "hospital admissions only" +"11 day ahead inc hosp" "17" 2024-02-05 2024-02-16 0.25 48.5 "quantile" "hospital admissions only" +"11 day ahead inc hosp" "17" 2024-02-05 2024-02-16 0.3 50.7 "quantile" "hospital admissions only" +"11 day ahead inc hosp" "17" 2024-02-05 2024-02-16 0.35 52 "quantile" "hospital admissions only" +"11 day ahead inc hosp" "17" 2024-02-05 2024-02-16 0.4 53.6 "quantile" "hospital admissions only" +"11 day ahead inc hosp" "17" 2024-02-05 2024-02-16 0.45 55 "quantile" "hospital admissions only" +"11 day ahead inc hosp" "17" 2024-02-05 2024-02-16 0.5 57 "quantile" "hospital admissions only" +"11 day ahead inc hosp" "17" 2024-02-05 2024-02-16 0.55 59 "quantile" "hospital admissions only" +"11 day ahead inc hosp" "17" 2024-02-05 2024-02-16 0.6 59 "quantile" "hospital admissions only" +"11 day ahead inc hosp" "17" 2024-02-05 2024-02-16 0.65 61.35 "quantile" "hospital admissions only" +"11 day ahead inc hosp" "17" 2024-02-05 2024-02-16 0.7 63 "quantile" "hospital admissions only" +"11 day ahead inc hosp" "17" 2024-02-05 2024-02-16 0.75 66 "quantile" "hospital admissions only" +"11 day ahead inc hosp" "17" 2024-02-05 2024-02-16 0.8 73.2 "quantile" "hospital admissions only" +"11 day ahead inc hosp" "17" 2024-02-05 2024-02-16 0.85 80.3 "quantile" "hospital admissions only" +"11 day ahead inc hosp" "17" 2024-02-05 2024-02-16 0.9 91.3 "quantile" "hospital admissions only" +"11 day ahead inc hosp" "17" 2024-02-05 2024-02-16 0.95 98.25 "quantile" "hospital admissions only" +"11 day ahead inc hosp" "17" 2024-02-05 2024-02-16 0.975 107.575 "quantile" "hospital admissions only" +"11 day ahead inc hosp" "17" 2024-02-05 2024-02-16 0.99 111 "quantile" "hospital admissions only" +"12 day ahead inc hosp" "17" 2024-02-05 2024-02-17 0.01 22.97 "quantile" "hospital admissions only" +"12 day ahead inc hosp" "17" 2024-02-05 2024-02-17 0.025 25.475 "quantile" "hospital admissions only" +"12 day ahead inc hosp" "17" 2024-02-05 2024-02-17 0.05 27 "quantile" "hospital admissions only" +"12 day ahead inc hosp" "17" 2024-02-05 2024-02-17 0.1 35 "quantile" "hospital admissions only" +"12 day ahead inc hosp" "17" 2024-02-05 2024-02-17 0.15 38 "quantile" "hospital admissions only" +"12 day ahead inc hosp" "17" 2024-02-05 2024-02-17 0.2 40 "quantile" "hospital admissions only" +"12 day ahead inc hosp" "17" 2024-02-05 2024-02-17 0.25 42 "quantile" "hospital admissions only" +"12 day ahead inc hosp" "17" 2024-02-05 2024-02-17 0.3 43 "quantile" "hospital admissions only" +"12 day ahead inc hosp" "17" 2024-02-05 2024-02-17 0.35 44 "quantile" "hospital admissions only" +"12 day ahead inc hosp" "17" 2024-02-05 2024-02-17 0.4 46 "quantile" "hospital admissions only" +"12 day ahead inc hosp" "17" 2024-02-05 2024-02-17 0.45 47 "quantile" "hospital admissions only" +"12 day ahead inc hosp" "17" 2024-02-05 2024-02-17 0.5 50 "quantile" "hospital admissions only" +"12 day ahead inc hosp" "17" 2024-02-05 2024-02-17 0.55 53 "quantile" "hospital admissions only" +"12 day ahead inc hosp" "17" 2024-02-05 2024-02-17 0.6 55 "quantile" "hospital admissions only" +"12 day ahead inc hosp" "17" 2024-02-05 2024-02-17 0.65 58 "quantile" "hospital admissions only" +"12 day ahead inc hosp" "17" 2024-02-05 2024-02-17 0.7 62.3 "quantile" "hospital admissions only" +"12 day ahead inc hosp" "17" 2024-02-05 2024-02-17 0.75 67 "quantile" "hospital admissions only" +"12 day ahead inc hosp" "17" 2024-02-05 2024-02-17 0.8 71.2 "quantile" "hospital admissions only" +"12 day ahead inc hosp" "17" 2024-02-05 2024-02-17 0.85 77.15 "quantile" "hospital admissions only" +"12 day ahead inc hosp" "17" 2024-02-05 2024-02-17 0.9 83.1 "quantile" "hospital admissions only" +"12 day ahead inc hosp" "17" 2024-02-05 2024-02-17 0.95 90 "quantile" "hospital admissions only" +"12 day ahead inc hosp" "17" 2024-02-05 2024-02-17 0.975 105.15 "quantile" "hospital admissions only" +"12 day ahead inc hosp" "17" 2024-02-05 2024-02-17 0.99 113.05 "quantile" "hospital admissions only" +"13 day ahead inc hosp" "17" 2024-02-05 2024-02-18 0.01 16.97 "quantile" "hospital admissions only" +"13 day ahead inc hosp" "17" 2024-02-05 2024-02-18 0.025 21.275 "quantile" "hospital admissions only" +"13 day ahead inc hosp" "17" 2024-02-05 2024-02-18 0.05 27 "quantile" "hospital admissions only" +"13 day ahead inc hosp" "17" 2024-02-05 2024-02-18 0.1 31.9 "quantile" "hospital admissions only" +"13 day ahead inc hosp" "17" 2024-02-05 2024-02-18 0.15 33.85 "quantile" "hospital admissions only" +"13 day ahead inc hosp" "17" 2024-02-05 2024-02-18 0.2 35 "quantile" "hospital admissions only" +"13 day ahead inc hosp" "17" 2024-02-05 2024-02-18 0.25 39 "quantile" "hospital admissions only" +"13 day ahead inc hosp" "17" 2024-02-05 2024-02-18 0.3 40 "quantile" "hospital admissions only" +"13 day ahead inc hosp" "17" 2024-02-05 2024-02-18 0.35 43.3 "quantile" "hospital admissions only" +"13 day ahead inc hosp" "17" 2024-02-05 2024-02-18 0.4 44 "quantile" "hospital admissions only" +"13 day ahead inc hosp" "17" 2024-02-05 2024-02-18 0.45 46.55 "quantile" "hospital admissions only" +"13 day ahead inc hosp" "17" 2024-02-05 2024-02-18 0.5 48.5 "quantile" "hospital admissions only" +"13 day ahead inc hosp" "17" 2024-02-05 2024-02-18 0.55 50 "quantile" "hospital admissions only" +"13 day ahead inc hosp" "17" 2024-02-05 2024-02-18 0.6 52 "quantile" "hospital admissions only" +"13 day ahead inc hosp" "17" 2024-02-05 2024-02-18 0.65 56.7 "quantile" "hospital admissions only" +"13 day ahead inc hosp" "17" 2024-02-05 2024-02-18 0.7 60.3 "quantile" "hospital admissions only" +"13 day ahead inc hosp" "17" 2024-02-05 2024-02-18 0.75 63.75 "quantile" "hospital admissions only" +"13 day ahead inc hosp" "17" 2024-02-05 2024-02-18 0.8 70.2 "quantile" "hospital admissions only" +"13 day ahead inc hosp" "17" 2024-02-05 2024-02-18 0.85 74.15 "quantile" "hospital admissions only" +"13 day ahead inc hosp" "17" 2024-02-05 2024-02-18 0.9 82.1 "quantile" "hospital admissions only" +"13 day ahead inc hosp" "17" 2024-02-05 2024-02-18 0.95 86 "quantile" "hospital admissions only" +"13 day ahead inc hosp" "17" 2024-02-05 2024-02-18 0.975 94.7249999999999 "quantile" "hospital admissions only" +"13 day ahead inc hosp" "17" 2024-02-05 2024-02-18 0.99 105.17 "quantile" "hospital admissions only" +"14 day ahead inc hosp" "17" 2024-02-05 2024-02-19 0.01 20.99 "quantile" "hospital admissions only" +"14 day ahead inc hosp" "17" 2024-02-05 2024-02-19 0.025 23.95 "quantile" "hospital admissions only" +"14 day ahead inc hosp" "17" 2024-02-05 2024-02-19 0.05 28.95 "quantile" "hospital admissions only" +"14 day ahead inc hosp" "17" 2024-02-05 2024-02-19 0.1 32.8 "quantile" "hospital admissions only" +"14 day ahead inc hosp" "17" 2024-02-05 2024-02-19 0.15 37.7 "quantile" "hospital admissions only" +"14 day ahead inc hosp" "17" 2024-02-05 2024-02-19 0.2 41.8 "quantile" "hospital admissions only" +"14 day ahead inc hosp" "17" 2024-02-05 2024-02-19 0.25 43 "quantile" "hospital admissions only" +"14 day ahead inc hosp" "17" 2024-02-05 2024-02-19 0.3 45 "quantile" "hospital admissions only" +"14 day ahead inc hosp" "17" 2024-02-05 2024-02-19 0.35 48 "quantile" "hospital admissions only" +"14 day ahead inc hosp" "17" 2024-02-05 2024-02-19 0.4 50.6 "quantile" "hospital admissions only" +"14 day ahead inc hosp" "17" 2024-02-05 2024-02-19 0.45 53 "quantile" "hospital admissions only" +"14 day ahead inc hosp" "17" 2024-02-05 2024-02-19 0.5 54.5 "quantile" "hospital admissions only" +"14 day ahead inc hosp" "17" 2024-02-05 2024-02-19 0.55 59 "quantile" "hospital admissions only" +"14 day ahead inc hosp" "17" 2024-02-05 2024-02-19 0.6 62.4 "quantile" "hospital admissions only" +"14 day ahead inc hosp" "17" 2024-02-05 2024-02-19 0.65 64.35 "quantile" "hospital admissions only" +"14 day ahead inc hosp" "17" 2024-02-05 2024-02-19 0.7 73.3 "quantile" "hospital admissions only" +"14 day ahead inc hosp" "17" 2024-02-05 2024-02-19 0.75 77 "quantile" "hospital admissions only" +"14 day ahead inc hosp" "17" 2024-02-05 2024-02-19 0.8 78 "quantile" "hospital admissions only" +"14 day ahead inc hosp" "17" 2024-02-05 2024-02-19 0.85 81.15 "quantile" "hospital admissions only" +"14 day ahead inc hosp" "17" 2024-02-05 2024-02-19 0.9 93.2 "quantile" "hospital admissions only" +"14 day ahead inc hosp" "17" 2024-02-05 2024-02-19 0.95 100 "quantile" "hospital admissions only" +"14 day ahead inc hosp" "17" 2024-02-05 2024-02-19 0.975 113.725 "quantile" "hospital admissions only" +"14 day ahead inc hosp" "17" 2024-02-05 2024-02-19 0.99 123.14 "quantile" "hospital admissions only" +"15 day ahead inc hosp" "17" 2024-02-05 2024-02-20 0.01 21.95 "quantile" "hospital admissions only" +"15 day ahead inc hosp" "17" 2024-02-05 2024-02-20 0.025 25 "quantile" "hospital admissions only" +"15 day ahead inc hosp" "17" 2024-02-05 2024-02-20 0.05 29 "quantile" "hospital admissions only" +"15 day ahead inc hosp" "17" 2024-02-05 2024-02-20 0.1 36 "quantile" "hospital admissions only" +"15 day ahead inc hosp" "17" 2024-02-05 2024-02-20 0.15 38.85 "quantile" "hospital admissions only" +"15 day ahead inc hosp" "17" 2024-02-05 2024-02-20 0.2 41 "quantile" "hospital admissions only" +"15 day ahead inc hosp" "17" 2024-02-05 2024-02-20 0.25 43 "quantile" "hospital admissions only" +"15 day ahead inc hosp" "17" 2024-02-05 2024-02-20 0.3 45.7 "quantile" "hospital admissions only" +"15 day ahead inc hosp" "17" 2024-02-05 2024-02-20 0.35 47 "quantile" "hospital admissions only" +"15 day ahead inc hosp" "17" 2024-02-05 2024-02-20 0.4 49 "quantile" "hospital admissions only" +"15 day ahead inc hosp" "17" 2024-02-05 2024-02-20 0.45 54.55 "quantile" "hospital admissions only" +"15 day ahead inc hosp" "17" 2024-02-05 2024-02-20 0.5 57 "quantile" "hospital admissions only" +"15 day ahead inc hosp" "17" 2024-02-05 2024-02-20 0.55 59 "quantile" "hospital admissions only" +"15 day ahead inc hosp" "17" 2024-02-05 2024-02-20 0.6 62.8 "quantile" "hospital admissions only" +"15 day ahead inc hosp" "17" 2024-02-05 2024-02-20 0.65 66.35 "quantile" "hospital admissions only" +"15 day ahead inc hosp" "17" 2024-02-05 2024-02-20 0.7 71 "quantile" "hospital admissions only" +"15 day ahead inc hosp" "17" 2024-02-05 2024-02-20 0.75 79 "quantile" "hospital admissions only" +"15 day ahead inc hosp" "17" 2024-02-05 2024-02-20 0.8 83 "quantile" "hospital admissions only" +"15 day ahead inc hosp" "17" 2024-02-05 2024-02-20 0.85 87 "quantile" "hospital admissions only" +"15 day ahead inc hosp" "17" 2024-02-05 2024-02-20 0.9 89.1 "quantile" "hospital admissions only" +"15 day ahead inc hosp" "17" 2024-02-05 2024-02-20 0.95 103.35 "quantile" "hospital admissions only" +"15 day ahead inc hosp" "17" 2024-02-05 2024-02-20 0.975 117.35 "quantile" "hospital admissions only" +"15 day ahead inc hosp" "17" 2024-02-05 2024-02-20 0.99 137.01 "quantile" "hospital admissions only" +"16 day ahead inc hosp" "17" 2024-02-05 2024-02-21 0.01 18 "quantile" "hospital admissions only" +"16 day ahead inc hosp" "17" 2024-02-05 2024-02-21 0.025 21.475 "quantile" "hospital admissions only" +"16 day ahead inc hosp" "17" 2024-02-05 2024-02-21 0.05 25.9 "quantile" "hospital admissions only" +"16 day ahead inc hosp" "17" 2024-02-05 2024-02-21 0.1 36.7 "quantile" "hospital admissions only" +"16 day ahead inc hosp" "17" 2024-02-05 2024-02-21 0.15 40 "quantile" "hospital admissions only" +"16 day ahead inc hosp" "17" 2024-02-05 2024-02-21 0.2 41.8 "quantile" "hospital admissions only" +"16 day ahead inc hosp" "17" 2024-02-05 2024-02-21 0.25 43.75 "quantile" "hospital admissions only" +"16 day ahead inc hosp" "17" 2024-02-05 2024-02-21 0.3 44 "quantile" "hospital admissions only" +"16 day ahead inc hosp" "17" 2024-02-05 2024-02-21 0.35 46 "quantile" "hospital admissions only" +"16 day ahead inc hosp" "17" 2024-02-05 2024-02-21 0.4 49.6 "quantile" "hospital admissions only" +"16 day ahead inc hosp" "17" 2024-02-05 2024-02-21 0.45 50.55 "quantile" "hospital admissions only" +"16 day ahead inc hosp" "17" 2024-02-05 2024-02-21 0.5 53.5 "quantile" "hospital admissions only" +"16 day ahead inc hosp" "17" 2024-02-05 2024-02-21 0.55 56.45 "quantile" "hospital admissions only" +"16 day ahead inc hosp" "17" 2024-02-05 2024-02-21 0.6 60 "quantile" "hospital admissions only" +"16 day ahead inc hosp" "17" 2024-02-05 2024-02-21 0.65 65.35 "quantile" "hospital admissions only" +"16 day ahead inc hosp" "17" 2024-02-05 2024-02-21 0.7 67.3 "quantile" "hospital admissions only" +"16 day ahead inc hosp" "17" 2024-02-05 2024-02-21 0.75 70.5 "quantile" "hospital admissions only" +"16 day ahead inc hosp" "17" 2024-02-05 2024-02-21 0.8 75.2 "quantile" "hospital admissions only" +"16 day ahead inc hosp" "17" 2024-02-05 2024-02-21 0.85 83.6 "quantile" "hospital admissions only" +"16 day ahead inc hosp" "17" 2024-02-05 2024-02-21 0.9 101 "quantile" "hospital admissions only" +"16 day ahead inc hosp" "17" 2024-02-05 2024-02-21 0.95 112.55 "quantile" "hospital admissions only" +"16 day ahead inc hosp" "17" 2024-02-05 2024-02-21 0.975 124.05 "quantile" "hospital admissions only" +"16 day ahead inc hosp" "17" 2024-02-05 2024-02-21 0.99 125.32 "quantile" "hospital admissions only" +"17 day ahead inc hosp" "17" 2024-02-05 2024-02-22 0.01 20.99 "quantile" "hospital admissions only" +"17 day ahead inc hosp" "17" 2024-02-05 2024-02-22 0.025 21.475 "quantile" "hospital admissions only" +"17 day ahead inc hosp" "17" 2024-02-05 2024-02-22 0.05 23.95 "quantile" "hospital admissions only" +"17 day ahead inc hosp" "17" 2024-02-05 2024-02-22 0.1 28.9 "quantile" "hospital admissions only" +"17 day ahead inc hosp" "17" 2024-02-05 2024-02-22 0.15 35.85 "quantile" "hospital admissions only" +"17 day ahead inc hosp" "17" 2024-02-05 2024-02-22 0.2 38.6 "quantile" "hospital admissions only" +"17 day ahead inc hosp" "17" 2024-02-05 2024-02-22 0.25 40 "quantile" "hospital admissions only" +"17 day ahead inc hosp" "17" 2024-02-05 2024-02-22 0.3 42 "quantile" "hospital admissions only" +"17 day ahead inc hosp" "17" 2024-02-05 2024-02-22 0.35 46.65 "quantile" "hospital admissions only" +"17 day ahead inc hosp" "17" 2024-02-05 2024-02-22 0.4 48 "quantile" "hospital admissions only" +"17 day ahead inc hosp" "17" 2024-02-05 2024-02-22 0.45 51 "quantile" "hospital admissions only" +"17 day ahead inc hosp" "17" 2024-02-05 2024-02-22 0.5 53 "quantile" "hospital admissions only" +"17 day ahead inc hosp" "17" 2024-02-05 2024-02-22 0.55 55.9 "quantile" "hospital admissions only" +"17 day ahead inc hosp" "17" 2024-02-05 2024-02-22 0.6 59 "quantile" "hospital admissions only" +"17 day ahead inc hosp" "17" 2024-02-05 2024-02-22 0.65 61 "quantile" "hospital admissions only" +"17 day ahead inc hosp" "17" 2024-02-05 2024-02-22 0.7 62.3 "quantile" "hospital admissions only" +"17 day ahead inc hosp" "17" 2024-02-05 2024-02-22 0.75 69 "quantile" "hospital admissions only" +"17 day ahead inc hosp" "17" 2024-02-05 2024-02-22 0.8 77 "quantile" "hospital admissions only" +"17 day ahead inc hosp" "17" 2024-02-05 2024-02-22 0.85 82.3 "quantile" "hospital admissions only" +"17 day ahead inc hosp" "17" 2024-02-05 2024-02-22 0.9 94.4 "quantile" "hospital admissions only" +"17 day ahead inc hosp" "17" 2024-02-05 2024-02-22 0.95 108.2 "quantile" "hospital admissions only" +"17 day ahead inc hosp" "17" 2024-02-05 2024-02-22 0.975 115 "quantile" "hospital admissions only" +"17 day ahead inc hosp" "17" 2024-02-05 2024-02-22 0.99 117.27 "quantile" "hospital admissions only" +"18 day ahead inc hosp" "17" 2024-02-05 2024-02-23 0.01 17.98 "quantile" "hospital admissions only" +"18 day ahead inc hosp" "17" 2024-02-05 2024-02-23 0.025 21 "quantile" "hospital admissions only" +"18 day ahead inc hosp" "17" 2024-02-05 2024-02-23 0.05 24.85 "quantile" "hospital admissions only" +"18 day ahead inc hosp" "17" 2024-02-05 2024-02-23 0.1 28.9 "quantile" "hospital admissions only" +"18 day ahead inc hosp" "17" 2024-02-05 2024-02-23 0.15 33.7 "quantile" "hospital admissions only" +"18 day ahead inc hosp" "17" 2024-02-05 2024-02-23 0.2 35 "quantile" "hospital admissions only" +"18 day ahead inc hosp" "17" 2024-02-05 2024-02-23 0.25 36.75 "quantile" "hospital admissions only" +"18 day ahead inc hosp" "17" 2024-02-05 2024-02-23 0.3 38.7 "quantile" "hospital admissions only" +"18 day ahead inc hosp" "17" 2024-02-05 2024-02-23 0.35 41.65 "quantile" "hospital admissions only" +"18 day ahead inc hosp" "17" 2024-02-05 2024-02-23 0.4 45 "quantile" "hospital admissions only" +"18 day ahead inc hosp" "17" 2024-02-05 2024-02-23 0.45 46 "quantile" "hospital admissions only" +"18 day ahead inc hosp" "17" 2024-02-05 2024-02-23 0.5 49.5 "quantile" "hospital admissions only" +"18 day ahead inc hosp" "17" 2024-02-05 2024-02-23 0.55 51 "quantile" "hospital admissions only" +"18 day ahead inc hosp" "17" 2024-02-05 2024-02-23 0.6 52.4 "quantile" "hospital admissions only" +"18 day ahead inc hosp" "17" 2024-02-05 2024-02-23 0.65 54.7 "quantile" "hospital admissions only" +"18 day ahead inc hosp" "17" 2024-02-05 2024-02-23 0.7 59.3 "quantile" "hospital admissions only" +"18 day ahead inc hosp" "17" 2024-02-05 2024-02-23 0.75 63.25 "quantile" "hospital admissions only" +"18 day ahead inc hosp" "17" 2024-02-05 2024-02-23 0.8 72.2 "quantile" "hospital admissions only" +"18 day ahead inc hosp" "17" 2024-02-05 2024-02-23 0.85 79.15 "quantile" "hospital admissions only" +"18 day ahead inc hosp" "17" 2024-02-05 2024-02-23 0.9 89.2 "quantile" "hospital admissions only" +"18 day ahead inc hosp" "17" 2024-02-05 2024-02-23 0.95 107.3 "quantile" "hospital admissions only" +"18 day ahead inc hosp" "17" 2024-02-05 2024-02-23 0.975 117.1 "quantile" "hospital admissions only" +"18 day ahead inc hosp" "17" 2024-02-05 2024-02-23 0.99 125.06 "quantile" "hospital admissions only" +"19 day ahead inc hosp" "17" 2024-02-05 2024-02-24 0.01 13.98 "quantile" "hospital admissions only" +"19 day ahead inc hosp" "17" 2024-02-05 2024-02-24 0.025 17.475 "quantile" "hospital admissions only" +"19 day ahead inc hosp" "17" 2024-02-05 2024-02-24 0.05 22 "quantile" "hospital admissions only" +"19 day ahead inc hosp" "17" 2024-02-05 2024-02-24 0.1 26.9 "quantile" "hospital admissions only" +"19 day ahead inc hosp" "17" 2024-02-05 2024-02-24 0.15 29 "quantile" "hospital admissions only" +"19 day ahead inc hosp" "17" 2024-02-05 2024-02-24 0.2 31 "quantile" "hospital admissions only" +"19 day ahead inc hosp" "17" 2024-02-05 2024-02-24 0.25 33 "quantile" "hospital admissions only" +"19 day ahead inc hosp" "17" 2024-02-05 2024-02-24 0.3 35 "quantile" "hospital admissions only" +"19 day ahead inc hosp" "17" 2024-02-05 2024-02-24 0.35 37.65 "quantile" "hospital admissions only" +"19 day ahead inc hosp" "17" 2024-02-05 2024-02-24 0.4 39 "quantile" "hospital admissions only" +"19 day ahead inc hosp" "17" 2024-02-05 2024-02-24 0.45 40.55 "quantile" "hospital admissions only" +"19 day ahead inc hosp" "17" 2024-02-05 2024-02-24 0.5 42.5 "quantile" "hospital admissions only" +"19 day ahead inc hosp" "17" 2024-02-05 2024-02-24 0.55 45 "quantile" "hospital admissions only" +"19 day ahead inc hosp" "17" 2024-02-05 2024-02-24 0.6 47.4 "quantile" "hospital admissions only" +"19 day ahead inc hosp" "17" 2024-02-05 2024-02-24 0.65 49 "quantile" "hospital admissions only" +"19 day ahead inc hosp" "17" 2024-02-05 2024-02-24 0.7 52.3 "quantile" "hospital admissions only" +"19 day ahead inc hosp" "17" 2024-02-05 2024-02-24 0.75 57.5 "quantile" "hospital admissions only" +"19 day ahead inc hosp" "17" 2024-02-05 2024-02-24 0.8 65.2 "quantile" "hospital admissions only" +"19 day ahead inc hosp" "17" 2024-02-05 2024-02-24 0.85 70.15 "quantile" "hospital admissions only" +"19 day ahead inc hosp" "17" 2024-02-05 2024-02-24 0.9 85.1 "quantile" "hospital admissions only" +"19 day ahead inc hosp" "17" 2024-02-05 2024-02-24 0.95 91.2 "quantile" "hospital admissions only" +"19 day ahead inc hosp" "17" 2024-02-05 2024-02-24 0.975 101 "quantile" "hospital admissions only" +"19 day ahead inc hosp" "17" 2024-02-05 2024-02-24 0.99 118.13 "quantile" "hospital admissions only" +"20 day ahead inc hosp" "17" 2024-02-05 2024-02-25 0.01 8.96 "quantile" "hospital admissions only" +"20 day ahead inc hosp" "17" 2024-02-05 2024-02-25 0.025 16.275 "quantile" "hospital admissions only" +"20 day ahead inc hosp" "17" 2024-02-05 2024-02-25 0.05 21.95 "quantile" "hospital admissions only" +"20 day ahead inc hosp" "17" 2024-02-05 2024-02-25 0.1 24 "quantile" "hospital admissions only" +"20 day ahead inc hosp" "17" 2024-02-05 2024-02-25 0.15 27.7 "quantile" "hospital admissions only" +"20 day ahead inc hosp" "17" 2024-02-05 2024-02-25 0.2 29 "quantile" "hospital admissions only" +"20 day ahead inc hosp" "17" 2024-02-05 2024-02-25 0.25 32 "quantile" "hospital admissions only" +"20 day ahead inc hosp" "17" 2024-02-05 2024-02-25 0.3 33 "quantile" "hospital admissions only" +"20 day ahead inc hosp" "17" 2024-02-05 2024-02-25 0.35 35 "quantile" "hospital admissions only" +"20 day ahead inc hosp" "17" 2024-02-05 2024-02-25 0.4 37 "quantile" "hospital admissions only" +"20 day ahead inc hosp" "17" 2024-02-05 2024-02-25 0.45 39 "quantile" "hospital admissions only" +"20 day ahead inc hosp" "17" 2024-02-05 2024-02-25 0.5 41 "quantile" "hospital admissions only" +"20 day ahead inc hosp" "17" 2024-02-05 2024-02-25 0.55 43 "quantile" "hospital admissions only" +"20 day ahead inc hosp" "17" 2024-02-05 2024-02-25 0.6 48 "quantile" "hospital admissions only" +"20 day ahead inc hosp" "17" 2024-02-05 2024-02-25 0.65 51.35 "quantile" "hospital admissions only" +"20 day ahead inc hosp" "17" 2024-02-05 2024-02-25 0.7 55 "quantile" "hospital admissions only" +"20 day ahead inc hosp" "17" 2024-02-05 2024-02-25 0.75 60 "quantile" "hospital admissions only" +"20 day ahead inc hosp" "17" 2024-02-05 2024-02-25 0.8 65.2 "quantile" "hospital admissions only" +"20 day ahead inc hosp" "17" 2024-02-05 2024-02-25 0.85 71.3 "quantile" "hospital admissions only" +"20 day ahead inc hosp" "17" 2024-02-05 2024-02-25 0.9 79.1 "quantile" "hospital admissions only" +"20 day ahead inc hosp" "17" 2024-02-05 2024-02-25 0.95 94.05 "quantile" "hospital admissions only" +"20 day ahead inc hosp" "17" 2024-02-05 2024-02-25 0.975 102.1 "quantile" "hospital admissions only" +"20 day ahead inc hosp" "17" 2024-02-05 2024-02-25 0.99 104.38 "quantile" "hospital admissions only" +"21 day ahead inc hosp" "17" 2024-02-05 2024-02-26 0.01 13.98 "quantile" "hospital admissions only" +"21 day ahead inc hosp" "17" 2024-02-05 2024-02-26 0.025 15.95 "quantile" "hospital admissions only" +"21 day ahead inc hosp" "17" 2024-02-05 2024-02-26 0.05 18.95 "quantile" "hospital admissions only" +"21 day ahead inc hosp" "17" 2024-02-05 2024-02-26 0.1 27.7 "quantile" "hospital admissions only" +"21 day ahead inc hosp" "17" 2024-02-05 2024-02-26 0.15 30.85 "quantile" "hospital admissions only" +"21 day ahead inc hosp" "17" 2024-02-05 2024-02-26 0.2 32.8 "quantile" "hospital admissions only" +"21 day ahead inc hosp" "17" 2024-02-05 2024-02-26 0.25 34 "quantile" "hospital admissions only" +"21 day ahead inc hosp" "17" 2024-02-05 2024-02-26 0.3 36 "quantile" "hospital admissions only" +"21 day ahead inc hosp" "17" 2024-02-05 2024-02-26 0.35 37 "quantile" "hospital admissions only" +"21 day ahead inc hosp" "17" 2024-02-05 2024-02-26 0.4 38.6 "quantile" "hospital admissions only" +"21 day ahead inc hosp" "17" 2024-02-05 2024-02-26 0.45 42 "quantile" "hospital admissions only" +"21 day ahead inc hosp" "17" 2024-02-05 2024-02-26 0.5 47 "quantile" "hospital admissions only" +"21 day ahead inc hosp" "17" 2024-02-05 2024-02-26 0.55 50 "quantile" "hospital admissions only" +"21 day ahead inc hosp" "17" 2024-02-05 2024-02-26 0.6 52.4 "quantile" "hospital admissions only" +"21 day ahead inc hosp" "17" 2024-02-05 2024-02-26 0.65 57 "quantile" "hospital admissions only" +"21 day ahead inc hosp" "17" 2024-02-05 2024-02-26 0.7 62.6 "quantile" "hospital admissions only" +"21 day ahead inc hosp" "17" 2024-02-05 2024-02-26 0.75 67.25 "quantile" "hospital admissions only" +"21 day ahead inc hosp" "17" 2024-02-05 2024-02-26 0.8 73.4 "quantile" "hospital admissions only" +"21 day ahead inc hosp" "17" 2024-02-05 2024-02-26 0.85 87.3 "quantile" "hospital admissions only" +"21 day ahead inc hosp" "17" 2024-02-05 2024-02-26 0.9 92.2 "quantile" "hospital admissions only" +"21 day ahead inc hosp" "17" 2024-02-05 2024-02-26 0.95 104.3 "quantile" "hospital admissions only" +"21 day ahead inc hosp" "17" 2024-02-05 2024-02-26 0.975 116.825 "quantile" "hospital admissions only" +"21 day ahead inc hosp" "17" 2024-02-05 2024-02-26 0.99 132 "quantile" "hospital admissions only" +"22 day ahead inc hosp" "17" 2024-02-05 2024-02-27 0.01 15.9 "quantile" "hospital admissions only" +"22 day ahead inc hosp" "17" 2024-02-05 2024-02-27 0.025 18 "quantile" "hospital admissions only" +"22 day ahead inc hosp" "17" 2024-02-05 2024-02-27 0.05 21.95 "quantile" "hospital admissions only" +"22 day ahead inc hosp" "17" 2024-02-05 2024-02-27 0.1 23.9 "quantile" "hospital admissions only" +"22 day ahead inc hosp" "17" 2024-02-05 2024-02-27 0.15 29.85 "quantile" "hospital admissions only" +"22 day ahead inc hosp" "17" 2024-02-05 2024-02-27 0.2 34.8 "quantile" "hospital admissions only" +"22 day ahead inc hosp" "17" 2024-02-05 2024-02-27 0.25 36 "quantile" "hospital admissions only" +"22 day ahead inc hosp" "17" 2024-02-05 2024-02-27 0.3 39.7 "quantile" "hospital admissions only" +"22 day ahead inc hosp" "17" 2024-02-05 2024-02-27 0.35 41 "quantile" "hospital admissions only" +"22 day ahead inc hosp" "17" 2024-02-05 2024-02-27 0.4 43 "quantile" "hospital admissions only" +"22 day ahead inc hosp" "17" 2024-02-05 2024-02-27 0.45 45 "quantile" "hospital admissions only" +"22 day ahead inc hosp" "17" 2024-02-05 2024-02-27 0.5 47 "quantile" "hospital admissions only" +"22 day ahead inc hosp" "17" 2024-02-05 2024-02-27 0.55 50 "quantile" "hospital admissions only" +"22 day ahead inc hosp" "17" 2024-02-05 2024-02-27 0.6 52.4 "quantile" "hospital admissions only" +"22 day ahead inc hosp" "17" 2024-02-05 2024-02-27 0.65 56.35 "quantile" "hospital admissions only" +"22 day ahead inc hosp" "17" 2024-02-05 2024-02-27 0.7 59.3 "quantile" "hospital admissions only" +"22 day ahead inc hosp" "17" 2024-02-05 2024-02-27 0.75 62.5 "quantile" "hospital admissions only" +"22 day ahead inc hosp" "17" 2024-02-05 2024-02-27 0.8 69.2 "quantile" "hospital admissions only" +"22 day ahead inc hosp" "17" 2024-02-05 2024-02-27 0.85 83 "quantile" "hospital admissions only" +"22 day ahead inc hosp" "17" 2024-02-05 2024-02-27 0.9 89.2 "quantile" "hospital admissions only" +"22 day ahead inc hosp" "17" 2024-02-05 2024-02-27 0.95 104.3 "quantile" "hospital admissions only" +"22 day ahead inc hosp" "17" 2024-02-05 2024-02-27 0.975 125.025 "quantile" "hospital admissions only" +"22 day ahead inc hosp" "17" 2024-02-05 2024-02-27 0.99 144.06 "quantile" "hospital admissions only" +"23 day ahead inc hosp" "17" 2024-02-05 2024-02-28 0.01 12.94 "quantile" "hospital admissions only" +"23 day ahead inc hosp" "17" 2024-02-05 2024-02-28 0.025 13.95 "quantile" "hospital admissions only" +"23 day ahead inc hosp" "17" 2024-02-05 2024-02-28 0.05 20.95 "quantile" "hospital admissions only" +"23 day ahead inc hosp" "17" 2024-02-05 2024-02-28 0.1 24.9 "quantile" "hospital admissions only" +"23 day ahead inc hosp" "17" 2024-02-05 2024-02-28 0.15 28 "quantile" "hospital admissions only" +"23 day ahead inc hosp" "17" 2024-02-05 2024-02-28 0.2 31.6 "quantile" "hospital admissions only" +"23 day ahead inc hosp" "17" 2024-02-05 2024-02-28 0.25 34 "quantile" "hospital admissions only" +"23 day ahead inc hosp" "17" 2024-02-05 2024-02-28 0.3 37 "quantile" "hospital admissions only" +"23 day ahead inc hosp" "17" 2024-02-05 2024-02-28 0.35 37.65 "quantile" "hospital admissions only" +"23 day ahead inc hosp" "17" 2024-02-05 2024-02-28 0.4 40.6 "quantile" "hospital admissions only" +"23 day ahead inc hosp" "17" 2024-02-05 2024-02-28 0.45 42.55 "quantile" "hospital admissions only" +"23 day ahead inc hosp" "17" 2024-02-05 2024-02-28 0.5 44 "quantile" "hospital admissions only" +"23 day ahead inc hosp" "17" 2024-02-05 2024-02-28 0.55 47.45 "quantile" "hospital admissions only" +"23 day ahead inc hosp" "17" 2024-02-05 2024-02-28 0.6 53 "quantile" "hospital admissions only" +"23 day ahead inc hosp" "17" 2024-02-05 2024-02-28 0.65 56 "quantile" "hospital admissions only" +"23 day ahead inc hosp" "17" 2024-02-05 2024-02-28 0.7 59.6 "quantile" "hospital admissions only" +"23 day ahead inc hosp" "17" 2024-02-05 2024-02-28 0.75 70.25 "quantile" "hospital admissions only" +"23 day ahead inc hosp" "17" 2024-02-05 2024-02-28 0.8 74 "quantile" "hospital admissions only" +"23 day ahead inc hosp" "17" 2024-02-05 2024-02-28 0.85 85.3 "quantile" "hospital admissions only" +"23 day ahead inc hosp" "17" 2024-02-05 2024-02-28 0.9 98 "quantile" "hospital admissions only" +"23 day ahead inc hosp" "17" 2024-02-05 2024-02-28 0.95 113.25 "quantile" "hospital admissions only" +"23 day ahead inc hosp" "17" 2024-02-05 2024-02-28 0.975 137.625 "quantile" "hospital admissions only" +"23 day ahead inc hosp" "17" 2024-02-05 2024-02-28 0.99 170.03 "quantile" "hospital admissions only" +"24 day ahead inc hosp" "17" 2024-02-05 2024-02-29 0.01 11.96 "quantile" "hospital admissions only" +"24 day ahead inc hosp" "17" 2024-02-05 2024-02-29 0.025 13 "quantile" "hospital admissions only" +"24 day ahead inc hosp" "17" 2024-02-05 2024-02-29 0.05 14 "quantile" "hospital admissions only" +"24 day ahead inc hosp" "17" 2024-02-05 2024-02-29 0.1 25.6 "quantile" "hospital admissions only" +"24 day ahead inc hosp" "17" 2024-02-05 2024-02-29 0.15 28 "quantile" "hospital admissions only" +"24 day ahead inc hosp" "17" 2024-02-05 2024-02-29 0.2 29.8 "quantile" "hospital admissions only" +"24 day ahead inc hosp" "17" 2024-02-05 2024-02-29 0.25 31 "quantile" "hospital admissions only" +"24 day ahead inc hosp" "17" 2024-02-05 2024-02-29 0.3 33.7 "quantile" "hospital admissions only" +"24 day ahead inc hosp" "17" 2024-02-05 2024-02-29 0.35 36 "quantile" "hospital admissions only" +"24 day ahead inc hosp" "17" 2024-02-05 2024-02-29 0.4 38 "quantile" "hospital admissions only" +"24 day ahead inc hosp" "17" 2024-02-05 2024-02-29 0.45 40 "quantile" "hospital admissions only" +"24 day ahead inc hosp" "17" 2024-02-05 2024-02-29 0.5 43.5 "quantile" "hospital admissions only" +"24 day ahead inc hosp" "17" 2024-02-05 2024-02-29 0.55 46 "quantile" "hospital admissions only" +"24 day ahead inc hosp" "17" 2024-02-05 2024-02-29 0.6 49 "quantile" "hospital admissions only" +"24 day ahead inc hosp" "17" 2024-02-05 2024-02-29 0.65 53 "quantile" "hospital admissions only" +"24 day ahead inc hosp" "17" 2024-02-05 2024-02-29 0.7 54.3 "quantile" "hospital admissions only" +"24 day ahead inc hosp" "17" 2024-02-05 2024-02-29 0.75 63.25 "quantile" "hospital admissions only" +"24 day ahead inc hosp" "17" 2024-02-05 2024-02-29 0.8 69 "quantile" "hospital admissions only" +"24 day ahead inc hosp" "17" 2024-02-05 2024-02-29 0.85 80 "quantile" "hospital admissions only" +"24 day ahead inc hosp" "17" 2024-02-05 2024-02-29 0.9 93.1 "quantile" "hospital admissions only" +"24 day ahead inc hosp" "17" 2024-02-05 2024-02-29 0.95 103.25 "quantile" "hospital admissions only" +"24 day ahead inc hosp" "17" 2024-02-05 2024-02-29 0.975 129.6 "quantile" "hospital admissions only" +"24 day ahead inc hosp" "17" 2024-02-05 2024-02-29 0.99 144.31 "quantile" "hospital admissions only" +"25 day ahead inc hosp" "17" 2024-02-05 2024-03-01 0.01 8.98 "quantile" "hospital admissions only" +"25 day ahead inc hosp" "17" 2024-02-05 2024-03-01 0.025 11.475 "quantile" "hospital admissions only" +"25 day ahead inc hosp" "17" 2024-02-05 2024-03-01 0.05 14.95 "quantile" "hospital admissions only" +"25 day ahead inc hosp" "17" 2024-02-05 2024-03-01 0.1 22.8 "quantile" "hospital admissions only" +"25 day ahead inc hosp" "17" 2024-02-05 2024-03-01 0.15 26 "quantile" "hospital admissions only" +"25 day ahead inc hosp" "17" 2024-02-05 2024-03-01 0.2 29 "quantile" "hospital admissions only" +"25 day ahead inc hosp" "17" 2024-02-05 2024-03-01 0.25 30 "quantile" "hospital admissions only" +"25 day ahead inc hosp" "17" 2024-02-05 2024-03-01 0.3 32 "quantile" "hospital admissions only" +"25 day ahead inc hosp" "17" 2024-02-05 2024-03-01 0.35 33 "quantile" "hospital admissions only" +"25 day ahead inc hosp" "17" 2024-02-05 2024-03-01 0.4 35 "quantile" "hospital admissions only" +"25 day ahead inc hosp" "17" 2024-02-05 2024-03-01 0.45 38 "quantile" "hospital admissions only" +"25 day ahead inc hosp" "17" 2024-02-05 2024-03-01 0.5 40 "quantile" "hospital admissions only" +"25 day ahead inc hosp" "17" 2024-02-05 2024-03-01 0.55 42.45 "quantile" "hospital admissions only" +"25 day ahead inc hosp" "17" 2024-02-05 2024-03-01 0.6 45 "quantile" "hospital admissions only" +"25 day ahead inc hosp" "17" 2024-02-05 2024-03-01 0.65 48.05 "quantile" "hospital admissions only" +"25 day ahead inc hosp" "17" 2024-02-05 2024-03-01 0.7 54 "quantile" "hospital admissions only" +"25 day ahead inc hosp" "17" 2024-02-05 2024-03-01 0.75 58.5 "quantile" "hospital admissions only" +"25 day ahead inc hosp" "17" 2024-02-05 2024-03-01 0.8 67.2 "quantile" "hospital admissions only" +"25 day ahead inc hosp" "17" 2024-02-05 2024-03-01 0.85 81.15 "quantile" "hospital admissions only" +"25 day ahead inc hosp" "17" 2024-02-05 2024-03-01 0.9 93 "quantile" "hospital admissions only" +"25 day ahead inc hosp" "17" 2024-02-05 2024-03-01 0.95 99.05 "quantile" "hospital admissions only" +"25 day ahead inc hosp" "17" 2024-02-05 2024-03-01 0.975 112.975 "quantile" "hospital admissions only" +"25 day ahead inc hosp" "17" 2024-02-05 2024-03-01 0.99 143.36 "quantile" "hospital admissions only" +"26 day ahead inc hosp" "17" 2024-02-05 2024-03-02 0.01 6.96 "quantile" "hospital admissions only" +"26 day ahead inc hosp" "17" 2024-02-05 2024-03-02 0.025 10.425 "quantile" "hospital admissions only" +"26 day ahead inc hosp" "17" 2024-02-05 2024-03-02 0.05 13 "quantile" "hospital admissions only" +"26 day ahead inc hosp" "17" 2024-02-05 2024-03-02 0.1 15.9 "quantile" "hospital admissions only" +"26 day ahead inc hosp" "17" 2024-02-05 2024-03-02 0.15 20 "quantile" "hospital admissions only" +"26 day ahead inc hosp" "17" 2024-02-05 2024-03-02 0.2 23.8 "quantile" "hospital admissions only" +"26 day ahead inc hosp" "17" 2024-02-05 2024-03-02 0.25 25 "quantile" "hospital admissions only" +"26 day ahead inc hosp" "17" 2024-02-05 2024-03-02 0.3 27.7 "quantile" "hospital admissions only" +"26 day ahead inc hosp" "17" 2024-02-05 2024-03-02 0.35 31 "quantile" "hospital admissions only" +"26 day ahead inc hosp" "17" 2024-02-05 2024-03-02 0.4 34 "quantile" "hospital admissions only" +"26 day ahead inc hosp" "17" 2024-02-05 2024-03-02 0.45 36 "quantile" "hospital admissions only" +"26 day ahead inc hosp" "17" 2024-02-05 2024-03-02 0.5 37 "quantile" "hospital admissions only" +"26 day ahead inc hosp" "17" 2024-02-05 2024-03-02 0.55 41 "quantile" "hospital admissions only" +"26 day ahead inc hosp" "17" 2024-02-05 2024-03-02 0.6 43 "quantile" "hospital admissions only" +"26 day ahead inc hosp" "17" 2024-02-05 2024-03-02 0.65 46.05 "quantile" "hospital admissions only" +"26 day ahead inc hosp" "17" 2024-02-05 2024-03-02 0.7 50 "quantile" "hospital admissions only" +"26 day ahead inc hosp" "17" 2024-02-05 2024-03-02 0.75 54.25 "quantile" "hospital admissions only" +"26 day ahead inc hosp" "17" 2024-02-05 2024-03-02 0.8 58.2 "quantile" "hospital admissions only" +"26 day ahead inc hosp" "17" 2024-02-05 2024-03-02 0.85 67.05 "quantile" "hospital admissions only" +"26 day ahead inc hosp" "17" 2024-02-05 2024-03-02 0.9 81.8000000000001 "quantile" "hospital admissions only" +"26 day ahead inc hosp" "17" 2024-02-05 2024-03-02 0.95 96.05 "quantile" "hospital admissions only" +"26 day ahead inc hosp" "17" 2024-02-05 2024-03-02 0.975 110.3 "quantile" "hospital admissions only" +"26 day ahead inc hosp" "17" 2024-02-05 2024-03-02 0.99 120.31 "quantile" "hospital admissions only" +"27 day ahead inc hosp" "17" 2024-02-05 2024-03-03 0.01 6.97 "quantile" "hospital admissions only" +"27 day ahead inc hosp" "17" 2024-02-05 2024-03-03 0.025 9.475 "quantile" "hospital admissions only" +"27 day ahead inc hosp" "17" 2024-02-05 2024-03-03 0.05 12.95 "quantile" "hospital admissions only" +"27 day ahead inc hosp" "17" 2024-02-05 2024-03-03 0.1 16.8 "quantile" "hospital admissions only" +"27 day ahead inc hosp" "17" 2024-02-05 2024-03-03 0.15 19 "quantile" "hospital admissions only" +"27 day ahead inc hosp" "17" 2024-02-05 2024-03-03 0.2 22 "quantile" "hospital admissions only" +"27 day ahead inc hosp" "17" 2024-02-05 2024-03-03 0.25 27 "quantile" "hospital admissions only" +"27 day ahead inc hosp" "17" 2024-02-05 2024-03-03 0.3 28.7 "quantile" "hospital admissions only" +"27 day ahead inc hosp" "17" 2024-02-05 2024-03-03 0.35 30 "quantile" "hospital admissions only" +"27 day ahead inc hosp" "17" 2024-02-05 2024-03-03 0.4 32 "quantile" "hospital admissions only" +"27 day ahead inc hosp" "17" 2024-02-05 2024-03-03 0.45 34 "quantile" "hospital admissions only" +"27 day ahead inc hosp" "17" 2024-02-05 2024-03-03 0.5 35 "quantile" "hospital admissions only" +"27 day ahead inc hosp" "17" 2024-02-05 2024-03-03 0.55 37 "quantile" "hospital admissions only" +"27 day ahead inc hosp" "17" 2024-02-05 2024-03-03 0.6 40.8 "quantile" "hospital admissions only" +"27 day ahead inc hosp" "17" 2024-02-05 2024-03-03 0.65 44.35 "quantile" "hospital admissions only" +"27 day ahead inc hosp" "17" 2024-02-05 2024-03-03 0.7 47.3 "quantile" "hospital admissions only" +"27 day ahead inc hosp" "17" 2024-02-05 2024-03-03 0.75 52.5 "quantile" "hospital admissions only" +"27 day ahead inc hosp" "17" 2024-02-05 2024-03-03 0.8 58 "quantile" "hospital admissions only" +"27 day ahead inc hosp" "17" 2024-02-05 2024-03-03 0.85 66.6 "quantile" "hospital admissions only" +"27 day ahead inc hosp" "17" 2024-02-05 2024-03-03 0.9 77.2 "quantile" "hospital admissions only" +"27 day ahead inc hosp" "17" 2024-02-05 2024-03-03 0.95 101 "quantile" "hospital admissions only" +"27 day ahead inc hosp" "17" 2024-02-05 2024-03-03 0.975 118.225 "quantile" "hospital admissions only" +"27 day ahead inc hosp" "17" 2024-02-05 2024-03-03 0.99 140.12 "quantile" "hospital admissions only" +"28 day ahead inc hosp" "17" 2024-02-05 2024-03-04 0.01 8.91 "quantile" "hospital admissions only" +"28 day ahead inc hosp" "17" 2024-02-05 2024-03-04 0.025 10.475 "quantile" "hospital admissions only" +"28 day ahead inc hosp" "17" 2024-02-05 2024-03-04 0.05 12.95 "quantile" "hospital admissions only" +"28 day ahead inc hosp" "17" 2024-02-05 2024-03-04 0.1 17.8 "quantile" "hospital admissions only" +"28 day ahead inc hosp" "17" 2024-02-05 2024-03-04 0.15 20.85 "quantile" "hospital admissions only" +"28 day ahead inc hosp" "17" 2024-02-05 2024-03-04 0.2 25 "quantile" "hospital admissions only" +"28 day ahead inc hosp" "17" 2024-02-05 2024-03-04 0.25 27.75 "quantile" "hospital admissions only" +"28 day ahead inc hosp" "17" 2024-02-05 2024-03-04 0.3 31 "quantile" "hospital admissions only" +"28 day ahead inc hosp" "17" 2024-02-05 2024-03-04 0.35 32 "quantile" "hospital admissions only" +"28 day ahead inc hosp" "17" 2024-02-05 2024-03-04 0.4 36 "quantile" "hospital admissions only" +"28 day ahead inc hosp" "17" 2024-02-05 2024-03-04 0.45 38.55 "quantile" "hospital admissions only" +"28 day ahead inc hosp" "17" 2024-02-05 2024-03-04 0.5 41.5 "quantile" "hospital admissions only" +"28 day ahead inc hosp" "17" 2024-02-05 2024-03-04 0.55 42 "quantile" "hospital admissions only" +"28 day ahead inc hosp" "17" 2024-02-05 2024-03-04 0.6 44 "quantile" "hospital admissions only" +"28 day ahead inc hosp" "17" 2024-02-05 2024-03-04 0.65 49 "quantile" "hospital admissions only" +"28 day ahead inc hosp" "17" 2024-02-05 2024-03-04 0.7 51.6 "quantile" "hospital admissions only" +"28 day ahead inc hosp" "17" 2024-02-05 2024-03-04 0.75 55 "quantile" "hospital admissions only" +"28 day ahead inc hosp" "17" 2024-02-05 2024-03-04 0.8 62.6 "quantile" "hospital admissions only" +"28 day ahead inc hosp" "17" 2024-02-05 2024-03-04 0.85 76 "quantile" "hospital admissions only" +"28 day ahead inc hosp" "17" 2024-02-05 2024-03-04 0.9 91.9000000000001 "quantile" "hospital admissions only" +"28 day ahead inc hosp" "17" 2024-02-05 2024-03-04 0.95 115.2 "quantile" "hospital admissions only" +"28 day ahead inc hosp" "17" 2024-02-05 2024-03-04 0.975 122.625 "quantile" "hospital admissions only" +"28 day ahead inc hosp" "17" 2024-02-05 2024-03-04 0.99 143.32 "quantile" "hospital admissions only" +"1 day ahead inc hosp" "18" 2024-02-05 2024-02-06 0.01 21.95 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "18" 2024-02-05 2024-02-06 0.025 23.475 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "18" 2024-02-05 2024-02-06 0.05 24.95 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "18" 2024-02-05 2024-02-06 0.1 25 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "18" 2024-02-05 2024-02-06 0.15 26.85 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "18" 2024-02-05 2024-02-06 0.2 28 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "18" 2024-02-05 2024-02-06 0.25 29.75 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "18" 2024-02-05 2024-02-06 0.3 31 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "18" 2024-02-05 2024-02-06 0.35 31 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "18" 2024-02-05 2024-02-06 0.4 32 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "18" 2024-02-05 2024-02-06 0.45 33 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "18" 2024-02-05 2024-02-06 0.5 34 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "18" 2024-02-05 2024-02-06 0.55 35 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "18" 2024-02-05 2024-02-06 0.6 37 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "18" 2024-02-05 2024-02-06 0.65 40 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "18" 2024-02-05 2024-02-06 0.7 41 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "18" 2024-02-05 2024-02-06 0.75 43 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "18" 2024-02-05 2024-02-06 0.8 45 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "18" 2024-02-05 2024-02-06 0.85 46 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "18" 2024-02-05 2024-02-06 0.9 48.1 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "18" 2024-02-05 2024-02-06 0.95 53 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "18" 2024-02-05 2024-02-06 0.975 53 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "18" 2024-02-05 2024-02-06 0.99 59.01 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "18" 2024-02-05 2024-02-07 0.01 16.99 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "18" 2024-02-05 2024-02-07 0.025 17 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "18" 2024-02-05 2024-02-07 0.05 19.95 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "18" 2024-02-05 2024-02-07 0.1 21.9 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "18" 2024-02-05 2024-02-07 0.15 24 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "18" 2024-02-05 2024-02-07 0.2 25.8 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "18" 2024-02-05 2024-02-07 0.25 28 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "18" 2024-02-05 2024-02-07 0.3 29.7 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "18" 2024-02-05 2024-02-07 0.35 30.65 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "18" 2024-02-05 2024-02-07 0.4 31.6 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "18" 2024-02-05 2024-02-07 0.45 32 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "18" 2024-02-05 2024-02-07 0.5 33 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "18" 2024-02-05 2024-02-07 0.55 34 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "18" 2024-02-05 2024-02-07 0.6 36 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "18" 2024-02-05 2024-02-07 0.65 37 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "18" 2024-02-05 2024-02-07 0.7 39 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "18" 2024-02-05 2024-02-07 0.75 40 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "18" 2024-02-05 2024-02-07 0.8 40 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "18" 2024-02-05 2024-02-07 0.85 42.15 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "18" 2024-02-05 2024-02-07 0.9 44.1 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "18" 2024-02-05 2024-02-07 0.95 48.05 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "18" 2024-02-05 2024-02-07 0.975 54.575 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "18" 2024-02-05 2024-02-07 0.99 58.07 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "18" 2024-02-05 2024-02-08 0.01 16 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "18" 2024-02-05 2024-02-08 0.025 16.95 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "18" 2024-02-05 2024-02-08 0.05 18 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "18" 2024-02-05 2024-02-08 0.1 20.9 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "18" 2024-02-05 2024-02-08 0.15 23 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "18" 2024-02-05 2024-02-08 0.2 24.8 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "18" 2024-02-05 2024-02-08 0.25 27 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "18" 2024-02-05 2024-02-08 0.3 28 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "18" 2024-02-05 2024-02-08 0.35 29 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "18" 2024-02-05 2024-02-08 0.4 30 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "18" 2024-02-05 2024-02-08 0.45 30 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "18" 2024-02-05 2024-02-08 0.5 31 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "18" 2024-02-05 2024-02-08 0.55 32.45 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "18" 2024-02-05 2024-02-08 0.6 33.4 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "18" 2024-02-05 2024-02-08 0.65 34.35 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "18" 2024-02-05 2024-02-08 0.7 36 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "18" 2024-02-05 2024-02-08 0.75 38 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "18" 2024-02-05 2024-02-08 0.8 39 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "18" 2024-02-05 2024-02-08 0.85 40.15 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "18" 2024-02-05 2024-02-08 0.9 45.1 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "18" 2024-02-05 2024-02-08 0.95 50 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "18" 2024-02-05 2024-02-08 0.975 52.575 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "18" 2024-02-05 2024-02-08 0.99 58.1100000000001 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "18" 2024-02-05 2024-02-09 0.01 11.99 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "18" 2024-02-05 2024-02-09 0.025 12.475 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "18" 2024-02-05 2024-02-09 0.05 14 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "18" 2024-02-05 2024-02-09 0.1 16 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "18" 2024-02-05 2024-02-09 0.15 17 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "18" 2024-02-05 2024-02-09 0.2 19 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "18" 2024-02-05 2024-02-09 0.25 21.75 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "18" 2024-02-05 2024-02-09 0.3 23 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "18" 2024-02-05 2024-02-09 0.35 24 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "18" 2024-02-05 2024-02-09 0.4 25 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "18" 2024-02-05 2024-02-09 0.45 25.55 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "18" 2024-02-05 2024-02-09 0.5 26.5 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "18" 2024-02-05 2024-02-09 0.55 28 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "18" 2024-02-05 2024-02-09 0.6 28.4 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "18" 2024-02-05 2024-02-09 0.65 29.35 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "18" 2024-02-05 2024-02-09 0.7 30 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "18" 2024-02-05 2024-02-09 0.75 32 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "18" 2024-02-05 2024-02-09 0.8 32.2 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "18" 2024-02-05 2024-02-09 0.85 33 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "18" 2024-02-05 2024-02-09 0.9 35 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "18" 2024-02-05 2024-02-09 0.95 37.05 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "18" 2024-02-05 2024-02-09 0.975 40.525 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "18" 2024-02-05 2024-02-09 0.99 42.06 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "18" 2024-02-05 2024-02-10 0.01 10.99 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "18" 2024-02-05 2024-02-10 0.025 11.475 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "18" 2024-02-05 2024-02-10 0.05 13 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "18" 2024-02-05 2024-02-10 0.1 14 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "18" 2024-02-05 2024-02-10 0.15 16 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "18" 2024-02-05 2024-02-10 0.2 17 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "18" 2024-02-05 2024-02-10 0.25 18.75 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "18" 2024-02-05 2024-02-10 0.3 20 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "18" 2024-02-05 2024-02-10 0.35 21 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "18" 2024-02-05 2024-02-10 0.4 22 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "18" 2024-02-05 2024-02-10 0.45 23 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "18" 2024-02-05 2024-02-10 0.5 24 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "18" 2024-02-05 2024-02-10 0.55 24.45 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "18" 2024-02-05 2024-02-10 0.6 26 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "18" 2024-02-05 2024-02-10 0.65 27 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "18" 2024-02-05 2024-02-10 0.7 28 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "18" 2024-02-05 2024-02-10 0.75 29 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "18" 2024-02-05 2024-02-10 0.8 30 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "18" 2024-02-05 2024-02-10 0.85 31 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "18" 2024-02-05 2024-02-10 0.9 33 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "18" 2024-02-05 2024-02-10 0.95 37.15 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "18" 2024-02-05 2024-02-10 0.975 40.525 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "18" 2024-02-05 2024-02-10 0.99 52.01 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "18" 2024-02-05 2024-02-11 0.01 12.99 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "18" 2024-02-05 2024-02-11 0.025 13.475 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "18" 2024-02-05 2024-02-11 0.05 15.95 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "18" 2024-02-05 2024-02-11 0.1 17.9 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "18" 2024-02-05 2024-02-11 0.15 18.85 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "18" 2024-02-05 2024-02-11 0.2 20 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "18" 2024-02-05 2024-02-11 0.25 21.75 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "18" 2024-02-05 2024-02-11 0.3 22 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "18" 2024-02-05 2024-02-11 0.35 23 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "18" 2024-02-05 2024-02-11 0.4 24 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "18" 2024-02-05 2024-02-11 0.45 25 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "18" 2024-02-05 2024-02-11 0.5 26.5 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "18" 2024-02-05 2024-02-11 0.55 27 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "18" 2024-02-05 2024-02-11 0.6 28 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "18" 2024-02-05 2024-02-11 0.65 30 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "18" 2024-02-05 2024-02-11 0.7 32 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "18" 2024-02-05 2024-02-11 0.75 32 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "18" 2024-02-05 2024-02-11 0.8 35.2 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "18" 2024-02-05 2024-02-11 0.85 38.3 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "18" 2024-02-05 2024-02-11 0.9 42 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "18" 2024-02-05 2024-02-11 0.95 47.1 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "18" 2024-02-05 2024-02-11 0.975 51.525 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "18" 2024-02-05 2024-02-11 0.99 55.05 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "18" 2024-02-05 2024-02-12 0.01 11.97 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "18" 2024-02-05 2024-02-12 0.025 13.475 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "18" 2024-02-05 2024-02-12 0.05 15 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "18" 2024-02-05 2024-02-12 0.1 16.9 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "18" 2024-02-05 2024-02-12 0.15 19 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "18" 2024-02-05 2024-02-12 0.2 20.8 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "18" 2024-02-05 2024-02-12 0.25 21 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "18" 2024-02-05 2024-02-12 0.3 22 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "18" 2024-02-05 2024-02-12 0.35 23.65 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "18" 2024-02-05 2024-02-12 0.4 26 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "18" 2024-02-05 2024-02-12 0.45 27 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "18" 2024-02-05 2024-02-12 0.5 27 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "18" 2024-02-05 2024-02-12 0.55 28.45 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "18" 2024-02-05 2024-02-12 0.6 30 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "18" 2024-02-05 2024-02-12 0.65 32 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "18" 2024-02-05 2024-02-12 0.7 32 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "18" 2024-02-05 2024-02-12 0.75 35 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "18" 2024-02-05 2024-02-12 0.8 37.2 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "18" 2024-02-05 2024-02-12 0.85 39.15 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "18" 2024-02-05 2024-02-12 0.9 42.1 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "18" 2024-02-05 2024-02-12 0.95 46.05 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "18" 2024-02-05 2024-02-12 0.975 47 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "18" 2024-02-05 2024-02-12 0.99 48.02 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "18" 2024-02-05 2024-02-13 0.01 12.97 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "18" 2024-02-05 2024-02-13 0.025 14.475 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "18" 2024-02-05 2024-02-13 0.05 17 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "18" 2024-02-05 2024-02-13 0.1 20 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "18" 2024-02-05 2024-02-13 0.15 21.85 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "18" 2024-02-05 2024-02-13 0.2 22.8 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "18" 2024-02-05 2024-02-13 0.25 24 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "18" 2024-02-05 2024-02-13 0.3 25 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "18" 2024-02-05 2024-02-13 0.35 26 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "18" 2024-02-05 2024-02-13 0.4 27.6 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "18" 2024-02-05 2024-02-13 0.45 28 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "18" 2024-02-05 2024-02-13 0.5 29 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "18" 2024-02-05 2024-02-13 0.55 31 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "18" 2024-02-05 2024-02-13 0.6 32 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "18" 2024-02-05 2024-02-13 0.65 34 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "18" 2024-02-05 2024-02-13 0.7 35 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "18" 2024-02-05 2024-02-13 0.75 36.25 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "18" 2024-02-05 2024-02-13 0.8 38.2 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "18" 2024-02-05 2024-02-13 0.85 41 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "18" 2024-02-05 2024-02-13 0.9 44.2 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "18" 2024-02-05 2024-02-13 0.95 49.3 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "18" 2024-02-05 2024-02-13 0.975 56 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "18" 2024-02-05 2024-02-13 0.99 59.08 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "18" 2024-02-05 2024-02-14 0.01 11.99 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "18" 2024-02-05 2024-02-14 0.025 12.475 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "18" 2024-02-05 2024-02-14 0.05 13 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "18" 2024-02-05 2024-02-14 0.1 14.9 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "18" 2024-02-05 2024-02-14 0.15 17 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "18" 2024-02-05 2024-02-14 0.2 20 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "18" 2024-02-05 2024-02-14 0.25 21 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "18" 2024-02-05 2024-02-14 0.3 22 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "18" 2024-02-05 2024-02-14 0.35 23.65 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "18" 2024-02-05 2024-02-14 0.4 25 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "18" 2024-02-05 2024-02-14 0.45 26 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "18" 2024-02-05 2024-02-14 0.5 27 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "18" 2024-02-05 2024-02-14 0.55 29 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "18" 2024-02-05 2024-02-14 0.6 29 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "18" 2024-02-05 2024-02-14 0.65 31 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "18" 2024-02-05 2024-02-14 0.7 32 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "18" 2024-02-05 2024-02-14 0.75 33 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "18" 2024-02-05 2024-02-14 0.8 34.4 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "18" 2024-02-05 2024-02-14 0.85 37 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "18" 2024-02-05 2024-02-14 0.9 39.2 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "18" 2024-02-05 2024-02-14 0.95 46 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "18" 2024-02-05 2024-02-14 0.975 48 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "18" 2024-02-05 2024-02-14 0.99 54.1200000000001 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "18" 2024-02-05 2024-02-15 0.01 8 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "18" 2024-02-05 2024-02-15 0.025 8 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "18" 2024-02-05 2024-02-15 0.05 10.95 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "18" 2024-02-05 2024-02-15 0.1 15 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "18" 2024-02-05 2024-02-15 0.15 16 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "18" 2024-02-05 2024-02-15 0.2 17.8 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "18" 2024-02-05 2024-02-15 0.25 20 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "18" 2024-02-05 2024-02-15 0.3 21 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "18" 2024-02-05 2024-02-15 0.35 22 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "18" 2024-02-05 2024-02-15 0.4 23 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "18" 2024-02-05 2024-02-15 0.45 24 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "18" 2024-02-05 2024-02-15 0.5 25 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "18" 2024-02-05 2024-02-15 0.55 27 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "18" 2024-02-05 2024-02-15 0.6 27.4 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "18" 2024-02-05 2024-02-15 0.65 28.35 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "18" 2024-02-05 2024-02-15 0.7 30.3 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "18" 2024-02-05 2024-02-15 0.75 32.25 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "18" 2024-02-05 2024-02-15 0.8 35 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "18" 2024-02-05 2024-02-15 0.85 37.15 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "18" 2024-02-05 2024-02-15 0.9 40 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "18" 2024-02-05 2024-02-15 0.95 43 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "18" 2024-02-05 2024-02-15 0.975 45.575 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "18" 2024-02-05 2024-02-15 0.99 49.07 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "18" 2024-02-05 2024-02-16 0.01 8.97 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "18" 2024-02-05 2024-02-16 0.025 10 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "18" 2024-02-05 2024-02-16 0.05 10.95 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "18" 2024-02-05 2024-02-16 0.1 12 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "18" 2024-02-05 2024-02-16 0.15 13.85 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "18" 2024-02-05 2024-02-16 0.2 15 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "18" 2024-02-05 2024-02-16 0.25 16 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "18" 2024-02-05 2024-02-16 0.3 17 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "18" 2024-02-05 2024-02-16 0.35 18.65 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "18" 2024-02-05 2024-02-16 0.4 19 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "18" 2024-02-05 2024-02-16 0.45 20 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "18" 2024-02-05 2024-02-16 0.5 21 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "18" 2024-02-05 2024-02-16 0.55 22 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "18" 2024-02-05 2024-02-16 0.6 23 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "18" 2024-02-05 2024-02-16 0.65 25 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "18" 2024-02-05 2024-02-16 0.7 26 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "18" 2024-02-05 2024-02-16 0.75 27 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "18" 2024-02-05 2024-02-16 0.8 28.2 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "18" 2024-02-05 2024-02-16 0.85 30.15 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "18" 2024-02-05 2024-02-16 0.9 34 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "18" 2024-02-05 2024-02-16 0.95 38.05 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "18" 2024-02-05 2024-02-16 0.975 40 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "18" 2024-02-05 2024-02-16 0.99 41.05 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "18" 2024-02-05 2024-02-17 0.01 6.99 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "18" 2024-02-05 2024-02-17 0.025 7 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "18" 2024-02-05 2024-02-17 0.05 8.9 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "18" 2024-02-05 2024-02-17 0.1 10 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "18" 2024-02-05 2024-02-17 0.15 11 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "18" 2024-02-05 2024-02-17 0.2 12 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "18" 2024-02-05 2024-02-17 0.25 14 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "18" 2024-02-05 2024-02-17 0.3 15.7 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "18" 2024-02-05 2024-02-17 0.35 16.65 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "18" 2024-02-05 2024-02-17 0.4 17 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "18" 2024-02-05 2024-02-17 0.45 17.55 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "18" 2024-02-05 2024-02-17 0.5 18.5 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "18" 2024-02-05 2024-02-17 0.55 19 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "18" 2024-02-05 2024-02-17 0.6 20 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "18" 2024-02-05 2024-02-17 0.65 21.7 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "18" 2024-02-05 2024-02-17 0.7 25 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "18" 2024-02-05 2024-02-17 0.75 26 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "18" 2024-02-05 2024-02-17 0.8 27 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "18" 2024-02-05 2024-02-17 0.85 29.15 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "18" 2024-02-05 2024-02-17 0.9 33 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "18" 2024-02-05 2024-02-17 0.95 37.05 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "18" 2024-02-05 2024-02-17 0.975 39.525 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "18" 2024-02-05 2024-02-17 0.99 47.07 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "18" 2024-02-05 2024-02-18 0.01 4.99 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "18" 2024-02-05 2024-02-18 0.025 10 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "18" 2024-02-05 2024-02-18 0.05 10.95 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "18" 2024-02-05 2024-02-18 0.1 12.9 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "18" 2024-02-05 2024-02-18 0.15 14 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "18" 2024-02-05 2024-02-18 0.2 16 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "18" 2024-02-05 2024-02-18 0.25 16.75 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "18" 2024-02-05 2024-02-18 0.3 18 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "18" 2024-02-05 2024-02-18 0.35 19.65 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "18" 2024-02-05 2024-02-18 0.4 21 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "18" 2024-02-05 2024-02-18 0.45 21 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "18" 2024-02-05 2024-02-18 0.5 22 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "18" 2024-02-05 2024-02-18 0.55 22 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "18" 2024-02-05 2024-02-18 0.6 23.4 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "18" 2024-02-05 2024-02-18 0.65 24.35 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "18" 2024-02-05 2024-02-18 0.7 26 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "18" 2024-02-05 2024-02-18 0.75 28.25 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "18" 2024-02-05 2024-02-18 0.8 30.4 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "18" 2024-02-05 2024-02-18 0.85 32 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "18" 2024-02-05 2024-02-18 0.9 34 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "18" 2024-02-05 2024-02-18 0.95 37.15 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "18" 2024-02-05 2024-02-18 0.975 47.1 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "18" 2024-02-05 2024-02-18 0.99 59.06 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "18" 2024-02-05 2024-02-19 0.01 8.97 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "18" 2024-02-05 2024-02-19 0.025 9 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "18" 2024-02-05 2024-02-19 0.05 10 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "18" 2024-02-05 2024-02-19 0.1 12 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "18" 2024-02-05 2024-02-19 0.15 13 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "18" 2024-02-05 2024-02-19 0.2 14.8 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "18" 2024-02-05 2024-02-19 0.25 16 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "18" 2024-02-05 2024-02-19 0.3 17.7 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "18" 2024-02-05 2024-02-19 0.35 19 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "18" 2024-02-05 2024-02-19 0.4 20.6 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "18" 2024-02-05 2024-02-19 0.45 21 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "18" 2024-02-05 2024-02-19 0.5 21.5 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "18" 2024-02-05 2024-02-19 0.55 23.45 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "18" 2024-02-05 2024-02-19 0.6 25.4 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "18" 2024-02-05 2024-02-19 0.65 27 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "18" 2024-02-05 2024-02-19 0.7 28 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "18" 2024-02-05 2024-02-19 0.75 29 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "18" 2024-02-05 2024-02-19 0.8 31.2 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "18" 2024-02-05 2024-02-19 0.85 36 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "18" 2024-02-05 2024-02-19 0.9 39 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "18" 2024-02-05 2024-02-19 0.95 42.15 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "18" 2024-02-05 2024-02-19 0.975 47.525 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "18" 2024-02-05 2024-02-19 0.99 50.06 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "18" 2024-02-05 2024-02-20 0.01 8.99 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "18" 2024-02-05 2024-02-20 0.025 10 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "18" 2024-02-05 2024-02-20 0.05 11 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "18" 2024-02-05 2024-02-20 0.1 13 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "18" 2024-02-05 2024-02-20 0.15 14 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "18" 2024-02-05 2024-02-20 0.2 16 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "18" 2024-02-05 2024-02-20 0.25 17 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "18" 2024-02-05 2024-02-20 0.3 18 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "18" 2024-02-05 2024-02-20 0.35 19 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "18" 2024-02-05 2024-02-20 0.4 21 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "18" 2024-02-05 2024-02-20 0.45 21 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "18" 2024-02-05 2024-02-20 0.5 23 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "18" 2024-02-05 2024-02-20 0.55 23.45 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "18" 2024-02-05 2024-02-20 0.6 26 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "18" 2024-02-05 2024-02-20 0.65 27 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "18" 2024-02-05 2024-02-20 0.7 28.3 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "18" 2024-02-05 2024-02-20 0.75 30.25 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "18" 2024-02-05 2024-02-20 0.8 33.2 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "18" 2024-02-05 2024-02-20 0.85 36.15 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "18" 2024-02-05 2024-02-20 0.9 38.1 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "18" 2024-02-05 2024-02-20 0.95 44.25 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "18" 2024-02-05 2024-02-20 0.975 51.05 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "18" 2024-02-05 2024-02-20 0.99 70.03 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "18" 2024-02-05 2024-02-21 0.01 5.99 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "18" 2024-02-05 2024-02-21 0.025 7.95 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "18" 2024-02-05 2024-02-21 0.05 10 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "18" 2024-02-05 2024-02-21 0.1 11.9 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "18" 2024-02-05 2024-02-21 0.15 13 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "18" 2024-02-05 2024-02-21 0.2 14 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "18" 2024-02-05 2024-02-21 0.25 15 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "18" 2024-02-05 2024-02-21 0.3 16.7 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "18" 2024-02-05 2024-02-21 0.35 17.65 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "18" 2024-02-05 2024-02-21 0.4 19 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "18" 2024-02-05 2024-02-21 0.45 20 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "18" 2024-02-05 2024-02-21 0.5 21 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "18" 2024-02-05 2024-02-21 0.55 23 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "18" 2024-02-05 2024-02-21 0.6 25 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "18" 2024-02-05 2024-02-21 0.65 26 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "18" 2024-02-05 2024-02-21 0.7 29 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "18" 2024-02-05 2024-02-21 0.75 31 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "18" 2024-02-05 2024-02-21 0.8 32.2 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "18" 2024-02-05 2024-02-21 0.85 35 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "18" 2024-02-05 2024-02-21 0.9 38.1 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "18" 2024-02-05 2024-02-21 0.95 41.1 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "18" 2024-02-05 2024-02-21 0.975 47.6749999999999 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "18" 2024-02-05 2024-02-21 0.99 64.07 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "18" 2024-02-05 2024-02-22 0.01 6.97 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "18" 2024-02-05 2024-02-22 0.025 7 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "18" 2024-02-05 2024-02-22 0.05 8 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "18" 2024-02-05 2024-02-22 0.1 11 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "18" 2024-02-05 2024-02-22 0.15 12 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "18" 2024-02-05 2024-02-22 0.2 14 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "18" 2024-02-05 2024-02-22 0.25 15 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "18" 2024-02-05 2024-02-22 0.3 16 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "18" 2024-02-05 2024-02-22 0.35 17.65 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "18" 2024-02-05 2024-02-22 0.4 19 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "18" 2024-02-05 2024-02-22 0.45 20 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "18" 2024-02-05 2024-02-22 0.5 21 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "18" 2024-02-05 2024-02-22 0.55 21.45 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "18" 2024-02-05 2024-02-22 0.6 24 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "18" 2024-02-05 2024-02-22 0.65 26 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "18" 2024-02-05 2024-02-22 0.7 27.3 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "18" 2024-02-05 2024-02-22 0.75 29 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "18" 2024-02-05 2024-02-22 0.8 30 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "18" 2024-02-05 2024-02-22 0.85 31 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "18" 2024-02-05 2024-02-22 0.9 35.1 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "18" 2024-02-05 2024-02-22 0.95 40.05 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "18" 2024-02-05 2024-02-22 0.975 43.525 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "18" 2024-02-05 2024-02-22 0.99 51.04 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "18" 2024-02-05 2024-02-23 0.01 5.99 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "18" 2024-02-05 2024-02-23 0.025 7 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "18" 2024-02-05 2024-02-23 0.05 8 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "18" 2024-02-05 2024-02-23 0.1 9 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "18" 2024-02-05 2024-02-23 0.15 10 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "18" 2024-02-05 2024-02-23 0.2 11 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "18" 2024-02-05 2024-02-23 0.25 12 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "18" 2024-02-05 2024-02-23 0.3 13 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "18" 2024-02-05 2024-02-23 0.35 14 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "18" 2024-02-05 2024-02-23 0.4 15 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "18" 2024-02-05 2024-02-23 0.45 15.55 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "18" 2024-02-05 2024-02-23 0.5 17 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "18" 2024-02-05 2024-02-23 0.55 17 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "18" 2024-02-05 2024-02-23 0.6 19 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "18" 2024-02-05 2024-02-23 0.65 19.35 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "18" 2024-02-05 2024-02-23 0.7 21 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "18" 2024-02-05 2024-02-23 0.75 21 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "18" 2024-02-05 2024-02-23 0.8 23 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "18" 2024-02-05 2024-02-23 0.85 24.45 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "18" 2024-02-05 2024-02-23 0.9 30.1 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "18" 2024-02-05 2024-02-23 0.95 34.05 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "18" 2024-02-05 2024-02-23 0.975 38.1 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "18" 2024-02-05 2024-02-23 0.99 46.1000000000001 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "18" 2024-02-05 2024-02-24 0.01 4 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "18" 2024-02-05 2024-02-24 0.025 5 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "18" 2024-02-05 2024-02-24 0.05 6 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "18" 2024-02-05 2024-02-24 0.1 7 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "18" 2024-02-05 2024-02-24 0.15 8 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "18" 2024-02-05 2024-02-24 0.2 9.8 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "18" 2024-02-05 2024-02-24 0.25 10 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "18" 2024-02-05 2024-02-24 0.3 11 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "18" 2024-02-05 2024-02-24 0.35 12 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "18" 2024-02-05 2024-02-24 0.4 13 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "18" 2024-02-05 2024-02-24 0.45 13 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "18" 2024-02-05 2024-02-24 0.5 14 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "18" 2024-02-05 2024-02-24 0.55 16 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "18" 2024-02-05 2024-02-24 0.6 16.4 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "18" 2024-02-05 2024-02-24 0.65 19 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "18" 2024-02-05 2024-02-24 0.7 20 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "18" 2024-02-05 2024-02-24 0.75 20.25 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "18" 2024-02-05 2024-02-24 0.8 21 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "18" 2024-02-05 2024-02-24 0.85 23 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "18" 2024-02-05 2024-02-24 0.9 26.1 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "18" 2024-02-05 2024-02-24 0.95 33 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "18" 2024-02-05 2024-02-24 0.975 36.575 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "18" 2024-02-05 2024-02-24 0.99 51.1000000000001 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "18" 2024-02-05 2024-02-25 0.01 2.99 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "18" 2024-02-05 2024-02-25 0.025 4.475 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "18" 2024-02-05 2024-02-25 0.05 5.95 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "18" 2024-02-05 2024-02-25 0.1 8 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "18" 2024-02-05 2024-02-25 0.15 9 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "18" 2024-02-05 2024-02-25 0.2 10.8 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "18" 2024-02-05 2024-02-25 0.25 12 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "18" 2024-02-05 2024-02-25 0.3 13 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "18" 2024-02-05 2024-02-25 0.35 14 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "18" 2024-02-05 2024-02-25 0.4 15.6 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "18" 2024-02-05 2024-02-25 0.45 17.55 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "18" 2024-02-05 2024-02-25 0.5 18 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "18" 2024-02-05 2024-02-25 0.55 19.45 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "18" 2024-02-05 2024-02-25 0.6 21 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "18" 2024-02-05 2024-02-25 0.65 22 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "18" 2024-02-05 2024-02-25 0.7 23.3 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "18" 2024-02-05 2024-02-25 0.75 25.25 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "18" 2024-02-05 2024-02-25 0.8 27.2 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "18" 2024-02-05 2024-02-25 0.85 29.15 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "18" 2024-02-05 2024-02-25 0.9 32 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "18" 2024-02-05 2024-02-25 0.95 38 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "18" 2024-02-05 2024-02-25 0.975 42.625 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "18" 2024-02-05 2024-02-25 0.99 51.04 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "18" 2024-02-05 2024-02-26 0.01 2.98 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "18" 2024-02-05 2024-02-26 0.025 4.475 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "18" 2024-02-05 2024-02-26 0.05 6 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "18" 2024-02-05 2024-02-26 0.1 7 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "18" 2024-02-05 2024-02-26 0.15 9 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "18" 2024-02-05 2024-02-26 0.2 10 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "18" 2024-02-05 2024-02-26 0.25 11.75 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "18" 2024-02-05 2024-02-26 0.3 13.7 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "18" 2024-02-05 2024-02-26 0.35 15 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "18" 2024-02-05 2024-02-26 0.4 17 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "18" 2024-02-05 2024-02-26 0.45 18 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "18" 2024-02-05 2024-02-26 0.5 20 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "18" 2024-02-05 2024-02-26 0.55 20.45 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "18" 2024-02-05 2024-02-26 0.6 21 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "18" 2024-02-05 2024-02-26 0.65 23 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "18" 2024-02-05 2024-02-26 0.7 24 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "18" 2024-02-05 2024-02-26 0.75 25 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "18" 2024-02-05 2024-02-26 0.8 27 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "18" 2024-02-05 2024-02-26 0.85 30 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "18" 2024-02-05 2024-02-26 0.9 34 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "18" 2024-02-05 2024-02-26 0.95 40.05 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "18" 2024-02-05 2024-02-26 0.975 47.625 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "18" 2024-02-05 2024-02-26 0.99 57.1500000000001 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "18" 2024-02-05 2024-02-27 0.01 5 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "18" 2024-02-05 2024-02-27 0.025 5.475 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "18" 2024-02-05 2024-02-27 0.05 7.95 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "18" 2024-02-05 2024-02-27 0.1 9 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "18" 2024-02-05 2024-02-27 0.15 10.85 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "18" 2024-02-05 2024-02-27 0.2 12 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "18" 2024-02-05 2024-02-27 0.25 13 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "18" 2024-02-05 2024-02-27 0.3 14 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "18" 2024-02-05 2024-02-27 0.35 15 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "18" 2024-02-05 2024-02-27 0.4 16 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "18" 2024-02-05 2024-02-27 0.45 17 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "18" 2024-02-05 2024-02-27 0.5 19 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "18" 2024-02-05 2024-02-27 0.55 20 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "18" 2024-02-05 2024-02-27 0.6 20.4 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "18" 2024-02-05 2024-02-27 0.65 21 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "18" 2024-02-05 2024-02-27 0.7 23.6 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "18" 2024-02-05 2024-02-27 0.75 26 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "18" 2024-02-05 2024-02-27 0.8 28.2 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "18" 2024-02-05 2024-02-27 0.85 32 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "18" 2024-02-05 2024-02-27 0.9 35 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "18" 2024-02-05 2024-02-27 0.95 42 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "18" 2024-02-05 2024-02-27 0.975 53.4999999999998 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "18" 2024-02-05 2024-02-27 0.99 64.09 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "18" 2024-02-05 2024-02-28 0.01 3.99 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "18" 2024-02-05 2024-02-28 0.025 4.475 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "18" 2024-02-05 2024-02-28 0.05 6 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "18" 2024-02-05 2024-02-28 0.1 8 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "18" 2024-02-05 2024-02-28 0.15 9 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "18" 2024-02-05 2024-02-28 0.2 10 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "18" 2024-02-05 2024-02-28 0.25 11 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "18" 2024-02-05 2024-02-28 0.3 12.7 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "18" 2024-02-05 2024-02-28 0.35 14 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "18" 2024-02-05 2024-02-28 0.4 15.6 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "18" 2024-02-05 2024-02-28 0.45 17 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "18" 2024-02-05 2024-02-28 0.5 17 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "18" 2024-02-05 2024-02-28 0.55 18 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "18" 2024-02-05 2024-02-28 0.6 20 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "18" 2024-02-05 2024-02-28 0.65 21 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "18" 2024-02-05 2024-02-28 0.7 22.3 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "18" 2024-02-05 2024-02-28 0.75 23.75 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "18" 2024-02-05 2024-02-28 0.8 27 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "18" 2024-02-05 2024-02-28 0.85 29.3 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "18" 2024-02-05 2024-02-28 0.9 36.2 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "18" 2024-02-05 2024-02-28 0.95 43.2 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "18" 2024-02-05 2024-02-28 0.975 53.525 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "18" 2024-02-05 2024-02-28 0.99 57.1300000000001 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "18" 2024-02-05 2024-02-29 0.01 2.98 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "18" 2024-02-05 2024-02-29 0.025 4 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "18" 2024-02-05 2024-02-29 0.05 6.95 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "18" 2024-02-05 2024-02-29 0.1 8 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "18" 2024-02-05 2024-02-29 0.15 8 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "18" 2024-02-05 2024-02-29 0.2 9.8 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "18" 2024-02-05 2024-02-29 0.25 11 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "18" 2024-02-05 2024-02-29 0.3 12.7 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "18" 2024-02-05 2024-02-29 0.35 13 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "18" 2024-02-05 2024-02-29 0.4 13.6 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "18" 2024-02-05 2024-02-29 0.45 14.55 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "18" 2024-02-05 2024-02-29 0.5 15.5 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "18" 2024-02-05 2024-02-29 0.55 16.45 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "18" 2024-02-05 2024-02-29 0.6 19 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "18" 2024-02-05 2024-02-29 0.65 20 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "18" 2024-02-05 2024-02-29 0.7 21 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "18" 2024-02-05 2024-02-29 0.75 23 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "18" 2024-02-05 2024-02-29 0.8 25 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "18" 2024-02-05 2024-02-29 0.85 32 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "18" 2024-02-05 2024-02-29 0.9 36 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "18" 2024-02-05 2024-02-29 0.95 43 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "18" 2024-02-05 2024-02-29 0.975 47.05 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "18" 2024-02-05 2024-02-29 0.99 60.1300000000001 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "18" 2024-02-05 2024-03-01 0.01 1.99 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "18" 2024-02-05 2024-03-01 0.025 2.475 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "18" 2024-02-05 2024-03-01 0.05 3.95 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "18" 2024-02-05 2024-03-01 0.1 5 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "18" 2024-02-05 2024-03-01 0.15 6.85 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "18" 2024-02-05 2024-03-01 0.2 7 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "18" 2024-02-05 2024-03-01 0.25 8.75 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "18" 2024-02-05 2024-03-01 0.3 10 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "18" 2024-02-05 2024-03-01 0.35 11 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "18" 2024-02-05 2024-03-01 0.4 11 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "18" 2024-02-05 2024-03-01 0.45 12 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "18" 2024-02-05 2024-03-01 0.5 13.5 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "18" 2024-02-05 2024-03-01 0.55 14.45 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "18" 2024-02-05 2024-03-01 0.6 16 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "18" 2024-02-05 2024-03-01 0.65 17 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "18" 2024-02-05 2024-03-01 0.7 19 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "18" 2024-02-05 2024-03-01 0.75 20 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "18" 2024-02-05 2024-03-01 0.8 22 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "18" 2024-02-05 2024-03-01 0.85 23.3 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "18" 2024-02-05 2024-03-01 0.9 31.2 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "18" 2024-02-05 2024-03-01 0.95 35.1 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "18" 2024-02-05 2024-03-01 0.975 40.625 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "18" 2024-02-05 2024-03-01 0.99 46.1000000000001 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "18" 2024-02-05 2024-03-02 0.01 2.98 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "18" 2024-02-05 2024-03-02 0.025 3 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "18" 2024-02-05 2024-03-02 0.05 4 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "18" 2024-02-05 2024-03-02 0.1 5 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "18" 2024-02-05 2024-03-02 0.15 6 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "18" 2024-02-05 2024-03-02 0.2 7 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "18" 2024-02-05 2024-03-02 0.25 8 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "18" 2024-02-05 2024-03-02 0.3 9 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "18" 2024-02-05 2024-03-02 0.35 10 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "18" 2024-02-05 2024-03-02 0.4 11 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "18" 2024-02-05 2024-03-02 0.45 12 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "18" 2024-02-05 2024-03-02 0.5 12.5 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "18" 2024-02-05 2024-03-02 0.55 13.45 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "18" 2024-02-05 2024-03-02 0.6 15 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "18" 2024-02-05 2024-03-02 0.65 16 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "18" 2024-02-05 2024-03-02 0.7 17 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "18" 2024-02-05 2024-03-02 0.75 18.25 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "18" 2024-02-05 2024-03-02 0.8 20.2 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "18" 2024-02-05 2024-03-02 0.85 23.15 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "18" 2024-02-05 2024-03-02 0.9 31 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "18" 2024-02-05 2024-03-02 0.95 36.05 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "18" 2024-02-05 2024-03-02 0.975 43.525 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "18" 2024-02-05 2024-03-02 0.99 45.03 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "18" 2024-02-05 2024-03-03 0.01 1.99 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "18" 2024-02-05 2024-03-03 0.025 3 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "18" 2024-02-05 2024-03-03 0.05 3.95 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "18" 2024-02-05 2024-03-03 0.1 5 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "18" 2024-02-05 2024-03-03 0.15 6 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "18" 2024-02-05 2024-03-03 0.2 7.8 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "18" 2024-02-05 2024-03-03 0.25 9 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "18" 2024-02-05 2024-03-03 0.3 10 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "18" 2024-02-05 2024-03-03 0.35 11 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "18" 2024-02-05 2024-03-03 0.4 12 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "18" 2024-02-05 2024-03-03 0.45 12 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "18" 2024-02-05 2024-03-03 0.5 13 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "18" 2024-02-05 2024-03-03 0.55 14.45 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "18" 2024-02-05 2024-03-03 0.6 16.4 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "18" 2024-02-05 2024-03-03 0.65 18.35 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "18" 2024-02-05 2024-03-03 0.7 20 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "18" 2024-02-05 2024-03-03 0.75 22.5 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "18" 2024-02-05 2024-03-03 0.8 25 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "18" 2024-02-05 2024-03-03 0.85 29.15 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "18" 2024-02-05 2024-03-03 0.9 34.1 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "18" 2024-02-05 2024-03-03 0.95 46.05 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "18" 2024-02-05 2024-03-03 0.975 49.575 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "18" 2024-02-05 2024-03-03 0.99 57.04 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "18" 2024-02-05 2024-03-04 0.01 1.99 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "18" 2024-02-05 2024-03-04 0.025 3 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "18" 2024-02-05 2024-03-04 0.05 3.95 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "18" 2024-02-05 2024-03-04 0.1 5 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "18" 2024-02-05 2024-03-04 0.15 6.85 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "18" 2024-02-05 2024-03-04 0.2 8 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "18" 2024-02-05 2024-03-04 0.25 10 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "18" 2024-02-05 2024-03-04 0.3 11 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "18" 2024-02-05 2024-03-04 0.35 12 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "18" 2024-02-05 2024-03-04 0.4 12.6 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "18" 2024-02-05 2024-03-04 0.45 14 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "18" 2024-02-05 2024-03-04 0.5 14.5 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "18" 2024-02-05 2024-03-04 0.55 16 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "18" 2024-02-05 2024-03-04 0.6 17 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "18" 2024-02-05 2024-03-04 0.65 18 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "18" 2024-02-05 2024-03-04 0.7 19.3 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "18" 2024-02-05 2024-03-04 0.75 22 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "18" 2024-02-05 2024-03-04 0.8 26.4 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "18" 2024-02-05 2024-03-04 0.85 29.15 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "18" 2024-02-05 2024-03-04 0.9 33 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "18" 2024-02-05 2024-03-04 0.95 42.25 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "18" 2024-02-05 2024-03-04 0.975 52.05 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "18" 2024-02-05 2024-03-04 0.99 65.03 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "20" 2024-02-05 2024-02-06 0.01 3.99 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "20" 2024-02-05 2024-02-06 0.025 4.475 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "20" 2024-02-05 2024-02-06 0.05 5 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "20" 2024-02-05 2024-02-06 0.1 7 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "20" 2024-02-05 2024-02-06 0.15 7 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "20" 2024-02-05 2024-02-06 0.2 8 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "20" 2024-02-05 2024-02-06 0.25 8 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "20" 2024-02-05 2024-02-06 0.3 9.7 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "20" 2024-02-05 2024-02-06 0.35 10 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "20" 2024-02-05 2024-02-06 0.4 10 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "20" 2024-02-05 2024-02-06 0.45 11 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "20" 2024-02-05 2024-02-06 0.5 12 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "20" 2024-02-05 2024-02-06 0.55 12 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "20" 2024-02-05 2024-02-06 0.6 13 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "20" 2024-02-05 2024-02-06 0.65 13.35 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "20" 2024-02-05 2024-02-06 0.7 14 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "20" 2024-02-05 2024-02-06 0.75 14.25 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "20" 2024-02-05 2024-02-06 0.8 16 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "20" 2024-02-05 2024-02-06 0.85 18 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "20" 2024-02-05 2024-02-06 0.9 20 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "20" 2024-02-05 2024-02-06 0.95 20.05 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "20" 2024-02-05 2024-02-06 0.975 22.05 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "20" 2024-02-05 2024-02-06 0.99 23.01 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "20" 2024-02-05 2024-02-07 0.01 4 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "20" 2024-02-05 2024-02-07 0.025 4.95 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "20" 2024-02-05 2024-02-07 0.05 6.95 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "20" 2024-02-05 2024-02-07 0.1 7 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "20" 2024-02-05 2024-02-07 0.15 8 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "20" 2024-02-05 2024-02-07 0.2 8.8 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "20" 2024-02-05 2024-02-07 0.25 9 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "20" 2024-02-05 2024-02-07 0.3 10 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "20" 2024-02-05 2024-02-07 0.35 11 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "20" 2024-02-05 2024-02-07 0.4 11 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "20" 2024-02-05 2024-02-07 0.45 12 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "20" 2024-02-05 2024-02-07 0.5 12 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "20" 2024-02-05 2024-02-07 0.55 13 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "20" 2024-02-05 2024-02-07 0.6 13 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "20" 2024-02-05 2024-02-07 0.65 14.35 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "20" 2024-02-05 2024-02-07 0.7 15 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "20" 2024-02-05 2024-02-07 0.75 16 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "20" 2024-02-05 2024-02-07 0.8 16.2 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "20" 2024-02-05 2024-02-07 0.85 18 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "20" 2024-02-05 2024-02-07 0.9 20 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "20" 2024-02-05 2024-02-07 0.95 22 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "20" 2024-02-05 2024-02-07 0.975 25.05 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "20" 2024-02-05 2024-02-07 0.99 26.09 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "20" 2024-02-05 2024-02-08 0.01 3 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "20" 2024-02-05 2024-02-08 0.025 3.475 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "20" 2024-02-05 2024-02-08 0.05 4.95 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "20" 2024-02-05 2024-02-08 0.1 5.9 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "20" 2024-02-05 2024-02-08 0.15 6 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "20" 2024-02-05 2024-02-08 0.2 7 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "20" 2024-02-05 2024-02-08 0.25 7 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "20" 2024-02-05 2024-02-08 0.3 8 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "20" 2024-02-05 2024-02-08 0.35 9 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "20" 2024-02-05 2024-02-08 0.4 9 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "20" 2024-02-05 2024-02-08 0.45 9.55 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "20" 2024-02-05 2024-02-08 0.5 10 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "20" 2024-02-05 2024-02-08 0.55 11 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "20" 2024-02-05 2024-02-08 0.6 11 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "20" 2024-02-05 2024-02-08 0.65 12 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "20" 2024-02-05 2024-02-08 0.7 13 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "20" 2024-02-05 2024-02-08 0.75 14 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "20" 2024-02-05 2024-02-08 0.8 14 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "20" 2024-02-05 2024-02-08 0.85 15 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "20" 2024-02-05 2024-02-08 0.9 16.1 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "20" 2024-02-05 2024-02-08 0.95 18 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "20" 2024-02-05 2024-02-08 0.975 20 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "20" 2024-02-05 2024-02-08 0.99 22 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "20" 2024-02-05 2024-02-09 0.01 4 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "20" 2024-02-05 2024-02-09 0.025 4 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "20" 2024-02-05 2024-02-09 0.05 5 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "20" 2024-02-05 2024-02-09 0.1 6 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "20" 2024-02-05 2024-02-09 0.15 7 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "20" 2024-02-05 2024-02-09 0.2 7 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "20" 2024-02-05 2024-02-09 0.25 8 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "20" 2024-02-05 2024-02-09 0.3 8 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "20" 2024-02-05 2024-02-09 0.35 9 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "20" 2024-02-05 2024-02-09 0.4 9 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "20" 2024-02-05 2024-02-09 0.45 10 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "20" 2024-02-05 2024-02-09 0.5 11 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "20" 2024-02-05 2024-02-09 0.55 11 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "20" 2024-02-05 2024-02-09 0.6 12 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "20" 2024-02-05 2024-02-09 0.65 12 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "20" 2024-02-05 2024-02-09 0.7 13 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "20" 2024-02-05 2024-02-09 0.75 14 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "20" 2024-02-05 2024-02-09 0.8 15 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "20" 2024-02-05 2024-02-09 0.85 16 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "20" 2024-02-05 2024-02-09 0.9 16.1 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "20" 2024-02-05 2024-02-09 0.95 18 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "20" 2024-02-05 2024-02-09 0.975 22.525 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "20" 2024-02-05 2024-02-09 0.99 24.01 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "20" 2024-02-05 2024-02-10 0.01 3 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "20" 2024-02-05 2024-02-10 0.025 3 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "20" 2024-02-05 2024-02-10 0.05 3 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "20" 2024-02-05 2024-02-10 0.1 4 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "20" 2024-02-05 2024-02-10 0.15 5 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "20" 2024-02-05 2024-02-10 0.2 5 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "20" 2024-02-05 2024-02-10 0.25 6 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "20" 2024-02-05 2024-02-10 0.3 6 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "20" 2024-02-05 2024-02-10 0.35 7 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "20" 2024-02-05 2024-02-10 0.4 7 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "20" 2024-02-05 2024-02-10 0.45 8 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "20" 2024-02-05 2024-02-10 0.5 8 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "20" 2024-02-05 2024-02-10 0.55 9 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "20" 2024-02-05 2024-02-10 0.6 9 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "20" 2024-02-05 2024-02-10 0.65 9 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "20" 2024-02-05 2024-02-10 0.7 10 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "20" 2024-02-05 2024-02-10 0.75 11 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "20" 2024-02-05 2024-02-10 0.8 11.2 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "20" 2024-02-05 2024-02-10 0.85 12 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "20" 2024-02-05 2024-02-10 0.9 13 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "20" 2024-02-05 2024-02-10 0.95 14.05 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "20" 2024-02-05 2024-02-10 0.975 16.05 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "20" 2024-02-05 2024-02-10 0.99 17 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "20" 2024-02-05 2024-02-11 0.01 1.98 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "20" 2024-02-05 2024-02-11 0.025 3.475 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "20" 2024-02-05 2024-02-11 0.05 4 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "20" 2024-02-05 2024-02-11 0.1 5 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "20" 2024-02-05 2024-02-11 0.15 5.85 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "20" 2024-02-05 2024-02-11 0.2 6 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "20" 2024-02-05 2024-02-11 0.25 7 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "20" 2024-02-05 2024-02-11 0.3 7 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "20" 2024-02-05 2024-02-11 0.35 7 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "20" 2024-02-05 2024-02-11 0.4 8 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "20" 2024-02-05 2024-02-11 0.45 8 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "20" 2024-02-05 2024-02-11 0.5 9 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "20" 2024-02-05 2024-02-11 0.55 9 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "20" 2024-02-05 2024-02-11 0.6 10 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "20" 2024-02-05 2024-02-11 0.65 10 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "20" 2024-02-05 2024-02-11 0.7 11 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "20" 2024-02-05 2024-02-11 0.75 12 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "20" 2024-02-05 2024-02-11 0.8 13 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "20" 2024-02-05 2024-02-11 0.85 14 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "20" 2024-02-05 2024-02-11 0.9 14 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "20" 2024-02-05 2024-02-11 0.95 17 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "20" 2024-02-05 2024-02-11 0.975 17 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "20" 2024-02-05 2024-02-11 0.99 18.01 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "20" 2024-02-05 2024-02-12 0.01 3 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "20" 2024-02-05 2024-02-12 0.025 3 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "20" 2024-02-05 2024-02-12 0.05 4 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "20" 2024-02-05 2024-02-12 0.1 5.9 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "20" 2024-02-05 2024-02-12 0.15 6.85 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "20" 2024-02-05 2024-02-12 0.2 7 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "20" 2024-02-05 2024-02-12 0.25 7.75 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "20" 2024-02-05 2024-02-12 0.3 8 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "20" 2024-02-05 2024-02-12 0.35 8 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "20" 2024-02-05 2024-02-12 0.4 9 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "20" 2024-02-05 2024-02-12 0.45 9 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "20" 2024-02-05 2024-02-12 0.5 9.5 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "20" 2024-02-05 2024-02-12 0.55 10 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "20" 2024-02-05 2024-02-12 0.6 11 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "20" 2024-02-05 2024-02-12 0.65 11.35 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "20" 2024-02-05 2024-02-12 0.7 13 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "20" 2024-02-05 2024-02-12 0.75 14 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "20" 2024-02-05 2024-02-12 0.8 14.2 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "20" 2024-02-05 2024-02-12 0.85 16.15 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "20" 2024-02-05 2024-02-12 0.9 17 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "20" 2024-02-05 2024-02-12 0.95 20 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "20" 2024-02-05 2024-02-12 0.975 22.525 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "20" 2024-02-05 2024-02-12 0.99 23.01 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "20" 2024-02-05 2024-02-13 0.01 1 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "20" 2024-02-05 2024-02-13 0.025 1.475 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "20" 2024-02-05 2024-02-13 0.05 3 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "20" 2024-02-05 2024-02-13 0.1 5 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "20" 2024-02-05 2024-02-13 0.15 5.85 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "20" 2024-02-05 2024-02-13 0.2 6 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "20" 2024-02-05 2024-02-13 0.25 7 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "20" 2024-02-05 2024-02-13 0.3 7 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "20" 2024-02-05 2024-02-13 0.35 8 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "20" 2024-02-05 2024-02-13 0.4 8 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "20" 2024-02-05 2024-02-13 0.45 9.55 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "20" 2024-02-05 2024-02-13 0.5 10 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "20" 2024-02-05 2024-02-13 0.55 11 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "20" 2024-02-05 2024-02-13 0.6 12 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "20" 2024-02-05 2024-02-13 0.65 12 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "20" 2024-02-05 2024-02-13 0.7 13 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "20" 2024-02-05 2024-02-13 0.75 14 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "20" 2024-02-05 2024-02-13 0.8 15 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "20" 2024-02-05 2024-02-13 0.85 16 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "20" 2024-02-05 2024-02-13 0.9 16.1 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "20" 2024-02-05 2024-02-13 0.95 20 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "20" 2024-02-05 2024-02-13 0.975 23.525 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "20" 2024-02-05 2024-02-13 0.99 24.04 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "20" 2024-02-05 2024-02-14 0.01 3.99 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "20" 2024-02-05 2024-02-14 0.025 4 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "20" 2024-02-05 2024-02-14 0.05 4 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "20" 2024-02-05 2024-02-14 0.1 5 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "20" 2024-02-05 2024-02-14 0.15 5 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "20" 2024-02-05 2024-02-14 0.2 6 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "20" 2024-02-05 2024-02-14 0.25 6.75 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "20" 2024-02-05 2024-02-14 0.3 7 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "20" 2024-02-05 2024-02-14 0.35 8 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "20" 2024-02-05 2024-02-14 0.4 9 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "20" 2024-02-05 2024-02-14 0.45 9 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "20" 2024-02-05 2024-02-14 0.5 9.5 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "20" 2024-02-05 2024-02-14 0.55 10 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "20" 2024-02-05 2024-02-14 0.6 10 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "20" 2024-02-05 2024-02-14 0.65 11 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "20" 2024-02-05 2024-02-14 0.7 12 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "20" 2024-02-05 2024-02-14 0.75 12.25 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "20" 2024-02-05 2024-02-14 0.8 13 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "20" 2024-02-05 2024-02-14 0.85 14.15 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "20" 2024-02-05 2024-02-14 0.9 17 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "20" 2024-02-05 2024-02-14 0.95 22 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "20" 2024-02-05 2024-02-14 0.975 23 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "20" 2024-02-05 2024-02-14 0.99 24.08 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "20" 2024-02-05 2024-02-15 0.01 2 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "20" 2024-02-05 2024-02-15 0.025 3 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "20" 2024-02-05 2024-02-15 0.05 3 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "20" 2024-02-05 2024-02-15 0.1 4 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "20" 2024-02-05 2024-02-15 0.15 5 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "20" 2024-02-05 2024-02-15 0.2 6 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "20" 2024-02-05 2024-02-15 0.25 6 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "20" 2024-02-05 2024-02-15 0.3 7 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "20" 2024-02-05 2024-02-15 0.35 7 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "20" 2024-02-05 2024-02-15 0.4 7 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "20" 2024-02-05 2024-02-15 0.45 9 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "20" 2024-02-05 2024-02-15 0.5 9 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "20" 2024-02-05 2024-02-15 0.55 9 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "20" 2024-02-05 2024-02-15 0.6 10 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "20" 2024-02-05 2024-02-15 0.65 10 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "20" 2024-02-05 2024-02-15 0.7 10 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "20" 2024-02-05 2024-02-15 0.75 11 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "20" 2024-02-05 2024-02-15 0.8 11 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "20" 2024-02-05 2024-02-15 0.85 12 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "20" 2024-02-05 2024-02-15 0.9 14 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "20" 2024-02-05 2024-02-15 0.95 16.05 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "20" 2024-02-05 2024-02-15 0.975 17.525 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "20" 2024-02-05 2024-02-15 0.99 20.02 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "20" 2024-02-05 2024-02-16 0.01 1.99 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "20" 2024-02-05 2024-02-16 0.025 2.475 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "20" 2024-02-05 2024-02-16 0.05 3 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "20" 2024-02-05 2024-02-16 0.1 3 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "20" 2024-02-05 2024-02-16 0.15 4 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "20" 2024-02-05 2024-02-16 0.2 4 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "20" 2024-02-05 2024-02-16 0.25 5 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "20" 2024-02-05 2024-02-16 0.3 6 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "20" 2024-02-05 2024-02-16 0.35 6 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "20" 2024-02-05 2024-02-16 0.4 7 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "20" 2024-02-05 2024-02-16 0.45 7 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "20" 2024-02-05 2024-02-16 0.5 7.5 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "20" 2024-02-05 2024-02-16 0.55 8 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "20" 2024-02-05 2024-02-16 0.6 9 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "20" 2024-02-05 2024-02-16 0.65 10 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "20" 2024-02-05 2024-02-16 0.7 10.3 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "20" 2024-02-05 2024-02-16 0.75 13 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "20" 2024-02-05 2024-02-16 0.8 14 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "20" 2024-02-05 2024-02-16 0.85 15.15 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "20" 2024-02-05 2024-02-16 0.9 16.1 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "20" 2024-02-05 2024-02-16 0.95 18 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "20" 2024-02-05 2024-02-16 0.975 19.525 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "20" 2024-02-05 2024-02-16 0.99 21.01 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "20" 2024-02-05 2024-02-17 0.01 1.99 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "20" 2024-02-05 2024-02-17 0.025 2 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "20" 2024-02-05 2024-02-17 0.05 2 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "20" 2024-02-05 2024-02-17 0.1 3 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "20" 2024-02-05 2024-02-17 0.15 3 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "20" 2024-02-05 2024-02-17 0.2 4 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "20" 2024-02-05 2024-02-17 0.25 4 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "20" 2024-02-05 2024-02-17 0.3 5 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "20" 2024-02-05 2024-02-17 0.35 6 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "20" 2024-02-05 2024-02-17 0.4 6 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "20" 2024-02-05 2024-02-17 0.45 6.55 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "20" 2024-02-05 2024-02-17 0.5 7 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "20" 2024-02-05 2024-02-17 0.55 7.45 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "20" 2024-02-05 2024-02-17 0.6 8 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "20" 2024-02-05 2024-02-17 0.65 8 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "20" 2024-02-05 2024-02-17 0.7 9 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "20" 2024-02-05 2024-02-17 0.75 9 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "20" 2024-02-05 2024-02-17 0.8 10 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "20" 2024-02-05 2024-02-17 0.85 11.15 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "20" 2024-02-05 2024-02-17 0.9 13 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "20" 2024-02-05 2024-02-17 0.95 15.05 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "20" 2024-02-05 2024-02-17 0.975 16 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "20" 2024-02-05 2024-02-17 0.99 17.05 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "20" 2024-02-05 2024-02-18 0.01 0.99 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "20" 2024-02-05 2024-02-18 0.025 1 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "20" 2024-02-05 2024-02-18 0.05 1 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "20" 2024-02-05 2024-02-18 0.1 3 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "20" 2024-02-05 2024-02-18 0.15 4 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "20" 2024-02-05 2024-02-18 0.2 4 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "20" 2024-02-05 2024-02-18 0.25 4.75 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "20" 2024-02-05 2024-02-18 0.3 5 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "20" 2024-02-05 2024-02-18 0.35 6 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "20" 2024-02-05 2024-02-18 0.4 6 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "20" 2024-02-05 2024-02-18 0.45 6 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "20" 2024-02-05 2024-02-18 0.5 6.5 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "20" 2024-02-05 2024-02-18 0.55 7 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "20" 2024-02-05 2024-02-18 0.6 7 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "20" 2024-02-05 2024-02-18 0.65 7 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "20" 2024-02-05 2024-02-18 0.7 8 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "20" 2024-02-05 2024-02-18 0.75 9 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "20" 2024-02-05 2024-02-18 0.8 9.2 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "20" 2024-02-05 2024-02-18 0.85 12 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "20" 2024-02-05 2024-02-18 0.9 13 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "20" 2024-02-05 2024-02-18 0.95 14 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "20" 2024-02-05 2024-02-18 0.975 15 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "20" 2024-02-05 2024-02-18 0.99 17 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "20" 2024-02-05 2024-02-19 0.01 2 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "20" 2024-02-05 2024-02-19 0.025 2 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "20" 2024-02-05 2024-02-19 0.05 3 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "20" 2024-02-05 2024-02-19 0.1 3 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "20" 2024-02-05 2024-02-19 0.15 4.85 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "20" 2024-02-05 2024-02-19 0.2 5 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "20" 2024-02-05 2024-02-19 0.25 5 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "20" 2024-02-05 2024-02-19 0.3 6 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "20" 2024-02-05 2024-02-19 0.35 6 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "20" 2024-02-05 2024-02-19 0.4 7 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "20" 2024-02-05 2024-02-19 0.45 7 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "20" 2024-02-05 2024-02-19 0.5 8 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "20" 2024-02-05 2024-02-19 0.55 8 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "20" 2024-02-05 2024-02-19 0.6 8.40000000000001 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "20" 2024-02-05 2024-02-19 0.65 9 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "20" 2024-02-05 2024-02-19 0.7 9 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "20" 2024-02-05 2024-02-19 0.75 10.25 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "20" 2024-02-05 2024-02-19 0.8 12 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "20" 2024-02-05 2024-02-19 0.85 13 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "20" 2024-02-05 2024-02-19 0.9 15.1 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "20" 2024-02-05 2024-02-19 0.95 17 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "20" 2024-02-05 2024-02-19 0.975 18.575 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "20" 2024-02-05 2024-02-19 0.99 20.04 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "20" 2024-02-05 2024-02-20 0.01 1 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "20" 2024-02-05 2024-02-20 0.025 1.475 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "20" 2024-02-05 2024-02-20 0.05 2.95 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "20" 2024-02-05 2024-02-20 0.1 3 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "20" 2024-02-05 2024-02-20 0.15 4 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "20" 2024-02-05 2024-02-20 0.2 4 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "20" 2024-02-05 2024-02-20 0.25 5 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "20" 2024-02-05 2024-02-20 0.3 5 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "20" 2024-02-05 2024-02-20 0.35 6 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "20" 2024-02-05 2024-02-20 0.4 6 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "20" 2024-02-05 2024-02-20 0.45 7 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "20" 2024-02-05 2024-02-20 0.5 7 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "20" 2024-02-05 2024-02-20 0.55 7.45 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "20" 2024-02-05 2024-02-20 0.6 8 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "20" 2024-02-05 2024-02-20 0.65 8.35000000000001 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "20" 2024-02-05 2024-02-20 0.7 9 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "20" 2024-02-05 2024-02-20 0.75 10 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "20" 2024-02-05 2024-02-20 0.8 11 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "20" 2024-02-05 2024-02-20 0.85 12 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "20" 2024-02-05 2024-02-20 0.9 14 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "20" 2024-02-05 2024-02-20 0.95 15.05 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "20" 2024-02-05 2024-02-20 0.975 18.575 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "20" 2024-02-05 2024-02-20 0.99 20.04 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "20" 2024-02-05 2024-02-21 0.01 1 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "20" 2024-02-05 2024-02-21 0.025 2 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "20" 2024-02-05 2024-02-21 0.05 2 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "20" 2024-02-05 2024-02-21 0.1 3 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "20" 2024-02-05 2024-02-21 0.15 4 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "20" 2024-02-05 2024-02-21 0.2 5 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "20" 2024-02-05 2024-02-21 0.25 5 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "20" 2024-02-05 2024-02-21 0.3 6 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "20" 2024-02-05 2024-02-21 0.35 6 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "20" 2024-02-05 2024-02-21 0.4 6 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "20" 2024-02-05 2024-02-21 0.45 7 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "20" 2024-02-05 2024-02-21 0.5 7 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "20" 2024-02-05 2024-02-21 0.55 7.45 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "20" 2024-02-05 2024-02-21 0.6 8 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "20" 2024-02-05 2024-02-21 0.65 9 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "20" 2024-02-05 2024-02-21 0.7 10 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "20" 2024-02-05 2024-02-21 0.75 10 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "20" 2024-02-05 2024-02-21 0.8 11 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "20" 2024-02-05 2024-02-21 0.85 12.15 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "20" 2024-02-05 2024-02-21 0.9 13.1 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "20" 2024-02-05 2024-02-21 0.95 21 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "20" 2024-02-05 2024-02-21 0.975 22 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "20" 2024-02-05 2024-02-21 0.99 23 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "20" 2024-02-05 2024-02-22 0.01 1 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "20" 2024-02-05 2024-02-22 0.025 1.475 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "20" 2024-02-05 2024-02-22 0.05 2 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "20" 2024-02-05 2024-02-22 0.1 2 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "20" 2024-02-05 2024-02-22 0.15 3 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "20" 2024-02-05 2024-02-22 0.2 4 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "20" 2024-02-05 2024-02-22 0.25 4 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "20" 2024-02-05 2024-02-22 0.3 4 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "20" 2024-02-05 2024-02-22 0.35 5 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "20" 2024-02-05 2024-02-22 0.4 5 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "20" 2024-02-05 2024-02-22 0.45 6 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "20" 2024-02-05 2024-02-22 0.5 6 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "20" 2024-02-05 2024-02-22 0.55 7 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "20" 2024-02-05 2024-02-22 0.6 7 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "20" 2024-02-05 2024-02-22 0.65 7 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "20" 2024-02-05 2024-02-22 0.7 8 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "20" 2024-02-05 2024-02-22 0.75 9.25000000000001 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "20" 2024-02-05 2024-02-22 0.8 11 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "20" 2024-02-05 2024-02-22 0.85 11 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "20" 2024-02-05 2024-02-22 0.9 12.1 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "20" 2024-02-05 2024-02-22 0.95 18.1 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "20" 2024-02-05 2024-02-22 0.975 22.05 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "20" 2024-02-05 2024-02-22 0.99 24.05 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "20" 2024-02-05 2024-02-23 0.01 0.99 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "20" 2024-02-05 2024-02-23 0.025 1 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "20" 2024-02-05 2024-02-23 0.05 2 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "20" 2024-02-05 2024-02-23 0.1 2 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "20" 2024-02-05 2024-02-23 0.15 3 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "20" 2024-02-05 2024-02-23 0.2 3 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "20" 2024-02-05 2024-02-23 0.25 4 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "20" 2024-02-05 2024-02-23 0.3 5 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "20" 2024-02-05 2024-02-23 0.35 5 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "20" 2024-02-05 2024-02-23 0.4 6 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "20" 2024-02-05 2024-02-23 0.45 6.55 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "20" 2024-02-05 2024-02-23 0.5 7 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "20" 2024-02-05 2024-02-23 0.55 8 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "20" 2024-02-05 2024-02-23 0.6 8 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "20" 2024-02-05 2024-02-23 0.65 9 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "20" 2024-02-05 2024-02-23 0.7 9 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "20" 2024-02-05 2024-02-23 0.75 10 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "20" 2024-02-05 2024-02-23 0.8 10 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "20" 2024-02-05 2024-02-23 0.85 11 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "20" 2024-02-05 2024-02-23 0.9 13.1 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "20" 2024-02-05 2024-02-23 0.95 15 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "20" 2024-02-05 2024-02-23 0.975 17.05 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "20" 2024-02-05 2024-02-23 0.99 19.04 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "20" 2024-02-05 2024-02-24 0.01 0 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "20" 2024-02-05 2024-02-24 0.025 0.475 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "20" 2024-02-05 2024-02-24 0.05 1 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "20" 2024-02-05 2024-02-24 0.1 1 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "20" 2024-02-05 2024-02-24 0.15 2 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "20" 2024-02-05 2024-02-24 0.2 2 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "20" 2024-02-05 2024-02-24 0.25 3 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "20" 2024-02-05 2024-02-24 0.3 3 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "20" 2024-02-05 2024-02-24 0.35 4 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "20" 2024-02-05 2024-02-24 0.4 4 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "20" 2024-02-05 2024-02-24 0.45 5 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "20" 2024-02-05 2024-02-24 0.5 6 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "20" 2024-02-05 2024-02-24 0.55 6 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "20" 2024-02-05 2024-02-24 0.6 7 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "20" 2024-02-05 2024-02-24 0.65 7.35000000000001 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "20" 2024-02-05 2024-02-24 0.7 8 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "20" 2024-02-05 2024-02-24 0.75 9.25000000000001 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "20" 2024-02-05 2024-02-24 0.8 10 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "20" 2024-02-05 2024-02-24 0.85 11.15 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "20" 2024-02-05 2024-02-24 0.9 13 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "20" 2024-02-05 2024-02-24 0.95 16 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "20" 2024-02-05 2024-02-24 0.975 19.05 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "20" 2024-02-05 2024-02-24 0.99 22 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "20" 2024-02-05 2024-02-25 0.01 0 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "20" 2024-02-05 2024-02-25 0.025 0 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "20" 2024-02-05 2024-02-25 0.05 1 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "20" 2024-02-05 2024-02-25 0.1 2 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "20" 2024-02-05 2024-02-25 0.15 2 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "20" 2024-02-05 2024-02-25 0.2 2.8 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "20" 2024-02-05 2024-02-25 0.25 3 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "20" 2024-02-05 2024-02-25 0.3 3.7 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "20" 2024-02-05 2024-02-25 0.35 4 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "20" 2024-02-05 2024-02-25 0.4 4.6 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "20" 2024-02-05 2024-02-25 0.45 5 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "20" 2024-02-05 2024-02-25 0.5 6 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "20" 2024-02-05 2024-02-25 0.55 6 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "20" 2024-02-05 2024-02-25 0.6 7 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "20" 2024-02-05 2024-02-25 0.65 7 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "20" 2024-02-05 2024-02-25 0.7 8 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "20" 2024-02-05 2024-02-25 0.75 8 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "20" 2024-02-05 2024-02-25 0.8 9 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "20" 2024-02-05 2024-02-25 0.85 11 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "20" 2024-02-05 2024-02-25 0.9 12 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "20" 2024-02-05 2024-02-25 0.95 14 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "20" 2024-02-05 2024-02-25 0.975 15.05 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "20" 2024-02-05 2024-02-25 0.99 17.03 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "20" 2024-02-05 2024-02-26 0.01 1 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "20" 2024-02-05 2024-02-26 0.025 1 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "20" 2024-02-05 2024-02-26 0.05 2 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "20" 2024-02-05 2024-02-26 0.1 2 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "20" 2024-02-05 2024-02-26 0.15 3 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "20" 2024-02-05 2024-02-26 0.2 3 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "20" 2024-02-05 2024-02-26 0.25 3 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "20" 2024-02-05 2024-02-26 0.3 4 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "20" 2024-02-05 2024-02-26 0.35 4 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "20" 2024-02-05 2024-02-26 0.4 5 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "20" 2024-02-05 2024-02-26 0.45 6 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "20" 2024-02-05 2024-02-26 0.5 7 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "20" 2024-02-05 2024-02-26 0.55 8 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "20" 2024-02-05 2024-02-26 0.6 9 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "20" 2024-02-05 2024-02-26 0.65 9 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "20" 2024-02-05 2024-02-26 0.7 10 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "20" 2024-02-05 2024-02-26 0.75 10 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "20" 2024-02-05 2024-02-26 0.8 10.2 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "20" 2024-02-05 2024-02-26 0.85 12 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "20" 2024-02-05 2024-02-26 0.9 13.2 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "20" 2024-02-05 2024-02-26 0.95 18.05 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "20" 2024-02-05 2024-02-26 0.975 21.05 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "20" 2024-02-05 2024-02-26 0.99 24.08 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "20" 2024-02-05 2024-02-27 0.01 0 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "20" 2024-02-05 2024-02-27 0.025 1 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "20" 2024-02-05 2024-02-27 0.05 1 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "20" 2024-02-05 2024-02-27 0.1 2 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "20" 2024-02-05 2024-02-27 0.15 2 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "20" 2024-02-05 2024-02-27 0.2 3 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "20" 2024-02-05 2024-02-27 0.25 3 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "20" 2024-02-05 2024-02-27 0.3 4 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "20" 2024-02-05 2024-02-27 0.35 4 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "20" 2024-02-05 2024-02-27 0.4 5 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "20" 2024-02-05 2024-02-27 0.45 5 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "20" 2024-02-05 2024-02-27 0.5 5.5 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "20" 2024-02-05 2024-02-27 0.55 6 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "20" 2024-02-05 2024-02-27 0.6 7 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "20" 2024-02-05 2024-02-27 0.65 7 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "20" 2024-02-05 2024-02-27 0.7 8.30000000000001 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "20" 2024-02-05 2024-02-27 0.75 9.25000000000001 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "20" 2024-02-05 2024-02-27 0.8 10 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "20" 2024-02-05 2024-02-27 0.85 11 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "20" 2024-02-05 2024-02-27 0.9 12.1 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "20" 2024-02-05 2024-02-27 0.95 19 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "20" 2024-02-05 2024-02-27 0.975 21.525 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "20" 2024-02-05 2024-02-27 0.99 23.01 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "20" 2024-02-05 2024-02-28 0.01 0.99 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "20" 2024-02-05 2024-02-28 0.025 1.475 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "20" 2024-02-05 2024-02-28 0.05 2 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "20" 2024-02-05 2024-02-28 0.1 2 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "20" 2024-02-05 2024-02-28 0.15 3 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "20" 2024-02-05 2024-02-28 0.2 3 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "20" 2024-02-05 2024-02-28 0.25 4 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "20" 2024-02-05 2024-02-28 0.3 4 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "20" 2024-02-05 2024-02-28 0.35 4 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "20" 2024-02-05 2024-02-28 0.4 5 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "20" 2024-02-05 2024-02-28 0.45 6 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "20" 2024-02-05 2024-02-28 0.5 6.5 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "20" 2024-02-05 2024-02-28 0.55 7 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "20" 2024-02-05 2024-02-28 0.6 8 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "20" 2024-02-05 2024-02-28 0.65 8 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "20" 2024-02-05 2024-02-28 0.7 9 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "20" 2024-02-05 2024-02-28 0.75 10 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "20" 2024-02-05 2024-02-28 0.8 11 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "20" 2024-02-05 2024-02-28 0.85 12 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "20" 2024-02-05 2024-02-28 0.9 14 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "20" 2024-02-05 2024-02-28 0.95 17.1 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "20" 2024-02-05 2024-02-28 0.975 20.525 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "20" 2024-02-05 2024-02-28 0.99 23.1000000000001 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "20" 2024-02-05 2024-02-29 0.01 0 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "20" 2024-02-05 2024-02-29 0.025 1 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "20" 2024-02-05 2024-02-29 0.05 1 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "20" 2024-02-05 2024-02-29 0.1 2 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "20" 2024-02-05 2024-02-29 0.15 2 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "20" 2024-02-05 2024-02-29 0.2 3 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "20" 2024-02-05 2024-02-29 0.25 3 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "20" 2024-02-05 2024-02-29 0.3 4 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "20" 2024-02-05 2024-02-29 0.35 5 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "20" 2024-02-05 2024-02-29 0.4 5 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "20" 2024-02-05 2024-02-29 0.45 6 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "20" 2024-02-05 2024-02-29 0.5 6 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "20" 2024-02-05 2024-02-29 0.55 6 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "20" 2024-02-05 2024-02-29 0.6 7 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "20" 2024-02-05 2024-02-29 0.65 7 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "20" 2024-02-05 2024-02-29 0.7 8 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "20" 2024-02-05 2024-02-29 0.75 9 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "20" 2024-02-05 2024-02-29 0.8 10.2 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "20" 2024-02-05 2024-02-29 0.85 11 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "20" 2024-02-05 2024-02-29 0.9 12.1 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "20" 2024-02-05 2024-02-29 0.95 15.2 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "20" 2024-02-05 2024-02-29 0.975 21.05 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "20" 2024-02-05 2024-02-29 0.99 23.03 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "20" 2024-02-05 2024-03-01 0.01 0 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "20" 2024-02-05 2024-03-01 0.025 0 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "20" 2024-02-05 2024-03-01 0.05 0.95 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "20" 2024-02-05 2024-03-01 0.1 1 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "20" 2024-02-05 2024-03-01 0.15 2 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "20" 2024-02-05 2024-03-01 0.2 2 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "20" 2024-02-05 2024-03-01 0.25 3 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "20" 2024-02-05 2024-03-01 0.3 3 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "20" 2024-02-05 2024-03-01 0.35 3 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "20" 2024-02-05 2024-03-01 0.4 4 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "20" 2024-02-05 2024-03-01 0.45 5 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "20" 2024-02-05 2024-03-01 0.5 5 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "20" 2024-02-05 2024-03-01 0.55 6 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "20" 2024-02-05 2024-03-01 0.6 6 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "20" 2024-02-05 2024-03-01 0.65 7 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "20" 2024-02-05 2024-03-01 0.7 8 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "20" 2024-02-05 2024-03-01 0.75 8 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "20" 2024-02-05 2024-03-01 0.8 9 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "20" 2024-02-05 2024-03-01 0.85 10 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "20" 2024-02-05 2024-03-01 0.9 12 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "20" 2024-02-05 2024-03-01 0.95 14 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "20" 2024-02-05 2024-03-01 0.975 14.525 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "20" 2024-02-05 2024-03-01 0.99 21.03 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "20" 2024-02-05 2024-03-02 0.01 0 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "20" 2024-02-05 2024-03-02 0.025 0.475 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "20" 2024-02-05 2024-03-02 0.05 1 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "20" 2024-02-05 2024-03-02 0.1 1 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "20" 2024-02-05 2024-03-02 0.15 1 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "20" 2024-02-05 2024-03-02 0.2 1 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "20" 2024-02-05 2024-03-02 0.25 2 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "20" 2024-02-05 2024-03-02 0.3 2 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "20" 2024-02-05 2024-03-02 0.35 3 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "20" 2024-02-05 2024-03-02 0.4 3 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "20" 2024-02-05 2024-03-02 0.45 3 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "20" 2024-02-05 2024-03-02 0.5 4 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "20" 2024-02-05 2024-03-02 0.55 4 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "20" 2024-02-05 2024-03-02 0.6 5 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "20" 2024-02-05 2024-03-02 0.65 5 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "20" 2024-02-05 2024-03-02 0.7 6 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "20" 2024-02-05 2024-03-02 0.75 7 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "20" 2024-02-05 2024-03-02 0.8 9 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "20" 2024-02-05 2024-03-02 0.85 9.15000000000001 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "20" 2024-02-05 2024-03-02 0.9 12.1 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "20" 2024-02-05 2024-03-02 0.95 15 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "20" 2024-02-05 2024-03-02 0.975 16.05 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "20" 2024-02-05 2024-03-02 0.99 19.1100000000001 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "20" 2024-02-05 2024-03-03 0.01 0 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "20" 2024-02-05 2024-03-03 0.025 0 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "20" 2024-02-05 2024-03-03 0.05 0.95 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "20" 2024-02-05 2024-03-03 0.1 1 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "20" 2024-02-05 2024-03-03 0.15 1 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "20" 2024-02-05 2024-03-03 0.2 1.8 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "20" 2024-02-05 2024-03-03 0.25 2 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "20" 2024-02-05 2024-03-03 0.3 2 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "20" 2024-02-05 2024-03-03 0.35 3 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "20" 2024-02-05 2024-03-03 0.4 3 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "20" 2024-02-05 2024-03-03 0.45 3 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "20" 2024-02-05 2024-03-03 0.5 4 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "20" 2024-02-05 2024-03-03 0.55 4 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "20" 2024-02-05 2024-03-03 0.6 5 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "20" 2024-02-05 2024-03-03 0.65 5.35000000000001 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "20" 2024-02-05 2024-03-03 0.7 6.30000000000001 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "20" 2024-02-05 2024-03-03 0.75 8 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "20" 2024-02-05 2024-03-03 0.8 9 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "20" 2024-02-05 2024-03-03 0.85 10.15 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "20" 2024-02-05 2024-03-03 0.9 12 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "20" 2024-02-05 2024-03-03 0.95 14.05 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "20" 2024-02-05 2024-03-03 0.975 19.05 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "20" 2024-02-05 2024-03-03 0.99 22 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "20" 2024-02-05 2024-03-04 0.01 0 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "20" 2024-02-05 2024-03-04 0.025 0 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "20" 2024-02-05 2024-03-04 0.05 1 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "20" 2024-02-05 2024-03-04 0.1 1 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "20" 2024-02-05 2024-03-04 0.15 2 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "20" 2024-02-05 2024-03-04 0.2 2 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "20" 2024-02-05 2024-03-04 0.25 3 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "20" 2024-02-05 2024-03-04 0.3 3 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "20" 2024-02-05 2024-03-04 0.35 4 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "20" 2024-02-05 2024-03-04 0.4 4 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "20" 2024-02-05 2024-03-04 0.45 4.55 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "20" 2024-02-05 2024-03-04 0.5 5 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "20" 2024-02-05 2024-03-04 0.55 6 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "20" 2024-02-05 2024-03-04 0.6 7 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "20" 2024-02-05 2024-03-04 0.65 8 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "20" 2024-02-05 2024-03-04 0.7 8.30000000000001 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "20" 2024-02-05 2024-03-04 0.75 10 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "20" 2024-02-05 2024-03-04 0.8 11 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "20" 2024-02-05 2024-03-04 0.85 12 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "20" 2024-02-05 2024-03-04 0.9 14 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "20" 2024-02-05 2024-03-04 0.95 16.05 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "20" 2024-02-05 2024-03-04 0.975 18.05 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "20" 2024-02-05 2024-03-04 0.99 20.06 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "21" 2024-02-05 2024-02-06 0.01 21.98 "quantile" "hospital admissions only" +"1 day ahead inc hosp" "21" 2024-02-05 2024-02-06 0.025 23.475 "quantile" "hospital admissions only" +"1 day ahead inc hosp" "21" 2024-02-05 2024-02-06 0.05 25 "quantile" "hospital admissions only" +"1 day ahead inc hosp" "21" 2024-02-05 2024-02-06 0.1 28 "quantile" "hospital admissions only" +"1 day ahead inc hosp" "21" 2024-02-05 2024-02-06 0.15 29.85 "quantile" "hospital admissions only" +"1 day ahead inc hosp" "21" 2024-02-05 2024-02-06 0.2 30.8 "quantile" "hospital admissions only" +"1 day ahead inc hosp" "21" 2024-02-05 2024-02-06 0.25 31.75 "quantile" "hospital admissions only" +"1 day ahead inc hosp" "21" 2024-02-05 2024-02-06 0.3 33 "quantile" "hospital admissions only" +"1 day ahead inc hosp" "21" 2024-02-05 2024-02-06 0.35 35 "quantile" "hospital admissions only" +"1 day ahead inc hosp" "21" 2024-02-05 2024-02-06 0.4 36 "quantile" "hospital admissions only" +"1 day ahead inc hosp" "21" 2024-02-05 2024-02-06 0.45 38 "quantile" "hospital admissions only" +"1 day ahead inc hosp" "21" 2024-02-05 2024-02-06 0.5 38 "quantile" "hospital admissions only" +"1 day ahead inc hosp" "21" 2024-02-05 2024-02-06 0.55 39 "quantile" "hospital admissions only" +"1 day ahead inc hosp" "21" 2024-02-05 2024-02-06 0.6 39.4 "quantile" "hospital admissions only" +"1 day ahead inc hosp" "21" 2024-02-05 2024-02-06 0.65 41.35 "quantile" "hospital admissions only" +"1 day ahead inc hosp" "21" 2024-02-05 2024-02-06 0.7 43 "quantile" "hospital admissions only" +"1 day ahead inc hosp" "21" 2024-02-05 2024-02-06 0.75 44 "quantile" "hospital admissions only" +"1 day ahead inc hosp" "21" 2024-02-05 2024-02-06 0.8 46 "quantile" "hospital admissions only" +"1 day ahead inc hosp" "21" 2024-02-05 2024-02-06 0.85 48.15 "quantile" "hospital admissions only" +"1 day ahead inc hosp" "21" 2024-02-05 2024-02-06 0.9 51 "quantile" "hospital admissions only" +"1 day ahead inc hosp" "21" 2024-02-05 2024-02-06 0.95 55.05 "quantile" "hospital admissions only" +"1 day ahead inc hosp" "21" 2024-02-05 2024-02-06 0.975 59.1 "quantile" "hospital admissions only" +"1 day ahead inc hosp" "21" 2024-02-05 2024-02-06 0.99 67.01 "quantile" "hospital admissions only" +"2 day ahead inc hosp" "21" 2024-02-05 2024-02-07 0.01 20.97 "quantile" "hospital admissions only" +"2 day ahead inc hosp" "21" 2024-02-05 2024-02-07 0.025 22 "quantile" "hospital admissions only" +"2 day ahead inc hosp" "21" 2024-02-05 2024-02-07 0.05 23 "quantile" "hospital admissions only" +"2 day ahead inc hosp" "21" 2024-02-05 2024-02-07 0.1 25 "quantile" "hospital admissions only" +"2 day ahead inc hosp" "21" 2024-02-05 2024-02-07 0.15 27 "quantile" "hospital admissions only" +"2 day ahead inc hosp" "21" 2024-02-05 2024-02-07 0.2 27 "quantile" "hospital admissions only" +"2 day ahead inc hosp" "21" 2024-02-05 2024-02-07 0.25 28 "quantile" "hospital admissions only" +"2 day ahead inc hosp" "21" 2024-02-05 2024-02-07 0.3 30 "quantile" "hospital admissions only" +"2 day ahead inc hosp" "21" 2024-02-05 2024-02-07 0.35 31 "quantile" "hospital admissions only" +"2 day ahead inc hosp" "21" 2024-02-05 2024-02-07 0.4 31.6 "quantile" "hospital admissions only" +"2 day ahead inc hosp" "21" 2024-02-05 2024-02-07 0.45 32 "quantile" "hospital admissions only" +"2 day ahead inc hosp" "21" 2024-02-05 2024-02-07 0.5 33.5 "quantile" "hospital admissions only" +"2 day ahead inc hosp" "21" 2024-02-05 2024-02-07 0.55 35 "quantile" "hospital admissions only" +"2 day ahead inc hosp" "21" 2024-02-05 2024-02-07 0.6 37 "quantile" "hospital admissions only" +"2 day ahead inc hosp" "21" 2024-02-05 2024-02-07 0.65 38 "quantile" "hospital admissions only" +"2 day ahead inc hosp" "21" 2024-02-05 2024-02-07 0.7 39 "quantile" "hospital admissions only" +"2 day ahead inc hosp" "21" 2024-02-05 2024-02-07 0.75 40 "quantile" "hospital admissions only" +"2 day ahead inc hosp" "21" 2024-02-05 2024-02-07 0.8 42.2 "quantile" "hospital admissions only" +"2 day ahead inc hosp" "21" 2024-02-05 2024-02-07 0.85 44.15 "quantile" "hospital admissions only" +"2 day ahead inc hosp" "21" 2024-02-05 2024-02-07 0.9 47 "quantile" "hospital admissions only" +"2 day ahead inc hosp" "21" 2024-02-05 2024-02-07 0.95 53 "quantile" "hospital admissions only" +"2 day ahead inc hosp" "21" 2024-02-05 2024-02-07 0.975 54.525 "quantile" "hospital admissions only" +"2 day ahead inc hosp" "21" 2024-02-05 2024-02-07 0.99 56.08 "quantile" "hospital admissions only" +"3 day ahead inc hosp" "21" 2024-02-05 2024-02-08 0.01 19.95 "quantile" "hospital admissions only" +"3 day ahead inc hosp" "21" 2024-02-05 2024-02-08 0.025 20.475 "quantile" "hospital admissions only" +"3 day ahead inc hosp" "21" 2024-02-05 2024-02-08 0.05 22 "quantile" "hospital admissions only" +"3 day ahead inc hosp" "21" 2024-02-05 2024-02-08 0.1 23 "quantile" "hospital admissions only" +"3 day ahead inc hosp" "21" 2024-02-05 2024-02-08 0.15 26 "quantile" "hospital admissions only" +"3 day ahead inc hosp" "21" 2024-02-05 2024-02-08 0.2 28 "quantile" "hospital admissions only" +"3 day ahead inc hosp" "21" 2024-02-05 2024-02-08 0.25 29 "quantile" "hospital admissions only" +"3 day ahead inc hosp" "21" 2024-02-05 2024-02-08 0.3 30 "quantile" "hospital admissions only" +"3 day ahead inc hosp" "21" 2024-02-05 2024-02-08 0.35 31 "quantile" "hospital admissions only" +"3 day ahead inc hosp" "21" 2024-02-05 2024-02-08 0.4 32.6 "quantile" "hospital admissions only" +"3 day ahead inc hosp" "21" 2024-02-05 2024-02-08 0.45 33 "quantile" "hospital admissions only" +"3 day ahead inc hosp" "21" 2024-02-05 2024-02-08 0.5 36 "quantile" "hospital admissions only" +"3 day ahead inc hosp" "21" 2024-02-05 2024-02-08 0.55 37 "quantile" "hospital admissions only" +"3 day ahead inc hosp" "21" 2024-02-05 2024-02-08 0.6 38 "quantile" "hospital admissions only" +"3 day ahead inc hosp" "21" 2024-02-05 2024-02-08 0.65 39 "quantile" "hospital admissions only" +"3 day ahead inc hosp" "21" 2024-02-05 2024-02-08 0.7 40 "quantile" "hospital admissions only" +"3 day ahead inc hosp" "21" 2024-02-05 2024-02-08 0.75 41 "quantile" "hospital admissions only" +"3 day ahead inc hosp" "21" 2024-02-05 2024-02-08 0.8 44 "quantile" "hospital admissions only" +"3 day ahead inc hosp" "21" 2024-02-05 2024-02-08 0.85 46 "quantile" "hospital admissions only" +"3 day ahead inc hosp" "21" 2024-02-05 2024-02-08 0.9 47.1 "quantile" "hospital admissions only" +"3 day ahead inc hosp" "21" 2024-02-05 2024-02-08 0.95 51.1 "quantile" "hospital admissions only" +"3 day ahead inc hosp" "21" 2024-02-05 2024-02-08 0.975 55.525 "quantile" "hospital admissions only" +"3 day ahead inc hosp" "21" 2024-02-05 2024-02-08 0.99 63 "quantile" "hospital admissions only" +"4 day ahead inc hosp" "21" 2024-02-05 2024-02-09 0.01 14.97 "quantile" "hospital admissions only" +"4 day ahead inc hosp" "21" 2024-02-05 2024-02-09 0.025 15.475 "quantile" "hospital admissions only" +"4 day ahead inc hosp" "21" 2024-02-05 2024-02-09 0.05 16 "quantile" "hospital admissions only" +"4 day ahead inc hosp" "21" 2024-02-05 2024-02-09 0.1 19.9 "quantile" "hospital admissions only" +"4 day ahead inc hosp" "21" 2024-02-05 2024-02-09 0.15 22 "quantile" "hospital admissions only" +"4 day ahead inc hosp" "21" 2024-02-05 2024-02-09 0.2 23.8 "quantile" "hospital admissions only" +"4 day ahead inc hosp" "21" 2024-02-05 2024-02-09 0.25 25 "quantile" "hospital admissions only" +"4 day ahead inc hosp" "21" 2024-02-05 2024-02-09 0.3 26 "quantile" "hospital admissions only" +"4 day ahead inc hosp" "21" 2024-02-05 2024-02-09 0.35 27 "quantile" "hospital admissions only" +"4 day ahead inc hosp" "21" 2024-02-05 2024-02-09 0.4 28 "quantile" "hospital admissions only" +"4 day ahead inc hosp" "21" 2024-02-05 2024-02-09 0.45 30 "quantile" "hospital admissions only" +"4 day ahead inc hosp" "21" 2024-02-05 2024-02-09 0.5 31 "quantile" "hospital admissions only" +"4 day ahead inc hosp" "21" 2024-02-05 2024-02-09 0.55 32 "quantile" "hospital admissions only" +"4 day ahead inc hosp" "21" 2024-02-05 2024-02-09 0.6 33 "quantile" "hospital admissions only" +"4 day ahead inc hosp" "21" 2024-02-05 2024-02-09 0.65 34.35 "quantile" "hospital admissions only" +"4 day ahead inc hosp" "21" 2024-02-05 2024-02-09 0.7 36 "quantile" "hospital admissions only" +"4 day ahead inc hosp" "21" 2024-02-05 2024-02-09 0.75 37 "quantile" "hospital admissions only" +"4 day ahead inc hosp" "21" 2024-02-05 2024-02-09 0.8 39.2 "quantile" "hospital admissions only" +"4 day ahead inc hosp" "21" 2024-02-05 2024-02-09 0.85 41 "quantile" "hospital admissions only" +"4 day ahead inc hosp" "21" 2024-02-05 2024-02-09 0.9 43 "quantile" "hospital admissions only" +"4 day ahead inc hosp" "21" 2024-02-05 2024-02-09 0.95 48 "quantile" "hospital admissions only" +"4 day ahead inc hosp" "21" 2024-02-05 2024-02-09 0.975 51.05 "quantile" "hospital admissions only" +"4 day ahead inc hosp" "21" 2024-02-05 2024-02-09 0.99 54.01 "quantile" "hospital admissions only" +"5 day ahead inc hosp" "21" 2024-02-05 2024-02-10 0.01 14.98 "quantile" "hospital admissions only" +"5 day ahead inc hosp" "21" 2024-02-05 2024-02-10 0.025 16 "quantile" "hospital admissions only" +"5 day ahead inc hosp" "21" 2024-02-05 2024-02-10 0.05 18 "quantile" "hospital admissions only" +"5 day ahead inc hosp" "21" 2024-02-05 2024-02-10 0.1 19.9 "quantile" "hospital admissions only" +"5 day ahead inc hosp" "21" 2024-02-05 2024-02-10 0.15 21.85 "quantile" "hospital admissions only" +"5 day ahead inc hosp" "21" 2024-02-05 2024-02-10 0.2 23 "quantile" "hospital admissions only" +"5 day ahead inc hosp" "21" 2024-02-05 2024-02-10 0.25 24.75 "quantile" "hospital admissions only" +"5 day ahead inc hosp" "21" 2024-02-05 2024-02-10 0.3 25 "quantile" "hospital admissions only" +"5 day ahead inc hosp" "21" 2024-02-05 2024-02-10 0.35 26 "quantile" "hospital admissions only" +"5 day ahead inc hosp" "21" 2024-02-05 2024-02-10 0.4 28 "quantile" "hospital admissions only" +"5 day ahead inc hosp" "21" 2024-02-05 2024-02-10 0.45 29 "quantile" "hospital admissions only" +"5 day ahead inc hosp" "21" 2024-02-05 2024-02-10 0.5 29.5 "quantile" "hospital admissions only" +"5 day ahead inc hosp" "21" 2024-02-05 2024-02-10 0.55 30 "quantile" "hospital admissions only" +"5 day ahead inc hosp" "21" 2024-02-05 2024-02-10 0.6 31.4 "quantile" "hospital admissions only" +"5 day ahead inc hosp" "21" 2024-02-05 2024-02-10 0.65 33 "quantile" "hospital admissions only" +"5 day ahead inc hosp" "21" 2024-02-05 2024-02-10 0.7 34 "quantile" "hospital admissions only" +"5 day ahead inc hosp" "21" 2024-02-05 2024-02-10 0.75 35 "quantile" "hospital admissions only" +"5 day ahead inc hosp" "21" 2024-02-05 2024-02-10 0.8 37.2 "quantile" "hospital admissions only" +"5 day ahead inc hosp" "21" 2024-02-05 2024-02-10 0.85 39.15 "quantile" "hospital admissions only" +"5 day ahead inc hosp" "21" 2024-02-05 2024-02-10 0.9 40 "quantile" "hospital admissions only" +"5 day ahead inc hosp" "21" 2024-02-05 2024-02-10 0.95 45.25 "quantile" "hospital admissions only" +"5 day ahead inc hosp" "21" 2024-02-05 2024-02-10 0.975 50.525 "quantile" "hospital admissions only" +"5 day ahead inc hosp" "21" 2024-02-05 2024-02-10 0.99 52.02 "quantile" "hospital admissions only" +"6 day ahead inc hosp" "21" 2024-02-05 2024-02-11 0.01 15.99 "quantile" "hospital admissions only" +"6 day ahead inc hosp" "21" 2024-02-05 2024-02-11 0.025 16.475 "quantile" "hospital admissions only" +"6 day ahead inc hosp" "21" 2024-02-05 2024-02-11 0.05 17 "quantile" "hospital admissions only" +"6 day ahead inc hosp" "21" 2024-02-05 2024-02-11 0.1 19 "quantile" "hospital admissions only" +"6 day ahead inc hosp" "21" 2024-02-05 2024-02-11 0.15 21 "quantile" "hospital admissions only" +"6 day ahead inc hosp" "21" 2024-02-05 2024-02-11 0.2 23 "quantile" "hospital admissions only" +"6 day ahead inc hosp" "21" 2024-02-05 2024-02-11 0.25 24 "quantile" "hospital admissions only" +"6 day ahead inc hosp" "21" 2024-02-05 2024-02-11 0.3 24.7 "quantile" "hospital admissions only" +"6 day ahead inc hosp" "21" 2024-02-05 2024-02-11 0.35 26 "quantile" "hospital admissions only" +"6 day ahead inc hosp" "21" 2024-02-05 2024-02-11 0.4 28 "quantile" "hospital admissions only" +"6 day ahead inc hosp" "21" 2024-02-05 2024-02-11 0.45 29 "quantile" "hospital admissions only" +"6 day ahead inc hosp" "21" 2024-02-05 2024-02-11 0.5 29 "quantile" "hospital admissions only" +"6 day ahead inc hosp" "21" 2024-02-05 2024-02-11 0.55 30 "quantile" "hospital admissions only" +"6 day ahead inc hosp" "21" 2024-02-05 2024-02-11 0.6 31.4 "quantile" "hospital admissions only" +"6 day ahead inc hosp" "21" 2024-02-05 2024-02-11 0.65 33 "quantile" "hospital admissions only" +"6 day ahead inc hosp" "21" 2024-02-05 2024-02-11 0.7 35 "quantile" "hospital admissions only" +"6 day ahead inc hosp" "21" 2024-02-05 2024-02-11 0.75 36 "quantile" "hospital admissions only" +"6 day ahead inc hosp" "21" 2024-02-05 2024-02-11 0.8 38 "quantile" "hospital admissions only" +"6 day ahead inc hosp" "21" 2024-02-05 2024-02-11 0.85 40.15 "quantile" "hospital admissions only" +"6 day ahead inc hosp" "21" 2024-02-05 2024-02-11 0.9 43 "quantile" "hospital admissions only" +"6 day ahead inc hosp" "21" 2024-02-05 2024-02-11 0.95 46.15 "quantile" "hospital admissions only" +"6 day ahead inc hosp" "21" 2024-02-05 2024-02-11 0.975 50.525 "quantile" "hospital admissions only" +"6 day ahead inc hosp" "21" 2024-02-05 2024-02-11 0.99 52.01 "quantile" "hospital admissions only" +"7 day ahead inc hosp" "21" 2024-02-05 2024-02-12 0.01 8.99 "quantile" "hospital admissions only" +"7 day ahead inc hosp" "21" 2024-02-05 2024-02-12 0.025 17.375 "quantile" "hospital admissions only" +"7 day ahead inc hosp" "21" 2024-02-05 2024-02-12 0.05 20 "quantile" "hospital admissions only" +"7 day ahead inc hosp" "21" 2024-02-05 2024-02-12 0.1 20 "quantile" "hospital admissions only" +"7 day ahead inc hosp" "21" 2024-02-05 2024-02-12 0.15 21.85 "quantile" "hospital admissions only" +"7 day ahead inc hosp" "21" 2024-02-05 2024-02-12 0.2 24 "quantile" "hospital admissions only" +"7 day ahead inc hosp" "21" 2024-02-05 2024-02-12 0.25 25 "quantile" "hospital admissions only" +"7 day ahead inc hosp" "21" 2024-02-05 2024-02-12 0.3 27 "quantile" "hospital admissions only" +"7 day ahead inc hosp" "21" 2024-02-05 2024-02-12 0.35 27.65 "quantile" "hospital admissions only" +"7 day ahead inc hosp" "21" 2024-02-05 2024-02-12 0.4 29 "quantile" "hospital admissions only" +"7 day ahead inc hosp" "21" 2024-02-05 2024-02-12 0.45 29.55 "quantile" "hospital admissions only" +"7 day ahead inc hosp" "21" 2024-02-05 2024-02-12 0.5 31 "quantile" "hospital admissions only" +"7 day ahead inc hosp" "21" 2024-02-05 2024-02-12 0.55 32.45 "quantile" "hospital admissions only" +"7 day ahead inc hosp" "21" 2024-02-05 2024-02-12 0.6 34 "quantile" "hospital admissions only" +"7 day ahead inc hosp" "21" 2024-02-05 2024-02-12 0.65 35 "quantile" "hospital admissions only" +"7 day ahead inc hosp" "21" 2024-02-05 2024-02-12 0.7 37 "quantile" "hospital admissions only" +"7 day ahead inc hosp" "21" 2024-02-05 2024-02-12 0.75 38.25 "quantile" "hospital admissions only" +"7 day ahead inc hosp" "21" 2024-02-05 2024-02-12 0.8 40 "quantile" "hospital admissions only" +"7 day ahead inc hosp" "21" 2024-02-05 2024-02-12 0.85 43 "quantile" "hospital admissions only" +"7 day ahead inc hosp" "21" 2024-02-05 2024-02-12 0.9 45.1 "quantile" "hospital admissions only" +"7 day ahead inc hosp" "21" 2024-02-05 2024-02-12 0.95 48 "quantile" "hospital admissions only" +"7 day ahead inc hosp" "21" 2024-02-05 2024-02-12 0.975 53 "quantile" "hospital admissions only" +"7 day ahead inc hosp" "21" 2024-02-05 2024-02-12 0.99 61.02 "quantile" "hospital admissions only" +"8 day ahead inc hosp" "21" 2024-02-05 2024-02-13 0.01 15 "quantile" "hospital admissions only" +"8 day ahead inc hosp" "21" 2024-02-05 2024-02-13 0.025 16 "quantile" "hospital admissions only" +"8 day ahead inc hosp" "21" 2024-02-05 2024-02-13 0.05 17.95 "quantile" "hospital admissions only" +"8 day ahead inc hosp" "21" 2024-02-05 2024-02-13 0.1 20 "quantile" "hospital admissions only" +"8 day ahead inc hosp" "21" 2024-02-05 2024-02-13 0.15 22.85 "quantile" "hospital admissions only" +"8 day ahead inc hosp" "21" 2024-02-05 2024-02-13 0.2 24.8 "quantile" "hospital admissions only" +"8 day ahead inc hosp" "21" 2024-02-05 2024-02-13 0.25 26 "quantile" "hospital admissions only" +"8 day ahead inc hosp" "21" 2024-02-05 2024-02-13 0.3 28 "quantile" "hospital admissions only" +"8 day ahead inc hosp" "21" 2024-02-05 2024-02-13 0.35 29.65 "quantile" "hospital admissions only" +"8 day ahead inc hosp" "21" 2024-02-05 2024-02-13 0.4 30.6 "quantile" "hospital admissions only" +"8 day ahead inc hosp" "21" 2024-02-05 2024-02-13 0.45 32 "quantile" "hospital admissions only" +"8 day ahead inc hosp" "21" 2024-02-05 2024-02-13 0.5 32.5 "quantile" "hospital admissions only" +"8 day ahead inc hosp" "21" 2024-02-05 2024-02-13 0.55 34 "quantile" "hospital admissions only" +"8 day ahead inc hosp" "21" 2024-02-05 2024-02-13 0.6 34 "quantile" "hospital admissions only" +"8 day ahead inc hosp" "21" 2024-02-05 2024-02-13 0.65 35.35 "quantile" "hospital admissions only" +"8 day ahead inc hosp" "21" 2024-02-05 2024-02-13 0.7 38 "quantile" "hospital admissions only" +"8 day ahead inc hosp" "21" 2024-02-05 2024-02-13 0.75 40.25 "quantile" "hospital admissions only" +"8 day ahead inc hosp" "21" 2024-02-05 2024-02-13 0.8 42.2 "quantile" "hospital admissions only" +"8 day ahead inc hosp" "21" 2024-02-05 2024-02-13 0.85 44.15 "quantile" "hospital admissions only" +"8 day ahead inc hosp" "21" 2024-02-05 2024-02-13 0.9 50 "quantile" "hospital admissions only" +"8 day ahead inc hosp" "21" 2024-02-05 2024-02-13 0.95 52.25 "quantile" "hospital admissions only" +"8 day ahead inc hosp" "21" 2024-02-05 2024-02-13 0.975 60.1 "quantile" "hospital admissions only" +"8 day ahead inc hosp" "21" 2024-02-05 2024-02-13 0.99 63.1000000000001 "quantile" "hospital admissions only" +"9 day ahead inc hosp" "21" 2024-02-05 2024-02-14 0.01 13.95 "quantile" "hospital admissions only" +"9 day ahead inc hosp" "21" 2024-02-05 2024-02-14 0.025 16 "quantile" "hospital admissions only" +"9 day ahead inc hosp" "21" 2024-02-05 2024-02-14 0.05 16 "quantile" "hospital admissions only" +"9 day ahead inc hosp" "21" 2024-02-05 2024-02-14 0.1 19 "quantile" "hospital admissions only" +"9 day ahead inc hosp" "21" 2024-02-05 2024-02-14 0.15 20.85 "quantile" "hospital admissions only" +"9 day ahead inc hosp" "21" 2024-02-05 2024-02-14 0.2 23.8 "quantile" "hospital admissions only" +"9 day ahead inc hosp" "21" 2024-02-05 2024-02-14 0.25 26 "quantile" "hospital admissions only" +"9 day ahead inc hosp" "21" 2024-02-05 2024-02-14 0.3 28 "quantile" "hospital admissions only" +"9 day ahead inc hosp" "21" 2024-02-05 2024-02-14 0.35 29 "quantile" "hospital admissions only" +"9 day ahead inc hosp" "21" 2024-02-05 2024-02-14 0.4 29.6 "quantile" "hospital admissions only" +"9 day ahead inc hosp" "21" 2024-02-05 2024-02-14 0.45 31 "quantile" "hospital admissions only" +"9 day ahead inc hosp" "21" 2024-02-05 2024-02-14 0.5 33 "quantile" "hospital admissions only" +"9 day ahead inc hosp" "21" 2024-02-05 2024-02-14 0.55 34 "quantile" "hospital admissions only" +"9 day ahead inc hosp" "21" 2024-02-05 2024-02-14 0.6 35 "quantile" "hospital admissions only" +"9 day ahead inc hosp" "21" 2024-02-05 2024-02-14 0.65 37 "quantile" "hospital admissions only" +"9 day ahead inc hosp" "21" 2024-02-05 2024-02-14 0.7 38.3 "quantile" "hospital admissions only" +"9 day ahead inc hosp" "21" 2024-02-05 2024-02-14 0.75 40.25 "quantile" "hospital admissions only" +"9 day ahead inc hosp" "21" 2024-02-05 2024-02-14 0.8 42 "quantile" "hospital admissions only" +"9 day ahead inc hosp" "21" 2024-02-05 2024-02-14 0.85 44 "quantile" "hospital admissions only" +"9 day ahead inc hosp" "21" 2024-02-05 2024-02-14 0.9 47 "quantile" "hospital admissions only" +"9 day ahead inc hosp" "21" 2024-02-05 2024-02-14 0.95 49.05 "quantile" "hospital admissions only" +"9 day ahead inc hosp" "21" 2024-02-05 2024-02-14 0.975 52.525 "quantile" "hospital admissions only" +"9 day ahead inc hosp" "21" 2024-02-05 2024-02-14 0.99 55.1000000000001 "quantile" "hospital admissions only" +"10 day ahead inc hosp" "21" 2024-02-05 2024-02-15 0.01 12.98 "quantile" "hospital admissions only" +"10 day ahead inc hosp" "21" 2024-02-05 2024-02-15 0.025 15.475 "quantile" "hospital admissions only" +"10 day ahead inc hosp" "21" 2024-02-05 2024-02-15 0.05 17 "quantile" "hospital admissions only" +"10 day ahead inc hosp" "21" 2024-02-05 2024-02-15 0.1 19.8 "quantile" "hospital admissions only" +"10 day ahead inc hosp" "21" 2024-02-05 2024-02-15 0.15 24 "quantile" "hospital admissions only" +"10 day ahead inc hosp" "21" 2024-02-05 2024-02-15 0.2 24 "quantile" "hospital admissions only" +"10 day ahead inc hosp" "21" 2024-02-05 2024-02-15 0.25 25.75 "quantile" "hospital admissions only" +"10 day ahead inc hosp" "21" 2024-02-05 2024-02-15 0.3 26.7 "quantile" "hospital admissions only" +"10 day ahead inc hosp" "21" 2024-02-05 2024-02-15 0.35 27.65 "quantile" "hospital admissions only" +"10 day ahead inc hosp" "21" 2024-02-05 2024-02-15 0.4 29 "quantile" "hospital admissions only" +"10 day ahead inc hosp" "21" 2024-02-05 2024-02-15 0.45 31 "quantile" "hospital admissions only" +"10 day ahead inc hosp" "21" 2024-02-05 2024-02-15 0.5 31 "quantile" "hospital admissions only" +"10 day ahead inc hosp" "21" 2024-02-05 2024-02-15 0.55 32 "quantile" "hospital admissions only" +"10 day ahead inc hosp" "21" 2024-02-05 2024-02-15 0.6 34 "quantile" "hospital admissions only" +"10 day ahead inc hosp" "21" 2024-02-05 2024-02-15 0.65 35 "quantile" "hospital admissions only" +"10 day ahead inc hosp" "21" 2024-02-05 2024-02-15 0.7 37.3 "quantile" "hospital admissions only" +"10 day ahead inc hosp" "21" 2024-02-05 2024-02-15 0.75 39 "quantile" "hospital admissions only" +"10 day ahead inc hosp" "21" 2024-02-05 2024-02-15 0.8 41 "quantile" "hospital admissions only" +"10 day ahead inc hosp" "21" 2024-02-05 2024-02-15 0.85 44.15 "quantile" "hospital admissions only" +"10 day ahead inc hosp" "21" 2024-02-05 2024-02-15 0.9 47.3 "quantile" "hospital admissions only" +"10 day ahead inc hosp" "21" 2024-02-05 2024-02-15 0.95 51.05 "quantile" "hospital admissions only" +"10 day ahead inc hosp" "21" 2024-02-05 2024-02-15 0.975 55.1 "quantile" "hospital admissions only" +"10 day ahead inc hosp" "21" 2024-02-05 2024-02-15 0.99 61.07 "quantile" "hospital admissions only" +"11 day ahead inc hosp" "21" 2024-02-05 2024-02-16 0.01 12.96 "quantile" "hospital admissions only" +"11 day ahead inc hosp" "21" 2024-02-05 2024-02-16 0.025 13.475 "quantile" "hospital admissions only" +"11 day ahead inc hosp" "21" 2024-02-05 2024-02-16 0.05 14.95 "quantile" "hospital admissions only" +"11 day ahead inc hosp" "21" 2024-02-05 2024-02-16 0.1 18 "quantile" "hospital admissions only" +"11 day ahead inc hosp" "21" 2024-02-05 2024-02-16 0.15 19 "quantile" "hospital admissions only" +"11 day ahead inc hosp" "21" 2024-02-05 2024-02-16 0.2 20 "quantile" "hospital admissions only" +"11 day ahead inc hosp" "21" 2024-02-05 2024-02-16 0.25 21 "quantile" "hospital admissions only" +"11 day ahead inc hosp" "21" 2024-02-05 2024-02-16 0.3 22 "quantile" "hospital admissions only" +"11 day ahead inc hosp" "21" 2024-02-05 2024-02-16 0.35 23 "quantile" "hospital admissions only" +"11 day ahead inc hosp" "21" 2024-02-05 2024-02-16 0.4 24 "quantile" "hospital admissions only" +"11 day ahead inc hosp" "21" 2024-02-05 2024-02-16 0.45 24 "quantile" "hospital admissions only" +"11 day ahead inc hosp" "21" 2024-02-05 2024-02-16 0.5 26 "quantile" "hospital admissions only" +"11 day ahead inc hosp" "21" 2024-02-05 2024-02-16 0.55 27 "quantile" "hospital admissions only" +"11 day ahead inc hosp" "21" 2024-02-05 2024-02-16 0.6 28 "quantile" "hospital admissions only" +"11 day ahead inc hosp" "21" 2024-02-05 2024-02-16 0.65 29.35 "quantile" "hospital admissions only" +"11 day ahead inc hosp" "21" 2024-02-05 2024-02-16 0.7 32 "quantile" "hospital admissions only" +"11 day ahead inc hosp" "21" 2024-02-05 2024-02-16 0.75 34 "quantile" "hospital admissions only" +"11 day ahead inc hosp" "21" 2024-02-05 2024-02-16 0.8 36 "quantile" "hospital admissions only" +"11 day ahead inc hosp" "21" 2024-02-05 2024-02-16 0.85 37 "quantile" "hospital admissions only" +"11 day ahead inc hosp" "21" 2024-02-05 2024-02-16 0.9 40.2 "quantile" "hospital admissions only" +"11 day ahead inc hosp" "21" 2024-02-05 2024-02-16 0.95 47 "quantile" "hospital admissions only" +"11 day ahead inc hosp" "21" 2024-02-05 2024-02-16 0.975 48.575 "quantile" "hospital admissions only" +"11 day ahead inc hosp" "21" 2024-02-05 2024-02-16 0.99 52.1100000000001 "quantile" "hospital admissions only" +"12 day ahead inc hosp" "21" 2024-02-05 2024-02-17 0.01 11.95 "quantile" "hospital admissions only" +"12 day ahead inc hosp" "21" 2024-02-05 2024-02-17 0.025 12 "quantile" "hospital admissions only" +"12 day ahead inc hosp" "21" 2024-02-05 2024-02-17 0.05 13 "quantile" "hospital admissions only" +"12 day ahead inc hosp" "21" 2024-02-05 2024-02-17 0.1 15 "quantile" "hospital admissions only" +"12 day ahead inc hosp" "21" 2024-02-05 2024-02-17 0.15 16.85 "quantile" "hospital admissions only" +"12 day ahead inc hosp" "21" 2024-02-05 2024-02-17 0.2 18 "quantile" "hospital admissions only" +"12 day ahead inc hosp" "21" 2024-02-05 2024-02-17 0.25 20 "quantile" "hospital admissions only" +"12 day ahead inc hosp" "21" 2024-02-05 2024-02-17 0.3 20.7 "quantile" "hospital admissions only" +"12 day ahead inc hosp" "21" 2024-02-05 2024-02-17 0.35 21 "quantile" "hospital admissions only" +"12 day ahead inc hosp" "21" 2024-02-05 2024-02-17 0.4 24 "quantile" "hospital admissions only" +"12 day ahead inc hosp" "21" 2024-02-05 2024-02-17 0.45 25 "quantile" "hospital admissions only" +"12 day ahead inc hosp" "21" 2024-02-05 2024-02-17 0.5 26 "quantile" "hospital admissions only" +"12 day ahead inc hosp" "21" 2024-02-05 2024-02-17 0.55 26.45 "quantile" "hospital admissions only" +"12 day ahead inc hosp" "21" 2024-02-05 2024-02-17 0.6 29 "quantile" "hospital admissions only" +"12 day ahead inc hosp" "21" 2024-02-05 2024-02-17 0.65 29.35 "quantile" "hospital admissions only" +"12 day ahead inc hosp" "21" 2024-02-05 2024-02-17 0.7 31 "quantile" "hospital admissions only" +"12 day ahead inc hosp" "21" 2024-02-05 2024-02-17 0.75 32.25 "quantile" "hospital admissions only" +"12 day ahead inc hosp" "21" 2024-02-05 2024-02-17 0.8 33.2 "quantile" "hospital admissions only" +"12 day ahead inc hosp" "21" 2024-02-05 2024-02-17 0.85 36 "quantile" "hospital admissions only" +"12 day ahead inc hosp" "21" 2024-02-05 2024-02-17 0.9 40.1 "quantile" "hospital admissions only" +"12 day ahead inc hosp" "21" 2024-02-05 2024-02-17 0.95 45.05 "quantile" "hospital admissions only" +"12 day ahead inc hosp" "21" 2024-02-05 2024-02-17 0.975 47.05 "quantile" "hospital admissions only" +"12 day ahead inc hosp" "21" 2024-02-05 2024-02-17 0.99 49.03 "quantile" "hospital admissions only" +"13 day ahead inc hosp" "21" 2024-02-05 2024-02-18 0.01 11.99 "quantile" "hospital admissions only" +"13 day ahead inc hosp" "21" 2024-02-05 2024-02-18 0.025 12.95 "quantile" "hospital admissions only" +"13 day ahead inc hosp" "21" 2024-02-05 2024-02-18 0.05 14 "quantile" "hospital admissions only" +"13 day ahead inc hosp" "21" 2024-02-05 2024-02-18 0.1 15.9 "quantile" "hospital admissions only" +"13 day ahead inc hosp" "21" 2024-02-05 2024-02-18 0.15 17 "quantile" "hospital admissions only" +"13 day ahead inc hosp" "21" 2024-02-05 2024-02-18 0.2 18.8 "quantile" "hospital admissions only" +"13 day ahead inc hosp" "21" 2024-02-05 2024-02-18 0.25 19 "quantile" "hospital admissions only" +"13 day ahead inc hosp" "21" 2024-02-05 2024-02-18 0.3 21 "quantile" "hospital admissions only" +"13 day ahead inc hosp" "21" 2024-02-05 2024-02-18 0.35 22 "quantile" "hospital admissions only" +"13 day ahead inc hosp" "21" 2024-02-05 2024-02-18 0.4 23.6 "quantile" "hospital admissions only" +"13 day ahead inc hosp" "21" 2024-02-05 2024-02-18 0.45 25 "quantile" "hospital admissions only" +"13 day ahead inc hosp" "21" 2024-02-05 2024-02-18 0.5 27.5 "quantile" "hospital admissions only" +"13 day ahead inc hosp" "21" 2024-02-05 2024-02-18 0.55 30.45 "quantile" "hospital admissions only" +"13 day ahead inc hosp" "21" 2024-02-05 2024-02-18 0.6 31 "quantile" "hospital admissions only" +"13 day ahead inc hosp" "21" 2024-02-05 2024-02-18 0.65 33 "quantile" "hospital admissions only" +"13 day ahead inc hosp" "21" 2024-02-05 2024-02-18 0.7 34 "quantile" "hospital admissions only" +"13 day ahead inc hosp" "21" 2024-02-05 2024-02-18 0.75 35.25 "quantile" "hospital admissions only" +"13 day ahead inc hosp" "21" 2024-02-05 2024-02-18 0.8 38.2 "quantile" "hospital admissions only" +"13 day ahead inc hosp" "21" 2024-02-05 2024-02-18 0.85 41.15 "quantile" "hospital admissions only" +"13 day ahead inc hosp" "21" 2024-02-05 2024-02-18 0.9 44 "quantile" "hospital admissions only" +"13 day ahead inc hosp" "21" 2024-02-05 2024-02-18 0.95 47.05 "quantile" "hospital admissions only" +"13 day ahead inc hosp" "21" 2024-02-05 2024-02-18 0.975 50 "quantile" "hospital admissions only" +"13 day ahead inc hosp" "21" 2024-02-05 2024-02-18 0.99 51.1100000000001 "quantile" "hospital admissions only" +"14 day ahead inc hosp" "21" 2024-02-05 2024-02-19 0.01 11.99 "quantile" "hospital admissions only" +"14 day ahead inc hosp" "21" 2024-02-05 2024-02-19 0.025 12.475 "quantile" "hospital admissions only" +"14 day ahead inc hosp" "21" 2024-02-05 2024-02-19 0.05 15.95 "quantile" "hospital admissions only" +"14 day ahead inc hosp" "21" 2024-02-05 2024-02-19 0.1 17 "quantile" "hospital admissions only" +"14 day ahead inc hosp" "21" 2024-02-05 2024-02-19 0.15 18.85 "quantile" "hospital admissions only" +"14 day ahead inc hosp" "21" 2024-02-05 2024-02-19 0.2 20 "quantile" "hospital admissions only" +"14 day ahead inc hosp" "21" 2024-02-05 2024-02-19 0.25 22.75 "quantile" "hospital admissions only" +"14 day ahead inc hosp" "21" 2024-02-05 2024-02-19 0.3 23.7 "quantile" "hospital admissions only" +"14 day ahead inc hosp" "21" 2024-02-05 2024-02-19 0.35 25 "quantile" "hospital admissions only" +"14 day ahead inc hosp" "21" 2024-02-05 2024-02-19 0.4 28 "quantile" "hospital admissions only" +"14 day ahead inc hosp" "21" 2024-02-05 2024-02-19 0.45 29 "quantile" "hospital admissions only" +"14 day ahead inc hosp" "21" 2024-02-05 2024-02-19 0.5 30.5 "quantile" "hospital admissions only" +"14 day ahead inc hosp" "21" 2024-02-05 2024-02-19 0.55 32 "quantile" "hospital admissions only" +"14 day ahead inc hosp" "21" 2024-02-05 2024-02-19 0.6 33 "quantile" "hospital admissions only" +"14 day ahead inc hosp" "21" 2024-02-05 2024-02-19 0.65 33 "quantile" "hospital admissions only" +"14 day ahead inc hosp" "21" 2024-02-05 2024-02-19 0.7 36 "quantile" "hospital admissions only" +"14 day ahead inc hosp" "21" 2024-02-05 2024-02-19 0.75 37.25 "quantile" "hospital admissions only" +"14 day ahead inc hosp" "21" 2024-02-05 2024-02-19 0.8 38.2 "quantile" "hospital admissions only" +"14 day ahead inc hosp" "21" 2024-02-05 2024-02-19 0.85 41 "quantile" "hospital admissions only" +"14 day ahead inc hosp" "21" 2024-02-05 2024-02-19 0.9 47 "quantile" "hospital admissions only" +"14 day ahead inc hosp" "21" 2024-02-05 2024-02-19 0.95 52 "quantile" "hospital admissions only" +"14 day ahead inc hosp" "21" 2024-02-05 2024-02-19 0.975 53.525 "quantile" "hospital admissions only" +"14 day ahead inc hosp" "21" 2024-02-05 2024-02-19 0.99 57.1200000000001 "quantile" "hospital admissions only" +"15 day ahead inc hosp" "21" 2024-02-05 2024-02-20 0.01 13.94 "quantile" "hospital admissions only" +"15 day ahead inc hosp" "21" 2024-02-05 2024-02-20 0.025 15 "quantile" "hospital admissions only" +"15 day ahead inc hosp" "21" 2024-02-05 2024-02-20 0.05 15.95 "quantile" "hospital admissions only" +"15 day ahead inc hosp" "21" 2024-02-05 2024-02-20 0.1 18 "quantile" "hospital admissions only" +"15 day ahead inc hosp" "21" 2024-02-05 2024-02-20 0.15 19 "quantile" "hospital admissions only" +"15 day ahead inc hosp" "21" 2024-02-05 2024-02-20 0.2 21 "quantile" "hospital admissions only" +"15 day ahead inc hosp" "21" 2024-02-05 2024-02-20 0.25 21.75 "quantile" "hospital admissions only" +"15 day ahead inc hosp" "21" 2024-02-05 2024-02-20 0.3 23 "quantile" "hospital admissions only" +"15 day ahead inc hosp" "21" 2024-02-05 2024-02-20 0.35 23.65 "quantile" "hospital admissions only" +"15 day ahead inc hosp" "21" 2024-02-05 2024-02-20 0.4 26 "quantile" "hospital admissions only" +"15 day ahead inc hosp" "21" 2024-02-05 2024-02-20 0.45 27 "quantile" "hospital admissions only" +"15 day ahead inc hosp" "21" 2024-02-05 2024-02-20 0.5 28 "quantile" "hospital admissions only" +"15 day ahead inc hosp" "21" 2024-02-05 2024-02-20 0.55 30.45 "quantile" "hospital admissions only" +"15 day ahead inc hosp" "21" 2024-02-05 2024-02-20 0.6 33 "quantile" "hospital admissions only" +"15 day ahead inc hosp" "21" 2024-02-05 2024-02-20 0.65 35.35 "quantile" "hospital admissions only" +"15 day ahead inc hosp" "21" 2024-02-05 2024-02-20 0.7 37 "quantile" "hospital admissions only" +"15 day ahead inc hosp" "21" 2024-02-05 2024-02-20 0.75 38.25 "quantile" "hospital admissions only" +"15 day ahead inc hosp" "21" 2024-02-05 2024-02-20 0.8 42 "quantile" "hospital admissions only" +"15 day ahead inc hosp" "21" 2024-02-05 2024-02-20 0.85 46.15 "quantile" "hospital admissions only" +"15 day ahead inc hosp" "21" 2024-02-05 2024-02-20 0.9 48.1 "quantile" "hospital admissions only" +"15 day ahead inc hosp" "21" 2024-02-05 2024-02-20 0.95 54 "quantile" "hospital admissions only" +"15 day ahead inc hosp" "21" 2024-02-05 2024-02-20 0.975 54.525 "quantile" "hospital admissions only" +"15 day ahead inc hosp" "21" 2024-02-05 2024-02-20 0.99 57.01 "quantile" "hospital admissions only" +"16 day ahead inc hosp" "21" 2024-02-05 2024-02-21 0.01 10 "quantile" "hospital admissions only" +"16 day ahead inc hosp" "21" 2024-02-05 2024-02-21 0.025 12.475 "quantile" "hospital admissions only" +"16 day ahead inc hosp" "21" 2024-02-05 2024-02-21 0.05 14 "quantile" "hospital admissions only" +"16 day ahead inc hosp" "21" 2024-02-05 2024-02-21 0.1 16 "quantile" "hospital admissions only" +"16 day ahead inc hosp" "21" 2024-02-05 2024-02-21 0.15 20 "quantile" "hospital admissions only" +"16 day ahead inc hosp" "21" 2024-02-05 2024-02-21 0.2 22 "quantile" "hospital admissions only" +"16 day ahead inc hosp" "21" 2024-02-05 2024-02-21 0.25 23.75 "quantile" "hospital admissions only" +"16 day ahead inc hosp" "21" 2024-02-05 2024-02-21 0.3 24 "quantile" "hospital admissions only" +"16 day ahead inc hosp" "21" 2024-02-05 2024-02-21 0.35 25 "quantile" "hospital admissions only" +"16 day ahead inc hosp" "21" 2024-02-05 2024-02-21 0.4 26 "quantile" "hospital admissions only" +"16 day ahead inc hosp" "21" 2024-02-05 2024-02-21 0.45 26 "quantile" "hospital admissions only" +"16 day ahead inc hosp" "21" 2024-02-05 2024-02-21 0.5 28 "quantile" "hospital admissions only" +"16 day ahead inc hosp" "21" 2024-02-05 2024-02-21 0.55 29 "quantile" "hospital admissions only" +"16 day ahead inc hosp" "21" 2024-02-05 2024-02-21 0.6 31 "quantile" "hospital admissions only" +"16 day ahead inc hosp" "21" 2024-02-05 2024-02-21 0.65 32 "quantile" "hospital admissions only" +"16 day ahead inc hosp" "21" 2024-02-05 2024-02-21 0.7 34.3 "quantile" "hospital admissions only" +"16 day ahead inc hosp" "21" 2024-02-05 2024-02-21 0.75 36 "quantile" "hospital admissions only" +"16 day ahead inc hosp" "21" 2024-02-05 2024-02-21 0.8 38 "quantile" "hospital admissions only" +"16 day ahead inc hosp" "21" 2024-02-05 2024-02-21 0.85 40 "quantile" "hospital admissions only" +"16 day ahead inc hosp" "21" 2024-02-05 2024-02-21 0.9 47.2 "quantile" "hospital admissions only" +"16 day ahead inc hosp" "21" 2024-02-05 2024-02-21 0.95 51.15 "quantile" "hospital admissions only" +"16 day ahead inc hosp" "21" 2024-02-05 2024-02-21 0.975 57 "quantile" "hospital admissions only" +"16 day ahead inc hosp" "21" 2024-02-05 2024-02-21 0.99 60.03 "quantile" "hospital admissions only" +"17 day ahead inc hosp" "21" 2024-02-05 2024-02-22 0.01 8 "quantile" "hospital admissions only" +"17 day ahead inc hosp" "21" 2024-02-05 2024-02-22 0.025 9.95 "quantile" "hospital admissions only" +"17 day ahead inc hosp" "21" 2024-02-05 2024-02-22 0.05 11.95 "quantile" "hospital admissions only" +"17 day ahead inc hosp" "21" 2024-02-05 2024-02-22 0.1 13 "quantile" "hospital admissions only" +"17 day ahead inc hosp" "21" 2024-02-05 2024-02-22 0.15 17 "quantile" "hospital admissions only" +"17 day ahead inc hosp" "21" 2024-02-05 2024-02-22 0.2 19 "quantile" "hospital admissions only" +"17 day ahead inc hosp" "21" 2024-02-05 2024-02-22 0.25 21.75 "quantile" "hospital admissions only" +"17 day ahead inc hosp" "21" 2024-02-05 2024-02-22 0.3 22 "quantile" "hospital admissions only" +"17 day ahead inc hosp" "21" 2024-02-05 2024-02-22 0.35 24 "quantile" "hospital admissions only" +"17 day ahead inc hosp" "21" 2024-02-05 2024-02-22 0.4 24 "quantile" "hospital admissions only" +"17 day ahead inc hosp" "21" 2024-02-05 2024-02-22 0.45 26 "quantile" "hospital admissions only" +"17 day ahead inc hosp" "21" 2024-02-05 2024-02-22 0.5 27 "quantile" "hospital admissions only" +"17 day ahead inc hosp" "21" 2024-02-05 2024-02-22 0.55 28.45 "quantile" "hospital admissions only" +"17 day ahead inc hosp" "21" 2024-02-05 2024-02-22 0.6 29.4 "quantile" "hospital admissions only" +"17 day ahead inc hosp" "21" 2024-02-05 2024-02-22 0.65 31.35 "quantile" "hospital admissions only" +"17 day ahead inc hosp" "21" 2024-02-05 2024-02-22 0.7 33 "quantile" "hospital admissions only" +"17 day ahead inc hosp" "21" 2024-02-05 2024-02-22 0.75 34.25 "quantile" "hospital admissions only" +"17 day ahead inc hosp" "21" 2024-02-05 2024-02-22 0.8 37 "quantile" "hospital admissions only" +"17 day ahead inc hosp" "21" 2024-02-05 2024-02-22 0.85 40.15 "quantile" "hospital admissions only" +"17 day ahead inc hosp" "21" 2024-02-05 2024-02-22 0.9 44.1 "quantile" "hospital admissions only" +"17 day ahead inc hosp" "21" 2024-02-05 2024-02-22 0.95 51.1 "quantile" "hospital admissions only" +"17 day ahead inc hosp" "21" 2024-02-05 2024-02-22 0.975 55.625 "quantile" "hospital admissions only" +"17 day ahead inc hosp" "21" 2024-02-05 2024-02-22 0.99 60.02 "quantile" "hospital admissions only" +"18 day ahead inc hosp" "21" 2024-02-05 2024-02-23 0.01 9.97 "quantile" "hospital admissions only" +"18 day ahead inc hosp" "21" 2024-02-05 2024-02-23 0.025 10 "quantile" "hospital admissions only" +"18 day ahead inc hosp" "21" 2024-02-05 2024-02-23 0.05 10 "quantile" "hospital admissions only" +"18 day ahead inc hosp" "21" 2024-02-05 2024-02-23 0.1 13 "quantile" "hospital admissions only" +"18 day ahead inc hosp" "21" 2024-02-05 2024-02-23 0.15 15 "quantile" "hospital admissions only" +"18 day ahead inc hosp" "21" 2024-02-05 2024-02-23 0.2 16.8 "quantile" "hospital admissions only" +"18 day ahead inc hosp" "21" 2024-02-05 2024-02-23 0.25 18 "quantile" "hospital admissions only" +"18 day ahead inc hosp" "21" 2024-02-05 2024-02-23 0.3 19 "quantile" "hospital admissions only" +"18 day ahead inc hosp" "21" 2024-02-05 2024-02-23 0.35 20 "quantile" "hospital admissions only" +"18 day ahead inc hosp" "21" 2024-02-05 2024-02-23 0.4 21.6 "quantile" "hospital admissions only" +"18 day ahead inc hosp" "21" 2024-02-05 2024-02-23 0.45 23 "quantile" "hospital admissions only" +"18 day ahead inc hosp" "21" 2024-02-05 2024-02-23 0.5 23.5 "quantile" "hospital admissions only" +"18 day ahead inc hosp" "21" 2024-02-05 2024-02-23 0.55 24 "quantile" "hospital admissions only" +"18 day ahead inc hosp" "21" 2024-02-05 2024-02-23 0.6 27 "quantile" "hospital admissions only" +"18 day ahead inc hosp" "21" 2024-02-05 2024-02-23 0.65 27 "quantile" "hospital admissions only" +"18 day ahead inc hosp" "21" 2024-02-05 2024-02-23 0.7 29 "quantile" "hospital admissions only" +"18 day ahead inc hosp" "21" 2024-02-05 2024-02-23 0.75 31 "quantile" "hospital admissions only" +"18 day ahead inc hosp" "21" 2024-02-05 2024-02-23 0.8 33.2 "quantile" "hospital admissions only" +"18 day ahead inc hosp" "21" 2024-02-05 2024-02-23 0.85 36 "quantile" "hospital admissions only" +"18 day ahead inc hosp" "21" 2024-02-05 2024-02-23 0.9 38 "quantile" "hospital admissions only" +"18 day ahead inc hosp" "21" 2024-02-05 2024-02-23 0.95 46.25 "quantile" "hospital admissions only" +"18 day ahead inc hosp" "21" 2024-02-05 2024-02-23 0.975 52.05 "quantile" "hospital admissions only" +"18 day ahead inc hosp" "21" 2024-02-05 2024-02-23 0.99 54.09 "quantile" "hospital admissions only" +"19 day ahead inc hosp" "21" 2024-02-05 2024-02-24 0.01 6.99 "quantile" "hospital admissions only" +"19 day ahead inc hosp" "21" 2024-02-05 2024-02-24 0.025 7.475 "quantile" "hospital admissions only" +"19 day ahead inc hosp" "21" 2024-02-05 2024-02-24 0.05 9.95 "quantile" "hospital admissions only" +"19 day ahead inc hosp" "21" 2024-02-05 2024-02-24 0.1 11 "quantile" "hospital admissions only" +"19 day ahead inc hosp" "21" 2024-02-05 2024-02-24 0.15 13 "quantile" "hospital admissions only" +"19 day ahead inc hosp" "21" 2024-02-05 2024-02-24 0.2 14 "quantile" "hospital admissions only" +"19 day ahead inc hosp" "21" 2024-02-05 2024-02-24 0.25 16 "quantile" "hospital admissions only" +"19 day ahead inc hosp" "21" 2024-02-05 2024-02-24 0.3 17.7 "quantile" "hospital admissions only" +"19 day ahead inc hosp" "21" 2024-02-05 2024-02-24 0.35 18.65 "quantile" "hospital admissions only" +"19 day ahead inc hosp" "21" 2024-02-05 2024-02-24 0.4 20 "quantile" "hospital admissions only" +"19 day ahead inc hosp" "21" 2024-02-05 2024-02-24 0.45 21 "quantile" "hospital admissions only" +"19 day ahead inc hosp" "21" 2024-02-05 2024-02-24 0.5 22 "quantile" "hospital admissions only" +"19 day ahead inc hosp" "21" 2024-02-05 2024-02-24 0.55 24.45 "quantile" "hospital admissions only" +"19 day ahead inc hosp" "21" 2024-02-05 2024-02-24 0.6 26 "quantile" "hospital admissions only" +"19 day ahead inc hosp" "21" 2024-02-05 2024-02-24 0.65 29 "quantile" "hospital admissions only" +"19 day ahead inc hosp" "21" 2024-02-05 2024-02-24 0.7 30 "quantile" "hospital admissions only" +"19 day ahead inc hosp" "21" 2024-02-05 2024-02-24 0.75 34 "quantile" "hospital admissions only" +"19 day ahead inc hosp" "21" 2024-02-05 2024-02-24 0.8 36.2 "quantile" "hospital admissions only" +"19 day ahead inc hosp" "21" 2024-02-05 2024-02-24 0.85 37.15 "quantile" "hospital admissions only" +"19 day ahead inc hosp" "21" 2024-02-05 2024-02-24 0.9 41 "quantile" "hospital admissions only" +"19 day ahead inc hosp" "21" 2024-02-05 2024-02-24 0.95 45.05 "quantile" "hospital admissions only" +"19 day ahead inc hosp" "21" 2024-02-05 2024-02-24 0.975 51.1 "quantile" "hospital admissions only" +"19 day ahead inc hosp" "21" 2024-02-05 2024-02-24 0.99 56.06 "quantile" "hospital admissions only" +"20 day ahead inc hosp" "21" 2024-02-05 2024-02-25 0.01 6.99 "quantile" "hospital admissions only" +"20 day ahead inc hosp" "21" 2024-02-05 2024-02-25 0.025 8 "quantile" "hospital admissions only" +"20 day ahead inc hosp" "21" 2024-02-05 2024-02-25 0.05 10 "quantile" "hospital admissions only" +"20 day ahead inc hosp" "21" 2024-02-05 2024-02-25 0.1 12.9 "quantile" "hospital admissions only" +"20 day ahead inc hosp" "21" 2024-02-05 2024-02-25 0.15 14.85 "quantile" "hospital admissions only" +"20 day ahead inc hosp" "21" 2024-02-05 2024-02-25 0.2 16.8 "quantile" "hospital admissions only" +"20 day ahead inc hosp" "21" 2024-02-05 2024-02-25 0.25 18 "quantile" "hospital admissions only" +"20 day ahead inc hosp" "21" 2024-02-05 2024-02-25 0.3 19 "quantile" "hospital admissions only" +"20 day ahead inc hosp" "21" 2024-02-05 2024-02-25 0.35 19.65 "quantile" "hospital admissions only" +"20 day ahead inc hosp" "21" 2024-02-05 2024-02-25 0.4 21.6 "quantile" "hospital admissions only" +"20 day ahead inc hosp" "21" 2024-02-05 2024-02-25 0.45 23.55 "quantile" "hospital admissions only" +"20 day ahead inc hosp" "21" 2024-02-05 2024-02-25 0.5 24 "quantile" "hospital admissions only" +"20 day ahead inc hosp" "21" 2024-02-05 2024-02-25 0.55 25 "quantile" "hospital admissions only" +"20 day ahead inc hosp" "21" 2024-02-05 2024-02-25 0.6 26.4 "quantile" "hospital admissions only" +"20 day ahead inc hosp" "21" 2024-02-05 2024-02-25 0.65 28 "quantile" "hospital admissions only" +"20 day ahead inc hosp" "21" 2024-02-05 2024-02-25 0.7 29 "quantile" "hospital admissions only" +"20 day ahead inc hosp" "21" 2024-02-05 2024-02-25 0.75 31 "quantile" "hospital admissions only" +"20 day ahead inc hosp" "21" 2024-02-05 2024-02-25 0.8 35 "quantile" "hospital admissions only" +"20 day ahead inc hosp" "21" 2024-02-05 2024-02-25 0.85 38.15 "quantile" "hospital admissions only" +"20 day ahead inc hosp" "21" 2024-02-05 2024-02-25 0.9 42.1 "quantile" "hospital admissions only" +"20 day ahead inc hosp" "21" 2024-02-05 2024-02-25 0.95 48.1 "quantile" "hospital admissions only" +"20 day ahead inc hosp" "21" 2024-02-05 2024-02-25 0.975 54.1 "quantile" "hospital admissions only" +"20 day ahead inc hosp" "21" 2024-02-05 2024-02-25 0.99 58.03 "quantile" "hospital admissions only" +"21 day ahead inc hosp" "21" 2024-02-05 2024-02-26 0.01 4.98 "quantile" "hospital admissions only" +"21 day ahead inc hosp" "21" 2024-02-05 2024-02-26 0.025 7.425 "quantile" "hospital admissions only" +"21 day ahead inc hosp" "21" 2024-02-05 2024-02-26 0.05 10.95 "quantile" "hospital admissions only" +"21 day ahead inc hosp" "21" 2024-02-05 2024-02-26 0.1 15 "quantile" "hospital admissions only" +"21 day ahead inc hosp" "21" 2024-02-05 2024-02-26 0.15 16.85 "quantile" "hospital admissions only" +"21 day ahead inc hosp" "21" 2024-02-05 2024-02-26 0.2 17.8 "quantile" "hospital admissions only" +"21 day ahead inc hosp" "21" 2024-02-05 2024-02-26 0.25 19.75 "quantile" "hospital admissions only" +"21 day ahead inc hosp" "21" 2024-02-05 2024-02-26 0.3 20.7 "quantile" "hospital admissions only" +"21 day ahead inc hosp" "21" 2024-02-05 2024-02-26 0.35 21.65 "quantile" "hospital admissions only" +"21 day ahead inc hosp" "21" 2024-02-05 2024-02-26 0.4 23 "quantile" "hospital admissions only" +"21 day ahead inc hosp" "21" 2024-02-05 2024-02-26 0.45 24 "quantile" "hospital admissions only" +"21 day ahead inc hosp" "21" 2024-02-05 2024-02-26 0.5 26 "quantile" "hospital admissions only" +"21 day ahead inc hosp" "21" 2024-02-05 2024-02-26 0.55 27.45 "quantile" "hospital admissions only" +"21 day ahead inc hosp" "21" 2024-02-05 2024-02-26 0.6 29 "quantile" "hospital admissions only" +"21 day ahead inc hosp" "21" 2024-02-05 2024-02-26 0.65 31 "quantile" "hospital admissions only" +"21 day ahead inc hosp" "21" 2024-02-05 2024-02-26 0.7 34 "quantile" "hospital admissions only" +"21 day ahead inc hosp" "21" 2024-02-05 2024-02-26 0.75 36.25 "quantile" "hospital admissions only" +"21 day ahead inc hosp" "21" 2024-02-05 2024-02-26 0.8 39 "quantile" "hospital admissions only" +"21 day ahead inc hosp" "21" 2024-02-05 2024-02-26 0.85 40.45 "quantile" "hospital admissions only" +"21 day ahead inc hosp" "21" 2024-02-05 2024-02-26 0.9 46.1 "quantile" "hospital admissions only" +"21 day ahead inc hosp" "21" 2024-02-05 2024-02-26 0.95 56 "quantile" "hospital admissions only" +"21 day ahead inc hosp" "21" 2024-02-05 2024-02-26 0.975 57.575 "quantile" "hospital admissions only" +"21 day ahead inc hosp" "21" 2024-02-05 2024-02-26 0.99 62.05 "quantile" "hospital admissions only" +"22 day ahead inc hosp" "21" 2024-02-05 2024-02-27 0.01 6.99 "quantile" "hospital admissions only" +"22 day ahead inc hosp" "21" 2024-02-05 2024-02-27 0.025 8 "quantile" "hospital admissions only" +"22 day ahead inc hosp" "21" 2024-02-05 2024-02-27 0.05 10.9 "quantile" "hospital admissions only" +"22 day ahead inc hosp" "21" 2024-02-05 2024-02-27 0.1 13.9 "quantile" "hospital admissions only" +"22 day ahead inc hosp" "21" 2024-02-05 2024-02-27 0.15 15 "quantile" "hospital admissions only" +"22 day ahead inc hosp" "21" 2024-02-05 2024-02-27 0.2 18.6 "quantile" "hospital admissions only" +"22 day ahead inc hosp" "21" 2024-02-05 2024-02-27 0.25 20.75 "quantile" "hospital admissions only" +"22 day ahead inc hosp" "21" 2024-02-05 2024-02-27 0.3 22.7 "quantile" "hospital admissions only" +"22 day ahead inc hosp" "21" 2024-02-05 2024-02-27 0.35 25 "quantile" "hospital admissions only" +"22 day ahead inc hosp" "21" 2024-02-05 2024-02-27 0.4 26 "quantile" "hospital admissions only" +"22 day ahead inc hosp" "21" 2024-02-05 2024-02-27 0.45 28 "quantile" "hospital admissions only" +"22 day ahead inc hosp" "21" 2024-02-05 2024-02-27 0.5 29 "quantile" "hospital admissions only" +"22 day ahead inc hosp" "21" 2024-02-05 2024-02-27 0.55 29 "quantile" "hospital admissions only" +"22 day ahead inc hosp" "21" 2024-02-05 2024-02-27 0.6 30 "quantile" "hospital admissions only" +"22 day ahead inc hosp" "21" 2024-02-05 2024-02-27 0.65 31.35 "quantile" "hospital admissions only" +"22 day ahead inc hosp" "21" 2024-02-05 2024-02-27 0.7 33 "quantile" "hospital admissions only" +"22 day ahead inc hosp" "21" 2024-02-05 2024-02-27 0.75 35 "quantile" "hospital admissions only" +"22 day ahead inc hosp" "21" 2024-02-05 2024-02-27 0.8 37 "quantile" "hospital admissions only" +"22 day ahead inc hosp" "21" 2024-02-05 2024-02-27 0.85 42.15 "quantile" "hospital admissions only" +"22 day ahead inc hosp" "21" 2024-02-05 2024-02-27 0.9 48.1 "quantile" "hospital admissions only" +"22 day ahead inc hosp" "21" 2024-02-05 2024-02-27 0.95 58.05 "quantile" "hospital admissions only" +"22 day ahead inc hosp" "21" 2024-02-05 2024-02-27 0.975 63.1 "quantile" "hospital admissions only" +"22 day ahead inc hosp" "21" 2024-02-05 2024-02-27 0.99 70.09 "quantile" "hospital admissions only" +"23 day ahead inc hosp" "21" 2024-02-05 2024-02-28 0.01 6.99 "quantile" "hospital admissions only" +"23 day ahead inc hosp" "21" 2024-02-05 2024-02-28 0.025 8 "quantile" "hospital admissions only" +"23 day ahead inc hosp" "21" 2024-02-05 2024-02-28 0.05 9.95 "quantile" "hospital admissions only" +"23 day ahead inc hosp" "21" 2024-02-05 2024-02-28 0.1 12 "quantile" "hospital admissions only" +"23 day ahead inc hosp" "21" 2024-02-05 2024-02-28 0.15 15 "quantile" "hospital admissions only" +"23 day ahead inc hosp" "21" 2024-02-05 2024-02-28 0.2 17 "quantile" "hospital admissions only" +"23 day ahead inc hosp" "21" 2024-02-05 2024-02-28 0.25 19 "quantile" "hospital admissions only" +"23 day ahead inc hosp" "21" 2024-02-05 2024-02-28 0.3 20 "quantile" "hospital admissions only" +"23 day ahead inc hosp" "21" 2024-02-05 2024-02-28 0.35 22 "quantile" "hospital admissions only" +"23 day ahead inc hosp" "21" 2024-02-05 2024-02-28 0.4 23.6 "quantile" "hospital admissions only" +"23 day ahead inc hosp" "21" 2024-02-05 2024-02-28 0.45 25 "quantile" "hospital admissions only" +"23 day ahead inc hosp" "21" 2024-02-05 2024-02-28 0.5 26.5 "quantile" "hospital admissions only" +"23 day ahead inc hosp" "21" 2024-02-05 2024-02-28 0.55 28 "quantile" "hospital admissions only" +"23 day ahead inc hosp" "21" 2024-02-05 2024-02-28 0.6 29.4 "quantile" "hospital admissions only" +"23 day ahead inc hosp" "21" 2024-02-05 2024-02-28 0.65 32 "quantile" "hospital admissions only" +"23 day ahead inc hosp" "21" 2024-02-05 2024-02-28 0.7 34 "quantile" "hospital admissions only" +"23 day ahead inc hosp" "21" 2024-02-05 2024-02-28 0.75 35 "quantile" "hospital admissions only" +"23 day ahead inc hosp" "21" 2024-02-05 2024-02-28 0.8 36.6 "quantile" "hospital admissions only" +"23 day ahead inc hosp" "21" 2024-02-05 2024-02-28 0.85 45.15 "quantile" "hospital admissions only" +"23 day ahead inc hosp" "21" 2024-02-05 2024-02-28 0.9 47.1 "quantile" "hospital admissions only" +"23 day ahead inc hosp" "21" 2024-02-05 2024-02-28 0.95 53 "quantile" "hospital admissions only" +"23 day ahead inc hosp" "21" 2024-02-05 2024-02-28 0.975 60.6749999999999 "quantile" "hospital admissions only" +"23 day ahead inc hosp" "21" 2024-02-05 2024-02-28 0.99 68.08 "quantile" "hospital admissions only" +"24 day ahead inc hosp" "21" 2024-02-05 2024-02-29 0.01 4.99 "quantile" "hospital admissions only" +"24 day ahead inc hosp" "21" 2024-02-05 2024-02-29 0.025 6.9 "quantile" "hospital admissions only" +"24 day ahead inc hosp" "21" 2024-02-05 2024-02-29 0.05 9 "quantile" "hospital admissions only" +"24 day ahead inc hosp" "21" 2024-02-05 2024-02-29 0.1 12.9 "quantile" "hospital admissions only" +"24 day ahead inc hosp" "21" 2024-02-05 2024-02-29 0.15 14 "quantile" "hospital admissions only" +"24 day ahead inc hosp" "21" 2024-02-05 2024-02-29 0.2 15 "quantile" "hospital admissions only" +"24 day ahead inc hosp" "21" 2024-02-05 2024-02-29 0.25 15.75 "quantile" "hospital admissions only" +"24 day ahead inc hosp" "21" 2024-02-05 2024-02-29 0.3 17.7 "quantile" "hospital admissions only" +"24 day ahead inc hosp" "21" 2024-02-05 2024-02-29 0.35 21 "quantile" "hospital admissions only" +"24 day ahead inc hosp" "21" 2024-02-05 2024-02-29 0.4 22.6 "quantile" "hospital admissions only" +"24 day ahead inc hosp" "21" 2024-02-05 2024-02-29 0.45 25 "quantile" "hospital admissions only" +"24 day ahead inc hosp" "21" 2024-02-05 2024-02-29 0.5 26.5 "quantile" "hospital admissions only" +"24 day ahead inc hosp" "21" 2024-02-05 2024-02-29 0.55 28.45 "quantile" "hospital admissions only" +"24 day ahead inc hosp" "21" 2024-02-05 2024-02-29 0.6 31 "quantile" "hospital admissions only" +"24 day ahead inc hosp" "21" 2024-02-05 2024-02-29 0.65 32 "quantile" "hospital admissions only" +"24 day ahead inc hosp" "21" 2024-02-05 2024-02-29 0.7 33 "quantile" "hospital admissions only" +"24 day ahead inc hosp" "21" 2024-02-05 2024-02-29 0.75 36 "quantile" "hospital admissions only" +"24 day ahead inc hosp" "21" 2024-02-05 2024-02-29 0.8 38 "quantile" "hospital admissions only" +"24 day ahead inc hosp" "21" 2024-02-05 2024-02-29 0.85 40.6 "quantile" "hospital admissions only" +"24 day ahead inc hosp" "21" 2024-02-05 2024-02-29 0.9 45.2 "quantile" "hospital admissions only" +"24 day ahead inc hosp" "21" 2024-02-05 2024-02-29 0.95 52 "quantile" "hospital admissions only" +"24 day ahead inc hosp" "21" 2024-02-05 2024-02-29 0.975 54.1 "quantile" "hospital admissions only" +"24 day ahead inc hosp" "21" 2024-02-05 2024-02-29 0.99 57.05 "quantile" "hospital admissions only" +"25 day ahead inc hosp" "21" 2024-02-05 2024-03-01 0.01 3.98 "quantile" "hospital admissions only" +"25 day ahead inc hosp" "21" 2024-02-05 2024-03-01 0.025 7 "quantile" "hospital admissions only" +"25 day ahead inc hosp" "21" 2024-02-05 2024-03-01 0.05 8 "quantile" "hospital admissions only" +"25 day ahead inc hosp" "21" 2024-02-05 2024-03-01 0.1 10 "quantile" "hospital admissions only" +"25 day ahead inc hosp" "21" 2024-02-05 2024-03-01 0.15 12.7 "quantile" "hospital admissions only" +"25 day ahead inc hosp" "21" 2024-02-05 2024-03-01 0.2 14 "quantile" "hospital admissions only" +"25 day ahead inc hosp" "21" 2024-02-05 2024-03-01 0.25 16 "quantile" "hospital admissions only" +"25 day ahead inc hosp" "21" 2024-02-05 2024-03-01 0.3 16.7 "quantile" "hospital admissions only" +"25 day ahead inc hosp" "21" 2024-02-05 2024-03-01 0.35 19 "quantile" "hospital admissions only" +"25 day ahead inc hosp" "21" 2024-02-05 2024-03-01 0.4 20.6 "quantile" "hospital admissions only" +"25 day ahead inc hosp" "21" 2024-02-05 2024-03-01 0.45 21 "quantile" "hospital admissions only" +"25 day ahead inc hosp" "21" 2024-02-05 2024-03-01 0.5 22 "quantile" "hospital admissions only" +"25 day ahead inc hosp" "21" 2024-02-05 2024-03-01 0.55 25 "quantile" "hospital admissions only" +"25 day ahead inc hosp" "21" 2024-02-05 2024-03-01 0.6 26 "quantile" "hospital admissions only" +"25 day ahead inc hosp" "21" 2024-02-05 2024-03-01 0.65 27 "quantile" "hospital admissions only" +"25 day ahead inc hosp" "21" 2024-02-05 2024-03-01 0.7 28.3 "quantile" "hospital admissions only" +"25 day ahead inc hosp" "21" 2024-02-05 2024-03-01 0.75 31.25 "quantile" "hospital admissions only" +"25 day ahead inc hosp" "21" 2024-02-05 2024-03-01 0.8 33 "quantile" "hospital admissions only" +"25 day ahead inc hosp" "21" 2024-02-05 2024-03-01 0.85 37.3 "quantile" "hospital admissions only" +"25 day ahead inc hosp" "21" 2024-02-05 2024-03-01 0.9 42.2 "quantile" "hospital admissions only" +"25 day ahead inc hosp" "21" 2024-02-05 2024-03-01 0.95 50.05 "quantile" "hospital admissions only" +"25 day ahead inc hosp" "21" 2024-02-05 2024-03-01 0.975 53.525 "quantile" "hospital admissions only" +"25 day ahead inc hosp" "21" 2024-02-05 2024-03-01 0.99 56.07 "quantile" "hospital admissions only" +"26 day ahead inc hosp" "21" 2024-02-05 2024-03-02 0.01 4.99 "quantile" "hospital admissions only" +"26 day ahead inc hosp" "21" 2024-02-05 2024-03-02 0.025 5.475 "quantile" "hospital admissions only" +"26 day ahead inc hosp" "21" 2024-02-05 2024-03-02 0.05 8.85 "quantile" "hospital admissions only" +"26 day ahead inc hosp" "21" 2024-02-05 2024-03-02 0.1 9.9 "quantile" "hospital admissions only" +"26 day ahead inc hosp" "21" 2024-02-05 2024-03-02 0.15 11 "quantile" "hospital admissions only" +"26 day ahead inc hosp" "21" 2024-02-05 2024-03-02 0.2 12 "quantile" "hospital admissions only" +"26 day ahead inc hosp" "21" 2024-02-05 2024-03-02 0.25 14 "quantile" "hospital admissions only" +"26 day ahead inc hosp" "21" 2024-02-05 2024-03-02 0.3 16 "quantile" "hospital admissions only" +"26 day ahead inc hosp" "21" 2024-02-05 2024-03-02 0.35 17.65 "quantile" "hospital admissions only" +"26 day ahead inc hosp" "21" 2024-02-05 2024-03-02 0.4 19 "quantile" "hospital admissions only" +"26 day ahead inc hosp" "21" 2024-02-05 2024-03-02 0.45 20 "quantile" "hospital admissions only" +"26 day ahead inc hosp" "21" 2024-02-05 2024-03-02 0.5 22.5 "quantile" "hospital admissions only" +"26 day ahead inc hosp" "21" 2024-02-05 2024-03-02 0.55 24 "quantile" "hospital admissions only" +"26 day ahead inc hosp" "21" 2024-02-05 2024-03-02 0.6 25 "quantile" "hospital admissions only" +"26 day ahead inc hosp" "21" 2024-02-05 2024-03-02 0.65 26.35 "quantile" "hospital admissions only" +"26 day ahead inc hosp" "21" 2024-02-05 2024-03-02 0.7 27.3 "quantile" "hospital admissions only" +"26 day ahead inc hosp" "21" 2024-02-05 2024-03-02 0.75 29 "quantile" "hospital admissions only" +"26 day ahead inc hosp" "21" 2024-02-05 2024-03-02 0.8 33 "quantile" "hospital admissions only" +"26 day ahead inc hosp" "21" 2024-02-05 2024-03-02 0.85 35 "quantile" "hospital admissions only" +"26 day ahead inc hosp" "21" 2024-02-05 2024-03-02 0.9 38.3 "quantile" "hospital admissions only" +"26 day ahead inc hosp" "21" 2024-02-05 2024-03-02 0.95 48 "quantile" "hospital admissions only" +"26 day ahead inc hosp" "21" 2024-02-05 2024-03-02 0.975 51.625 "quantile" "hospital admissions only" +"26 day ahead inc hosp" "21" 2024-02-05 2024-03-02 0.99 58.02 "quantile" "hospital admissions only" +"27 day ahead inc hosp" "21" 2024-02-05 2024-03-03 0.01 3 "quantile" "hospital admissions only" +"27 day ahead inc hosp" "21" 2024-02-05 2024-03-03 0.025 4.425 "quantile" "hospital admissions only" +"27 day ahead inc hosp" "21" 2024-02-05 2024-03-03 0.05 6.95 "quantile" "hospital admissions only" +"27 day ahead inc hosp" "21" 2024-02-05 2024-03-03 0.1 8 "quantile" "hospital admissions only" +"27 day ahead inc hosp" "21" 2024-02-05 2024-03-03 0.15 12 "quantile" "hospital admissions only" +"27 day ahead inc hosp" "21" 2024-02-05 2024-03-03 0.2 14 "quantile" "hospital admissions only" +"27 day ahead inc hosp" "21" 2024-02-05 2024-03-03 0.25 16 "quantile" "hospital admissions only" +"27 day ahead inc hosp" "21" 2024-02-05 2024-03-03 0.3 17.7 "quantile" "hospital admissions only" +"27 day ahead inc hosp" "21" 2024-02-05 2024-03-03 0.35 19 "quantile" "hospital admissions only" +"27 day ahead inc hosp" "21" 2024-02-05 2024-03-03 0.4 20.6 "quantile" "hospital admissions only" +"27 day ahead inc hosp" "21" 2024-02-05 2024-03-03 0.45 22 "quantile" "hospital admissions only" +"27 day ahead inc hosp" "21" 2024-02-05 2024-03-03 0.5 23.5 "quantile" "hospital admissions only" +"27 day ahead inc hosp" "21" 2024-02-05 2024-03-03 0.55 24.45 "quantile" "hospital admissions only" +"27 day ahead inc hosp" "21" 2024-02-05 2024-03-03 0.6 26 "quantile" "hospital admissions only" +"27 day ahead inc hosp" "21" 2024-02-05 2024-03-03 0.65 27.35 "quantile" "hospital admissions only" +"27 day ahead inc hosp" "21" 2024-02-05 2024-03-03 0.7 29 "quantile" "hospital admissions only" +"27 day ahead inc hosp" "21" 2024-02-05 2024-03-03 0.75 30 "quantile" "hospital admissions only" +"27 day ahead inc hosp" "21" 2024-02-05 2024-03-03 0.8 31.2 "quantile" "hospital admissions only" +"27 day ahead inc hosp" "21" 2024-02-05 2024-03-03 0.85 35.15 "quantile" "hospital admissions only" +"27 day ahead inc hosp" "21" 2024-02-05 2024-03-03 0.9 39.1 "quantile" "hospital admissions only" +"27 day ahead inc hosp" "21" 2024-02-05 2024-03-03 0.95 46 "quantile" "hospital admissions only" +"27 day ahead inc hosp" "21" 2024-02-05 2024-03-03 0.975 56.525 "quantile" "hospital admissions only" +"27 day ahead inc hosp" "21" 2024-02-05 2024-03-03 0.99 62.06 "quantile" "hospital admissions only" +"28 day ahead inc hosp" "21" 2024-02-05 2024-03-04 0.01 3.98 "quantile" "hospital admissions only" +"28 day ahead inc hosp" "21" 2024-02-05 2024-03-04 0.025 5.95 "quantile" "hospital admissions only" +"28 day ahead inc hosp" "21" 2024-02-05 2024-03-04 0.05 7 "quantile" "hospital admissions only" +"28 day ahead inc hosp" "21" 2024-02-05 2024-03-04 0.1 8.9 "quantile" "hospital admissions only" +"28 day ahead inc hosp" "21" 2024-02-05 2024-03-04 0.15 11.7 "quantile" "hospital admissions only" +"28 day ahead inc hosp" "21" 2024-02-05 2024-03-04 0.2 15 "quantile" "hospital admissions only" +"28 day ahead inc hosp" "21" 2024-02-05 2024-03-04 0.25 16.75 "quantile" "hospital admissions only" +"28 day ahead inc hosp" "21" 2024-02-05 2024-03-04 0.3 20 "quantile" "hospital admissions only" +"28 day ahead inc hosp" "21" 2024-02-05 2024-03-04 0.35 21.65 "quantile" "hospital admissions only" +"28 day ahead inc hosp" "21" 2024-02-05 2024-03-04 0.4 22.6 "quantile" "hospital admissions only" +"28 day ahead inc hosp" "21" 2024-02-05 2024-03-04 0.45 23.55 "quantile" "hospital admissions only" +"28 day ahead inc hosp" "21" 2024-02-05 2024-03-04 0.5 26 "quantile" "hospital admissions only" +"28 day ahead inc hosp" "21" 2024-02-05 2024-03-04 0.55 26 "quantile" "hospital admissions only" +"28 day ahead inc hosp" "21" 2024-02-05 2024-03-04 0.6 28 "quantile" "hospital admissions only" +"28 day ahead inc hosp" "21" 2024-02-05 2024-03-04 0.65 29.35 "quantile" "hospital admissions only" +"28 day ahead inc hosp" "21" 2024-02-05 2024-03-04 0.7 31 "quantile" "hospital admissions only" +"28 day ahead inc hosp" "21" 2024-02-05 2024-03-04 0.75 33.25 "quantile" "hospital admissions only" +"28 day ahead inc hosp" "21" 2024-02-05 2024-03-04 0.8 35.2 "quantile" "hospital admissions only" +"28 day ahead inc hosp" "21" 2024-02-05 2024-03-04 0.85 38 "quantile" "hospital admissions only" +"28 day ahead inc hosp" "21" 2024-02-05 2024-03-04 0.9 42 "quantile" "hospital admissions only" +"28 day ahead inc hosp" "21" 2024-02-05 2024-03-04 0.95 50.3 "quantile" "hospital admissions only" +"28 day ahead inc hosp" "21" 2024-02-05 2024-03-04 0.975 64.525 "quantile" "hospital admissions only" +"28 day ahead inc hosp" "21" 2024-02-05 2024-03-04 0.99 68.1100000000001 "quantile" "hospital admissions only" +"1 day ahead inc hosp" "22" 2024-02-05 2024-02-06 0.01 24.96 "quantile" "hospital admissions only" +"1 day ahead inc hosp" "22" 2024-02-05 2024-02-06 0.025 27.95 "quantile" "hospital admissions only" +"1 day ahead inc hosp" "22" 2024-02-05 2024-02-06 0.05 32.8 "quantile" "hospital admissions only" +"1 day ahead inc hosp" "22" 2024-02-05 2024-02-06 0.1 36.9 "quantile" "hospital admissions only" +"1 day ahead inc hosp" "22" 2024-02-05 2024-02-06 0.15 38.85 "quantile" "hospital admissions only" +"1 day ahead inc hosp" "22" 2024-02-05 2024-02-06 0.2 40 "quantile" "hospital admissions only" +"1 day ahead inc hosp" "22" 2024-02-05 2024-02-06 0.25 42 "quantile" "hospital admissions only" +"1 day ahead inc hosp" "22" 2024-02-05 2024-02-06 0.3 43 "quantile" "hospital admissions only" +"1 day ahead inc hosp" "22" 2024-02-05 2024-02-06 0.35 45 "quantile" "hospital admissions only" +"1 day ahead inc hosp" "22" 2024-02-05 2024-02-06 0.4 46.6 "quantile" "hospital admissions only" +"1 day ahead inc hosp" "22" 2024-02-05 2024-02-06 0.45 48.55 "quantile" "hospital admissions only" +"1 day ahead inc hosp" "22" 2024-02-05 2024-02-06 0.5 50 "quantile" "hospital admissions only" +"1 day ahead inc hosp" "22" 2024-02-05 2024-02-06 0.55 51 "quantile" "hospital admissions only" +"1 day ahead inc hosp" "22" 2024-02-05 2024-02-06 0.6 52.4 "quantile" "hospital admissions only" +"1 day ahead inc hosp" "22" 2024-02-05 2024-02-06 0.65 53.35 "quantile" "hospital admissions only" +"1 day ahead inc hosp" "22" 2024-02-05 2024-02-06 0.7 55 "quantile" "hospital admissions only" +"1 day ahead inc hosp" "22" 2024-02-05 2024-02-06 0.75 57 "quantile" "hospital admissions only" +"1 day ahead inc hosp" "22" 2024-02-05 2024-02-06 0.8 58.2 "quantile" "hospital admissions only" +"1 day ahead inc hosp" "22" 2024-02-05 2024-02-06 0.85 60 "quantile" "hospital admissions only" +"1 day ahead inc hosp" "22" 2024-02-05 2024-02-06 0.9 62 "quantile" "hospital admissions only" +"1 day ahead inc hosp" "22" 2024-02-05 2024-02-06 0.95 65.05 "quantile" "hospital admissions only" +"1 day ahead inc hosp" "22" 2024-02-05 2024-02-06 0.975 68.625 "quantile" "hospital admissions only" +"1 day ahead inc hosp" "22" 2024-02-05 2024-02-06 0.99 72.08 "quantile" "hospital admissions only" +"2 day ahead inc hosp" "22" 2024-02-05 2024-02-07 0.01 23 "quantile" "hospital admissions only" +"2 day ahead inc hosp" "22" 2024-02-05 2024-02-07 0.025 26.475 "quantile" "hospital admissions only" +"2 day ahead inc hosp" "22" 2024-02-05 2024-02-07 0.05 28 "quantile" "hospital admissions only" +"2 day ahead inc hosp" "22" 2024-02-05 2024-02-07 0.1 33 "quantile" "hospital admissions only" +"2 day ahead inc hosp" "22" 2024-02-05 2024-02-07 0.15 34.85 "quantile" "hospital admissions only" +"2 day ahead inc hosp" "22" 2024-02-05 2024-02-07 0.2 36.8 "quantile" "hospital admissions only" +"2 day ahead inc hosp" "22" 2024-02-05 2024-02-07 0.25 38 "quantile" "hospital admissions only" +"2 day ahead inc hosp" "22" 2024-02-05 2024-02-07 0.3 40 "quantile" "hospital admissions only" +"2 day ahead inc hosp" "22" 2024-02-05 2024-02-07 0.35 40.65 "quantile" "hospital admissions only" +"2 day ahead inc hosp" "22" 2024-02-05 2024-02-07 0.4 42 "quantile" "hospital admissions only" +"2 day ahead inc hosp" "22" 2024-02-05 2024-02-07 0.45 44 "quantile" "hospital admissions only" +"2 day ahead inc hosp" "22" 2024-02-05 2024-02-07 0.5 45 "quantile" "hospital admissions only" +"2 day ahead inc hosp" "22" 2024-02-05 2024-02-07 0.55 46 "quantile" "hospital admissions only" +"2 day ahead inc hosp" "22" 2024-02-05 2024-02-07 0.6 48.4 "quantile" "hospital admissions only" +"2 day ahead inc hosp" "22" 2024-02-05 2024-02-07 0.65 51.35 "quantile" "hospital admissions only" +"2 day ahead inc hosp" "22" 2024-02-05 2024-02-07 0.7 53 "quantile" "hospital admissions only" +"2 day ahead inc hosp" "22" 2024-02-05 2024-02-07 0.75 56 "quantile" "hospital admissions only" +"2 day ahead inc hosp" "22" 2024-02-05 2024-02-07 0.8 57 "quantile" "hospital admissions only" +"2 day ahead inc hosp" "22" 2024-02-05 2024-02-07 0.85 59.3 "quantile" "hospital admissions only" +"2 day ahead inc hosp" "22" 2024-02-05 2024-02-07 0.9 63 "quantile" "hospital admissions only" +"2 day ahead inc hosp" "22" 2024-02-05 2024-02-07 0.95 68 "quantile" "hospital admissions only" +"2 day ahead inc hosp" "22" 2024-02-05 2024-02-07 0.975 68.525 "quantile" "hospital admissions only" +"2 day ahead inc hosp" "22" 2024-02-05 2024-02-07 0.99 75.05 "quantile" "hospital admissions only" +"3 day ahead inc hosp" "22" 2024-02-05 2024-02-08 0.01 31.98 "quantile" "hospital admissions only" +"3 day ahead inc hosp" "22" 2024-02-05 2024-02-08 0.025 32.95 "quantile" "hospital admissions only" +"3 day ahead inc hosp" "22" 2024-02-05 2024-02-08 0.05 34 "quantile" "hospital admissions only" +"3 day ahead inc hosp" "22" 2024-02-05 2024-02-08 0.1 36.9 "quantile" "hospital admissions only" +"3 day ahead inc hosp" "22" 2024-02-05 2024-02-08 0.15 38.85 "quantile" "hospital admissions only" +"3 day ahead inc hosp" "22" 2024-02-05 2024-02-08 0.2 39 "quantile" "hospital admissions only" +"3 day ahead inc hosp" "22" 2024-02-05 2024-02-08 0.25 42 "quantile" "hospital admissions only" +"3 day ahead inc hosp" "22" 2024-02-05 2024-02-08 0.3 43 "quantile" "hospital admissions only" +"3 day ahead inc hosp" "22" 2024-02-05 2024-02-08 0.35 44 "quantile" "hospital admissions only" +"3 day ahead inc hosp" "22" 2024-02-05 2024-02-08 0.4 45.6 "quantile" "hospital admissions only" +"3 day ahead inc hosp" "22" 2024-02-05 2024-02-08 0.45 46.55 "quantile" "hospital admissions only" +"3 day ahead inc hosp" "22" 2024-02-05 2024-02-08 0.5 48 "quantile" "hospital admissions only" +"3 day ahead inc hosp" "22" 2024-02-05 2024-02-08 0.55 49 "quantile" "hospital admissions only" +"3 day ahead inc hosp" "22" 2024-02-05 2024-02-08 0.6 50.4 "quantile" "hospital admissions only" +"3 day ahead inc hosp" "22" 2024-02-05 2024-02-08 0.65 53 "quantile" "hospital admissions only" +"3 day ahead inc hosp" "22" 2024-02-05 2024-02-08 0.7 54 "quantile" "hospital admissions only" +"3 day ahead inc hosp" "22" 2024-02-05 2024-02-08 0.75 55.25 "quantile" "hospital admissions only" +"3 day ahead inc hosp" "22" 2024-02-05 2024-02-08 0.8 58.2 "quantile" "hospital admissions only" +"3 day ahead inc hosp" "22" 2024-02-05 2024-02-08 0.85 60.15 "quantile" "hospital admissions only" +"3 day ahead inc hosp" "22" 2024-02-05 2024-02-08 0.9 64.2 "quantile" "hospital admissions only" +"3 day ahead inc hosp" "22" 2024-02-05 2024-02-08 0.95 71 "quantile" "hospital admissions only" +"3 day ahead inc hosp" "22" 2024-02-05 2024-02-08 0.975 75.6749999999999 "quantile" "hospital admissions only" +"3 day ahead inc hosp" "22" 2024-02-05 2024-02-08 0.99 82.1600000000001 "quantile" "hospital admissions only" +"4 day ahead inc hosp" "22" 2024-02-05 2024-02-09 0.01 23.96 "quantile" "hospital admissions only" +"4 day ahead inc hosp" "22" 2024-02-05 2024-02-09 0.025 26.475 "quantile" "hospital admissions only" +"4 day ahead inc hosp" "22" 2024-02-05 2024-02-09 0.05 29 "quantile" "hospital admissions only" +"4 day ahead inc hosp" "22" 2024-02-05 2024-02-09 0.1 29.9 "quantile" "hospital admissions only" +"4 day ahead inc hosp" "22" 2024-02-05 2024-02-09 0.15 32.85 "quantile" "hospital admissions only" +"4 day ahead inc hosp" "22" 2024-02-05 2024-02-09 0.2 35 "quantile" "hospital admissions only" +"4 day ahead inc hosp" "22" 2024-02-05 2024-02-09 0.25 37.75 "quantile" "hospital admissions only" +"4 day ahead inc hosp" "22" 2024-02-05 2024-02-09 0.3 38.7 "quantile" "hospital admissions only" +"4 day ahead inc hosp" "22" 2024-02-05 2024-02-09 0.35 40 "quantile" "hospital admissions only" +"4 day ahead inc hosp" "22" 2024-02-05 2024-02-09 0.4 41 "quantile" "hospital admissions only" +"4 day ahead inc hosp" "22" 2024-02-05 2024-02-09 0.45 43.55 "quantile" "hospital admissions only" +"4 day ahead inc hosp" "22" 2024-02-05 2024-02-09 0.5 44.5 "quantile" "hospital admissions only" +"4 day ahead inc hosp" "22" 2024-02-05 2024-02-09 0.55 46 "quantile" "hospital admissions only" +"4 day ahead inc hosp" "22" 2024-02-05 2024-02-09 0.6 46 "quantile" "hospital admissions only" +"4 day ahead inc hosp" "22" 2024-02-05 2024-02-09 0.65 47 "quantile" "hospital admissions only" +"4 day ahead inc hosp" "22" 2024-02-05 2024-02-09 0.7 48 "quantile" "hospital admissions only" +"4 day ahead inc hosp" "22" 2024-02-05 2024-02-09 0.75 49 "quantile" "hospital admissions only" +"4 day ahead inc hosp" "22" 2024-02-05 2024-02-09 0.8 51 "quantile" "hospital admissions only" +"4 day ahead inc hosp" "22" 2024-02-05 2024-02-09 0.85 53.15 "quantile" "hospital admissions only" +"4 day ahead inc hosp" "22" 2024-02-05 2024-02-09 0.9 57 "quantile" "hospital admissions only" +"4 day ahead inc hosp" "22" 2024-02-05 2024-02-09 0.95 59.05 "quantile" "hospital admissions only" +"4 day ahead inc hosp" "22" 2024-02-05 2024-02-09 0.975 67.7749999999999 "quantile" "hospital admissions only" +"4 day ahead inc hosp" "22" 2024-02-05 2024-02-09 0.99 79.05 "quantile" "hospital admissions only" +"5 day ahead inc hosp" "22" 2024-02-05 2024-02-10 0.01 22.96 "quantile" "hospital admissions only" +"5 day ahead inc hosp" "22" 2024-02-05 2024-02-10 0.025 25.475 "quantile" "hospital admissions only" +"5 day ahead inc hosp" "22" 2024-02-05 2024-02-10 0.05 26.95 "quantile" "hospital admissions only" +"5 day ahead inc hosp" "22" 2024-02-05 2024-02-10 0.1 29.9 "quantile" "hospital admissions only" +"5 day ahead inc hosp" "22" 2024-02-05 2024-02-10 0.15 31 "quantile" "hospital admissions only" +"5 day ahead inc hosp" "22" 2024-02-05 2024-02-10 0.2 32 "quantile" "hospital admissions only" +"5 day ahead inc hosp" "22" 2024-02-05 2024-02-10 0.25 34 "quantile" "hospital admissions only" +"5 day ahead inc hosp" "22" 2024-02-05 2024-02-10 0.3 34.7 "quantile" "hospital admissions only" +"5 day ahead inc hosp" "22" 2024-02-05 2024-02-10 0.35 36 "quantile" "hospital admissions only" +"5 day ahead inc hosp" "22" 2024-02-05 2024-02-10 0.4 38 "quantile" "hospital admissions only" +"5 day ahead inc hosp" "22" 2024-02-05 2024-02-10 0.45 41 "quantile" "hospital admissions only" +"5 day ahead inc hosp" "22" 2024-02-05 2024-02-10 0.5 42 "quantile" "hospital admissions only" +"5 day ahead inc hosp" "22" 2024-02-05 2024-02-10 0.55 42.45 "quantile" "hospital admissions only" +"5 day ahead inc hosp" "22" 2024-02-05 2024-02-10 0.6 43 "quantile" "hospital admissions only" +"5 day ahead inc hosp" "22" 2024-02-05 2024-02-10 0.65 44 "quantile" "hospital admissions only" +"5 day ahead inc hosp" "22" 2024-02-05 2024-02-10 0.7 46 "quantile" "hospital admissions only" +"5 day ahead inc hosp" "22" 2024-02-05 2024-02-10 0.75 47 "quantile" "hospital admissions only" +"5 day ahead inc hosp" "22" 2024-02-05 2024-02-10 0.8 49 "quantile" "hospital admissions only" +"5 day ahead inc hosp" "22" 2024-02-05 2024-02-10 0.85 51 "quantile" "hospital admissions only" +"5 day ahead inc hosp" "22" 2024-02-05 2024-02-10 0.9 54.1 "quantile" "hospital admissions only" +"5 day ahead inc hosp" "22" 2024-02-05 2024-02-10 0.95 60.05 "quantile" "hospital admissions only" +"5 day ahead inc hosp" "22" 2024-02-05 2024-02-10 0.975 63.525 "quantile" "hospital admissions only" +"5 day ahead inc hosp" "22" 2024-02-05 2024-02-10 0.99 65.04 "quantile" "hospital admissions only" +"6 day ahead inc hosp" "22" 2024-02-05 2024-02-11 0.01 18.96 "quantile" "hospital admissions only" +"6 day ahead inc hosp" "22" 2024-02-05 2024-02-11 0.025 19.95 "quantile" "hospital admissions only" +"6 day ahead inc hosp" "22" 2024-02-05 2024-02-11 0.05 22.95 "quantile" "hospital admissions only" +"6 day ahead inc hosp" "22" 2024-02-05 2024-02-11 0.1 27.9 "quantile" "hospital admissions only" +"6 day ahead inc hosp" "22" 2024-02-05 2024-02-11 0.15 29 "quantile" "hospital admissions only" +"6 day ahead inc hosp" "22" 2024-02-05 2024-02-11 0.2 30 "quantile" "hospital admissions only" +"6 day ahead inc hosp" "22" 2024-02-05 2024-02-11 0.25 31.75 "quantile" "hospital admissions only" +"6 day ahead inc hosp" "22" 2024-02-05 2024-02-11 0.3 33 "quantile" "hospital admissions only" +"6 day ahead inc hosp" "22" 2024-02-05 2024-02-11 0.35 34 "quantile" "hospital admissions only" +"6 day ahead inc hosp" "22" 2024-02-05 2024-02-11 0.4 36 "quantile" "hospital admissions only" +"6 day ahead inc hosp" "22" 2024-02-05 2024-02-11 0.45 37 "quantile" "hospital admissions only" +"6 day ahead inc hosp" "22" 2024-02-05 2024-02-11 0.5 38 "quantile" "hospital admissions only" +"6 day ahead inc hosp" "22" 2024-02-05 2024-02-11 0.55 39 "quantile" "hospital admissions only" +"6 day ahead inc hosp" "22" 2024-02-05 2024-02-11 0.6 40.4 "quantile" "hospital admissions only" +"6 day ahead inc hosp" "22" 2024-02-05 2024-02-11 0.65 41.35 "quantile" "hospital admissions only" +"6 day ahead inc hosp" "22" 2024-02-05 2024-02-11 0.7 44 "quantile" "hospital admissions only" +"6 day ahead inc hosp" "22" 2024-02-05 2024-02-11 0.75 46 "quantile" "hospital admissions only" +"6 day ahead inc hosp" "22" 2024-02-05 2024-02-11 0.8 47 "quantile" "hospital admissions only" +"6 day ahead inc hosp" "22" 2024-02-05 2024-02-11 0.85 49 "quantile" "hospital admissions only" +"6 day ahead inc hosp" "22" 2024-02-05 2024-02-11 0.9 52.1 "quantile" "hospital admissions only" +"6 day ahead inc hosp" "22" 2024-02-05 2024-02-11 0.95 57.1 "quantile" "hospital admissions only" +"6 day ahead inc hosp" "22" 2024-02-05 2024-02-11 0.975 60.05 "quantile" "hospital admissions only" +"6 day ahead inc hosp" "22" 2024-02-05 2024-02-11 0.99 65.08 "quantile" "hospital admissions only" +"7 day ahead inc hosp" "22" 2024-02-05 2024-02-12 0.01 22.97 "quantile" "hospital admissions only" +"7 day ahead inc hosp" "22" 2024-02-05 2024-02-12 0.025 24.475 "quantile" "hospital admissions only" +"7 day ahead inc hosp" "22" 2024-02-05 2024-02-12 0.05 28 "quantile" "hospital admissions only" +"7 day ahead inc hosp" "22" 2024-02-05 2024-02-12 0.1 30.9 "quantile" "hospital admissions only" +"7 day ahead inc hosp" "22" 2024-02-05 2024-02-12 0.15 34 "quantile" "hospital admissions only" +"7 day ahead inc hosp" "22" 2024-02-05 2024-02-12 0.2 36 "quantile" "hospital admissions only" +"7 day ahead inc hosp" "22" 2024-02-05 2024-02-12 0.25 37.75 "quantile" "hospital admissions only" +"7 day ahead inc hosp" "22" 2024-02-05 2024-02-12 0.3 39 "quantile" "hospital admissions only" +"7 day ahead inc hosp" "22" 2024-02-05 2024-02-12 0.35 42.3 "quantile" "hospital admissions only" +"7 day ahead inc hosp" "22" 2024-02-05 2024-02-12 0.4 43.6 "quantile" "hospital admissions only" +"7 day ahead inc hosp" "22" 2024-02-05 2024-02-12 0.45 45 "quantile" "hospital admissions only" +"7 day ahead inc hosp" "22" 2024-02-05 2024-02-12 0.5 46.5 "quantile" "hospital admissions only" +"7 day ahead inc hosp" "22" 2024-02-05 2024-02-12 0.55 48 "quantile" "hospital admissions only" +"7 day ahead inc hosp" "22" 2024-02-05 2024-02-12 0.6 49 "quantile" "hospital admissions only" +"7 day ahead inc hosp" "22" 2024-02-05 2024-02-12 0.65 50.35 "quantile" "hospital admissions only" +"7 day ahead inc hosp" "22" 2024-02-05 2024-02-12 0.7 53 "quantile" "hospital admissions only" +"7 day ahead inc hosp" "22" 2024-02-05 2024-02-12 0.75 53 "quantile" "hospital admissions only" +"7 day ahead inc hosp" "22" 2024-02-05 2024-02-12 0.8 56 "quantile" "hospital admissions only" +"7 day ahead inc hosp" "22" 2024-02-05 2024-02-12 0.85 57.45 "quantile" "hospital admissions only" +"7 day ahead inc hosp" "22" 2024-02-05 2024-02-12 0.9 62 "quantile" "hospital admissions only" +"7 day ahead inc hosp" "22" 2024-02-05 2024-02-12 0.95 65 "quantile" "hospital admissions only" +"7 day ahead inc hosp" "22" 2024-02-05 2024-02-12 0.975 66 "quantile" "hospital admissions only" +"7 day ahead inc hosp" "22" 2024-02-05 2024-02-12 0.99 82.06 "quantile" "hospital admissions only" +"8 day ahead inc hosp" "22" 2024-02-05 2024-02-13 0.01 24.99 "quantile" "hospital admissions only" +"8 day ahead inc hosp" "22" 2024-02-05 2024-02-13 0.025 26 "quantile" "hospital admissions only" +"8 day ahead inc hosp" "22" 2024-02-05 2024-02-13 0.05 30 "quantile" "hospital admissions only" +"8 day ahead inc hosp" "22" 2024-02-05 2024-02-13 0.1 33.9 "quantile" "hospital admissions only" +"8 day ahead inc hosp" "22" 2024-02-05 2024-02-13 0.15 35 "quantile" "hospital admissions only" +"8 day ahead inc hosp" "22" 2024-02-05 2024-02-13 0.2 37.8 "quantile" "hospital admissions only" +"8 day ahead inc hosp" "22" 2024-02-05 2024-02-13 0.25 39 "quantile" "hospital admissions only" +"8 day ahead inc hosp" "22" 2024-02-05 2024-02-13 0.3 41.7 "quantile" "hospital admissions only" +"8 day ahead inc hosp" "22" 2024-02-05 2024-02-13 0.35 44 "quantile" "hospital admissions only" +"8 day ahead inc hosp" "22" 2024-02-05 2024-02-13 0.4 46 "quantile" "hospital admissions only" +"8 day ahead inc hosp" "22" 2024-02-05 2024-02-13 0.45 47 "quantile" "hospital admissions only" +"8 day ahead inc hosp" "22" 2024-02-05 2024-02-13 0.5 49 "quantile" "hospital admissions only" +"8 day ahead inc hosp" "22" 2024-02-05 2024-02-13 0.55 50.45 "quantile" "hospital admissions only" +"8 day ahead inc hosp" "22" 2024-02-05 2024-02-13 0.6 51 "quantile" "hospital admissions only" +"8 day ahead inc hosp" "22" 2024-02-05 2024-02-13 0.65 54 "quantile" "hospital admissions only" +"8 day ahead inc hosp" "22" 2024-02-05 2024-02-13 0.7 55 "quantile" "hospital admissions only" +"8 day ahead inc hosp" "22" 2024-02-05 2024-02-13 0.75 56.25 "quantile" "hospital admissions only" +"8 day ahead inc hosp" "22" 2024-02-05 2024-02-13 0.8 57 "quantile" "hospital admissions only" +"8 day ahead inc hosp" "22" 2024-02-05 2024-02-13 0.85 59 "quantile" "hospital admissions only" +"8 day ahead inc hosp" "22" 2024-02-05 2024-02-13 0.9 64.1 "quantile" "hospital admissions only" +"8 day ahead inc hosp" "22" 2024-02-05 2024-02-13 0.95 72.05 "quantile" "hospital admissions only" +"8 day ahead inc hosp" "22" 2024-02-05 2024-02-13 0.975 74 "quantile" "hospital admissions only" +"8 day ahead inc hosp" "22" 2024-02-05 2024-02-13 0.99 82 "quantile" "hospital admissions only" +"9 day ahead inc hosp" "22" 2024-02-05 2024-02-14 0.01 24 "quantile" "hospital admissions only" +"9 day ahead inc hosp" "22" 2024-02-05 2024-02-14 0.025 25.475 "quantile" "hospital admissions only" +"9 day ahead inc hosp" "22" 2024-02-05 2024-02-14 0.05 27 "quantile" "hospital admissions only" +"9 day ahead inc hosp" "22" 2024-02-05 2024-02-14 0.1 31 "quantile" "hospital admissions only" +"9 day ahead inc hosp" "22" 2024-02-05 2024-02-14 0.15 35 "quantile" "hospital admissions only" +"9 day ahead inc hosp" "22" 2024-02-05 2024-02-14 0.2 36.8 "quantile" "hospital admissions only" +"9 day ahead inc hosp" "22" 2024-02-05 2024-02-14 0.25 39 "quantile" "hospital admissions only" +"9 day ahead inc hosp" "22" 2024-02-05 2024-02-14 0.3 41 "quantile" "hospital admissions only" +"9 day ahead inc hosp" "22" 2024-02-05 2024-02-14 0.35 42 "quantile" "hospital admissions only" +"9 day ahead inc hosp" "22" 2024-02-05 2024-02-14 0.4 43 "quantile" "hospital admissions only" +"9 day ahead inc hosp" "22" 2024-02-05 2024-02-14 0.45 44 "quantile" "hospital admissions only" +"9 day ahead inc hosp" "22" 2024-02-05 2024-02-14 0.5 45.5 "quantile" "hospital admissions only" +"9 day ahead inc hosp" "22" 2024-02-05 2024-02-14 0.55 47 "quantile" "hospital admissions only" +"9 day ahead inc hosp" "22" 2024-02-05 2024-02-14 0.6 48 "quantile" "hospital admissions only" +"9 day ahead inc hosp" "22" 2024-02-05 2024-02-14 0.65 49.35 "quantile" "hospital admissions only" +"9 day ahead inc hosp" "22" 2024-02-05 2024-02-14 0.7 50.3 "quantile" "hospital admissions only" +"9 day ahead inc hosp" "22" 2024-02-05 2024-02-14 0.75 52 "quantile" "hospital admissions only" +"9 day ahead inc hosp" "22" 2024-02-05 2024-02-14 0.8 54 "quantile" "hospital admissions only" +"9 day ahead inc hosp" "22" 2024-02-05 2024-02-14 0.85 56.15 "quantile" "hospital admissions only" +"9 day ahead inc hosp" "22" 2024-02-05 2024-02-14 0.9 60 "quantile" "hospital admissions only" +"9 day ahead inc hosp" "22" 2024-02-05 2024-02-14 0.95 61.1 "quantile" "hospital admissions only" +"9 day ahead inc hosp" "22" 2024-02-05 2024-02-14 0.975 64.05 "quantile" "hospital admissions only" +"9 day ahead inc hosp" "22" 2024-02-05 2024-02-14 0.99 66.01 "quantile" "hospital admissions only" +"10 day ahead inc hosp" "22" 2024-02-05 2024-02-15 0.01 24.98 "quantile" "hospital admissions only" +"10 day ahead inc hosp" "22" 2024-02-05 2024-02-15 0.025 26 "quantile" "hospital admissions only" +"10 day ahead inc hosp" "22" 2024-02-05 2024-02-15 0.05 27.95 "quantile" "hospital admissions only" +"10 day ahead inc hosp" "22" 2024-02-05 2024-02-15 0.1 32.9 "quantile" "hospital admissions only" +"10 day ahead inc hosp" "22" 2024-02-05 2024-02-15 0.15 35 "quantile" "hospital admissions only" +"10 day ahead inc hosp" "22" 2024-02-05 2024-02-15 0.2 36.8 "quantile" "hospital admissions only" +"10 day ahead inc hosp" "22" 2024-02-05 2024-02-15 0.25 38.75 "quantile" "hospital admissions only" +"10 day ahead inc hosp" "22" 2024-02-05 2024-02-15 0.3 40 "quantile" "hospital admissions only" +"10 day ahead inc hosp" "22" 2024-02-05 2024-02-15 0.35 42 "quantile" "hospital admissions only" +"10 day ahead inc hosp" "22" 2024-02-05 2024-02-15 0.4 44 "quantile" "hospital admissions only" +"10 day ahead inc hosp" "22" 2024-02-05 2024-02-15 0.45 45.55 "quantile" "hospital admissions only" +"10 day ahead inc hosp" "22" 2024-02-05 2024-02-15 0.5 47 "quantile" "hospital admissions only" +"10 day ahead inc hosp" "22" 2024-02-05 2024-02-15 0.55 49 "quantile" "hospital admissions only" +"10 day ahead inc hosp" "22" 2024-02-05 2024-02-15 0.6 50 "quantile" "hospital admissions only" +"10 day ahead inc hosp" "22" 2024-02-05 2024-02-15 0.65 50.7 "quantile" "hospital admissions only" +"10 day ahead inc hosp" "22" 2024-02-05 2024-02-15 0.7 54 "quantile" "hospital admissions only" +"10 day ahead inc hosp" "22" 2024-02-05 2024-02-15 0.75 55 "quantile" "hospital admissions only" +"10 day ahead inc hosp" "22" 2024-02-05 2024-02-15 0.8 58 "quantile" "hospital admissions only" +"10 day ahead inc hosp" "22" 2024-02-05 2024-02-15 0.85 62.15 "quantile" "hospital admissions only" +"10 day ahead inc hosp" "22" 2024-02-05 2024-02-15 0.9 64.4 "quantile" "hospital admissions only" +"10 day ahead inc hosp" "22" 2024-02-05 2024-02-15 0.95 72.15 "quantile" "hospital admissions only" +"10 day ahead inc hosp" "22" 2024-02-05 2024-02-15 0.975 77.05 "quantile" "hospital admissions only" +"10 day ahead inc hosp" "22" 2024-02-05 2024-02-15 0.99 83.07 "quantile" "hospital admissions only" +"11 day ahead inc hosp" "22" 2024-02-05 2024-02-16 0.01 21.99 "quantile" "hospital admissions only" +"11 day ahead inc hosp" "22" 2024-02-05 2024-02-16 0.025 23 "quantile" "hospital admissions only" +"11 day ahead inc hosp" "22" 2024-02-05 2024-02-16 0.05 27 "quantile" "hospital admissions only" +"11 day ahead inc hosp" "22" 2024-02-05 2024-02-16 0.1 30.9 "quantile" "hospital admissions only" +"11 day ahead inc hosp" "22" 2024-02-05 2024-02-16 0.15 32.85 "quantile" "hospital admissions only" +"11 day ahead inc hosp" "22" 2024-02-05 2024-02-16 0.2 34 "quantile" "hospital admissions only" +"11 day ahead inc hosp" "22" 2024-02-05 2024-02-16 0.25 36.5 "quantile" "hospital admissions only" +"11 day ahead inc hosp" "22" 2024-02-05 2024-02-16 0.3 37.7 "quantile" "hospital admissions only" +"11 day ahead inc hosp" "22" 2024-02-05 2024-02-16 0.35 39 "quantile" "hospital admissions only" +"11 day ahead inc hosp" "22" 2024-02-05 2024-02-16 0.4 40 "quantile" "hospital admissions only" +"11 day ahead inc hosp" "22" 2024-02-05 2024-02-16 0.45 40 "quantile" "hospital admissions only" +"11 day ahead inc hosp" "22" 2024-02-05 2024-02-16 0.5 41 "quantile" "hospital admissions only" +"11 day ahead inc hosp" "22" 2024-02-05 2024-02-16 0.55 43 "quantile" "hospital admissions only" +"11 day ahead inc hosp" "22" 2024-02-05 2024-02-16 0.6 44 "quantile" "hospital admissions only" +"11 day ahead inc hosp" "22" 2024-02-05 2024-02-16 0.65 46 "quantile" "hospital admissions only" +"11 day ahead inc hosp" "22" 2024-02-05 2024-02-16 0.7 47.3 "quantile" "hospital admissions only" +"11 day ahead inc hosp" "22" 2024-02-05 2024-02-16 0.75 48.25 "quantile" "hospital admissions only" +"11 day ahead inc hosp" "22" 2024-02-05 2024-02-16 0.8 52 "quantile" "hospital admissions only" +"11 day ahead inc hosp" "22" 2024-02-05 2024-02-16 0.85 54 "quantile" "hospital admissions only" +"11 day ahead inc hosp" "22" 2024-02-05 2024-02-16 0.9 55.2 "quantile" "hospital admissions only" +"11 day ahead inc hosp" "22" 2024-02-05 2024-02-16 0.95 61.2 "quantile" "hospital admissions only" +"11 day ahead inc hosp" "22" 2024-02-05 2024-02-16 0.975 68.6749999999999 "quantile" "hospital admissions only" +"11 day ahead inc hosp" "22" 2024-02-05 2024-02-16 0.99 78.3100000000002 "quantile" "hospital admissions only" +"12 day ahead inc hosp" "22" 2024-02-05 2024-02-17 0.01 18.97 "quantile" "hospital admissions only" +"12 day ahead inc hosp" "22" 2024-02-05 2024-02-17 0.025 20 "quantile" "hospital admissions only" +"12 day ahead inc hosp" "22" 2024-02-05 2024-02-17 0.05 21 "quantile" "hospital admissions only" +"12 day ahead inc hosp" "22" 2024-02-05 2024-02-17 0.1 24.9 "quantile" "hospital admissions only" +"12 day ahead inc hosp" "22" 2024-02-05 2024-02-17 0.15 29.85 "quantile" "hospital admissions only" +"12 day ahead inc hosp" "22" 2024-02-05 2024-02-17 0.2 32 "quantile" "hospital admissions only" +"12 day ahead inc hosp" "22" 2024-02-05 2024-02-17 0.25 33.75 "quantile" "hospital admissions only" +"12 day ahead inc hosp" "22" 2024-02-05 2024-02-17 0.3 35 "quantile" "hospital admissions only" +"12 day ahead inc hosp" "22" 2024-02-05 2024-02-17 0.35 36.65 "quantile" "hospital admissions only" +"12 day ahead inc hosp" "22" 2024-02-05 2024-02-17 0.4 38 "quantile" "hospital admissions only" +"12 day ahead inc hosp" "22" 2024-02-05 2024-02-17 0.45 40 "quantile" "hospital admissions only" +"12 day ahead inc hosp" "22" 2024-02-05 2024-02-17 0.5 41 "quantile" "hospital admissions only" +"12 day ahead inc hosp" "22" 2024-02-05 2024-02-17 0.55 42.45 "quantile" "hospital admissions only" +"12 day ahead inc hosp" "22" 2024-02-05 2024-02-17 0.6 43.4 "quantile" "hospital admissions only" +"12 day ahead inc hosp" "22" 2024-02-05 2024-02-17 0.65 46 "quantile" "hospital admissions only" +"12 day ahead inc hosp" "22" 2024-02-05 2024-02-17 0.7 47 "quantile" "hospital admissions only" +"12 day ahead inc hosp" "22" 2024-02-05 2024-02-17 0.75 48 "quantile" "hospital admissions only" +"12 day ahead inc hosp" "22" 2024-02-05 2024-02-17 0.8 49.2 "quantile" "hospital admissions only" +"12 day ahead inc hosp" "22" 2024-02-05 2024-02-17 0.85 54 "quantile" "hospital admissions only" +"12 day ahead inc hosp" "22" 2024-02-05 2024-02-17 0.9 57.1 "quantile" "hospital admissions only" +"12 day ahead inc hosp" "22" 2024-02-05 2024-02-17 0.95 64.05 "quantile" "hospital admissions only" +"12 day ahead inc hosp" "22" 2024-02-05 2024-02-17 0.975 66.525 "quantile" "hospital admissions only" +"12 day ahead inc hosp" "22" 2024-02-05 2024-02-17 0.99 68.1600000000001 "quantile" "hospital admissions only" +"13 day ahead inc hosp" "22" 2024-02-05 2024-02-18 0.01 18.96 "quantile" "hospital admissions only" +"13 day ahead inc hosp" "22" 2024-02-05 2024-02-18 0.025 20 "quantile" "hospital admissions only" +"13 day ahead inc hosp" "22" 2024-02-05 2024-02-18 0.05 21.9 "quantile" "hospital admissions only" +"13 day ahead inc hosp" "22" 2024-02-05 2024-02-18 0.1 24.9 "quantile" "hospital admissions only" +"13 day ahead inc hosp" "22" 2024-02-05 2024-02-18 0.15 27 "quantile" "hospital admissions only" +"13 day ahead inc hosp" "22" 2024-02-05 2024-02-18 0.2 29 "quantile" "hospital admissions only" +"13 day ahead inc hosp" "22" 2024-02-05 2024-02-18 0.25 30 "quantile" "hospital admissions only" +"13 day ahead inc hosp" "22" 2024-02-05 2024-02-18 0.3 31 "quantile" "hospital admissions only" +"13 day ahead inc hosp" "22" 2024-02-05 2024-02-18 0.35 34 "quantile" "hospital admissions only" +"13 day ahead inc hosp" "22" 2024-02-05 2024-02-18 0.4 34.6 "quantile" "hospital admissions only" +"13 day ahead inc hosp" "22" 2024-02-05 2024-02-18 0.45 36 "quantile" "hospital admissions only" +"13 day ahead inc hosp" "22" 2024-02-05 2024-02-18 0.5 37 "quantile" "hospital admissions only" +"13 day ahead inc hosp" "22" 2024-02-05 2024-02-18 0.55 38 "quantile" "hospital admissions only" +"13 day ahead inc hosp" "22" 2024-02-05 2024-02-18 0.6 39 "quantile" "hospital admissions only" +"13 day ahead inc hosp" "22" 2024-02-05 2024-02-18 0.65 41.7 "quantile" "hospital admissions only" +"13 day ahead inc hosp" "22" 2024-02-05 2024-02-18 0.7 43.3 "quantile" "hospital admissions only" +"13 day ahead inc hosp" "22" 2024-02-05 2024-02-18 0.75 45 "quantile" "hospital admissions only" +"13 day ahead inc hosp" "22" 2024-02-05 2024-02-18 0.8 47.2 "quantile" "hospital admissions only" +"13 day ahead inc hosp" "22" 2024-02-05 2024-02-18 0.85 50 "quantile" "hospital admissions only" +"13 day ahead inc hosp" "22" 2024-02-05 2024-02-18 0.9 52.1 "quantile" "hospital admissions only" +"13 day ahead inc hosp" "22" 2024-02-05 2024-02-18 0.95 61 "quantile" "hospital admissions only" +"13 day ahead inc hosp" "22" 2024-02-05 2024-02-18 0.975 70.3999999999999 "quantile" "hospital admissions only" +"13 day ahead inc hosp" "22" 2024-02-05 2024-02-18 0.99 81.04 "quantile" "hospital admissions only" +"14 day ahead inc hosp" "22" 2024-02-05 2024-02-19 0.01 17.98 "quantile" "hospital admissions only" +"14 day ahead inc hosp" "22" 2024-02-05 2024-02-19 0.025 19.475 "quantile" "hospital admissions only" +"14 day ahead inc hosp" "22" 2024-02-05 2024-02-19 0.05 24.95 "quantile" "hospital admissions only" +"14 day ahead inc hosp" "22" 2024-02-05 2024-02-19 0.1 29.9 "quantile" "hospital admissions only" +"14 day ahead inc hosp" "22" 2024-02-05 2024-02-19 0.15 31.85 "quantile" "hospital admissions only" +"14 day ahead inc hosp" "22" 2024-02-05 2024-02-19 0.2 33.8 "quantile" "hospital admissions only" +"14 day ahead inc hosp" "22" 2024-02-05 2024-02-19 0.25 34.75 "quantile" "hospital admissions only" +"14 day ahead inc hosp" "22" 2024-02-05 2024-02-19 0.3 36.7 "quantile" "hospital admissions only" +"14 day ahead inc hosp" "22" 2024-02-05 2024-02-19 0.35 38.65 "quantile" "hospital admissions only" +"14 day ahead inc hosp" "22" 2024-02-05 2024-02-19 0.4 41 "quantile" "hospital admissions only" +"14 day ahead inc hosp" "22" 2024-02-05 2024-02-19 0.45 43 "quantile" "hospital admissions only" +"14 day ahead inc hosp" "22" 2024-02-05 2024-02-19 0.5 43 "quantile" "hospital admissions only" +"14 day ahead inc hosp" "22" 2024-02-05 2024-02-19 0.55 45 "quantile" "hospital admissions only" +"14 day ahead inc hosp" "22" 2024-02-05 2024-02-19 0.6 47 "quantile" "hospital admissions only" +"14 day ahead inc hosp" "22" 2024-02-05 2024-02-19 0.65 48.7 "quantile" "hospital admissions only" +"14 day ahead inc hosp" "22" 2024-02-05 2024-02-19 0.7 50.6 "quantile" "hospital admissions only" +"14 day ahead inc hosp" "22" 2024-02-05 2024-02-19 0.75 52 "quantile" "hospital admissions only" +"14 day ahead inc hosp" "22" 2024-02-05 2024-02-19 0.8 54 "quantile" "hospital admissions only" +"14 day ahead inc hosp" "22" 2024-02-05 2024-02-19 0.85 58 "quantile" "hospital admissions only" +"14 day ahead inc hosp" "22" 2024-02-05 2024-02-19 0.9 61.1 "quantile" "hospital admissions only" +"14 day ahead inc hosp" "22" 2024-02-05 2024-02-19 0.95 69.1 "quantile" "hospital admissions only" +"14 day ahead inc hosp" "22" 2024-02-05 2024-02-19 0.975 74.05 "quantile" "hospital admissions only" +"14 day ahead inc hosp" "22" 2024-02-05 2024-02-19 0.99 79.04 "quantile" "hospital admissions only" +"15 day ahead inc hosp" "22" 2024-02-05 2024-02-20 0.01 20.99 "quantile" "hospital admissions only" +"15 day ahead inc hosp" "22" 2024-02-05 2024-02-20 0.025 22 "quantile" "hospital admissions only" +"15 day ahead inc hosp" "22" 2024-02-05 2024-02-20 0.05 23 "quantile" "hospital admissions only" +"15 day ahead inc hosp" "22" 2024-02-05 2024-02-20 0.1 27 "quantile" "hospital admissions only" +"15 day ahead inc hosp" "22" 2024-02-05 2024-02-20 0.15 33 "quantile" "hospital admissions only" +"15 day ahead inc hosp" "22" 2024-02-05 2024-02-20 0.2 35 "quantile" "hospital admissions only" +"15 day ahead inc hosp" "22" 2024-02-05 2024-02-20 0.25 38.75 "quantile" "hospital admissions only" +"15 day ahead inc hosp" "22" 2024-02-05 2024-02-20 0.3 40 "quantile" "hospital admissions only" +"15 day ahead inc hosp" "22" 2024-02-05 2024-02-20 0.35 42 "quantile" "hospital admissions only" +"15 day ahead inc hosp" "22" 2024-02-05 2024-02-20 0.4 43 "quantile" "hospital admissions only" +"15 day ahead inc hosp" "22" 2024-02-05 2024-02-20 0.45 44 "quantile" "hospital admissions only" +"15 day ahead inc hosp" "22" 2024-02-05 2024-02-20 0.5 46.5 "quantile" "hospital admissions only" +"15 day ahead inc hosp" "22" 2024-02-05 2024-02-20 0.55 47.45 "quantile" "hospital admissions only" +"15 day ahead inc hosp" "22" 2024-02-05 2024-02-20 0.6 49 "quantile" "hospital admissions only" +"15 day ahead inc hosp" "22" 2024-02-05 2024-02-20 0.65 52 "quantile" "hospital admissions only" +"15 day ahead inc hosp" "22" 2024-02-05 2024-02-20 0.7 53 "quantile" "hospital admissions only" +"15 day ahead inc hosp" "22" 2024-02-05 2024-02-20 0.75 54.5 "quantile" "hospital admissions only" +"15 day ahead inc hosp" "22" 2024-02-05 2024-02-20 0.8 57 "quantile" "hospital admissions only" +"15 day ahead inc hosp" "22" 2024-02-05 2024-02-20 0.85 60.3 "quantile" "hospital admissions only" +"15 day ahead inc hosp" "22" 2024-02-05 2024-02-20 0.9 66 "quantile" "hospital admissions only" +"15 day ahead inc hosp" "22" 2024-02-05 2024-02-20 0.95 69.05 "quantile" "hospital admissions only" +"15 day ahead inc hosp" "22" 2024-02-05 2024-02-20 0.975 73.625 "quantile" "hospital admissions only" +"15 day ahead inc hosp" "22" 2024-02-05 2024-02-20 0.99 84.04 "quantile" "hospital admissions only" +"16 day ahead inc hosp" "22" 2024-02-05 2024-02-21 0.01 21.96 "quantile" "hospital admissions only" +"16 day ahead inc hosp" "22" 2024-02-05 2024-02-21 0.025 22.475 "quantile" "hospital admissions only" +"16 day ahead inc hosp" "22" 2024-02-05 2024-02-21 0.05 23.95 "quantile" "hospital admissions only" +"16 day ahead inc hosp" "22" 2024-02-05 2024-02-21 0.1 29.9 "quantile" "hospital admissions only" +"16 day ahead inc hosp" "22" 2024-02-05 2024-02-21 0.15 31.85 "quantile" "hospital admissions only" +"16 day ahead inc hosp" "22" 2024-02-05 2024-02-21 0.2 32.8 "quantile" "hospital admissions only" +"16 day ahead inc hosp" "22" 2024-02-05 2024-02-21 0.25 34 "quantile" "hospital admissions only" +"16 day ahead inc hosp" "22" 2024-02-05 2024-02-21 0.3 35 "quantile" "hospital admissions only" +"16 day ahead inc hosp" "22" 2024-02-05 2024-02-21 0.35 37 "quantile" "hospital admissions only" +"16 day ahead inc hosp" "22" 2024-02-05 2024-02-21 0.4 40 "quantile" "hospital admissions only" +"16 day ahead inc hosp" "22" 2024-02-05 2024-02-21 0.45 42 "quantile" "hospital admissions only" +"16 day ahead inc hosp" "22" 2024-02-05 2024-02-21 0.5 43.5 "quantile" "hospital admissions only" +"16 day ahead inc hosp" "22" 2024-02-05 2024-02-21 0.55 46 "quantile" "hospital admissions only" +"16 day ahead inc hosp" "22" 2024-02-05 2024-02-21 0.6 48 "quantile" "hospital admissions only" +"16 day ahead inc hosp" "22" 2024-02-05 2024-02-21 0.65 49.35 "quantile" "hospital admissions only" +"16 day ahead inc hosp" "22" 2024-02-05 2024-02-21 0.7 51 "quantile" "hospital admissions only" +"16 day ahead inc hosp" "22" 2024-02-05 2024-02-21 0.75 54.25 "quantile" "hospital admissions only" +"16 day ahead inc hosp" "22" 2024-02-05 2024-02-21 0.8 56 "quantile" "hospital admissions only" +"16 day ahead inc hosp" "22" 2024-02-05 2024-02-21 0.85 59 "quantile" "hospital admissions only" +"16 day ahead inc hosp" "22" 2024-02-05 2024-02-21 0.9 61.1 "quantile" "hospital admissions only" +"16 day ahead inc hosp" "22" 2024-02-05 2024-02-21 0.95 65.1 "quantile" "hospital admissions only" +"16 day ahead inc hosp" "22" 2024-02-05 2024-02-21 0.975 72.1999999999999 "quantile" "hospital admissions only" +"16 day ahead inc hosp" "22" 2024-02-05 2024-02-21 0.99 76.2000000000001 "quantile" "hospital admissions only" +"17 day ahead inc hosp" "22" 2024-02-05 2024-02-22 0.01 16.99 "quantile" "hospital admissions only" +"17 day ahead inc hosp" "22" 2024-02-05 2024-02-22 0.025 25.95 "quantile" "hospital admissions only" +"17 day ahead inc hosp" "22" 2024-02-05 2024-02-22 0.05 27.95 "quantile" "hospital admissions only" +"17 day ahead inc hosp" "22" 2024-02-05 2024-02-22 0.1 30 "quantile" "hospital admissions only" +"17 day ahead inc hosp" "22" 2024-02-05 2024-02-22 0.15 33.85 "quantile" "hospital admissions only" +"17 day ahead inc hosp" "22" 2024-02-05 2024-02-22 0.2 37 "quantile" "hospital admissions only" +"17 day ahead inc hosp" "22" 2024-02-05 2024-02-22 0.25 38 "quantile" "hospital admissions only" +"17 day ahead inc hosp" "22" 2024-02-05 2024-02-22 0.3 39 "quantile" "hospital admissions only" +"17 day ahead inc hosp" "22" 2024-02-05 2024-02-22 0.35 41 "quantile" "hospital admissions only" +"17 day ahead inc hosp" "22" 2024-02-05 2024-02-22 0.4 43.6 "quantile" "hospital admissions only" +"17 day ahead inc hosp" "22" 2024-02-05 2024-02-22 0.45 44.55 "quantile" "hospital admissions only" +"17 day ahead inc hosp" "22" 2024-02-05 2024-02-22 0.5 48 "quantile" "hospital admissions only" +"17 day ahead inc hosp" "22" 2024-02-05 2024-02-22 0.55 49 "quantile" "hospital admissions only" +"17 day ahead inc hosp" "22" 2024-02-05 2024-02-22 0.6 50.4 "quantile" "hospital admissions only" +"17 day ahead inc hosp" "22" 2024-02-05 2024-02-22 0.65 52 "quantile" "hospital admissions only" +"17 day ahead inc hosp" "22" 2024-02-05 2024-02-22 0.7 53.3 "quantile" "hospital admissions only" +"17 day ahead inc hosp" "22" 2024-02-05 2024-02-22 0.75 55.25 "quantile" "hospital admissions only" +"17 day ahead inc hosp" "22" 2024-02-05 2024-02-22 0.8 57 "quantile" "hospital admissions only" +"17 day ahead inc hosp" "22" 2024-02-05 2024-02-22 0.85 60.15 "quantile" "hospital admissions only" +"17 day ahead inc hosp" "22" 2024-02-05 2024-02-22 0.9 65.4 "quantile" "hospital admissions only" +"17 day ahead inc hosp" "22" 2024-02-05 2024-02-22 0.95 79 "quantile" "hospital admissions only" +"17 day ahead inc hosp" "22" 2024-02-05 2024-02-22 0.975 82.525 "quantile" "hospital admissions only" +"17 day ahead inc hosp" "22" 2024-02-05 2024-02-22 0.99 107.11 "quantile" "hospital admissions only" +"18 day ahead inc hosp" "22" 2024-02-05 2024-02-23 0.01 14.99 "quantile" "hospital admissions only" +"18 day ahead inc hosp" "22" 2024-02-05 2024-02-23 0.025 16.95 "quantile" "hospital admissions only" +"18 day ahead inc hosp" "22" 2024-02-05 2024-02-23 0.05 19 "quantile" "hospital admissions only" +"18 day ahead inc hosp" "22" 2024-02-05 2024-02-23 0.1 23.9 "quantile" "hospital admissions only" +"18 day ahead inc hosp" "22" 2024-02-05 2024-02-23 0.15 26 "quantile" "hospital admissions only" +"18 day ahead inc hosp" "22" 2024-02-05 2024-02-23 0.2 30 "quantile" "hospital admissions only" +"18 day ahead inc hosp" "22" 2024-02-05 2024-02-23 0.25 33 "quantile" "hospital admissions only" +"18 day ahead inc hosp" "22" 2024-02-05 2024-02-23 0.3 34 "quantile" "hospital admissions only" +"18 day ahead inc hosp" "22" 2024-02-05 2024-02-23 0.35 35 "quantile" "hospital admissions only" +"18 day ahead inc hosp" "22" 2024-02-05 2024-02-23 0.4 37 "quantile" "hospital admissions only" +"18 day ahead inc hosp" "22" 2024-02-05 2024-02-23 0.45 39 "quantile" "hospital admissions only" +"18 day ahead inc hosp" "22" 2024-02-05 2024-02-23 0.5 41 "quantile" "hospital admissions only" +"18 day ahead inc hosp" "22" 2024-02-05 2024-02-23 0.55 42 "quantile" "hospital admissions only" +"18 day ahead inc hosp" "22" 2024-02-05 2024-02-23 0.6 43 "quantile" "hospital admissions only" +"18 day ahead inc hosp" "22" 2024-02-05 2024-02-23 0.65 45.35 "quantile" "hospital admissions only" +"18 day ahead inc hosp" "22" 2024-02-05 2024-02-23 0.7 48 "quantile" "hospital admissions only" +"18 day ahead inc hosp" "22" 2024-02-05 2024-02-23 0.75 51 "quantile" "hospital admissions only" +"18 day ahead inc hosp" "22" 2024-02-05 2024-02-23 0.8 51.2 "quantile" "hospital admissions only" +"18 day ahead inc hosp" "22" 2024-02-05 2024-02-23 0.85 54 "quantile" "hospital admissions only" +"18 day ahead inc hosp" "22" 2024-02-05 2024-02-23 0.9 56 "quantile" "hospital admissions only" +"18 day ahead inc hosp" "22" 2024-02-05 2024-02-23 0.95 65.1 "quantile" "hospital admissions only" +"18 day ahead inc hosp" "22" 2024-02-05 2024-02-23 0.975 74.8249999999999 "quantile" "hospital admissions only" +"18 day ahead inc hosp" "22" 2024-02-05 2024-02-23 0.99 87.1200000000001 "quantile" "hospital admissions only" +"19 day ahead inc hosp" "22" 2024-02-05 2024-02-24 0.01 14.99 "quantile" "hospital admissions only" +"19 day ahead inc hosp" "22" 2024-02-05 2024-02-24 0.025 16.475 "quantile" "hospital admissions only" +"19 day ahead inc hosp" "22" 2024-02-05 2024-02-24 0.05 19.9 "quantile" "hospital admissions only" +"19 day ahead inc hosp" "22" 2024-02-05 2024-02-24 0.1 24 "quantile" "hospital admissions only" +"19 day ahead inc hosp" "22" 2024-02-05 2024-02-24 0.15 27 "quantile" "hospital admissions only" +"19 day ahead inc hosp" "22" 2024-02-05 2024-02-24 0.2 28 "quantile" "hospital admissions only" +"19 day ahead inc hosp" "22" 2024-02-05 2024-02-24 0.25 29 "quantile" "hospital admissions only" +"19 day ahead inc hosp" "22" 2024-02-05 2024-02-24 0.3 31 "quantile" "hospital admissions only" +"19 day ahead inc hosp" "22" 2024-02-05 2024-02-24 0.35 32.65 "quantile" "hospital admissions only" +"19 day ahead inc hosp" "22" 2024-02-05 2024-02-24 0.4 33.6 "quantile" "hospital admissions only" +"19 day ahead inc hosp" "22" 2024-02-05 2024-02-24 0.45 37 "quantile" "hospital admissions only" +"19 day ahead inc hosp" "22" 2024-02-05 2024-02-24 0.5 38 "quantile" "hospital admissions only" +"19 day ahead inc hosp" "22" 2024-02-05 2024-02-24 0.55 40 "quantile" "hospital admissions only" +"19 day ahead inc hosp" "22" 2024-02-05 2024-02-24 0.6 44 "quantile" "hospital admissions only" +"19 day ahead inc hosp" "22" 2024-02-05 2024-02-24 0.65 45 "quantile" "hospital admissions only" +"19 day ahead inc hosp" "22" 2024-02-05 2024-02-24 0.7 46 "quantile" "hospital admissions only" +"19 day ahead inc hosp" "22" 2024-02-05 2024-02-24 0.75 47.25 "quantile" "hospital admissions only" +"19 day ahead inc hosp" "22" 2024-02-05 2024-02-24 0.8 49.2 "quantile" "hospital admissions only" +"19 day ahead inc hosp" "22" 2024-02-05 2024-02-24 0.85 52 "quantile" "hospital admissions only" +"19 day ahead inc hosp" "22" 2024-02-05 2024-02-24 0.9 54 "quantile" "hospital admissions only" +"19 day ahead inc hosp" "22" 2024-02-05 2024-02-24 0.95 59.1 "quantile" "hospital admissions only" +"19 day ahead inc hosp" "22" 2024-02-05 2024-02-24 0.975 64.625 "quantile" "hospital admissions only" +"19 day ahead inc hosp" "22" 2024-02-05 2024-02-24 0.99 72.08 "quantile" "hospital admissions only" +"20 day ahead inc hosp" "22" 2024-02-05 2024-02-25 0.01 13.94 "quantile" "hospital admissions only" +"20 day ahead inc hosp" "22" 2024-02-05 2024-02-25 0.025 15.475 "quantile" "hospital admissions only" +"20 day ahead inc hosp" "22" 2024-02-05 2024-02-25 0.05 17.95 "quantile" "hospital admissions only" +"20 day ahead inc hosp" "22" 2024-02-05 2024-02-25 0.1 20.9 "quantile" "hospital admissions only" +"20 day ahead inc hosp" "22" 2024-02-05 2024-02-25 0.15 24.85 "quantile" "hospital admissions only" +"20 day ahead inc hosp" "22" 2024-02-05 2024-02-25 0.2 25 "quantile" "hospital admissions only" +"20 day ahead inc hosp" "22" 2024-02-05 2024-02-25 0.25 27 "quantile" "hospital admissions only" +"20 day ahead inc hosp" "22" 2024-02-05 2024-02-25 0.3 28 "quantile" "hospital admissions only" +"20 day ahead inc hosp" "22" 2024-02-05 2024-02-25 0.35 30 "quantile" "hospital admissions only" +"20 day ahead inc hosp" "22" 2024-02-05 2024-02-25 0.4 32 "quantile" "hospital admissions only" +"20 day ahead inc hosp" "22" 2024-02-05 2024-02-25 0.45 34 "quantile" "hospital admissions only" +"20 day ahead inc hosp" "22" 2024-02-05 2024-02-25 0.5 35.5 "quantile" "hospital admissions only" +"20 day ahead inc hosp" "22" 2024-02-05 2024-02-25 0.55 37 "quantile" "hospital admissions only" +"20 day ahead inc hosp" "22" 2024-02-05 2024-02-25 0.6 39 "quantile" "hospital admissions only" +"20 day ahead inc hosp" "22" 2024-02-05 2024-02-25 0.65 40.4 "quantile" "hospital admissions only" +"20 day ahead inc hosp" "22" 2024-02-05 2024-02-25 0.7 45 "quantile" "hospital admissions only" +"20 day ahead inc hosp" "22" 2024-02-05 2024-02-25 0.75 45.25 "quantile" "hospital admissions only" +"20 day ahead inc hosp" "22" 2024-02-05 2024-02-25 0.8 47.4 "quantile" "hospital admissions only" +"20 day ahead inc hosp" "22" 2024-02-05 2024-02-25 0.85 52 "quantile" "hospital admissions only" +"20 day ahead inc hosp" "22" 2024-02-05 2024-02-25 0.9 53.1 "quantile" "hospital admissions only" +"20 day ahead inc hosp" "22" 2024-02-05 2024-02-25 0.95 58.1 "quantile" "hospital admissions only" +"20 day ahead inc hosp" "22" 2024-02-05 2024-02-25 0.975 64.05 "quantile" "hospital admissions only" +"20 day ahead inc hosp" "22" 2024-02-05 2024-02-25 0.99 68.03 "quantile" "hospital admissions only" +"21 day ahead inc hosp" "22" 2024-02-05 2024-02-26 0.01 11 "quantile" "hospital admissions only" +"21 day ahead inc hosp" "22" 2024-02-05 2024-02-26 0.025 17 "quantile" "hospital admissions only" +"21 day ahead inc hosp" "22" 2024-02-05 2024-02-26 0.05 18.9 "quantile" "hospital admissions only" +"21 day ahead inc hosp" "22" 2024-02-05 2024-02-26 0.1 24 "quantile" "hospital admissions only" +"21 day ahead inc hosp" "22" 2024-02-05 2024-02-26 0.15 28 "quantile" "hospital admissions only" +"21 day ahead inc hosp" "22" 2024-02-05 2024-02-26 0.2 32.8 "quantile" "hospital admissions only" +"21 day ahead inc hosp" "22" 2024-02-05 2024-02-26 0.25 35.75 "quantile" "hospital admissions only" +"21 day ahead inc hosp" "22" 2024-02-05 2024-02-26 0.3 37 "quantile" "hospital admissions only" +"21 day ahead inc hosp" "22" 2024-02-05 2024-02-26 0.35 38.65 "quantile" "hospital admissions only" +"21 day ahead inc hosp" "22" 2024-02-05 2024-02-26 0.4 40.6 "quantile" "hospital admissions only" +"21 day ahead inc hosp" "22" 2024-02-05 2024-02-26 0.45 42 "quantile" "hospital admissions only" +"21 day ahead inc hosp" "22" 2024-02-05 2024-02-26 0.5 43 "quantile" "hospital admissions only" +"21 day ahead inc hosp" "22" 2024-02-05 2024-02-26 0.55 44 "quantile" "hospital admissions only" +"21 day ahead inc hosp" "22" 2024-02-05 2024-02-26 0.6 46 "quantile" "hospital admissions only" +"21 day ahead inc hosp" "22" 2024-02-05 2024-02-26 0.65 47 "quantile" "hospital admissions only" +"21 day ahead inc hosp" "22" 2024-02-05 2024-02-26 0.7 48 "quantile" "hospital admissions only" +"21 day ahead inc hosp" "22" 2024-02-05 2024-02-26 0.75 49.25 "quantile" "hospital admissions only" +"21 day ahead inc hosp" "22" 2024-02-05 2024-02-26 0.8 54.2 "quantile" "hospital admissions only" +"21 day ahead inc hosp" "22" 2024-02-05 2024-02-26 0.85 57.15 "quantile" "hospital admissions only" +"21 day ahead inc hosp" "22" 2024-02-05 2024-02-26 0.9 60.1 "quantile" "hospital admissions only" +"21 day ahead inc hosp" "22" 2024-02-05 2024-02-26 0.95 62.25 "quantile" "hospital admissions only" +"21 day ahead inc hosp" "22" 2024-02-05 2024-02-26 0.975 72.1499999999999 "quantile" "hospital admissions only" +"21 day ahead inc hosp" "22" 2024-02-05 2024-02-26 0.99 81.1800000000001 "quantile" "hospital admissions only" +"22 day ahead inc hosp" "22" 2024-02-05 2024-02-27 0.01 18 "quantile" "hospital admissions only" +"22 day ahead inc hosp" "22" 2024-02-05 2024-02-27 0.025 19.475 "quantile" "hospital admissions only" +"22 day ahead inc hosp" "22" 2024-02-05 2024-02-27 0.05 23.9 "quantile" "hospital admissions only" +"22 day ahead inc hosp" "22" 2024-02-05 2024-02-27 0.1 24 "quantile" "hospital admissions only" +"22 day ahead inc hosp" "22" 2024-02-05 2024-02-27 0.15 27.85 "quantile" "hospital admissions only" +"22 day ahead inc hosp" "22" 2024-02-05 2024-02-27 0.2 31 "quantile" "hospital admissions only" +"22 day ahead inc hosp" "22" 2024-02-05 2024-02-27 0.25 33 "quantile" "hospital admissions only" +"22 day ahead inc hosp" "22" 2024-02-05 2024-02-27 0.3 36 "quantile" "hospital admissions only" +"22 day ahead inc hosp" "22" 2024-02-05 2024-02-27 0.35 37.65 "quantile" "hospital admissions only" +"22 day ahead inc hosp" "22" 2024-02-05 2024-02-27 0.4 39 "quantile" "hospital admissions only" +"22 day ahead inc hosp" "22" 2024-02-05 2024-02-27 0.45 41 "quantile" "hospital admissions only" +"22 day ahead inc hosp" "22" 2024-02-05 2024-02-27 0.5 43.5 "quantile" "hospital admissions only" +"22 day ahead inc hosp" "22" 2024-02-05 2024-02-27 0.55 46 "quantile" "hospital admissions only" +"22 day ahead inc hosp" "22" 2024-02-05 2024-02-27 0.6 48 "quantile" "hospital admissions only" +"22 day ahead inc hosp" "22" 2024-02-05 2024-02-27 0.65 50 "quantile" "hospital admissions only" +"22 day ahead inc hosp" "22" 2024-02-05 2024-02-27 0.7 53.3 "quantile" "hospital admissions only" +"22 day ahead inc hosp" "22" 2024-02-05 2024-02-27 0.75 56 "quantile" "hospital admissions only" +"22 day ahead inc hosp" "22" 2024-02-05 2024-02-27 0.8 58.4 "quantile" "hospital admissions only" +"22 day ahead inc hosp" "22" 2024-02-05 2024-02-27 0.85 61.15 "quantile" "hospital admissions only" +"22 day ahead inc hosp" "22" 2024-02-05 2024-02-27 0.9 65 "quantile" "hospital admissions only" +"22 day ahead inc hosp" "22" 2024-02-05 2024-02-27 0.95 73.15 "quantile" "hospital admissions only" +"22 day ahead inc hosp" "22" 2024-02-05 2024-02-27 0.975 79.05 "quantile" "hospital admissions only" +"22 day ahead inc hosp" "22" 2024-02-05 2024-02-27 0.99 85.3300000000002 "quantile" "hospital admissions only" +"23 day ahead inc hosp" "22" 2024-02-05 2024-02-28 0.01 12.97 "quantile" "hospital admissions only" +"23 day ahead inc hosp" "22" 2024-02-05 2024-02-28 0.025 19.425 "quantile" "hospital admissions only" +"23 day ahead inc hosp" "22" 2024-02-05 2024-02-28 0.05 22 "quantile" "hospital admissions only" +"23 day ahead inc hosp" "22" 2024-02-05 2024-02-28 0.1 24 "quantile" "hospital admissions only" +"23 day ahead inc hosp" "22" 2024-02-05 2024-02-28 0.15 26 "quantile" "hospital admissions only" +"23 day ahead inc hosp" "22" 2024-02-05 2024-02-28 0.2 30 "quantile" "hospital admissions only" +"23 day ahead inc hosp" "22" 2024-02-05 2024-02-28 0.25 32 "quantile" "hospital admissions only" +"23 day ahead inc hosp" "22" 2024-02-05 2024-02-28 0.3 34 "quantile" "hospital admissions only" +"23 day ahead inc hosp" "22" 2024-02-05 2024-02-28 0.35 38 "quantile" "hospital admissions only" +"23 day ahead inc hosp" "22" 2024-02-05 2024-02-28 0.4 39 "quantile" "hospital admissions only" +"23 day ahead inc hosp" "22" 2024-02-05 2024-02-28 0.45 40.55 "quantile" "hospital admissions only" +"23 day ahead inc hosp" "22" 2024-02-05 2024-02-28 0.5 43 "quantile" "hospital admissions only" +"23 day ahead inc hosp" "22" 2024-02-05 2024-02-28 0.55 44.45 "quantile" "hospital admissions only" +"23 day ahead inc hosp" "22" 2024-02-05 2024-02-28 0.6 47.4 "quantile" "hospital admissions only" +"23 day ahead inc hosp" "22" 2024-02-05 2024-02-28 0.65 50 "quantile" "hospital admissions only" +"23 day ahead inc hosp" "22" 2024-02-05 2024-02-28 0.7 52.6 "quantile" "hospital admissions only" +"23 day ahead inc hosp" "22" 2024-02-05 2024-02-28 0.75 54 "quantile" "hospital admissions only" +"23 day ahead inc hosp" "22" 2024-02-05 2024-02-28 0.8 57 "quantile" "hospital admissions only" +"23 day ahead inc hosp" "22" 2024-02-05 2024-02-28 0.85 60.15 "quantile" "hospital admissions only" +"23 day ahead inc hosp" "22" 2024-02-05 2024-02-28 0.9 62 "quantile" "hospital admissions only" +"23 day ahead inc hosp" "22" 2024-02-05 2024-02-28 0.95 70.05 "quantile" "hospital admissions only" +"23 day ahead inc hosp" "22" 2024-02-05 2024-02-28 0.975 75.525 "quantile" "hospital admissions only" +"23 day ahead inc hosp" "22" 2024-02-05 2024-02-28 0.99 83.3700000000002 "quantile" "hospital admissions only" +"24 day ahead inc hosp" "22" 2024-02-05 2024-02-29 0.01 18.94 "quantile" "hospital admissions only" +"24 day ahead inc hosp" "22" 2024-02-05 2024-02-29 0.025 19 "quantile" "hospital admissions only" +"24 day ahead inc hosp" "22" 2024-02-05 2024-02-29 0.05 20 "quantile" "hospital admissions only" +"24 day ahead inc hosp" "22" 2024-02-05 2024-02-29 0.1 25.9 "quantile" "hospital admissions only" +"24 day ahead inc hosp" "22" 2024-02-05 2024-02-29 0.15 28.85 "quantile" "hospital admissions only" +"24 day ahead inc hosp" "22" 2024-02-05 2024-02-29 0.2 31 "quantile" "hospital admissions only" +"24 day ahead inc hosp" "22" 2024-02-05 2024-02-29 0.25 32.75 "quantile" "hospital admissions only" +"24 day ahead inc hosp" "22" 2024-02-05 2024-02-29 0.3 36.1 "quantile" "hospital admissions only" +"24 day ahead inc hosp" "22" 2024-02-05 2024-02-29 0.35 41.65 "quantile" "hospital admissions only" +"24 day ahead inc hosp" "22" 2024-02-05 2024-02-29 0.4 42.6 "quantile" "hospital admissions only" +"24 day ahead inc hosp" "22" 2024-02-05 2024-02-29 0.45 46 "quantile" "hospital admissions only" +"24 day ahead inc hosp" "22" 2024-02-05 2024-02-29 0.5 47 "quantile" "hospital admissions only" +"24 day ahead inc hosp" "22" 2024-02-05 2024-02-29 0.55 49 "quantile" "hospital admissions only" +"24 day ahead inc hosp" "22" 2024-02-05 2024-02-29 0.6 51 "quantile" "hospital admissions only" +"24 day ahead inc hosp" "22" 2024-02-05 2024-02-29 0.65 52.35 "quantile" "hospital admissions only" +"24 day ahead inc hosp" "22" 2024-02-05 2024-02-29 0.7 56.3 "quantile" "hospital admissions only" +"24 day ahead inc hosp" "22" 2024-02-05 2024-02-29 0.75 58 "quantile" "hospital admissions only" +"24 day ahead inc hosp" "22" 2024-02-05 2024-02-29 0.8 60.4 "quantile" "hospital admissions only" +"24 day ahead inc hosp" "22" 2024-02-05 2024-02-29 0.85 67 "quantile" "hospital admissions only" +"24 day ahead inc hosp" "22" 2024-02-05 2024-02-29 0.9 71.2 "quantile" "hospital admissions only" +"24 day ahead inc hosp" "22" 2024-02-05 2024-02-29 0.95 78.1 "quantile" "hospital admissions only" +"24 day ahead inc hosp" "22" 2024-02-05 2024-02-29 0.975 80.525 "quantile" "hospital admissions only" +"24 day ahead inc hosp" "22" 2024-02-05 2024-02-29 0.99 82.4000000000002 "quantile" "hospital admissions only" +"25 day ahead inc hosp" "22" 2024-02-05 2024-03-01 0.01 12.97 "quantile" "hospital admissions only" +"25 day ahead inc hosp" "22" 2024-02-05 2024-03-01 0.025 15 "quantile" "hospital admissions only" +"25 day ahead inc hosp" "22" 2024-02-05 2024-03-01 0.05 16.95 "quantile" "hospital admissions only" +"25 day ahead inc hosp" "22" 2024-02-05 2024-03-01 0.1 21.9 "quantile" "hospital admissions only" +"25 day ahead inc hosp" "22" 2024-02-05 2024-03-01 0.15 25.85 "quantile" "hospital admissions only" +"25 day ahead inc hosp" "22" 2024-02-05 2024-03-01 0.2 30.4 "quantile" "hospital admissions only" +"25 day ahead inc hosp" "22" 2024-02-05 2024-03-01 0.25 32.75 "quantile" "hospital admissions only" +"25 day ahead inc hosp" "22" 2024-02-05 2024-03-01 0.3 34 "quantile" "hospital admissions only" +"25 day ahead inc hosp" "22" 2024-02-05 2024-03-01 0.35 36 "quantile" "hospital admissions only" +"25 day ahead inc hosp" "22" 2024-02-05 2024-03-01 0.4 37 "quantile" "hospital admissions only" +"25 day ahead inc hosp" "22" 2024-02-05 2024-03-01 0.45 38 "quantile" "hospital admissions only" +"25 day ahead inc hosp" "22" 2024-02-05 2024-03-01 0.5 40 "quantile" "hospital admissions only" +"25 day ahead inc hosp" "22" 2024-02-05 2024-03-01 0.55 43 "quantile" "hospital admissions only" +"25 day ahead inc hosp" "22" 2024-02-05 2024-03-01 0.6 44 "quantile" "hospital admissions only" +"25 day ahead inc hosp" "22" 2024-02-05 2024-03-01 0.65 46 "quantile" "hospital admissions only" +"25 day ahead inc hosp" "22" 2024-02-05 2024-03-01 0.7 47.3 "quantile" "hospital admissions only" +"25 day ahead inc hosp" "22" 2024-02-05 2024-03-01 0.75 50.25 "quantile" "hospital admissions only" +"25 day ahead inc hosp" "22" 2024-02-05 2024-03-01 0.8 55 "quantile" "hospital admissions only" +"25 day ahead inc hosp" "22" 2024-02-05 2024-03-01 0.85 57 "quantile" "hospital admissions only" +"25 day ahead inc hosp" "22" 2024-02-05 2024-03-01 0.9 60 "quantile" "hospital admissions only" +"25 day ahead inc hosp" "22" 2024-02-05 2024-03-01 0.95 72.1 "quantile" "hospital admissions only" +"25 day ahead inc hosp" "22" 2024-02-05 2024-03-01 0.975 75.525 "quantile" "hospital admissions only" +"25 day ahead inc hosp" "22" 2024-02-05 2024-03-01 0.99 77.05 "quantile" "hospital admissions only" +"26 day ahead inc hosp" "22" 2024-02-05 2024-03-02 0.01 12.98 "quantile" "hospital admissions only" +"26 day ahead inc hosp" "22" 2024-02-05 2024-03-02 0.025 13.475 "quantile" "hospital admissions only" +"26 day ahead inc hosp" "22" 2024-02-05 2024-03-02 0.05 15.9 "quantile" "hospital admissions only" +"26 day ahead inc hosp" "22" 2024-02-05 2024-03-02 0.1 19.9 "quantile" "hospital admissions only" +"26 day ahead inc hosp" "22" 2024-02-05 2024-03-02 0.15 24 "quantile" "hospital admissions only" +"26 day ahead inc hosp" "22" 2024-02-05 2024-03-02 0.2 27.8 "quantile" "hospital admissions only" +"26 day ahead inc hosp" "22" 2024-02-05 2024-03-02 0.25 28.75 "quantile" "hospital admissions only" +"26 day ahead inc hosp" "22" 2024-02-05 2024-03-02 0.3 30.7 "quantile" "hospital admissions only" +"26 day ahead inc hosp" "22" 2024-02-05 2024-03-02 0.35 33.3 "quantile" "hospital admissions only" +"26 day ahead inc hosp" "22" 2024-02-05 2024-03-02 0.4 34.6 "quantile" "hospital admissions only" +"26 day ahead inc hosp" "22" 2024-02-05 2024-03-02 0.45 36 "quantile" "hospital admissions only" +"26 day ahead inc hosp" "22" 2024-02-05 2024-03-02 0.5 40 "quantile" "hospital admissions only" +"26 day ahead inc hosp" "22" 2024-02-05 2024-03-02 0.55 41 "quantile" "hospital admissions only" +"26 day ahead inc hosp" "22" 2024-02-05 2024-03-02 0.6 42 "quantile" "hospital admissions only" +"26 day ahead inc hosp" "22" 2024-02-05 2024-03-02 0.65 45 "quantile" "hospital admissions only" +"26 day ahead inc hosp" "22" 2024-02-05 2024-03-02 0.7 46.3 "quantile" "hospital admissions only" +"26 day ahead inc hosp" "22" 2024-02-05 2024-03-02 0.75 48 "quantile" "hospital admissions only" +"26 day ahead inc hosp" "22" 2024-02-05 2024-03-02 0.8 49.2 "quantile" "hospital admissions only" +"26 day ahead inc hosp" "22" 2024-02-05 2024-03-02 0.85 52 "quantile" "hospital admissions only" +"26 day ahead inc hosp" "22" 2024-02-05 2024-03-02 0.9 58 "quantile" "hospital admissions only" +"26 day ahead inc hosp" "22" 2024-02-05 2024-03-02 0.95 61.05 "quantile" "hospital admissions only" +"26 day ahead inc hosp" "22" 2024-02-05 2024-03-02 0.975 65 "quantile" "hospital admissions only" +"26 day ahead inc hosp" "22" 2024-02-05 2024-03-02 0.99 66.2200000000001 "quantile" "hospital admissions only" +"27 day ahead inc hosp" "22" 2024-02-05 2024-03-03 0.01 11.99 "quantile" "hospital admissions only" +"27 day ahead inc hosp" "22" 2024-02-05 2024-03-03 0.025 13.475 "quantile" "hospital admissions only" +"27 day ahead inc hosp" "22" 2024-02-05 2024-03-03 0.05 14.95 "quantile" "hospital admissions only" +"27 day ahead inc hosp" "22" 2024-02-05 2024-03-03 0.1 19.9 "quantile" "hospital admissions only" +"27 day ahead inc hosp" "22" 2024-02-05 2024-03-03 0.15 24 "quantile" "hospital admissions only" +"27 day ahead inc hosp" "22" 2024-02-05 2024-03-03 0.2 25 "quantile" "hospital admissions only" +"27 day ahead inc hosp" "22" 2024-02-05 2024-03-03 0.25 27.75 "quantile" "hospital admissions only" +"27 day ahead inc hosp" "22" 2024-02-05 2024-03-03 0.3 29 "quantile" "hospital admissions only" +"27 day ahead inc hosp" "22" 2024-02-05 2024-03-03 0.35 30 "quantile" "hospital admissions only" +"27 day ahead inc hosp" "22" 2024-02-05 2024-03-03 0.4 31 "quantile" "hospital admissions only" +"27 day ahead inc hosp" "22" 2024-02-05 2024-03-03 0.45 32 "quantile" "hospital admissions only" +"27 day ahead inc hosp" "22" 2024-02-05 2024-03-03 0.5 34 "quantile" "hospital admissions only" +"27 day ahead inc hosp" "22" 2024-02-05 2024-03-03 0.55 38 "quantile" "hospital admissions only" +"27 day ahead inc hosp" "22" 2024-02-05 2024-03-03 0.6 40 "quantile" "hospital admissions only" +"27 day ahead inc hosp" "22" 2024-02-05 2024-03-03 0.65 41.35 "quantile" "hospital admissions only" +"27 day ahead inc hosp" "22" 2024-02-05 2024-03-03 0.7 43 "quantile" "hospital admissions only" +"27 day ahead inc hosp" "22" 2024-02-05 2024-03-03 0.75 43.25 "quantile" "hospital admissions only" +"27 day ahead inc hosp" "22" 2024-02-05 2024-03-03 0.8 45.2 "quantile" "hospital admissions only" +"27 day ahead inc hosp" "22" 2024-02-05 2024-03-03 0.85 50 "quantile" "hospital admissions only" +"27 day ahead inc hosp" "22" 2024-02-05 2024-03-03 0.9 52.1 "quantile" "hospital admissions only" +"27 day ahead inc hosp" "22" 2024-02-05 2024-03-03 0.95 64.1 "quantile" "hospital admissions only" +"27 day ahead inc hosp" "22" 2024-02-05 2024-03-03 0.975 72.2499999999999 "quantile" "hospital admissions only" +"27 day ahead inc hosp" "22" 2024-02-05 2024-03-03 0.99 85.1000000000001 "quantile" "hospital admissions only" +"28 day ahead inc hosp" "22" 2024-02-05 2024-03-04 0.01 9.99 "quantile" "hospital admissions only" +"28 day ahead inc hosp" "22" 2024-02-05 2024-03-04 0.025 13.95 "quantile" "hospital admissions only" +"28 day ahead inc hosp" "22" 2024-02-05 2024-03-04 0.05 17.9 "quantile" "hospital admissions only" +"28 day ahead inc hosp" "22" 2024-02-05 2024-03-04 0.1 22 "quantile" "hospital admissions only" +"28 day ahead inc hosp" "22" 2024-02-05 2024-03-04 0.15 27.7 "quantile" "hospital admissions only" +"28 day ahead inc hosp" "22" 2024-02-05 2024-03-04 0.2 30 "quantile" "hospital admissions only" +"28 day ahead inc hosp" "22" 2024-02-05 2024-03-04 0.25 31.75 "quantile" "hospital admissions only" +"28 day ahead inc hosp" "22" 2024-02-05 2024-03-04 0.3 34.4 "quantile" "hospital admissions only" +"28 day ahead inc hosp" "22" 2024-02-05 2024-03-04 0.35 39 "quantile" "hospital admissions only" +"28 day ahead inc hosp" "22" 2024-02-05 2024-03-04 0.4 41 "quantile" "hospital admissions only" +"28 day ahead inc hosp" "22" 2024-02-05 2024-03-04 0.45 41.55 "quantile" "hospital admissions only" +"28 day ahead inc hosp" "22" 2024-02-05 2024-03-04 0.5 43 "quantile" "hospital admissions only" +"28 day ahead inc hosp" "22" 2024-02-05 2024-03-04 0.55 44 "quantile" "hospital admissions only" +"28 day ahead inc hosp" "22" 2024-02-05 2024-03-04 0.6 46 "quantile" "hospital admissions only" +"28 day ahead inc hosp" "22" 2024-02-05 2024-03-04 0.65 48.35 "quantile" "hospital admissions only" +"28 day ahead inc hosp" "22" 2024-02-05 2024-03-04 0.7 52 "quantile" "hospital admissions only" +"28 day ahead inc hosp" "22" 2024-02-05 2024-03-04 0.75 55 "quantile" "hospital admissions only" +"28 day ahead inc hosp" "22" 2024-02-05 2024-03-04 0.8 56 "quantile" "hospital admissions only" +"28 day ahead inc hosp" "22" 2024-02-05 2024-03-04 0.85 57.15 "quantile" "hospital admissions only" +"28 day ahead inc hosp" "22" 2024-02-05 2024-03-04 0.9 63.1 "quantile" "hospital admissions only" +"28 day ahead inc hosp" "22" 2024-02-05 2024-03-04 0.95 73.2 "quantile" "hospital admissions only" +"28 day ahead inc hosp" "22" 2024-02-05 2024-03-04 0.975 80.525 "quantile" "hospital admissions only" +"28 day ahead inc hosp" "22" 2024-02-05 2024-03-04 0.99 86.1900000000001 "quantile" "hospital admissions only" +"1 day ahead inc hosp" "25" 2024-02-05 2024-02-06 0.01 35.97 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "25" 2024-02-05 2024-02-06 0.025 37.425 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "25" 2024-02-05 2024-02-06 0.05 41.9 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "25" 2024-02-05 2024-02-06 0.1 44.9 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "25" 2024-02-05 2024-02-06 0.15 47.85 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "25" 2024-02-05 2024-02-06 0.2 51 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "25" 2024-02-05 2024-02-06 0.25 53 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "25" 2024-02-05 2024-02-06 0.3 54 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "25" 2024-02-05 2024-02-06 0.35 56.65 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "25" 2024-02-05 2024-02-06 0.4 57 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "25" 2024-02-05 2024-02-06 0.45 59.55 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "25" 2024-02-05 2024-02-06 0.5 61 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "25" 2024-02-05 2024-02-06 0.55 64.45 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "25" 2024-02-05 2024-02-06 0.6 67 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "25" 2024-02-05 2024-02-06 0.65 69.35 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "25" 2024-02-05 2024-02-06 0.7 71.6 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "25" 2024-02-05 2024-02-06 0.75 76 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "25" 2024-02-05 2024-02-06 0.8 79.2 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "25" 2024-02-05 2024-02-06 0.85 86.15 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "25" 2024-02-05 2024-02-06 0.9 91.1 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "25" 2024-02-05 2024-02-06 0.95 94 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "25" 2024-02-05 2024-02-06 0.975 105.2 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "25" 2024-02-05 2024-02-06 0.99 119.17 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "25" 2024-02-05 2024-02-07 0.01 29.98 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "25" 2024-02-05 2024-02-07 0.025 34.95 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "25" 2024-02-05 2024-02-07 0.05 36.95 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "25" 2024-02-05 2024-02-07 0.1 43.9 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "25" 2024-02-05 2024-02-07 0.15 47 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "25" 2024-02-05 2024-02-07 0.2 48.8 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "25" 2024-02-05 2024-02-07 0.25 51 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "25" 2024-02-05 2024-02-07 0.3 55 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "25" 2024-02-05 2024-02-07 0.35 57 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "25" 2024-02-05 2024-02-07 0.4 58.6 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "25" 2024-02-05 2024-02-07 0.45 60 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "25" 2024-02-05 2024-02-07 0.5 61.5 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "25" 2024-02-05 2024-02-07 0.55 64 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "25" 2024-02-05 2024-02-07 0.6 67 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "25" 2024-02-05 2024-02-07 0.65 68.35 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "25" 2024-02-05 2024-02-07 0.7 70.3 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "25" 2024-02-05 2024-02-07 0.75 74 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "25" 2024-02-05 2024-02-07 0.8 78 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "25" 2024-02-05 2024-02-07 0.85 80.15 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "25" 2024-02-05 2024-02-07 0.9 85.1 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "25" 2024-02-05 2024-02-07 0.95 91.1 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "25" 2024-02-05 2024-02-07 0.975 101.05 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "25" 2024-02-05 2024-02-07 0.99 103.05 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "25" 2024-02-05 2024-02-08 0.01 31.94 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "25" 2024-02-05 2024-02-08 0.025 34.475 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "25" 2024-02-05 2024-02-08 0.05 37.95 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "25" 2024-02-05 2024-02-08 0.1 42 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "25" 2024-02-05 2024-02-08 0.15 47 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "25" 2024-02-05 2024-02-08 0.2 48 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "25" 2024-02-05 2024-02-08 0.25 49 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "25" 2024-02-05 2024-02-08 0.3 50.7 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "25" 2024-02-05 2024-02-08 0.35 52.65 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "25" 2024-02-05 2024-02-08 0.4 54.2 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "25" 2024-02-05 2024-02-08 0.45 56 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "25" 2024-02-05 2024-02-08 0.5 57 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "25" 2024-02-05 2024-02-08 0.55 58 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "25" 2024-02-05 2024-02-08 0.6 62 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "25" 2024-02-05 2024-02-08 0.65 65 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "25" 2024-02-05 2024-02-08 0.7 69.3 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "25" 2024-02-05 2024-02-08 0.75 73 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "25" 2024-02-05 2024-02-08 0.8 77 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "25" 2024-02-05 2024-02-08 0.85 81 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "25" 2024-02-05 2024-02-08 0.9 84 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "25" 2024-02-05 2024-02-08 0.95 94.6 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "25" 2024-02-05 2024-02-08 0.975 108.525 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "25" 2024-02-05 2024-02-08 0.99 109.01 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "25" 2024-02-05 2024-02-09 0.01 31.99 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "25" 2024-02-05 2024-02-09 0.025 32 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "25" 2024-02-05 2024-02-09 0.05 34.9 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "25" 2024-02-05 2024-02-09 0.1 39.9 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "25" 2024-02-05 2024-02-09 0.15 43 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "25" 2024-02-05 2024-02-09 0.2 44 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "25" 2024-02-05 2024-02-09 0.25 45 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "25" 2024-02-05 2024-02-09 0.3 48 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "25" 2024-02-05 2024-02-09 0.35 51 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "25" 2024-02-05 2024-02-09 0.4 52.6 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "25" 2024-02-05 2024-02-09 0.45 55 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "25" 2024-02-05 2024-02-09 0.5 56 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "25" 2024-02-05 2024-02-09 0.55 58 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "25" 2024-02-05 2024-02-09 0.6 60 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "25" 2024-02-05 2024-02-09 0.65 63.7 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "25" 2024-02-05 2024-02-09 0.7 67 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "25" 2024-02-05 2024-02-09 0.75 69.25 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "25" 2024-02-05 2024-02-09 0.8 71.4 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "25" 2024-02-05 2024-02-09 0.85 74 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "25" 2024-02-05 2024-02-09 0.9 81.1 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "25" 2024-02-05 2024-02-09 0.95 88.15 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "25" 2024-02-05 2024-02-09 0.975 106.525 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "25" 2024-02-05 2024-02-09 0.99 110.13 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "25" 2024-02-05 2024-02-10 0.01 31 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "25" 2024-02-05 2024-02-10 0.025 31.95 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "25" 2024-02-05 2024-02-10 0.05 34.95 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "25" 2024-02-05 2024-02-10 0.1 38.8 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "25" 2024-02-05 2024-02-10 0.15 41 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "25" 2024-02-05 2024-02-10 0.2 43.6 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "25" 2024-02-05 2024-02-10 0.25 46 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "25" 2024-02-05 2024-02-10 0.3 48 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "25" 2024-02-05 2024-02-10 0.35 51.65 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "25" 2024-02-05 2024-02-10 0.4 53 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "25" 2024-02-05 2024-02-10 0.45 55 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "25" 2024-02-05 2024-02-10 0.5 56.5 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "25" 2024-02-05 2024-02-10 0.55 59 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "25" 2024-02-05 2024-02-10 0.6 61 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "25" 2024-02-05 2024-02-10 0.65 63 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "25" 2024-02-05 2024-02-10 0.7 65.3 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "25" 2024-02-05 2024-02-10 0.75 71.25 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "25" 2024-02-05 2024-02-10 0.8 74.2 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "25" 2024-02-05 2024-02-10 0.85 77.15 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "25" 2024-02-05 2024-02-10 0.9 82.2 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "25" 2024-02-05 2024-02-10 0.95 99.25 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "25" 2024-02-05 2024-02-10 0.975 106 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "25" 2024-02-05 2024-02-10 0.99 109.04 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "25" 2024-02-05 2024-02-11 0.01 23.94 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "25" 2024-02-05 2024-02-11 0.025 28.95 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "25" 2024-02-05 2024-02-11 0.05 31.95 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "25" 2024-02-05 2024-02-11 0.1 37.9 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "25" 2024-02-05 2024-02-11 0.15 40 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "25" 2024-02-05 2024-02-11 0.2 43.8 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "25" 2024-02-05 2024-02-11 0.25 47 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "25" 2024-02-05 2024-02-11 0.3 48 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "25" 2024-02-05 2024-02-11 0.35 50.65 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "25" 2024-02-05 2024-02-11 0.4 52 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "25" 2024-02-05 2024-02-11 0.45 55 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "25" 2024-02-05 2024-02-11 0.5 56 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "25" 2024-02-05 2024-02-11 0.55 57.45 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "25" 2024-02-05 2024-02-11 0.6 59 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "25" 2024-02-05 2024-02-11 0.65 64 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "25" 2024-02-05 2024-02-11 0.7 66.3 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "25" 2024-02-05 2024-02-11 0.75 68.25 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "25" 2024-02-05 2024-02-11 0.8 70.4 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "25" 2024-02-05 2024-02-11 0.85 75.15 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "25" 2024-02-05 2024-02-11 0.9 87.3 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "25" 2024-02-05 2024-02-11 0.95 97.25 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "25" 2024-02-05 2024-02-11 0.975 109.35 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "25" 2024-02-05 2024-02-11 0.99 119.23 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "25" 2024-02-05 2024-02-12 0.01 26.99 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "25" 2024-02-05 2024-02-12 0.025 32.475 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "25" 2024-02-05 2024-02-12 0.05 33.95 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "25" 2024-02-05 2024-02-12 0.1 39.8 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "25" 2024-02-05 2024-02-12 0.15 42.85 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "25" 2024-02-05 2024-02-12 0.2 46.8 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "25" 2024-02-05 2024-02-12 0.25 48.75 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "25" 2024-02-05 2024-02-12 0.3 50 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "25" 2024-02-05 2024-02-12 0.35 52 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "25" 2024-02-05 2024-02-12 0.4 55 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "25" 2024-02-05 2024-02-12 0.45 58 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "25" 2024-02-05 2024-02-12 0.5 60.5 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "25" 2024-02-05 2024-02-12 0.55 64 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "25" 2024-02-05 2024-02-12 0.6 65.4 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "25" 2024-02-05 2024-02-12 0.65 69 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "25" 2024-02-05 2024-02-12 0.7 71 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "25" 2024-02-05 2024-02-12 0.75 77.25 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "25" 2024-02-05 2024-02-12 0.8 82.8 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "25" 2024-02-05 2024-02-12 0.85 91.15 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "25" 2024-02-05 2024-02-12 0.9 94.5 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "25" 2024-02-05 2024-02-12 0.95 104 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "25" 2024-02-05 2024-02-12 0.975 109.525 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "25" 2024-02-05 2024-02-12 0.99 117.06 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "25" 2024-02-05 2024-02-13 0.01 30.91 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "25" 2024-02-05 2024-02-13 0.025 31.475 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "25" 2024-02-05 2024-02-13 0.05 33.95 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "25" 2024-02-05 2024-02-13 0.1 35.9 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "25" 2024-02-05 2024-02-13 0.15 39.85 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "25" 2024-02-05 2024-02-13 0.2 40.8 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "25" 2024-02-05 2024-02-13 0.25 42.75 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "25" 2024-02-05 2024-02-13 0.3 46 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "25" 2024-02-05 2024-02-13 0.35 48 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "25" 2024-02-05 2024-02-13 0.4 51 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "25" 2024-02-05 2024-02-13 0.45 53.55 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "25" 2024-02-05 2024-02-13 0.5 55.5 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "25" 2024-02-05 2024-02-13 0.55 57.45 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "25" 2024-02-05 2024-02-13 0.6 60.4 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "25" 2024-02-05 2024-02-13 0.65 63 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "25" 2024-02-05 2024-02-13 0.7 67 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "25" 2024-02-05 2024-02-13 0.75 73 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "25" 2024-02-05 2024-02-13 0.8 82.2 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "25" 2024-02-05 2024-02-13 0.85 86.15 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "25" 2024-02-05 2024-02-13 0.9 90 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "25" 2024-02-05 2024-02-13 0.95 100 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "25" 2024-02-05 2024-02-13 0.975 105.15 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "25" 2024-02-05 2024-02-13 0.99 110.04 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "25" 2024-02-05 2024-02-14 0.01 29.99 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "25" 2024-02-05 2024-02-14 0.025 30 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "25" 2024-02-05 2024-02-14 0.05 32.9 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "25" 2024-02-05 2024-02-14 0.1 35 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "25" 2024-02-05 2024-02-14 0.15 37 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "25" 2024-02-05 2024-02-14 0.2 40.6 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "25" 2024-02-05 2024-02-14 0.25 42.75 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "25" 2024-02-05 2024-02-14 0.3 44 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "25" 2024-02-05 2024-02-14 0.35 47 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "25" 2024-02-05 2024-02-14 0.4 49 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "25" 2024-02-05 2024-02-14 0.45 50 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "25" 2024-02-05 2024-02-14 0.5 52 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "25" 2024-02-05 2024-02-14 0.55 54.45 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "25" 2024-02-05 2024-02-14 0.6 58 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "25" 2024-02-05 2024-02-14 0.65 61.35 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "25" 2024-02-05 2024-02-14 0.7 65.3 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "25" 2024-02-05 2024-02-14 0.75 70.25 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "25" 2024-02-05 2024-02-14 0.8 74 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "25" 2024-02-05 2024-02-14 0.85 79.15 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "25" 2024-02-05 2024-02-14 0.9 86.3 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "25" 2024-02-05 2024-02-14 0.95 91.2 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "25" 2024-02-05 2024-02-14 0.975 102.05 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "25" 2024-02-05 2024-02-14 0.99 105.19 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "25" 2024-02-05 2024-02-15 0.01 23.93 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "25" 2024-02-05 2024-02-15 0.025 24.95 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "25" 2024-02-05 2024-02-15 0.05 28 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "25" 2024-02-05 2024-02-15 0.1 32.9 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "25" 2024-02-05 2024-02-15 0.15 35.85 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "25" 2024-02-05 2024-02-15 0.2 41 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "25" 2024-02-05 2024-02-15 0.25 43 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "25" 2024-02-05 2024-02-15 0.3 45.7 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "25" 2024-02-05 2024-02-15 0.35 47 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "25" 2024-02-05 2024-02-15 0.4 50 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "25" 2024-02-05 2024-02-15 0.45 51 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "25" 2024-02-05 2024-02-15 0.5 52.5 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "25" 2024-02-05 2024-02-15 0.55 55 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "25" 2024-02-05 2024-02-15 0.6 61 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "25" 2024-02-05 2024-02-15 0.65 62.35 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "25" 2024-02-05 2024-02-15 0.7 64.3 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "25" 2024-02-05 2024-02-15 0.75 72.5 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "25" 2024-02-05 2024-02-15 0.8 79 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "25" 2024-02-05 2024-02-15 0.85 83.15 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "25" 2024-02-05 2024-02-15 0.9 89 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "25" 2024-02-05 2024-02-15 0.95 104.1 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "25" 2024-02-05 2024-02-15 0.975 110.625 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "25" 2024-02-05 2024-02-15 0.99 124.06 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "25" 2024-02-05 2024-02-16 0.01 19.99 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "25" 2024-02-05 2024-02-16 0.025 23.475 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "25" 2024-02-05 2024-02-16 0.05 26.9 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "25" 2024-02-05 2024-02-16 0.1 30.9 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "25" 2024-02-05 2024-02-16 0.15 34 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "25" 2024-02-05 2024-02-16 0.2 35 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "25" 2024-02-05 2024-02-16 0.25 37.75 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "25" 2024-02-05 2024-02-16 0.3 40 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "25" 2024-02-05 2024-02-16 0.35 44 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "25" 2024-02-05 2024-02-16 0.4 46 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "25" 2024-02-05 2024-02-16 0.45 47 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "25" 2024-02-05 2024-02-16 0.5 49 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "25" 2024-02-05 2024-02-16 0.55 51.45 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "25" 2024-02-05 2024-02-16 0.6 54.4 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "25" 2024-02-05 2024-02-16 0.65 57.35 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "25" 2024-02-05 2024-02-16 0.7 59 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "25" 2024-02-05 2024-02-16 0.75 61.5 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "25" 2024-02-05 2024-02-16 0.8 67.2 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "25" 2024-02-05 2024-02-16 0.85 73.15 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "25" 2024-02-05 2024-02-16 0.9 77.2 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "25" 2024-02-05 2024-02-16 0.95 82.1 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "25" 2024-02-05 2024-02-16 0.975 94.6749999999999 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "25" 2024-02-05 2024-02-16 0.99 106.03 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "25" 2024-02-05 2024-02-17 0.01 24.99 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "25" 2024-02-05 2024-02-17 0.025 25.95 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "25" 2024-02-05 2024-02-17 0.05 30 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "25" 2024-02-05 2024-02-17 0.1 33.8 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "25" 2024-02-05 2024-02-17 0.15 35 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "25" 2024-02-05 2024-02-17 0.2 37.8 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "25" 2024-02-05 2024-02-17 0.25 39.75 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "25" 2024-02-05 2024-02-17 0.3 42 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "25" 2024-02-05 2024-02-17 0.35 43.65 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "25" 2024-02-05 2024-02-17 0.4 44.6 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "25" 2024-02-05 2024-02-17 0.45 46 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "25" 2024-02-05 2024-02-17 0.5 49 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "25" 2024-02-05 2024-02-17 0.55 51.9 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "25" 2024-02-05 2024-02-17 0.6 54.4 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "25" 2024-02-05 2024-02-17 0.65 58.35 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "25" 2024-02-05 2024-02-17 0.7 64 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "25" 2024-02-05 2024-02-17 0.75 66.25 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "25" 2024-02-05 2024-02-17 0.8 72.2 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "25" 2024-02-05 2024-02-17 0.85 75.15 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "25" 2024-02-05 2024-02-17 0.9 80.3 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "25" 2024-02-05 2024-02-17 0.95 93.15 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "25" 2024-02-05 2024-02-17 0.975 104.925 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "25" 2024-02-05 2024-02-17 0.99 124.01 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "25" 2024-02-05 2024-02-18 0.01 17.95 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "25" 2024-02-05 2024-02-18 0.025 23.425 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "25" 2024-02-05 2024-02-18 0.05 28 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "25" 2024-02-05 2024-02-18 0.1 32 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "25" 2024-02-05 2024-02-18 0.15 32 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "25" 2024-02-05 2024-02-18 0.2 33.8 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "25" 2024-02-05 2024-02-18 0.25 35.75 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "25" 2024-02-05 2024-02-18 0.3 37 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "25" 2024-02-05 2024-02-18 0.35 39 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "25" 2024-02-05 2024-02-18 0.4 41 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "25" 2024-02-05 2024-02-18 0.45 43.65 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "25" 2024-02-05 2024-02-18 0.5 47 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "25" 2024-02-05 2024-02-18 0.55 50 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "25" 2024-02-05 2024-02-18 0.6 53 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "25" 2024-02-05 2024-02-18 0.65 54 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "25" 2024-02-05 2024-02-18 0.7 59 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "25" 2024-02-05 2024-02-18 0.75 63 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "25" 2024-02-05 2024-02-18 0.8 66.2 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "25" 2024-02-05 2024-02-18 0.85 74 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "25" 2024-02-05 2024-02-18 0.9 82.1 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "25" 2024-02-05 2024-02-18 0.95 90.05 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "25" 2024-02-05 2024-02-18 0.975 94.1 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "25" 2024-02-05 2024-02-18 0.99 104.08 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "25" 2024-02-05 2024-02-19 0.01 18.99 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "25" 2024-02-05 2024-02-19 0.025 20 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "25" 2024-02-05 2024-02-19 0.05 22.85 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "25" 2024-02-05 2024-02-19 0.1 30 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "25" 2024-02-05 2024-02-19 0.15 32.85 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "25" 2024-02-05 2024-02-19 0.2 34 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "25" 2024-02-05 2024-02-19 0.25 35 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "25" 2024-02-05 2024-02-19 0.3 39 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "25" 2024-02-05 2024-02-19 0.35 43 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "25" 2024-02-05 2024-02-19 0.4 45 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "25" 2024-02-05 2024-02-19 0.45 48 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "25" 2024-02-05 2024-02-19 0.5 50.5 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "25" 2024-02-05 2024-02-19 0.55 54 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "25" 2024-02-05 2024-02-19 0.6 57 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "25" 2024-02-05 2024-02-19 0.65 61 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "25" 2024-02-05 2024-02-19 0.7 63 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "25" 2024-02-05 2024-02-19 0.75 67.75 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "25" 2024-02-05 2024-02-19 0.8 73 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "25" 2024-02-05 2024-02-19 0.85 77.15 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "25" 2024-02-05 2024-02-19 0.9 87 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "25" 2024-02-05 2024-02-19 0.95 94 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "25" 2024-02-05 2024-02-19 0.975 101.525 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "25" 2024-02-05 2024-02-19 0.99 110.49 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "25" 2024-02-05 2024-02-20 0.01 14.97 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "25" 2024-02-05 2024-02-20 0.025 16.475 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "25" 2024-02-05 2024-02-20 0.05 22.95 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "25" 2024-02-05 2024-02-20 0.1 25.8 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "25" 2024-02-05 2024-02-20 0.15 30 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "25" 2024-02-05 2024-02-20 0.2 31 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "25" 2024-02-05 2024-02-20 0.25 34 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "25" 2024-02-05 2024-02-20 0.3 37.7 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "25" 2024-02-05 2024-02-20 0.35 39 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "25" 2024-02-05 2024-02-20 0.4 42.2 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "25" 2024-02-05 2024-02-20 0.45 44 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "25" 2024-02-05 2024-02-20 0.5 47 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "25" 2024-02-05 2024-02-20 0.55 50.45 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "25" 2024-02-05 2024-02-20 0.6 52.4 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "25" 2024-02-05 2024-02-20 0.65 57 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "25" 2024-02-05 2024-02-20 0.7 60.3 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "25" 2024-02-05 2024-02-20 0.75 65 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "25" 2024-02-05 2024-02-20 0.8 71.4 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "25" 2024-02-05 2024-02-20 0.85 78.15 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "25" 2024-02-05 2024-02-20 0.9 84 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "25" 2024-02-05 2024-02-20 0.95 94 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "25" 2024-02-05 2024-02-20 0.975 99.1 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "25" 2024-02-05 2024-02-20 0.99 108.09 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "25" 2024-02-05 2024-02-21 0.01 17.98 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "25" 2024-02-05 2024-02-21 0.025 21.425 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "25" 2024-02-05 2024-02-21 0.05 24.95 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "25" 2024-02-05 2024-02-21 0.1 27 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "25" 2024-02-05 2024-02-21 0.15 29 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "25" 2024-02-05 2024-02-21 0.2 33 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "25" 2024-02-05 2024-02-21 0.25 35 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "25" 2024-02-05 2024-02-21 0.3 36.7 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "25" 2024-02-05 2024-02-21 0.35 38.65 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "25" 2024-02-05 2024-02-21 0.4 42 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "25" 2024-02-05 2024-02-21 0.45 44.55 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "25" 2024-02-05 2024-02-21 0.5 46 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "25" 2024-02-05 2024-02-21 0.55 48.45 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "25" 2024-02-05 2024-02-21 0.6 51 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "25" 2024-02-05 2024-02-21 0.65 54.35 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "25" 2024-02-05 2024-02-21 0.7 60.3 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "25" 2024-02-05 2024-02-21 0.75 63 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "25" 2024-02-05 2024-02-21 0.8 71 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "25" 2024-02-05 2024-02-21 0.85 78 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "25" 2024-02-05 2024-02-21 0.9 95.1 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "25" 2024-02-05 2024-02-21 0.95 104.05 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "25" 2024-02-05 2024-02-21 0.975 111.1 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "25" 2024-02-05 2024-02-21 0.99 116.05 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "25" 2024-02-05 2024-02-22 0.01 16.97 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "25" 2024-02-05 2024-02-22 0.025 18.95 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "25" 2024-02-05 2024-02-22 0.05 20.95 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "25" 2024-02-05 2024-02-22 0.1 28 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "25" 2024-02-05 2024-02-22 0.15 30.85 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "25" 2024-02-05 2024-02-22 0.2 33 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "25" 2024-02-05 2024-02-22 0.25 35 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "25" 2024-02-05 2024-02-22 0.3 35.7 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "25" 2024-02-05 2024-02-22 0.35 38 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "25" 2024-02-05 2024-02-22 0.4 39 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "25" 2024-02-05 2024-02-22 0.45 43.55 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "25" 2024-02-05 2024-02-22 0.5 47 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "25" 2024-02-05 2024-02-22 0.55 48.45 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "25" 2024-02-05 2024-02-22 0.6 52 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "25" 2024-02-05 2024-02-22 0.65 57 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "25" 2024-02-05 2024-02-22 0.7 60.3 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "25" 2024-02-05 2024-02-22 0.75 63.75 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "25" 2024-02-05 2024-02-22 0.8 70.4 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "25" 2024-02-05 2024-02-22 0.85 76.15 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "25" 2024-02-05 2024-02-22 0.9 81.1 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "25" 2024-02-05 2024-02-22 0.95 109.3 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "25" 2024-02-05 2024-02-22 0.975 120.775 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "25" 2024-02-05 2024-02-22 0.99 128.05 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "25" 2024-02-05 2024-02-23 0.01 13.97 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "25" 2024-02-05 2024-02-23 0.025 15 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "25" 2024-02-05 2024-02-23 0.05 16.95 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "25" 2024-02-05 2024-02-23 0.1 22 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "25" 2024-02-05 2024-02-23 0.15 25 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "25" 2024-02-05 2024-02-23 0.2 26 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "25" 2024-02-05 2024-02-23 0.25 28.75 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "25" 2024-02-05 2024-02-23 0.3 32.4 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "25" 2024-02-05 2024-02-23 0.35 36 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "25" 2024-02-05 2024-02-23 0.4 38 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "25" 2024-02-05 2024-02-23 0.45 40 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "25" 2024-02-05 2024-02-23 0.5 42 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "25" 2024-02-05 2024-02-23 0.55 45.45 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "25" 2024-02-05 2024-02-23 0.6 47 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "25" 2024-02-05 2024-02-23 0.65 51.35 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "25" 2024-02-05 2024-02-23 0.7 53 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "25" 2024-02-05 2024-02-23 0.75 56.5 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "25" 2024-02-05 2024-02-23 0.8 67 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "25" 2024-02-05 2024-02-23 0.85 70.15 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "25" 2024-02-05 2024-02-23 0.9 74.5 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "25" 2024-02-05 2024-02-23 0.95 91.1 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "25" 2024-02-05 2024-02-23 0.975 118.45 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "25" 2024-02-05 2024-02-23 0.99 131.22 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "25" 2024-02-05 2024-02-24 0.01 12 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "25" 2024-02-05 2024-02-24 0.025 13.95 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "25" 2024-02-05 2024-02-24 0.05 17.9 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "25" 2024-02-05 2024-02-24 0.1 20.9 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "25" 2024-02-05 2024-02-24 0.15 23.85 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "25" 2024-02-05 2024-02-24 0.2 25.8 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "25" 2024-02-05 2024-02-24 0.25 28.75 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "25" 2024-02-05 2024-02-24 0.3 33.7 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "25" 2024-02-05 2024-02-24 0.35 36.65 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "25" 2024-02-05 2024-02-24 0.4 38 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "25" 2024-02-05 2024-02-24 0.45 41.55 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "25" 2024-02-05 2024-02-24 0.5 45.5 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "25" 2024-02-05 2024-02-24 0.55 47.45 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "25" 2024-02-05 2024-02-24 0.6 49.8 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "25" 2024-02-05 2024-02-24 0.65 54.35 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "25" 2024-02-05 2024-02-24 0.7 57.3 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "25" 2024-02-05 2024-02-24 0.75 62 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "25" 2024-02-05 2024-02-24 0.8 68.2 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "25" 2024-02-05 2024-02-24 0.85 77.45 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "25" 2024-02-05 2024-02-24 0.9 83.1 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "25" 2024-02-05 2024-02-24 0.95 103.1 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "25" 2024-02-05 2024-02-24 0.975 109.525 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "25" 2024-02-05 2024-02-24 0.99 132.25 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "25" 2024-02-05 2024-02-25 0.01 10.99 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "25" 2024-02-05 2024-02-25 0.025 12.475 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "25" 2024-02-05 2024-02-25 0.05 15.9 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "25" 2024-02-05 2024-02-25 0.1 19.9 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "25" 2024-02-05 2024-02-25 0.15 21.85 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "25" 2024-02-05 2024-02-25 0.2 24.6 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "25" 2024-02-05 2024-02-25 0.25 28 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "25" 2024-02-05 2024-02-25 0.3 30.7 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "25" 2024-02-05 2024-02-25 0.35 34.65 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "25" 2024-02-05 2024-02-25 0.4 38 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "25" 2024-02-05 2024-02-25 0.45 41 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "25" 2024-02-05 2024-02-25 0.5 42 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "25" 2024-02-05 2024-02-25 0.55 46 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "25" 2024-02-05 2024-02-25 0.6 48 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "25" 2024-02-05 2024-02-25 0.65 52 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "25" 2024-02-05 2024-02-25 0.7 57.6 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "25" 2024-02-05 2024-02-25 0.75 63.25 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "25" 2024-02-05 2024-02-25 0.8 69 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "25" 2024-02-05 2024-02-25 0.85 72.45 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "25" 2024-02-05 2024-02-25 0.9 82.3 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "25" 2024-02-05 2024-02-25 0.95 106.05 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "25" 2024-02-05 2024-02-25 0.975 118.775 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "25" 2024-02-05 2024-02-25 0.99 138.21 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "25" 2024-02-05 2024-02-26 0.01 8.98 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "25" 2024-02-05 2024-02-26 0.025 15.425 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "25" 2024-02-05 2024-02-26 0.05 17.95 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "25" 2024-02-05 2024-02-26 0.1 20 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "25" 2024-02-05 2024-02-26 0.15 23.85 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "25" 2024-02-05 2024-02-26 0.2 28 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "25" 2024-02-05 2024-02-26 0.25 30.5 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "25" 2024-02-05 2024-02-26 0.3 32 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "25" 2024-02-05 2024-02-26 0.35 34 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "25" 2024-02-05 2024-02-26 0.4 38 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "25" 2024-02-05 2024-02-26 0.45 41.1 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "25" 2024-02-05 2024-02-26 0.5 43.5 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "25" 2024-02-05 2024-02-26 0.55 47 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "25" 2024-02-05 2024-02-26 0.6 51.4 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "25" 2024-02-05 2024-02-26 0.65 55.35 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "25" 2024-02-05 2024-02-26 0.7 60.3 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "25" 2024-02-05 2024-02-26 0.75 61.25 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "25" 2024-02-05 2024-02-26 0.8 66.6 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "25" 2024-02-05 2024-02-26 0.85 72 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "25" 2024-02-05 2024-02-26 0.9 91.2 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "25" 2024-02-05 2024-02-26 0.95 101.15 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "25" 2024-02-05 2024-02-26 0.975 130.075 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "25" 2024-02-05 2024-02-26 0.99 151.14 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "25" 2024-02-05 2024-02-27 0.01 13.99 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "25" 2024-02-05 2024-02-27 0.025 14 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "25" 2024-02-05 2024-02-27 0.05 15.95 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "25" 2024-02-05 2024-02-27 0.1 20.9 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "25" 2024-02-05 2024-02-27 0.15 23.85 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "25" 2024-02-05 2024-02-27 0.2 27 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "25" 2024-02-05 2024-02-27 0.25 29.75 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "25" 2024-02-05 2024-02-27 0.3 33.4 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "25" 2024-02-05 2024-02-27 0.35 37.3 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "25" 2024-02-05 2024-02-27 0.4 39 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "25" 2024-02-05 2024-02-27 0.45 41 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "25" 2024-02-05 2024-02-27 0.5 43 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "25" 2024-02-05 2024-02-27 0.55 46 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "25" 2024-02-05 2024-02-27 0.6 50 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "25" 2024-02-05 2024-02-27 0.65 53 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "25" 2024-02-05 2024-02-27 0.7 55 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "25" 2024-02-05 2024-02-27 0.75 60 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "25" 2024-02-05 2024-02-27 0.8 66.2 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "25" 2024-02-05 2024-02-27 0.85 77 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "25" 2024-02-05 2024-02-27 0.9 86 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "25" 2024-02-05 2024-02-27 0.95 106.5 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "25" 2024-02-05 2024-02-27 0.975 118.625 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "25" 2024-02-05 2024-02-27 0.99 124.18 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "25" 2024-02-05 2024-02-28 0.01 11.99 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "25" 2024-02-05 2024-02-28 0.025 12.475 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "25" 2024-02-05 2024-02-28 0.05 14.95 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "25" 2024-02-05 2024-02-28 0.1 17 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "25" 2024-02-05 2024-02-28 0.15 19 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "25" 2024-02-05 2024-02-28 0.2 22.6 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "25" 2024-02-05 2024-02-28 0.25 27 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "25" 2024-02-05 2024-02-28 0.3 28.7 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "25" 2024-02-05 2024-02-28 0.35 31 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "25" 2024-02-05 2024-02-28 0.4 32.6 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "25" 2024-02-05 2024-02-28 0.45 34 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "25" 2024-02-05 2024-02-28 0.5 37.5 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "25" 2024-02-05 2024-02-28 0.55 41.9 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "25" 2024-02-05 2024-02-28 0.6 44.8 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "25" 2024-02-05 2024-02-28 0.65 48.35 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "25" 2024-02-05 2024-02-28 0.7 52.3 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "25" 2024-02-05 2024-02-28 0.75 59.25 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "25" 2024-02-05 2024-02-28 0.8 68 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "25" 2024-02-05 2024-02-28 0.85 75.3 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "25" 2024-02-05 2024-02-28 0.9 90.2 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "25" 2024-02-05 2024-02-28 0.95 113.1 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "25" 2024-02-05 2024-02-28 0.975 122.525 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "25" 2024-02-05 2024-02-28 0.99 130.4 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "25" 2024-02-05 2024-02-29 0.01 8 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "25" 2024-02-05 2024-02-29 0.025 13.475 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "25" 2024-02-05 2024-02-29 0.05 15.9 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "25" 2024-02-05 2024-02-29 0.1 20 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "25" 2024-02-05 2024-02-29 0.15 22 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "25" 2024-02-05 2024-02-29 0.2 24 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "25" 2024-02-05 2024-02-29 0.25 25.75 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "25" 2024-02-05 2024-02-29 0.3 31 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "25" 2024-02-05 2024-02-29 0.35 34.65 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "25" 2024-02-05 2024-02-29 0.4 37.6 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "25" 2024-02-05 2024-02-29 0.45 41.55 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "25" 2024-02-05 2024-02-29 0.5 45 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "25" 2024-02-05 2024-02-29 0.55 45.45 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "25" 2024-02-05 2024-02-29 0.6 47.4 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "25" 2024-02-05 2024-02-29 0.65 52.7 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "25" 2024-02-05 2024-02-29 0.7 56 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "25" 2024-02-05 2024-02-29 0.75 59.0000000000001 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "25" 2024-02-05 2024-02-29 0.8 69 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "25" 2024-02-05 2024-02-29 0.85 77 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "25" 2024-02-05 2024-02-29 0.9 92 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "25" 2024-02-05 2024-02-29 0.95 98.05 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "25" 2024-02-05 2024-02-29 0.975 120.3 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "25" 2024-02-05 2024-02-29 0.99 172.06 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "25" 2024-02-05 2024-03-01 0.01 8.95 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "25" 2024-02-05 2024-03-01 0.025 10 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "25" 2024-02-05 2024-03-01 0.05 13 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "25" 2024-02-05 2024-03-01 0.1 16.8 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "25" 2024-02-05 2024-03-01 0.15 20.85 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "25" 2024-02-05 2024-03-01 0.2 21.8 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "25" 2024-02-05 2024-03-01 0.25 23.75 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "25" 2024-02-05 2024-03-01 0.3 25.7 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "25" 2024-02-05 2024-03-01 0.35 29 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "25" 2024-02-05 2024-03-01 0.4 32.2 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "25" 2024-02-05 2024-03-01 0.45 35 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "25" 2024-02-05 2024-03-01 0.5 38.5 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "25" 2024-02-05 2024-03-01 0.55 41.45 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "25" 2024-02-05 2024-03-01 0.6 45.4 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "25" 2024-02-05 2024-03-01 0.65 48 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "25" 2024-02-05 2024-03-01 0.7 50 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "25" 2024-02-05 2024-03-01 0.75 55 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "25" 2024-02-05 2024-03-01 0.8 63.6 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "25" 2024-02-05 2024-03-01 0.85 73.15 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "25" 2024-02-05 2024-03-01 0.9 90.3 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "25" 2024-02-05 2024-03-01 0.95 111 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "25" 2024-02-05 2024-03-01 0.975 120.1 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "25" 2024-02-05 2024-03-01 0.99 138.48 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "25" 2024-02-05 2024-03-02 0.01 6.98 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "25" 2024-02-05 2024-03-02 0.025 10.425 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "25" 2024-02-05 2024-03-02 0.05 12 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "25" 2024-02-05 2024-03-02 0.1 15.9 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "25" 2024-02-05 2024-03-02 0.15 18 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "25" 2024-02-05 2024-03-02 0.2 22.6 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "25" 2024-02-05 2024-03-02 0.25 26 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "25" 2024-02-05 2024-03-02 0.3 28 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "25" 2024-02-05 2024-03-02 0.35 29.65 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "25" 2024-02-05 2024-03-02 0.4 32 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "25" 2024-02-05 2024-03-02 0.45 33.55 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "25" 2024-02-05 2024-03-02 0.5 37.5 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "25" 2024-02-05 2024-03-02 0.55 39 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "25" 2024-02-05 2024-03-02 0.6 42 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "25" 2024-02-05 2024-03-02 0.65 46 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "25" 2024-02-05 2024-03-02 0.7 48.3 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "25" 2024-02-05 2024-03-02 0.75 51.75 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "25" 2024-02-05 2024-03-02 0.8 59.2 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "25" 2024-02-05 2024-03-02 0.85 66.45 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "25" 2024-02-05 2024-03-02 0.9 76.1 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "25" 2024-02-05 2024-03-02 0.95 110 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "25" 2024-02-05 2024-03-02 0.975 136.8 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "25" 2024-02-05 2024-03-02 0.99 165.07 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "25" 2024-02-05 2024-03-03 0.01 8.95 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "25" 2024-02-05 2024-03-03 0.025 9.475 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "25" 2024-02-05 2024-03-03 0.05 10.95 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "25" 2024-02-05 2024-03-03 0.1 14.9 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "25" 2024-02-05 2024-03-03 0.15 19 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "25" 2024-02-05 2024-03-03 0.2 21.8 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "25" 2024-02-05 2024-03-03 0.25 23.75 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "25" 2024-02-05 2024-03-03 0.3 26 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "25" 2024-02-05 2024-03-03 0.35 30.65 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "25" 2024-02-05 2024-03-03 0.4 34 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "25" 2024-02-05 2024-03-03 0.45 37 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "25" 2024-02-05 2024-03-03 0.5 40 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "25" 2024-02-05 2024-03-03 0.55 42.45 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "25" 2024-02-05 2024-03-03 0.6 45.4 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "25" 2024-02-05 2024-03-03 0.65 47 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "25" 2024-02-05 2024-03-03 0.7 51.3 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "25" 2024-02-05 2024-03-03 0.75 55 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "25" 2024-02-05 2024-03-03 0.8 59.4 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "25" 2024-02-05 2024-03-03 0.85 69.05 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "25" 2024-02-05 2024-03-03 0.9 83.5 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "25" 2024-02-05 2024-03-03 0.95 105.25 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "25" 2024-02-05 2024-03-03 0.975 133.1 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "25" 2024-02-05 2024-03-03 0.99 141.18 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "25" 2024-02-05 2024-03-04 0.01 9 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "25" 2024-02-05 2024-03-04 0.025 10.475 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "25" 2024-02-05 2024-03-04 0.05 11 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "25" 2024-02-05 2024-03-04 0.1 15.7 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "25" 2024-02-05 2024-03-04 0.15 17.85 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "25" 2024-02-05 2024-03-04 0.2 20.6 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "25" 2024-02-05 2024-03-04 0.25 24 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "25" 2024-02-05 2024-03-04 0.3 27 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "25" 2024-02-05 2024-03-04 0.35 28 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "25" 2024-02-05 2024-03-04 0.4 31.6 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "25" 2024-02-05 2024-03-04 0.45 33 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "25" 2024-02-05 2024-03-04 0.5 36 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "25" 2024-02-05 2024-03-04 0.55 40 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "25" 2024-02-05 2024-03-04 0.6 43.4 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "25" 2024-02-05 2024-03-04 0.65 50 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "25" 2024-02-05 2024-03-04 0.7 55.9 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "25" 2024-02-05 2024-03-04 0.75 63.25 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "25" 2024-02-05 2024-03-04 0.8 66.4 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "25" 2024-02-05 2024-03-04 0.85 72.3 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "25" 2024-02-05 2024-03-04 0.9 87.6000000000001 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "25" 2024-02-05 2024-03-04 0.95 117.25 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "25" 2024-02-05 2024-03-04 0.975 136.5 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "25" 2024-02-05 2024-03-04 0.99 150.16 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "24" 2024-02-05 2024-02-06 0.01 21.98 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "24" 2024-02-05 2024-02-06 0.025 25 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "24" 2024-02-05 2024-02-06 0.05 27.95 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "24" 2024-02-05 2024-02-06 0.1 31.8 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "24" 2024-02-05 2024-02-06 0.15 33 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "24" 2024-02-05 2024-02-06 0.2 36 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "24" 2024-02-05 2024-02-06 0.25 36.75 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "24" 2024-02-05 2024-02-06 0.3 38.7 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "24" 2024-02-05 2024-02-06 0.35 40 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "24" 2024-02-05 2024-02-06 0.4 40 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "24" 2024-02-05 2024-02-06 0.45 41.55 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "24" 2024-02-05 2024-02-06 0.5 43 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "24" 2024-02-05 2024-02-06 0.55 44.45 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "24" 2024-02-05 2024-02-06 0.6 45.4 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "24" 2024-02-05 2024-02-06 0.65 47 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "24" 2024-02-05 2024-02-06 0.7 48.3 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "24" 2024-02-05 2024-02-06 0.75 50.25 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "24" 2024-02-05 2024-02-06 0.8 52.2 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "24" 2024-02-05 2024-02-06 0.85 53.15 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "24" 2024-02-05 2024-02-06 0.9 56.1 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "24" 2024-02-05 2024-02-06 0.95 63 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "24" 2024-02-05 2024-02-06 0.975 64 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "24" 2024-02-05 2024-02-06 0.99 67.04 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "24" 2024-02-05 2024-02-07 0.01 19.96 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "24" 2024-02-05 2024-02-07 0.025 21.475 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "24" 2024-02-05 2024-02-07 0.05 23.95 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "24" 2024-02-05 2024-02-07 0.1 27.9 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "24" 2024-02-05 2024-02-07 0.15 29 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "24" 2024-02-05 2024-02-07 0.2 29.8 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "24" 2024-02-05 2024-02-07 0.25 31 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "24" 2024-02-05 2024-02-07 0.3 32.7 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "24" 2024-02-05 2024-02-07 0.35 34 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "24" 2024-02-05 2024-02-07 0.4 36.6 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "24" 2024-02-05 2024-02-07 0.45 37 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "24" 2024-02-05 2024-02-07 0.5 38.5 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "24" 2024-02-05 2024-02-07 0.55 40 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "24" 2024-02-05 2024-02-07 0.6 40 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "24" 2024-02-05 2024-02-07 0.65 41 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "24" 2024-02-05 2024-02-07 0.7 42.3 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "24" 2024-02-05 2024-02-07 0.75 44.25 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "24" 2024-02-05 2024-02-07 0.8 47 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "24" 2024-02-05 2024-02-07 0.85 48.15 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "24" 2024-02-05 2024-02-07 0.9 50 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "24" 2024-02-05 2024-02-07 0.95 51.05 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "24" 2024-02-05 2024-02-07 0.975 55.1 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "24" 2024-02-05 2024-02-07 0.99 57.02 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "24" 2024-02-05 2024-02-08 0.01 21.98 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "24" 2024-02-05 2024-02-08 0.025 25.475 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "24" 2024-02-05 2024-02-08 0.05 27.95 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "24" 2024-02-05 2024-02-08 0.1 30 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "24" 2024-02-05 2024-02-08 0.15 31.85 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "24" 2024-02-05 2024-02-08 0.2 34 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "24" 2024-02-05 2024-02-08 0.25 35 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "24" 2024-02-05 2024-02-08 0.3 36 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "24" 2024-02-05 2024-02-08 0.35 37.65 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "24" 2024-02-05 2024-02-08 0.4 39 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "24" 2024-02-05 2024-02-08 0.45 39.55 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "24" 2024-02-05 2024-02-08 0.5 41.5 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "24" 2024-02-05 2024-02-08 0.55 43 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "24" 2024-02-05 2024-02-08 0.6 44.8 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "24" 2024-02-05 2024-02-08 0.65 47.35 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "24" 2024-02-05 2024-02-08 0.7 48 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "24" 2024-02-05 2024-02-08 0.75 51 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "24" 2024-02-05 2024-02-08 0.8 54 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "24" 2024-02-05 2024-02-08 0.85 55 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "24" 2024-02-05 2024-02-08 0.9 58 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "24" 2024-02-05 2024-02-08 0.95 61.15 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "24" 2024-02-05 2024-02-08 0.975 65.525 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "24" 2024-02-05 2024-02-08 0.99 67 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "24" 2024-02-05 2024-02-09 0.01 15.98 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "24" 2024-02-05 2024-02-09 0.025 18.9 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "24" 2024-02-05 2024-02-09 0.05 22 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "24" 2024-02-05 2024-02-09 0.1 24.9 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "24" 2024-02-05 2024-02-09 0.15 25.85 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "24" 2024-02-05 2024-02-09 0.2 27 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "24" 2024-02-05 2024-02-09 0.25 28 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "24" 2024-02-05 2024-02-09 0.3 29.7 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "24" 2024-02-05 2024-02-09 0.35 30.65 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "24" 2024-02-05 2024-02-09 0.4 32 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "24" 2024-02-05 2024-02-09 0.45 34 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "24" 2024-02-05 2024-02-09 0.5 34 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "24" 2024-02-05 2024-02-09 0.55 37 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "24" 2024-02-05 2024-02-09 0.6 38 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "24" 2024-02-05 2024-02-09 0.65 39 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "24" 2024-02-05 2024-02-09 0.7 40 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "24" 2024-02-05 2024-02-09 0.75 42.25 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "24" 2024-02-05 2024-02-09 0.8 46 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "24" 2024-02-05 2024-02-09 0.85 47.15 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "24" 2024-02-05 2024-02-09 0.9 52 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "24" 2024-02-05 2024-02-09 0.95 55.1 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "24" 2024-02-05 2024-02-09 0.975 61.625 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "24" 2024-02-05 2024-02-09 0.99 65.1700000000001 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "24" 2024-02-05 2024-02-10 0.01 15.99 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "24" 2024-02-05 2024-02-10 0.025 16.475 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "24" 2024-02-05 2024-02-10 0.05 18.95 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "24" 2024-02-05 2024-02-10 0.1 20 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "24" 2024-02-05 2024-02-10 0.15 22 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "24" 2024-02-05 2024-02-10 0.2 23.8 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "24" 2024-02-05 2024-02-10 0.25 24 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "24" 2024-02-05 2024-02-10 0.3 25 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "24" 2024-02-05 2024-02-10 0.35 26 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "24" 2024-02-05 2024-02-10 0.4 27.6 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "24" 2024-02-05 2024-02-10 0.45 29 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "24" 2024-02-05 2024-02-10 0.5 32 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "24" 2024-02-05 2024-02-10 0.55 33 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "24" 2024-02-05 2024-02-10 0.6 35 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "24" 2024-02-05 2024-02-10 0.65 35.35 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "24" 2024-02-05 2024-02-10 0.7 36 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "24" 2024-02-05 2024-02-10 0.75 39 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "24" 2024-02-05 2024-02-10 0.8 41 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "24" 2024-02-05 2024-02-10 0.85 43 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "24" 2024-02-05 2024-02-10 0.9 46.1 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "24" 2024-02-05 2024-02-10 0.95 51.1 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "24" 2024-02-05 2024-02-10 0.975 55.625 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "24" 2024-02-05 2024-02-10 0.99 58 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "24" 2024-02-05 2024-02-11 0.01 14.97 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "24" 2024-02-05 2024-02-11 0.025 17.95 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "24" 2024-02-05 2024-02-11 0.05 20.95 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "24" 2024-02-05 2024-02-11 0.1 21.9 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "24" 2024-02-05 2024-02-11 0.15 24 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "24" 2024-02-05 2024-02-11 0.2 25 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "24" 2024-02-05 2024-02-11 0.25 27 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "24" 2024-02-05 2024-02-11 0.3 28.7 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "24" 2024-02-05 2024-02-11 0.35 29.65 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "24" 2024-02-05 2024-02-11 0.4 31 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "24" 2024-02-05 2024-02-11 0.45 34 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "24" 2024-02-05 2024-02-11 0.5 35 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "24" 2024-02-05 2024-02-11 0.55 36 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "24" 2024-02-05 2024-02-11 0.6 37 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "24" 2024-02-05 2024-02-11 0.65 38.35 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "24" 2024-02-05 2024-02-11 0.7 40.3 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "24" 2024-02-05 2024-02-11 0.75 43 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "24" 2024-02-05 2024-02-11 0.8 43.2 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "24" 2024-02-05 2024-02-11 0.85 45 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "24" 2024-02-05 2024-02-11 0.9 47 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "24" 2024-02-05 2024-02-11 0.95 50.05 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "24" 2024-02-05 2024-02-11 0.975 54.525 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "24" 2024-02-05 2024-02-11 0.99 63.03 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "24" 2024-02-05 2024-02-12 0.01 14.99 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "24" 2024-02-05 2024-02-12 0.025 16.95 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "24" 2024-02-05 2024-02-12 0.05 18.95 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "24" 2024-02-05 2024-02-12 0.1 21.9 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "24" 2024-02-05 2024-02-12 0.15 24.85 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "24" 2024-02-05 2024-02-12 0.2 27.8 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "24" 2024-02-05 2024-02-12 0.25 29 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "24" 2024-02-05 2024-02-12 0.3 30 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "24" 2024-02-05 2024-02-12 0.35 31.65 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "24" 2024-02-05 2024-02-12 0.4 33.6 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "24" 2024-02-05 2024-02-12 0.45 34 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "24" 2024-02-05 2024-02-12 0.5 35 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "24" 2024-02-05 2024-02-12 0.55 37.45 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "24" 2024-02-05 2024-02-12 0.6 38.4 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "24" 2024-02-05 2024-02-12 0.65 40 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "24" 2024-02-05 2024-02-12 0.7 41 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "24" 2024-02-05 2024-02-12 0.75 44 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "24" 2024-02-05 2024-02-12 0.8 45 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "24" 2024-02-05 2024-02-12 0.85 48 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "24" 2024-02-05 2024-02-12 0.9 50.1 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "24" 2024-02-05 2024-02-12 0.95 54.05 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "24" 2024-02-05 2024-02-12 0.975 57.05 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "24" 2024-02-05 2024-02-12 0.99 65.05 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "24" 2024-02-05 2024-02-13 0.01 20 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "24" 2024-02-05 2024-02-13 0.025 21.475 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "24" 2024-02-05 2024-02-13 0.05 22.95 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "24" 2024-02-05 2024-02-13 0.1 25 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "24" 2024-02-05 2024-02-13 0.15 26.85 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "24" 2024-02-05 2024-02-13 0.2 28.8 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "24" 2024-02-05 2024-02-13 0.25 30 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "24" 2024-02-05 2024-02-13 0.3 31 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "24" 2024-02-05 2024-02-13 0.35 32.65 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "24" 2024-02-05 2024-02-13 0.4 34.6 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "24" 2024-02-05 2024-02-13 0.45 36 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "24" 2024-02-05 2024-02-13 0.5 38 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "24" 2024-02-05 2024-02-13 0.55 39 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "24" 2024-02-05 2024-02-13 0.6 40 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "24" 2024-02-05 2024-02-13 0.65 41 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "24" 2024-02-05 2024-02-13 0.7 42.3 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "24" 2024-02-05 2024-02-13 0.75 44 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "24" 2024-02-05 2024-02-13 0.8 46 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "24" 2024-02-05 2024-02-13 0.85 48 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "24" 2024-02-05 2024-02-13 0.9 52.2 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "24" 2024-02-05 2024-02-13 0.95 57.05 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "24" 2024-02-05 2024-02-13 0.975 62.575 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "24" 2024-02-05 2024-02-13 0.99 68.01 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "24" 2024-02-05 2024-02-14 0.01 11.99 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "24" 2024-02-05 2024-02-14 0.025 14.475 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "24" 2024-02-05 2024-02-14 0.05 16 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "24" 2024-02-05 2024-02-14 0.1 18 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "24" 2024-02-05 2024-02-14 0.15 19 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "24" 2024-02-05 2024-02-14 0.2 24 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "24" 2024-02-05 2024-02-14 0.25 26 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "24" 2024-02-05 2024-02-14 0.3 28 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "24" 2024-02-05 2024-02-14 0.35 28.65 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "24" 2024-02-05 2024-02-14 0.4 30 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "24" 2024-02-05 2024-02-14 0.45 32.55 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "24" 2024-02-05 2024-02-14 0.5 34.5 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "24" 2024-02-05 2024-02-14 0.55 35 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "24" 2024-02-05 2024-02-14 0.6 36 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "24" 2024-02-05 2024-02-14 0.65 37 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "24" 2024-02-05 2024-02-14 0.7 38 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "24" 2024-02-05 2024-02-14 0.75 40 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "24" 2024-02-05 2024-02-14 0.8 42 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "24" 2024-02-05 2024-02-14 0.85 43.15 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "24" 2024-02-05 2024-02-14 0.9 47.1 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "24" 2024-02-05 2024-02-14 0.95 54.1 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "24" 2024-02-05 2024-02-14 0.975 61.05 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "24" 2024-02-05 2024-02-14 0.99 64.06 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "24" 2024-02-05 2024-02-15 0.01 15.99 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "24" 2024-02-05 2024-02-15 0.025 17.475 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "24" 2024-02-05 2024-02-15 0.05 18 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "24" 2024-02-05 2024-02-15 0.1 20.9 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "24" 2024-02-05 2024-02-15 0.15 22.85 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "24" 2024-02-05 2024-02-15 0.2 23.8 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "24" 2024-02-05 2024-02-15 0.25 25.75 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "24" 2024-02-05 2024-02-15 0.3 28 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "24" 2024-02-05 2024-02-15 0.35 28 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "24" 2024-02-05 2024-02-15 0.4 29 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "24" 2024-02-05 2024-02-15 0.45 30.55 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "24" 2024-02-05 2024-02-15 0.5 33 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "24" 2024-02-05 2024-02-15 0.55 33.9 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "24" 2024-02-05 2024-02-15 0.6 36.4 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "24" 2024-02-05 2024-02-15 0.65 38 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "24" 2024-02-05 2024-02-15 0.7 41.3 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "24" 2024-02-05 2024-02-15 0.75 46 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "24" 2024-02-05 2024-02-15 0.8 48 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "24" 2024-02-05 2024-02-15 0.85 52 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "24" 2024-02-05 2024-02-15 0.9 55 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "24" 2024-02-05 2024-02-15 0.95 56.05 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "24" 2024-02-05 2024-02-15 0.975 61.525 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "24" 2024-02-05 2024-02-15 0.99 62.1500000000001 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "24" 2024-02-05 2024-02-16 0.01 11.96 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "24" 2024-02-05 2024-02-16 0.025 13 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "24" 2024-02-05 2024-02-16 0.05 15.9 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "24" 2024-02-05 2024-02-16 0.1 19 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "24" 2024-02-05 2024-02-16 0.15 21.85 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "24" 2024-02-05 2024-02-16 0.2 23.8 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "24" 2024-02-05 2024-02-16 0.25 24 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "24" 2024-02-05 2024-02-16 0.3 25 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "24" 2024-02-05 2024-02-16 0.35 27 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "24" 2024-02-05 2024-02-16 0.4 28 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "24" 2024-02-05 2024-02-16 0.45 29 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "24" 2024-02-05 2024-02-16 0.5 31 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "24" 2024-02-05 2024-02-16 0.55 32 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "24" 2024-02-05 2024-02-16 0.6 33 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "24" 2024-02-05 2024-02-16 0.65 34 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "24" 2024-02-05 2024-02-16 0.7 36 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "24" 2024-02-05 2024-02-16 0.75 37.25 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "24" 2024-02-05 2024-02-16 0.8 40 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "24" 2024-02-05 2024-02-16 0.85 43.3 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "24" 2024-02-05 2024-02-16 0.9 50.1 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "24" 2024-02-05 2024-02-16 0.95 56.1 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "24" 2024-02-05 2024-02-16 0.975 59 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "24" 2024-02-05 2024-02-16 0.99 60.1500000000001 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "24" 2024-02-05 2024-02-17 0.01 11.96 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "24" 2024-02-05 2024-02-17 0.025 12.475 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "24" 2024-02-05 2024-02-17 0.05 13 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "24" 2024-02-05 2024-02-17 0.1 15 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "24" 2024-02-05 2024-02-17 0.15 17 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "24" 2024-02-05 2024-02-17 0.2 19 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "24" 2024-02-05 2024-02-17 0.25 21 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "24" 2024-02-05 2024-02-17 0.3 22 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "24" 2024-02-05 2024-02-17 0.35 23.3 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "24" 2024-02-05 2024-02-17 0.4 25 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "24" 2024-02-05 2024-02-17 0.45 27 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "24" 2024-02-05 2024-02-17 0.5 27 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "24" 2024-02-05 2024-02-17 0.55 29 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "24" 2024-02-05 2024-02-17 0.6 31.4 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "24" 2024-02-05 2024-02-17 0.65 33 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "24" 2024-02-05 2024-02-17 0.7 34 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "24" 2024-02-05 2024-02-17 0.75 36 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "24" 2024-02-05 2024-02-17 0.8 37.4 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "24" 2024-02-05 2024-02-17 0.85 39.15 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "24" 2024-02-05 2024-02-17 0.9 43 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "24" 2024-02-05 2024-02-17 0.95 44.05 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "24" 2024-02-05 2024-02-17 0.975 49.575 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "24" 2024-02-05 2024-02-17 0.99 55.07 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "24" 2024-02-05 2024-02-18 0.01 11.99 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "24" 2024-02-05 2024-02-18 0.025 12 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "24" 2024-02-05 2024-02-18 0.05 13.95 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "24" 2024-02-05 2024-02-18 0.1 16 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "24" 2024-02-05 2024-02-18 0.15 18.85 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "24" 2024-02-05 2024-02-18 0.2 20.8 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "24" 2024-02-05 2024-02-18 0.25 21.75 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "24" 2024-02-05 2024-02-18 0.3 23.7 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "24" 2024-02-05 2024-02-18 0.35 24.65 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "24" 2024-02-05 2024-02-18 0.4 25.6 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "24" 2024-02-05 2024-02-18 0.45 27 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "24" 2024-02-05 2024-02-18 0.5 28 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "24" 2024-02-05 2024-02-18 0.55 30 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "24" 2024-02-05 2024-02-18 0.6 31 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "24" 2024-02-05 2024-02-18 0.65 32.35 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "24" 2024-02-05 2024-02-18 0.7 34.3 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "24" 2024-02-05 2024-02-18 0.75 36 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "24" 2024-02-05 2024-02-18 0.8 38 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "24" 2024-02-05 2024-02-18 0.85 40 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "24" 2024-02-05 2024-02-18 0.9 44.2 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "24" 2024-02-05 2024-02-18 0.95 54.05 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "24" 2024-02-05 2024-02-18 0.975 56.525 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "24" 2024-02-05 2024-02-18 0.99 59.01 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "24" 2024-02-05 2024-02-19 0.01 12 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "24" 2024-02-05 2024-02-19 0.025 13.475 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "24" 2024-02-05 2024-02-19 0.05 16.95 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "24" 2024-02-05 2024-02-19 0.1 17.9 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "24" 2024-02-05 2024-02-19 0.15 19 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "24" 2024-02-05 2024-02-19 0.2 21 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "24" 2024-02-05 2024-02-19 0.25 22 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "24" 2024-02-05 2024-02-19 0.3 23.7 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "24" 2024-02-05 2024-02-19 0.35 27.3 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "24" 2024-02-05 2024-02-19 0.4 30 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "24" 2024-02-05 2024-02-19 0.45 31 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "24" 2024-02-05 2024-02-19 0.5 32 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "24" 2024-02-05 2024-02-19 0.55 33.45 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "24" 2024-02-05 2024-02-19 0.6 36.4 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "24" 2024-02-05 2024-02-19 0.65 39 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "24" 2024-02-05 2024-02-19 0.7 40 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "24" 2024-02-05 2024-02-19 0.75 43 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "24" 2024-02-05 2024-02-19 0.8 44 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "24" 2024-02-05 2024-02-19 0.85 46.15 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "24" 2024-02-05 2024-02-19 0.9 50.1 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "24" 2024-02-05 2024-02-19 0.95 56.15 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "24" 2024-02-05 2024-02-19 0.975 64.05 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "24" 2024-02-05 2024-02-19 0.99 67.07 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "24" 2024-02-05 2024-02-20 0.01 11.98 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "24" 2024-02-05 2024-02-20 0.025 13.475 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "24" 2024-02-05 2024-02-20 0.05 15.95 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "24" 2024-02-05 2024-02-20 0.1 18.9 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "24" 2024-02-05 2024-02-20 0.15 21 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "24" 2024-02-05 2024-02-20 0.2 22 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "24" 2024-02-05 2024-02-20 0.25 24 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "24" 2024-02-05 2024-02-20 0.3 26.7 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "24" 2024-02-05 2024-02-20 0.35 28.65 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "24" 2024-02-05 2024-02-20 0.4 30 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "24" 2024-02-05 2024-02-20 0.45 32 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "24" 2024-02-05 2024-02-20 0.5 34 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "24" 2024-02-05 2024-02-20 0.55 35.45 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "24" 2024-02-05 2024-02-20 0.6 37 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "24" 2024-02-05 2024-02-20 0.65 39.35 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "24" 2024-02-05 2024-02-20 0.7 41 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "24" 2024-02-05 2024-02-20 0.75 42.25 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "24" 2024-02-05 2024-02-20 0.8 44.4 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "24" 2024-02-05 2024-02-20 0.85 47.3 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "24" 2024-02-05 2024-02-20 0.9 55.1 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "24" 2024-02-05 2024-02-20 0.95 58.15 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "24" 2024-02-05 2024-02-20 0.975 62.575 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "24" 2024-02-05 2024-02-20 0.99 73.1400000000001 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "24" 2024-02-05 2024-02-21 0.01 13.92 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "24" 2024-02-05 2024-02-21 0.025 14.475 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "24" 2024-02-05 2024-02-21 0.05 15.95 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "24" 2024-02-05 2024-02-21 0.1 18.9 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "24" 2024-02-05 2024-02-21 0.15 19.85 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "24" 2024-02-05 2024-02-21 0.2 21 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "24" 2024-02-05 2024-02-21 0.25 22 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "24" 2024-02-05 2024-02-21 0.3 23 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "24" 2024-02-05 2024-02-21 0.35 24 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "24" 2024-02-05 2024-02-21 0.4 25.6 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "24" 2024-02-05 2024-02-21 0.45 28 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "24" 2024-02-05 2024-02-21 0.5 30 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "24" 2024-02-05 2024-02-21 0.55 32 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "24" 2024-02-05 2024-02-21 0.6 35 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "24" 2024-02-05 2024-02-21 0.65 36.35 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "24" 2024-02-05 2024-02-21 0.7 38 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "24" 2024-02-05 2024-02-21 0.75 41 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "24" 2024-02-05 2024-02-21 0.8 42 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "24" 2024-02-05 2024-02-21 0.85 44 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "24" 2024-02-05 2024-02-21 0.9 50.1 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "24" 2024-02-05 2024-02-21 0.95 58.1 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "24" 2024-02-05 2024-02-21 0.975 62.625 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "24" 2024-02-05 2024-02-21 0.99 75.06 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "24" 2024-02-05 2024-02-22 0.01 10 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "24" 2024-02-05 2024-02-22 0.025 12.475 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "24" 2024-02-05 2024-02-22 0.05 14 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "24" 2024-02-05 2024-02-22 0.1 16.9 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "24" 2024-02-05 2024-02-22 0.15 18 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "24" 2024-02-05 2024-02-22 0.2 21 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "24" 2024-02-05 2024-02-22 0.25 23.75 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "24" 2024-02-05 2024-02-22 0.3 24 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "24" 2024-02-05 2024-02-22 0.35 25 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "24" 2024-02-05 2024-02-22 0.4 28.6 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "24" 2024-02-05 2024-02-22 0.45 30 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "24" 2024-02-05 2024-02-22 0.5 32 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "24" 2024-02-05 2024-02-22 0.55 33.45 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "24" 2024-02-05 2024-02-22 0.6 35 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "24" 2024-02-05 2024-02-22 0.65 37.35 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "24" 2024-02-05 2024-02-22 0.7 39.3 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "24" 2024-02-05 2024-02-22 0.75 43.25 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "24" 2024-02-05 2024-02-22 0.8 46 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "24" 2024-02-05 2024-02-22 0.85 49 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "24" 2024-02-05 2024-02-22 0.9 53.2 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "24" 2024-02-05 2024-02-22 0.95 57.25 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "24" 2024-02-05 2024-02-22 0.975 64.525 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "24" 2024-02-05 2024-02-22 0.99 67.06 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "24" 2024-02-05 2024-02-23 0.01 10.98 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "24" 2024-02-05 2024-02-23 0.025 12 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "24" 2024-02-05 2024-02-23 0.05 12.95 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "24" 2024-02-05 2024-02-23 0.1 14 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "24" 2024-02-05 2024-02-23 0.15 17 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "24" 2024-02-05 2024-02-23 0.2 20 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "24" 2024-02-05 2024-02-23 0.25 22 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "24" 2024-02-05 2024-02-23 0.3 22.7 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "24" 2024-02-05 2024-02-23 0.35 24.65 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "24" 2024-02-05 2024-02-23 0.4 26 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "24" 2024-02-05 2024-02-23 0.45 27 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "24" 2024-02-05 2024-02-23 0.5 28.5 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "24" 2024-02-05 2024-02-23 0.55 30 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "24" 2024-02-05 2024-02-23 0.6 31.4 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "24" 2024-02-05 2024-02-23 0.65 32.35 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "24" 2024-02-05 2024-02-23 0.7 35 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "24" 2024-02-05 2024-02-23 0.75 38 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "24" 2024-02-05 2024-02-23 0.8 39.2 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "24" 2024-02-05 2024-02-23 0.85 41.15 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "24" 2024-02-05 2024-02-23 0.9 48 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "24" 2024-02-05 2024-02-23 0.95 54.05 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "24" 2024-02-05 2024-02-23 0.975 59.1 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "24" 2024-02-05 2024-02-23 0.99 62.08 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "24" 2024-02-05 2024-02-24 0.01 4.99 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "24" 2024-02-05 2024-02-24 0.025 7.425 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "24" 2024-02-05 2024-02-24 0.05 10 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "24" 2024-02-05 2024-02-24 0.1 13 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "24" 2024-02-05 2024-02-24 0.15 14 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "24" 2024-02-05 2024-02-24 0.2 16 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "24" 2024-02-05 2024-02-24 0.25 17.75 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "24" 2024-02-05 2024-02-24 0.3 19.7 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "24" 2024-02-05 2024-02-24 0.35 21.65 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "24" 2024-02-05 2024-02-24 0.4 24 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "24" 2024-02-05 2024-02-24 0.45 25.55 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "24" 2024-02-05 2024-02-24 0.5 26 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "24" 2024-02-05 2024-02-24 0.55 27.45 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "24" 2024-02-05 2024-02-24 0.6 28 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "24" 2024-02-05 2024-02-24 0.65 29 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "24" 2024-02-05 2024-02-24 0.7 31 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "24" 2024-02-05 2024-02-24 0.75 33.25 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "24" 2024-02-05 2024-02-24 0.8 35.2 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "24" 2024-02-05 2024-02-24 0.85 39.15 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "24" 2024-02-05 2024-02-24 0.9 42 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "24" 2024-02-05 2024-02-24 0.95 48 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "24" 2024-02-05 2024-02-24 0.975 51 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "24" 2024-02-05 2024-02-24 0.99 53.06 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "24" 2024-02-05 2024-02-25 0.01 7.96 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "24" 2024-02-05 2024-02-25 0.025 8.95 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "24" 2024-02-05 2024-02-25 0.05 10 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "24" 2024-02-05 2024-02-25 0.1 12 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "24" 2024-02-05 2024-02-25 0.15 13.85 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "24" 2024-02-05 2024-02-25 0.2 15.6 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "24" 2024-02-05 2024-02-25 0.25 16.75 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "24" 2024-02-05 2024-02-25 0.3 20.4 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "24" 2024-02-05 2024-02-25 0.35 23 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "24" 2024-02-05 2024-02-25 0.4 24 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "24" 2024-02-05 2024-02-25 0.45 25.55 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "24" 2024-02-05 2024-02-25 0.5 26 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "24" 2024-02-05 2024-02-25 0.55 27.45 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "24" 2024-02-05 2024-02-25 0.6 30 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "24" 2024-02-05 2024-02-25 0.65 30 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "24" 2024-02-05 2024-02-25 0.7 33.6 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "24" 2024-02-05 2024-02-25 0.75 36.25 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "24" 2024-02-05 2024-02-25 0.8 40 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "24" 2024-02-05 2024-02-25 0.85 41.45 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "24" 2024-02-05 2024-02-25 0.9 50 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "24" 2024-02-05 2024-02-25 0.95 54.1 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "24" 2024-02-05 2024-02-25 0.975 59.05 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "24" 2024-02-05 2024-02-25 0.99 62.05 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "24" 2024-02-05 2024-02-26 0.01 6.98 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "24" 2024-02-05 2024-02-26 0.025 8.475 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "24" 2024-02-05 2024-02-26 0.05 11 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "24" 2024-02-05 2024-02-26 0.1 13 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "24" 2024-02-05 2024-02-26 0.15 15 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "24" 2024-02-05 2024-02-26 0.2 17.8 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "24" 2024-02-05 2024-02-26 0.25 18.75 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "24" 2024-02-05 2024-02-26 0.3 23 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "24" 2024-02-05 2024-02-26 0.35 25 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "24" 2024-02-05 2024-02-26 0.4 27 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "24" 2024-02-05 2024-02-26 0.45 28 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "24" 2024-02-05 2024-02-26 0.5 30.5 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "24" 2024-02-05 2024-02-26 0.55 33 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "24" 2024-02-05 2024-02-26 0.6 34.4 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "24" 2024-02-05 2024-02-26 0.65 36.35 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "24" 2024-02-05 2024-02-26 0.7 38 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "24" 2024-02-05 2024-02-26 0.75 40 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "24" 2024-02-05 2024-02-26 0.8 42 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "24" 2024-02-05 2024-02-26 0.85 46 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "24" 2024-02-05 2024-02-26 0.9 52 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "24" 2024-02-05 2024-02-26 0.95 55 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "24" 2024-02-05 2024-02-26 0.975 57.05 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "24" 2024-02-05 2024-02-26 0.99 65.01 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "24" 2024-02-05 2024-02-27 0.01 7.98 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "24" 2024-02-05 2024-02-27 0.025 9.475 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "24" 2024-02-05 2024-02-27 0.05 10.95 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "24" 2024-02-05 2024-02-27 0.1 12 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "24" 2024-02-05 2024-02-27 0.15 16 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "24" 2024-02-05 2024-02-27 0.2 18 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "24" 2024-02-05 2024-02-27 0.25 19 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "24" 2024-02-05 2024-02-27 0.3 22 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "24" 2024-02-05 2024-02-27 0.35 24.65 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "24" 2024-02-05 2024-02-27 0.4 27 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "24" 2024-02-05 2024-02-27 0.45 28.55 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "24" 2024-02-05 2024-02-27 0.5 30 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "24" 2024-02-05 2024-02-27 0.55 33 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "24" 2024-02-05 2024-02-27 0.6 34 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "24" 2024-02-05 2024-02-27 0.65 38.35 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "24" 2024-02-05 2024-02-27 0.7 40.3 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "24" 2024-02-05 2024-02-27 0.75 42 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "24" 2024-02-05 2024-02-27 0.8 43 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "24" 2024-02-05 2024-02-27 0.85 48.15 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "24" 2024-02-05 2024-02-27 0.9 54 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "24" 2024-02-05 2024-02-27 0.95 57.1 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "24" 2024-02-05 2024-02-27 0.975 61.575 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "24" 2024-02-05 2024-02-27 0.99 68.1000000000001 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "24" 2024-02-05 2024-02-28 0.01 7.99 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "24" 2024-02-05 2024-02-28 0.025 8.475 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "24" 2024-02-05 2024-02-28 0.05 9 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "24" 2024-02-05 2024-02-28 0.1 11 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "24" 2024-02-05 2024-02-28 0.15 13 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "24" 2024-02-05 2024-02-28 0.2 15 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "24" 2024-02-05 2024-02-28 0.25 16 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "24" 2024-02-05 2024-02-28 0.3 19 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "24" 2024-02-05 2024-02-28 0.35 22 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "24" 2024-02-05 2024-02-28 0.4 23.6 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "24" 2024-02-05 2024-02-28 0.45 24 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "24" 2024-02-05 2024-02-28 0.5 26.5 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "24" 2024-02-05 2024-02-28 0.55 28 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "24" 2024-02-05 2024-02-28 0.6 29 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "24" 2024-02-05 2024-02-28 0.65 30 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "24" 2024-02-05 2024-02-28 0.7 31.3 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "24" 2024-02-05 2024-02-28 0.75 37 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "24" 2024-02-05 2024-02-28 0.8 40 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "24" 2024-02-05 2024-02-28 0.85 43 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "24" 2024-02-05 2024-02-28 0.9 49.1 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "24" 2024-02-05 2024-02-28 0.95 55.15 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "24" 2024-02-05 2024-02-28 0.975 59.525 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "24" 2024-02-05 2024-02-28 0.99 62.08 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "24" 2024-02-05 2024-02-29 0.01 4.99 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "24" 2024-02-05 2024-02-29 0.025 8.475 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "24" 2024-02-05 2024-02-29 0.05 10.9 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "24" 2024-02-05 2024-02-29 0.1 13.8 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "24" 2024-02-05 2024-02-29 0.15 16 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "24" 2024-02-05 2024-02-29 0.2 17 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "24" 2024-02-05 2024-02-29 0.25 19.75 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "24" 2024-02-05 2024-02-29 0.3 21 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "24" 2024-02-05 2024-02-29 0.35 24 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "24" 2024-02-05 2024-02-29 0.4 25 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "24" 2024-02-05 2024-02-29 0.45 26 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "24" 2024-02-05 2024-02-29 0.5 27 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "24" 2024-02-05 2024-02-29 0.55 29 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "24" 2024-02-05 2024-02-29 0.6 30.8 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "24" 2024-02-05 2024-02-29 0.65 35 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "24" 2024-02-05 2024-02-29 0.7 37 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "24" 2024-02-05 2024-02-29 0.75 40.25 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "24" 2024-02-05 2024-02-29 0.8 43.2 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "24" 2024-02-05 2024-02-29 0.85 46 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "24" 2024-02-05 2024-02-29 0.9 49 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "24" 2024-02-05 2024-02-29 0.95 59.05 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "24" 2024-02-05 2024-02-29 0.975 61.525 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "24" 2024-02-05 2024-02-29 0.99 63.02 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "24" 2024-02-05 2024-03-01 0.01 5.98 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "24" 2024-02-05 2024-03-01 0.025 7.475 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "24" 2024-02-05 2024-03-01 0.05 9 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "24" 2024-02-05 2024-03-01 0.1 12 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "24" 2024-02-05 2024-03-01 0.15 14 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "24" 2024-02-05 2024-03-01 0.2 15 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "24" 2024-02-05 2024-03-01 0.25 16.5 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "24" 2024-02-05 2024-03-01 0.3 19.7 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "24" 2024-02-05 2024-03-01 0.35 21 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "24" 2024-02-05 2024-03-01 0.4 21 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "24" 2024-02-05 2024-03-01 0.45 23 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "24" 2024-02-05 2024-03-01 0.5 24 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "24" 2024-02-05 2024-03-01 0.55 28 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "24" 2024-02-05 2024-03-01 0.6 29.4 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "24" 2024-02-05 2024-03-01 0.65 30 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "24" 2024-02-05 2024-03-01 0.7 32 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "24" 2024-02-05 2024-03-01 0.75 34 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "24" 2024-02-05 2024-03-01 0.8 35.4 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "24" 2024-02-05 2024-03-01 0.85 43.3 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "24" 2024-02-05 2024-03-01 0.9 48 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "24" 2024-02-05 2024-03-01 0.95 53.15 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "24" 2024-02-05 2024-03-01 0.975 56 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "24" 2024-02-05 2024-03-01 0.99 59.06 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "24" 2024-02-05 2024-03-02 0.01 2.99 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "24" 2024-02-05 2024-03-02 0.025 4.95 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "24" 2024-02-05 2024-03-02 0.05 7 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "24" 2024-02-05 2024-03-02 0.1 10 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "24" 2024-02-05 2024-03-02 0.15 11 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "24" 2024-02-05 2024-03-02 0.2 12 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "24" 2024-02-05 2024-03-02 0.25 13.75 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "24" 2024-02-05 2024-03-02 0.3 16.7 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "24" 2024-02-05 2024-03-02 0.35 18 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "24" 2024-02-05 2024-03-02 0.4 20.6 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "24" 2024-02-05 2024-03-02 0.45 22 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "24" 2024-02-05 2024-03-02 0.5 24 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "24" 2024-02-05 2024-03-02 0.55 25 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "24" 2024-02-05 2024-03-02 0.6 26.4 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "24" 2024-02-05 2024-03-02 0.65 29.35 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "24" 2024-02-05 2024-03-02 0.7 32 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "24" 2024-02-05 2024-03-02 0.75 33 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "24" 2024-02-05 2024-03-02 0.8 35.2 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "24" 2024-02-05 2024-03-02 0.85 39 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "24" 2024-02-05 2024-03-02 0.9 49 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "24" 2024-02-05 2024-03-02 0.95 52.05 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "24" 2024-02-05 2024-03-02 0.975 54.05 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "24" 2024-02-05 2024-03-02 0.99 56.02 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "24" 2024-02-05 2024-03-03 0.01 5 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "24" 2024-02-05 2024-03-03 0.025 7.475 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "24" 2024-02-05 2024-03-03 0.05 8.95 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "24" 2024-02-05 2024-03-03 0.1 10.9 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "24" 2024-02-05 2024-03-03 0.15 11.85 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "24" 2024-02-05 2024-03-03 0.2 12.8 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "24" 2024-02-05 2024-03-03 0.25 13.75 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "24" 2024-02-05 2024-03-03 0.3 16 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "24" 2024-02-05 2024-03-03 0.35 16.65 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "24" 2024-02-05 2024-03-03 0.4 19.6 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "24" 2024-02-05 2024-03-03 0.45 21.55 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "24" 2024-02-05 2024-03-03 0.5 23.5 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "24" 2024-02-05 2024-03-03 0.55 25 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "24" 2024-02-05 2024-03-03 0.6 27 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "24" 2024-02-05 2024-03-03 0.65 29 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "24" 2024-02-05 2024-03-03 0.7 31 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "24" 2024-02-05 2024-03-03 0.75 32.25 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "24" 2024-02-05 2024-03-03 0.8 34.6 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "24" 2024-02-05 2024-03-03 0.85 42 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "24" 2024-02-05 2024-03-03 0.9 49.1 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "24" 2024-02-05 2024-03-03 0.95 56.15 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "24" 2024-02-05 2024-03-03 0.975 61.525 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "24" 2024-02-05 2024-03-03 0.99 64.01 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "24" 2024-02-05 2024-03-04 0.01 4.99 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "24" 2024-02-05 2024-03-04 0.025 6 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "24" 2024-02-05 2024-03-04 0.05 7.95 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "24" 2024-02-05 2024-03-04 0.1 9.9 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "24" 2024-02-05 2024-03-04 0.15 12 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "24" 2024-02-05 2024-03-04 0.2 14 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "24" 2024-02-05 2024-03-04 0.25 16 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "24" 2024-02-05 2024-03-04 0.3 18 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "24" 2024-02-05 2024-03-04 0.35 21 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "24" 2024-02-05 2024-03-04 0.4 23.6 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "24" 2024-02-05 2024-03-04 0.45 25.55 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "24" 2024-02-05 2024-03-04 0.5 28 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "24" 2024-02-05 2024-03-04 0.55 30 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "24" 2024-02-05 2024-03-04 0.6 33 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "24" 2024-02-05 2024-03-04 0.65 35.35 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "24" 2024-02-05 2024-03-04 0.7 38 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "24" 2024-02-05 2024-03-04 0.75 40 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "24" 2024-02-05 2024-03-04 0.8 42 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "24" 2024-02-05 2024-03-04 0.85 46.15 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "24" 2024-02-05 2024-03-04 0.9 51 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "24" 2024-02-05 2024-03-04 0.95 59.1 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "24" 2024-02-05 2024-03-04 0.975 64.575 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "24" 2024-02-05 2024-03-04 0.99 69.06 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "23" 2024-02-05 2024-02-06 0.01 2.99 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "23" 2024-02-05 2024-02-06 0.025 3.475 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "23" 2024-02-05 2024-02-06 0.05 4 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "23" 2024-02-05 2024-02-06 0.1 5 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "23" 2024-02-05 2024-02-06 0.15 5 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "23" 2024-02-05 2024-02-06 0.2 6 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "23" 2024-02-05 2024-02-06 0.25 6 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "23" 2024-02-05 2024-02-06 0.3 7 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "23" 2024-02-05 2024-02-06 0.35 7 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "23" 2024-02-05 2024-02-06 0.4 8 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "23" 2024-02-05 2024-02-06 0.45 8 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "23" 2024-02-05 2024-02-06 0.5 9 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "23" 2024-02-05 2024-02-06 0.55 10 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "23" 2024-02-05 2024-02-06 0.6 10 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "23" 2024-02-05 2024-02-06 0.65 10 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "23" 2024-02-05 2024-02-06 0.7 11 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "23" 2024-02-05 2024-02-06 0.75 12 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "23" 2024-02-05 2024-02-06 0.8 12 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "23" 2024-02-05 2024-02-06 0.85 13 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "23" 2024-02-05 2024-02-06 0.9 13.1 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "23" 2024-02-05 2024-02-06 0.95 15 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "23" 2024-02-05 2024-02-06 0.975 16.525 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "23" 2024-02-05 2024-02-06 0.99 19.01 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "23" 2024-02-05 2024-02-07 0.01 1.98 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "23" 2024-02-05 2024-02-07 0.025 2.475 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "23" 2024-02-05 2024-02-07 0.05 4 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "23" 2024-02-05 2024-02-07 0.1 5 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "23" 2024-02-05 2024-02-07 0.15 5 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "23" 2024-02-05 2024-02-07 0.2 6 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "23" 2024-02-05 2024-02-07 0.25 6 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "23" 2024-02-05 2024-02-07 0.3 7 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "23" 2024-02-05 2024-02-07 0.35 7.65000000000001 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "23" 2024-02-05 2024-02-07 0.4 8 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "23" 2024-02-05 2024-02-07 0.45 8 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "23" 2024-02-05 2024-02-07 0.5 9 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "23" 2024-02-05 2024-02-07 0.55 9 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "23" 2024-02-05 2024-02-07 0.6 10 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "23" 2024-02-05 2024-02-07 0.65 10 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "23" 2024-02-05 2024-02-07 0.7 11 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "23" 2024-02-05 2024-02-07 0.75 12 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "23" 2024-02-05 2024-02-07 0.8 12 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "23" 2024-02-05 2024-02-07 0.85 13 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "23" 2024-02-05 2024-02-07 0.9 14 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "23" 2024-02-05 2024-02-07 0.95 16 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "23" 2024-02-05 2024-02-07 0.975 17.525 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "23" 2024-02-05 2024-02-07 0.99 18.01 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "23" 2024-02-05 2024-02-08 0.01 2 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "23" 2024-02-05 2024-02-08 0.025 3 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "23" 2024-02-05 2024-02-08 0.05 3.95 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "23" 2024-02-05 2024-02-08 0.1 4 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "23" 2024-02-05 2024-02-08 0.15 4 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "23" 2024-02-05 2024-02-08 0.2 5 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "23" 2024-02-05 2024-02-08 0.25 5 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "23" 2024-02-05 2024-02-08 0.3 5.7 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "23" 2024-02-05 2024-02-08 0.35 6 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "23" 2024-02-05 2024-02-08 0.4 6 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "23" 2024-02-05 2024-02-08 0.45 7 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "23" 2024-02-05 2024-02-08 0.5 8 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "23" 2024-02-05 2024-02-08 0.55 8 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "23" 2024-02-05 2024-02-08 0.6 8 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "23" 2024-02-05 2024-02-08 0.65 9 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "23" 2024-02-05 2024-02-08 0.7 9 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "23" 2024-02-05 2024-02-08 0.75 9 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "23" 2024-02-05 2024-02-08 0.8 9 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "23" 2024-02-05 2024-02-08 0.85 11 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "23" 2024-02-05 2024-02-08 0.9 12 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "23" 2024-02-05 2024-02-08 0.95 14.05 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "23" 2024-02-05 2024-02-08 0.975 16.575 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "23" 2024-02-05 2024-02-08 0.99 18.02 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "23" 2024-02-05 2024-02-09 0.01 1.99 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "23" 2024-02-05 2024-02-09 0.025 3 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "23" 2024-02-05 2024-02-09 0.05 3 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "23" 2024-02-05 2024-02-09 0.1 4 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "23" 2024-02-05 2024-02-09 0.15 5 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "23" 2024-02-05 2024-02-09 0.2 5.8 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "23" 2024-02-05 2024-02-09 0.25 6 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "23" 2024-02-05 2024-02-09 0.3 7 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "23" 2024-02-05 2024-02-09 0.35 7 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "23" 2024-02-05 2024-02-09 0.4 8 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "23" 2024-02-05 2024-02-09 0.45 8 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "23" 2024-02-05 2024-02-09 0.5 9 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "23" 2024-02-05 2024-02-09 0.55 9 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "23" 2024-02-05 2024-02-09 0.6 10 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "23" 2024-02-05 2024-02-09 0.65 11 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "23" 2024-02-05 2024-02-09 0.7 11 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "23" 2024-02-05 2024-02-09 0.75 11.25 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "23" 2024-02-05 2024-02-09 0.8 12 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "23" 2024-02-05 2024-02-09 0.85 13 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "23" 2024-02-05 2024-02-09 0.9 14 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "23" 2024-02-05 2024-02-09 0.95 16 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "23" 2024-02-05 2024-02-09 0.975 18.05 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "23" 2024-02-05 2024-02-09 0.99 20.02 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "23" 2024-02-05 2024-02-10 0.01 0.99 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "23" 2024-02-05 2024-02-10 0.025 1.475 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "23" 2024-02-05 2024-02-10 0.05 3 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "23" 2024-02-05 2024-02-10 0.1 4 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "23" 2024-02-05 2024-02-10 0.15 5 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "23" 2024-02-05 2024-02-10 0.2 5 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "23" 2024-02-05 2024-02-10 0.25 6 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "23" 2024-02-05 2024-02-10 0.3 6 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "23" 2024-02-05 2024-02-10 0.35 7 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "23" 2024-02-05 2024-02-10 0.4 7 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "23" 2024-02-05 2024-02-10 0.45 7.55 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "23" 2024-02-05 2024-02-10 0.5 8 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "23" 2024-02-05 2024-02-10 0.55 9 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "23" 2024-02-05 2024-02-10 0.6 9 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "23" 2024-02-05 2024-02-10 0.65 9.35000000000001 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "23" 2024-02-05 2024-02-10 0.7 10 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "23" 2024-02-05 2024-02-10 0.75 11 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "23" 2024-02-05 2024-02-10 0.8 11 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "23" 2024-02-05 2024-02-10 0.85 12.15 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "23" 2024-02-05 2024-02-10 0.9 13 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "23" 2024-02-05 2024-02-10 0.95 14 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "23" 2024-02-05 2024-02-10 0.975 14 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "23" 2024-02-05 2024-02-10 0.99 15.01 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "23" 2024-02-05 2024-02-11 0.01 2 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "23" 2024-02-05 2024-02-11 0.025 2.475 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "23" 2024-02-05 2024-02-11 0.05 3 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "23" 2024-02-05 2024-02-11 0.1 4 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "23" 2024-02-05 2024-02-11 0.15 4.85 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "23" 2024-02-05 2024-02-11 0.2 5 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "23" 2024-02-05 2024-02-11 0.25 5 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "23" 2024-02-05 2024-02-11 0.3 6 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "23" 2024-02-05 2024-02-11 0.35 6 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "23" 2024-02-05 2024-02-11 0.4 6.6 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "23" 2024-02-05 2024-02-11 0.45 7 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "23" 2024-02-05 2024-02-11 0.5 8 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "23" 2024-02-05 2024-02-11 0.55 8 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "23" 2024-02-05 2024-02-11 0.6 8 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "23" 2024-02-05 2024-02-11 0.65 9 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "23" 2024-02-05 2024-02-11 0.7 9 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "23" 2024-02-05 2024-02-11 0.75 10 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "23" 2024-02-05 2024-02-11 0.8 10 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "23" 2024-02-05 2024-02-11 0.85 11 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "23" 2024-02-05 2024-02-11 0.9 11.1 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "23" 2024-02-05 2024-02-11 0.95 13.05 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "23" 2024-02-05 2024-02-11 0.975 14.525 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "23" 2024-02-05 2024-02-11 0.99 15.02 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "23" 2024-02-05 2024-02-12 0.01 1.99 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "23" 2024-02-05 2024-02-12 0.025 2 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "23" 2024-02-05 2024-02-12 0.05 2 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "23" 2024-02-05 2024-02-12 0.1 3 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "23" 2024-02-05 2024-02-12 0.15 4 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "23" 2024-02-05 2024-02-12 0.2 5 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "23" 2024-02-05 2024-02-12 0.25 5 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "23" 2024-02-05 2024-02-12 0.3 6 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "23" 2024-02-05 2024-02-12 0.35 6 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "23" 2024-02-05 2024-02-12 0.4 7 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "23" 2024-02-05 2024-02-12 0.45 7 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "23" 2024-02-05 2024-02-12 0.5 7 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "23" 2024-02-05 2024-02-12 0.55 8 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "23" 2024-02-05 2024-02-12 0.6 8 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "23" 2024-02-05 2024-02-12 0.65 8 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "23" 2024-02-05 2024-02-12 0.7 9 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "23" 2024-02-05 2024-02-12 0.75 10 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "23" 2024-02-05 2024-02-12 0.8 11 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "23" 2024-02-05 2024-02-12 0.85 11 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "23" 2024-02-05 2024-02-12 0.9 12.1 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "23" 2024-02-05 2024-02-12 0.95 13.05 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "23" 2024-02-05 2024-02-12 0.975 14 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "23" 2024-02-05 2024-02-12 0.99 15.02 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "23" 2024-02-05 2024-02-13 0.01 1.98 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "23" 2024-02-05 2024-02-13 0.025 2 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "23" 2024-02-05 2024-02-13 0.05 3 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "23" 2024-02-05 2024-02-13 0.1 4 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "23" 2024-02-05 2024-02-13 0.15 4 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "23" 2024-02-05 2024-02-13 0.2 5 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "23" 2024-02-05 2024-02-13 0.25 5 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "23" 2024-02-05 2024-02-13 0.3 6 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "23" 2024-02-05 2024-02-13 0.35 6 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "23" 2024-02-05 2024-02-13 0.4 7 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "23" 2024-02-05 2024-02-13 0.45 7 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "23" 2024-02-05 2024-02-13 0.5 7 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "23" 2024-02-05 2024-02-13 0.55 8 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "23" 2024-02-05 2024-02-13 0.6 8 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "23" 2024-02-05 2024-02-13 0.65 9 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "23" 2024-02-05 2024-02-13 0.7 10 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "23" 2024-02-05 2024-02-13 0.75 10 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "23" 2024-02-05 2024-02-13 0.8 11 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "23" 2024-02-05 2024-02-13 0.85 12 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "23" 2024-02-05 2024-02-13 0.9 13 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "23" 2024-02-05 2024-02-13 0.95 14 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "23" 2024-02-05 2024-02-13 0.975 15.525 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "23" 2024-02-05 2024-02-13 0.99 18.01 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "23" 2024-02-05 2024-02-14 0.01 1 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "23" 2024-02-05 2024-02-14 0.025 2.475 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "23" 2024-02-05 2024-02-14 0.05 3 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "23" 2024-02-05 2024-02-14 0.1 4 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "23" 2024-02-05 2024-02-14 0.15 4 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "23" 2024-02-05 2024-02-14 0.2 5 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "23" 2024-02-05 2024-02-14 0.25 5 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "23" 2024-02-05 2024-02-14 0.3 6 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "23" 2024-02-05 2024-02-14 0.35 6 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "23" 2024-02-05 2024-02-14 0.4 6.6 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "23" 2024-02-05 2024-02-14 0.45 7 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "23" 2024-02-05 2024-02-14 0.5 8 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "23" 2024-02-05 2024-02-14 0.55 8 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "23" 2024-02-05 2024-02-14 0.6 9 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "23" 2024-02-05 2024-02-14 0.65 9 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "23" 2024-02-05 2024-02-14 0.7 9.30000000000001 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "23" 2024-02-05 2024-02-14 0.75 10 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "23" 2024-02-05 2024-02-14 0.8 11 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "23" 2024-02-05 2024-02-14 0.85 12 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "23" 2024-02-05 2024-02-14 0.9 14 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "23" 2024-02-05 2024-02-14 0.95 15 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "23" 2024-02-05 2024-02-14 0.975 17 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "23" 2024-02-05 2024-02-14 0.99 19.01 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "23" 2024-02-05 2024-02-15 0.01 1 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "23" 2024-02-05 2024-02-15 0.025 2 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "23" 2024-02-05 2024-02-15 0.05 2 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "23" 2024-02-05 2024-02-15 0.1 3.9 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "23" 2024-02-05 2024-02-15 0.15 5 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "23" 2024-02-05 2024-02-15 0.2 5 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "23" 2024-02-05 2024-02-15 0.25 5 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "23" 2024-02-05 2024-02-15 0.3 5.7 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "23" 2024-02-05 2024-02-15 0.35 6 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "23" 2024-02-05 2024-02-15 0.4 7 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "23" 2024-02-05 2024-02-15 0.45 7 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "23" 2024-02-05 2024-02-15 0.5 7.5 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "23" 2024-02-05 2024-02-15 0.55 8 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "23" 2024-02-05 2024-02-15 0.6 9 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "23" 2024-02-05 2024-02-15 0.65 9 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "23" 2024-02-05 2024-02-15 0.7 10 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "23" 2024-02-05 2024-02-15 0.75 10 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "23" 2024-02-05 2024-02-15 0.8 11 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "23" 2024-02-05 2024-02-15 0.85 11.15 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "23" 2024-02-05 2024-02-15 0.9 13 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "23" 2024-02-05 2024-02-15 0.95 14 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "23" 2024-02-05 2024-02-15 0.975 15.05 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "23" 2024-02-05 2024-02-15 0.99 18.04 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "23" 2024-02-05 2024-02-16 0.01 0.99 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "23" 2024-02-05 2024-02-16 0.025 3 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "23" 2024-02-05 2024-02-16 0.05 3 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "23" 2024-02-05 2024-02-16 0.1 3.9 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "23" 2024-02-05 2024-02-16 0.15 4 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "23" 2024-02-05 2024-02-16 0.2 5 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "23" 2024-02-05 2024-02-16 0.25 5 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "23" 2024-02-05 2024-02-16 0.3 5 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "23" 2024-02-05 2024-02-16 0.35 6 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "23" 2024-02-05 2024-02-16 0.4 7 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "23" 2024-02-05 2024-02-16 0.45 8 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "23" 2024-02-05 2024-02-16 0.5 8 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "23" 2024-02-05 2024-02-16 0.55 8 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "23" 2024-02-05 2024-02-16 0.6 9 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "23" 2024-02-05 2024-02-16 0.65 10 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "23" 2024-02-05 2024-02-16 0.7 10 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "23" 2024-02-05 2024-02-16 0.75 11 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "23" 2024-02-05 2024-02-16 0.8 12 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "23" 2024-02-05 2024-02-16 0.85 13 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "23" 2024-02-05 2024-02-16 0.9 13.1 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "23" 2024-02-05 2024-02-16 0.95 16.05 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "23" 2024-02-05 2024-02-16 0.975 20.05 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "23" 2024-02-05 2024-02-16 0.99 21.05 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "23" 2024-02-05 2024-02-17 0.01 1.98 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "23" 2024-02-05 2024-02-17 0.025 2 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "23" 2024-02-05 2024-02-17 0.05 2.95 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "23" 2024-02-05 2024-02-17 0.1 3 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "23" 2024-02-05 2024-02-17 0.15 4 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "23" 2024-02-05 2024-02-17 0.2 4 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "23" 2024-02-05 2024-02-17 0.25 5 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "23" 2024-02-05 2024-02-17 0.3 5 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "23" 2024-02-05 2024-02-17 0.35 6 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "23" 2024-02-05 2024-02-17 0.4 7 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "23" 2024-02-05 2024-02-17 0.45 7 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "23" 2024-02-05 2024-02-17 0.5 8 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "23" 2024-02-05 2024-02-17 0.55 8 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "23" 2024-02-05 2024-02-17 0.6 8.40000000000001 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "23" 2024-02-05 2024-02-17 0.65 9 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "23" 2024-02-05 2024-02-17 0.7 10 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "23" 2024-02-05 2024-02-17 0.75 10.25 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "23" 2024-02-05 2024-02-17 0.8 11 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "23" 2024-02-05 2024-02-17 0.85 12 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "23" 2024-02-05 2024-02-17 0.9 12 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "23" 2024-02-05 2024-02-17 0.95 15 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "23" 2024-02-05 2024-02-17 0.975 18.575 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "23" 2024-02-05 2024-02-17 0.99 20.03 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "23" 2024-02-05 2024-02-18 0.01 1 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "23" 2024-02-05 2024-02-18 0.025 2 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "23" 2024-02-05 2024-02-18 0.05 2 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "23" 2024-02-05 2024-02-18 0.1 3 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "23" 2024-02-05 2024-02-18 0.15 4 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "23" 2024-02-05 2024-02-18 0.2 5 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "23" 2024-02-05 2024-02-18 0.25 5 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "23" 2024-02-05 2024-02-18 0.3 6 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "23" 2024-02-05 2024-02-18 0.35 6 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "23" 2024-02-05 2024-02-18 0.4 7 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "23" 2024-02-05 2024-02-18 0.45 7 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "23" 2024-02-05 2024-02-18 0.5 7 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "23" 2024-02-05 2024-02-18 0.55 8 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "23" 2024-02-05 2024-02-18 0.6 8 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "23" 2024-02-05 2024-02-18 0.65 8.35000000000001 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "23" 2024-02-05 2024-02-18 0.7 9 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "23" 2024-02-05 2024-02-18 0.75 9.25000000000001 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "23" 2024-02-05 2024-02-18 0.8 10 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "23" 2024-02-05 2024-02-18 0.85 11 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "23" 2024-02-05 2024-02-18 0.9 11.1 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "23" 2024-02-05 2024-02-18 0.95 14.05 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "23" 2024-02-05 2024-02-18 0.975 15.525 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "23" 2024-02-05 2024-02-18 0.99 19.02 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "23" 2024-02-05 2024-02-19 0.01 1.98 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "23" 2024-02-05 2024-02-19 0.025 2 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "23" 2024-02-05 2024-02-19 0.05 3 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "23" 2024-02-05 2024-02-19 0.1 3 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "23" 2024-02-05 2024-02-19 0.15 4 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "23" 2024-02-05 2024-02-19 0.2 4 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "23" 2024-02-05 2024-02-19 0.25 5 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "23" 2024-02-05 2024-02-19 0.3 5 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "23" 2024-02-05 2024-02-19 0.35 5 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "23" 2024-02-05 2024-02-19 0.4 6 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "23" 2024-02-05 2024-02-19 0.45 6 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "23" 2024-02-05 2024-02-19 0.5 7 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "23" 2024-02-05 2024-02-19 0.55 7 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "23" 2024-02-05 2024-02-19 0.6 8 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "23" 2024-02-05 2024-02-19 0.65 8 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "23" 2024-02-05 2024-02-19 0.7 9 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "23" 2024-02-05 2024-02-19 0.75 9 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "23" 2024-02-05 2024-02-19 0.8 10 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "23" 2024-02-05 2024-02-19 0.85 11 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "23" 2024-02-05 2024-02-19 0.9 12 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "23" 2024-02-05 2024-02-19 0.95 13 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "23" 2024-02-05 2024-02-19 0.975 13.525 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "23" 2024-02-05 2024-02-19 0.99 15.01 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "23" 2024-02-05 2024-02-20 0.01 1 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "23" 2024-02-05 2024-02-20 0.025 2 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "23" 2024-02-05 2024-02-20 0.05 3 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "23" 2024-02-05 2024-02-20 0.1 3 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "23" 2024-02-05 2024-02-20 0.15 3 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "23" 2024-02-05 2024-02-20 0.2 4 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "23" 2024-02-05 2024-02-20 0.25 5 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "23" 2024-02-05 2024-02-20 0.3 5 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "23" 2024-02-05 2024-02-20 0.35 6 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "23" 2024-02-05 2024-02-20 0.4 6 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "23" 2024-02-05 2024-02-20 0.45 7 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "23" 2024-02-05 2024-02-20 0.5 7.5 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "23" 2024-02-05 2024-02-20 0.55 8 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "23" 2024-02-05 2024-02-20 0.6 8 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "23" 2024-02-05 2024-02-20 0.65 9 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "23" 2024-02-05 2024-02-20 0.7 10 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "23" 2024-02-05 2024-02-20 0.75 10 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "23" 2024-02-05 2024-02-20 0.8 11 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "23" 2024-02-05 2024-02-20 0.85 12 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "23" 2024-02-05 2024-02-20 0.9 13 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "23" 2024-02-05 2024-02-20 0.95 14 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "23" 2024-02-05 2024-02-20 0.975 15 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "23" 2024-02-05 2024-02-20 0.99 16 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "23" 2024-02-05 2024-02-21 0.01 1.99 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "23" 2024-02-05 2024-02-21 0.025 2 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "23" 2024-02-05 2024-02-21 0.05 2.95 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "23" 2024-02-05 2024-02-21 0.1 3 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "23" 2024-02-05 2024-02-21 0.15 4 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "23" 2024-02-05 2024-02-21 0.2 5 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "23" 2024-02-05 2024-02-21 0.25 5 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "23" 2024-02-05 2024-02-21 0.3 6 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "23" 2024-02-05 2024-02-21 0.35 6 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "23" 2024-02-05 2024-02-21 0.4 6 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "23" 2024-02-05 2024-02-21 0.45 7 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "23" 2024-02-05 2024-02-21 0.5 8 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "23" 2024-02-05 2024-02-21 0.55 8 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "23" 2024-02-05 2024-02-21 0.6 9 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "23" 2024-02-05 2024-02-21 0.65 9 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "23" 2024-02-05 2024-02-21 0.7 9.30000000000001 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "23" 2024-02-05 2024-02-21 0.75 10.25 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "23" 2024-02-05 2024-02-21 0.8 12 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "23" 2024-02-05 2024-02-21 0.85 12 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "23" 2024-02-05 2024-02-21 0.9 13.1 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "23" 2024-02-05 2024-02-21 0.95 15 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "23" 2024-02-05 2024-02-21 0.975 15.525 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "23" 2024-02-05 2024-02-21 0.99 18.01 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "23" 2024-02-05 2024-02-22 0.01 1 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "23" 2024-02-05 2024-02-22 0.025 2 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "23" 2024-02-05 2024-02-22 0.05 3 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "23" 2024-02-05 2024-02-22 0.1 3 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "23" 2024-02-05 2024-02-22 0.15 3 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "23" 2024-02-05 2024-02-22 0.2 4 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "23" 2024-02-05 2024-02-22 0.25 4 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "23" 2024-02-05 2024-02-22 0.3 5 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "23" 2024-02-05 2024-02-22 0.35 5.65000000000001 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "23" 2024-02-05 2024-02-22 0.4 6 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "23" 2024-02-05 2024-02-22 0.45 7 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "23" 2024-02-05 2024-02-22 0.5 7 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "23" 2024-02-05 2024-02-22 0.55 7.45 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "23" 2024-02-05 2024-02-22 0.6 8 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "23" 2024-02-05 2024-02-22 0.65 8 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "23" 2024-02-05 2024-02-22 0.7 8.30000000000001 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "23" 2024-02-05 2024-02-22 0.75 9 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "23" 2024-02-05 2024-02-22 0.8 10 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "23" 2024-02-05 2024-02-22 0.85 11 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "23" 2024-02-05 2024-02-22 0.9 13 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "23" 2024-02-05 2024-02-22 0.95 14 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "23" 2024-02-05 2024-02-22 0.975 16.05 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "23" 2024-02-05 2024-02-22 0.99 19 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "23" 2024-02-05 2024-02-23 0.01 0 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "23" 2024-02-05 2024-02-23 0.025 1 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "23" 2024-02-05 2024-02-23 0.05 1.95 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "23" 2024-02-05 2024-02-23 0.1 3 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "23" 2024-02-05 2024-02-23 0.15 4 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "23" 2024-02-05 2024-02-23 0.2 4 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "23" 2024-02-05 2024-02-23 0.25 5 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "23" 2024-02-05 2024-02-23 0.3 5 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "23" 2024-02-05 2024-02-23 0.35 6 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "23" 2024-02-05 2024-02-23 0.4 6 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "23" 2024-02-05 2024-02-23 0.45 7 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "23" 2024-02-05 2024-02-23 0.5 7 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "23" 2024-02-05 2024-02-23 0.55 7 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "23" 2024-02-05 2024-02-23 0.6 8 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "23" 2024-02-05 2024-02-23 0.65 8.35000000000001 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "23" 2024-02-05 2024-02-23 0.7 9 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "23" 2024-02-05 2024-02-23 0.75 10 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "23" 2024-02-05 2024-02-23 0.8 11 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "23" 2024-02-05 2024-02-23 0.85 11 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "23" 2024-02-05 2024-02-23 0.9 12 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "23" 2024-02-05 2024-02-23 0.95 14.1 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "23" 2024-02-05 2024-02-23 0.975 19.1 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "23" 2024-02-05 2024-02-23 0.99 21.01 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "23" 2024-02-05 2024-02-24 0.01 1 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "23" 2024-02-05 2024-02-24 0.025 1.475 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "23" 2024-02-05 2024-02-24 0.05 2.95 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "23" 2024-02-05 2024-02-24 0.1 3 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "23" 2024-02-05 2024-02-24 0.15 4 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "23" 2024-02-05 2024-02-24 0.2 4 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "23" 2024-02-05 2024-02-24 0.25 4.75 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "23" 2024-02-05 2024-02-24 0.3 5 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "23" 2024-02-05 2024-02-24 0.35 6 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "23" 2024-02-05 2024-02-24 0.4 6 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "23" 2024-02-05 2024-02-24 0.45 7 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "23" 2024-02-05 2024-02-24 0.5 7 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "23" 2024-02-05 2024-02-24 0.55 8 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "23" 2024-02-05 2024-02-24 0.6 8 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "23" 2024-02-05 2024-02-24 0.65 9 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "23" 2024-02-05 2024-02-24 0.7 9.30000000000001 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "23" 2024-02-05 2024-02-24 0.75 10 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "23" 2024-02-05 2024-02-24 0.8 11 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "23" 2024-02-05 2024-02-24 0.85 12 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "23" 2024-02-05 2024-02-24 0.9 12 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "23" 2024-02-05 2024-02-24 0.95 13 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "23" 2024-02-05 2024-02-24 0.975 14 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "23" 2024-02-05 2024-02-24 0.99 14.01 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "23" 2024-02-05 2024-02-25 0.01 1.99 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "23" 2024-02-05 2024-02-25 0.025 2 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "23" 2024-02-05 2024-02-25 0.05 2 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "23" 2024-02-05 2024-02-25 0.1 3 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "23" 2024-02-05 2024-02-25 0.15 4 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "23" 2024-02-05 2024-02-25 0.2 4 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "23" 2024-02-05 2024-02-25 0.25 5 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "23" 2024-02-05 2024-02-25 0.3 5 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "23" 2024-02-05 2024-02-25 0.35 6 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "23" 2024-02-05 2024-02-25 0.4 6 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "23" 2024-02-05 2024-02-25 0.45 6.55 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "23" 2024-02-05 2024-02-25 0.5 7 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "23" 2024-02-05 2024-02-25 0.55 7 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "23" 2024-02-05 2024-02-25 0.6 7 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "23" 2024-02-05 2024-02-25 0.65 8 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "23" 2024-02-05 2024-02-25 0.7 8 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "23" 2024-02-05 2024-02-25 0.75 9 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "23" 2024-02-05 2024-02-25 0.8 10 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "23" 2024-02-05 2024-02-25 0.85 11 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "23" 2024-02-05 2024-02-25 0.9 12 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "23" 2024-02-05 2024-02-25 0.95 14.05 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "23" 2024-02-05 2024-02-25 0.975 16.05 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "23" 2024-02-05 2024-02-25 0.99 19.02 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "23" 2024-02-05 2024-02-26 0.01 0.99 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "23" 2024-02-05 2024-02-26 0.025 1 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "23" 2024-02-05 2024-02-26 0.05 2 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "23" 2024-02-05 2024-02-26 0.1 3 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "23" 2024-02-05 2024-02-26 0.15 3.85 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "23" 2024-02-05 2024-02-26 0.2 4 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "23" 2024-02-05 2024-02-26 0.25 4 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "23" 2024-02-05 2024-02-26 0.3 4 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "23" 2024-02-05 2024-02-26 0.35 5 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "23" 2024-02-05 2024-02-26 0.4 5 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "23" 2024-02-05 2024-02-26 0.45 6 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "23" 2024-02-05 2024-02-26 0.5 6 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "23" 2024-02-05 2024-02-26 0.55 6 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "23" 2024-02-05 2024-02-26 0.6 7 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "23" 2024-02-05 2024-02-26 0.65 7 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "23" 2024-02-05 2024-02-26 0.7 8 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "23" 2024-02-05 2024-02-26 0.75 8 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "23" 2024-02-05 2024-02-26 0.8 9.2 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "23" 2024-02-05 2024-02-26 0.85 11 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "23" 2024-02-05 2024-02-26 0.9 12 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "23" 2024-02-05 2024-02-26 0.95 14.05 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "23" 2024-02-05 2024-02-26 0.975 15.525 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "23" 2024-02-05 2024-02-26 0.99 17 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "23" 2024-02-05 2024-02-27 0.01 0.99 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "23" 2024-02-05 2024-02-27 0.025 1 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "23" 2024-02-05 2024-02-27 0.05 1.95 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "23" 2024-02-05 2024-02-27 0.1 2 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "23" 2024-02-05 2024-02-27 0.15 3 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "23" 2024-02-05 2024-02-27 0.2 4 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "23" 2024-02-05 2024-02-27 0.25 4 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "23" 2024-02-05 2024-02-27 0.3 5 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "23" 2024-02-05 2024-02-27 0.35 5 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "23" 2024-02-05 2024-02-27 0.4 6 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "23" 2024-02-05 2024-02-27 0.45 6 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "23" 2024-02-05 2024-02-27 0.5 7 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "23" 2024-02-05 2024-02-27 0.55 7 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "23" 2024-02-05 2024-02-27 0.6 8 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "23" 2024-02-05 2024-02-27 0.65 9 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "23" 2024-02-05 2024-02-27 0.7 10 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "23" 2024-02-05 2024-02-27 0.75 10.25 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "23" 2024-02-05 2024-02-27 0.8 11.2 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "23" 2024-02-05 2024-02-27 0.85 13 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "23" 2024-02-05 2024-02-27 0.9 14 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "23" 2024-02-05 2024-02-27 0.95 15.05 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "23" 2024-02-05 2024-02-27 0.975 16 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "23" 2024-02-05 2024-02-27 0.99 16.02 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "23" 2024-02-05 2024-02-28 0.01 1 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "23" 2024-02-05 2024-02-28 0.025 2 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "23" 2024-02-05 2024-02-28 0.05 2 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "23" 2024-02-05 2024-02-28 0.1 3 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "23" 2024-02-05 2024-02-28 0.15 3 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "23" 2024-02-05 2024-02-28 0.2 4 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "23" 2024-02-05 2024-02-28 0.25 4 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "23" 2024-02-05 2024-02-28 0.3 5 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "23" 2024-02-05 2024-02-28 0.35 5 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "23" 2024-02-05 2024-02-28 0.4 6 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "23" 2024-02-05 2024-02-28 0.45 6 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "23" 2024-02-05 2024-02-28 0.5 7 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "23" 2024-02-05 2024-02-28 0.55 7.45 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "23" 2024-02-05 2024-02-28 0.6 8.40000000000001 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "23" 2024-02-05 2024-02-28 0.65 9 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "23" 2024-02-05 2024-02-28 0.7 10 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "23" 2024-02-05 2024-02-28 0.75 11 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "23" 2024-02-05 2024-02-28 0.8 12 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "23" 2024-02-05 2024-02-28 0.85 13 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "23" 2024-02-05 2024-02-28 0.9 14 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "23" 2024-02-05 2024-02-28 0.95 16.05 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "23" 2024-02-05 2024-02-28 0.975 20.575 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "23" 2024-02-05 2024-02-28 0.99 24.01 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "23" 2024-02-05 2024-02-29 0.01 0 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "23" 2024-02-05 2024-02-29 0.025 1 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "23" 2024-02-05 2024-02-29 0.05 1 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "23" 2024-02-05 2024-02-29 0.1 1.9 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "23" 2024-02-05 2024-02-29 0.15 2.85 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "23" 2024-02-05 2024-02-29 0.2 3 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "23" 2024-02-05 2024-02-29 0.25 3 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "23" 2024-02-05 2024-02-29 0.3 4 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "23" 2024-02-05 2024-02-29 0.35 5 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "23" 2024-02-05 2024-02-29 0.4 5.6 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "23" 2024-02-05 2024-02-29 0.45 6 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "23" 2024-02-05 2024-02-29 0.5 7 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "23" 2024-02-05 2024-02-29 0.55 7 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "23" 2024-02-05 2024-02-29 0.6 8 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "23" 2024-02-05 2024-02-29 0.65 8.35000000000001 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "23" 2024-02-05 2024-02-29 0.7 9 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "23" 2024-02-05 2024-02-29 0.75 10 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "23" 2024-02-05 2024-02-29 0.8 11 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "23" 2024-02-05 2024-02-29 0.85 11 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "23" 2024-02-05 2024-02-29 0.9 13.1 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "23" 2024-02-05 2024-02-29 0.95 15.05 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "23" 2024-02-05 2024-02-29 0.975 16 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "23" 2024-02-05 2024-02-29 0.99 17.04 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "23" 2024-02-05 2024-03-01 0.01 1 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "23" 2024-02-05 2024-03-01 0.025 2 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "23" 2024-02-05 2024-03-01 0.05 2 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "23" 2024-02-05 2024-03-01 0.1 3 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "23" 2024-02-05 2024-03-01 0.15 3 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "23" 2024-02-05 2024-03-01 0.2 4 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "23" 2024-02-05 2024-03-01 0.25 4 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "23" 2024-02-05 2024-03-01 0.3 5 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "23" 2024-02-05 2024-03-01 0.35 5 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "23" 2024-02-05 2024-03-01 0.4 6 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "23" 2024-02-05 2024-03-01 0.45 6 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "23" 2024-02-05 2024-03-01 0.5 7 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "23" 2024-02-05 2024-03-01 0.55 7 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "23" 2024-02-05 2024-03-01 0.6 8 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "23" 2024-02-05 2024-03-01 0.65 9 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "23" 2024-02-05 2024-03-01 0.7 9.30000000000001 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "23" 2024-02-05 2024-03-01 0.75 10 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "23" 2024-02-05 2024-03-01 0.8 12 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "23" 2024-02-05 2024-03-01 0.85 12.15 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "23" 2024-02-05 2024-03-01 0.9 14 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "23" 2024-02-05 2024-03-01 0.95 17 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "23" 2024-02-05 2024-03-01 0.975 17.525 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "23" 2024-02-05 2024-03-01 0.99 19 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "23" 2024-02-05 2024-03-02 0.01 0.99 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "23" 2024-02-05 2024-03-02 0.025 1 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "23" 2024-02-05 2024-03-02 0.05 1 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "23" 2024-02-05 2024-03-02 0.1 2 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "23" 2024-02-05 2024-03-02 0.15 3 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "23" 2024-02-05 2024-03-02 0.2 3 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "23" 2024-02-05 2024-03-02 0.25 4 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "23" 2024-02-05 2024-03-02 0.3 4 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "23" 2024-02-05 2024-03-02 0.35 5 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "23" 2024-02-05 2024-03-02 0.4 6 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "23" 2024-02-05 2024-03-02 0.45 7 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "23" 2024-02-05 2024-03-02 0.5 7.5 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "23" 2024-02-05 2024-03-02 0.55 8 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "23" 2024-02-05 2024-03-02 0.6 8 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "23" 2024-02-05 2024-03-02 0.65 9 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "23" 2024-02-05 2024-03-02 0.7 9 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "23" 2024-02-05 2024-03-02 0.75 10 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "23" 2024-02-05 2024-03-02 0.8 10 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "23" 2024-02-05 2024-03-02 0.85 11 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "23" 2024-02-05 2024-03-02 0.9 13.1 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "23" 2024-02-05 2024-03-02 0.95 14 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "23" 2024-02-05 2024-03-02 0.975 16.05 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "23" 2024-02-05 2024-03-02 0.99 17.01 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "23" 2024-02-05 2024-03-03 0.01 0 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "23" 2024-02-05 2024-03-03 0.025 0 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "23" 2024-02-05 2024-03-03 0.05 1 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "23" 2024-02-05 2024-03-03 0.1 2 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "23" 2024-02-05 2024-03-03 0.15 3 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "23" 2024-02-05 2024-03-03 0.2 3 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "23" 2024-02-05 2024-03-03 0.25 4 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "23" 2024-02-05 2024-03-03 0.3 5 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "23" 2024-02-05 2024-03-03 0.35 5 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "23" 2024-02-05 2024-03-03 0.4 6 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "23" 2024-02-05 2024-03-03 0.45 6 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "23" 2024-02-05 2024-03-03 0.5 7 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "23" 2024-02-05 2024-03-03 0.55 7 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "23" 2024-02-05 2024-03-03 0.6 8 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "23" 2024-02-05 2024-03-03 0.65 8 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "23" 2024-02-05 2024-03-03 0.7 10 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "23" 2024-02-05 2024-03-03 0.75 10 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "23" 2024-02-05 2024-03-03 0.8 11 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "23" 2024-02-05 2024-03-03 0.85 11.15 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "23" 2024-02-05 2024-03-03 0.9 13 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "23" 2024-02-05 2024-03-03 0.95 15 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "23" 2024-02-05 2024-03-03 0.975 15.525 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "23" 2024-02-05 2024-03-03 0.99 16.02 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "23" 2024-02-05 2024-03-04 0.01 0 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "23" 2024-02-05 2024-03-04 0.025 2 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "23" 2024-02-05 2024-03-04 0.05 2 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "23" 2024-02-05 2024-03-04 0.1 3 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "23" 2024-02-05 2024-03-04 0.15 3 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "23" 2024-02-05 2024-03-04 0.2 4 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "23" 2024-02-05 2024-03-04 0.25 4 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "23" 2024-02-05 2024-03-04 0.3 5 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "23" 2024-02-05 2024-03-04 0.35 5 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "23" 2024-02-05 2024-03-04 0.4 6 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "23" 2024-02-05 2024-03-04 0.45 6 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "23" 2024-02-05 2024-03-04 0.5 7 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "23" 2024-02-05 2024-03-04 0.55 7 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "23" 2024-02-05 2024-03-04 0.6 8 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "23" 2024-02-05 2024-03-04 0.65 8 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "23" 2024-02-05 2024-03-04 0.7 9 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "23" 2024-02-05 2024-03-04 0.75 9 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "23" 2024-02-05 2024-03-04 0.8 10 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "23" 2024-02-05 2024-03-04 0.85 11.15 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "23" 2024-02-05 2024-03-04 0.9 12.1 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "23" 2024-02-05 2024-03-04 0.95 14 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "23" 2024-02-05 2024-03-04 0.975 16.575 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "23" 2024-02-05 2024-03-04 0.99 18.01 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "26" 2024-02-05 2024-02-06 0.01 29.98 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "26" 2024-02-05 2024-02-06 0.025 32 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "26" 2024-02-05 2024-02-06 0.05 36 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "26" 2024-02-05 2024-02-06 0.1 40 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "26" 2024-02-05 2024-02-06 0.15 42.85 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "26" 2024-02-05 2024-02-06 0.2 46 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "26" 2024-02-05 2024-02-06 0.25 47 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "26" 2024-02-05 2024-02-06 0.3 48 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "26" 2024-02-05 2024-02-06 0.35 49 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "26" 2024-02-05 2024-02-06 0.4 50.6 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "26" 2024-02-05 2024-02-06 0.45 51 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "26" 2024-02-05 2024-02-06 0.5 52 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "26" 2024-02-05 2024-02-06 0.55 53 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "26" 2024-02-05 2024-02-06 0.6 54 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "26" 2024-02-05 2024-02-06 0.65 56 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "26" 2024-02-05 2024-02-06 0.7 58 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "26" 2024-02-05 2024-02-06 0.75 59 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "26" 2024-02-05 2024-02-06 0.8 61 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "26" 2024-02-05 2024-02-06 0.85 64 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "26" 2024-02-05 2024-02-06 0.9 68.1 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "26" 2024-02-05 2024-02-06 0.95 70.1 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "26" 2024-02-05 2024-02-06 0.975 74.05 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "26" 2024-02-05 2024-02-06 0.99 78.03 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "26" 2024-02-05 2024-02-07 0.01 33.93 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "26" 2024-02-05 2024-02-07 0.025 34 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "26" 2024-02-05 2024-02-07 0.05 35 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "26" 2024-02-05 2024-02-07 0.1 39 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "26" 2024-02-05 2024-02-07 0.15 42.85 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "26" 2024-02-05 2024-02-07 0.2 44.8 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "26" 2024-02-05 2024-02-07 0.25 46 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "26" 2024-02-05 2024-02-07 0.3 47.7 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "26" 2024-02-05 2024-02-07 0.35 50 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "26" 2024-02-05 2024-02-07 0.4 51.6 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "26" 2024-02-05 2024-02-07 0.45 53.55 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "26" 2024-02-05 2024-02-07 0.5 55.5 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "26" 2024-02-05 2024-02-07 0.55 57 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "26" 2024-02-05 2024-02-07 0.6 59 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "26" 2024-02-05 2024-02-07 0.65 61.35 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "26" 2024-02-05 2024-02-07 0.7 63.3 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "26" 2024-02-05 2024-02-07 0.75 66.25 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "26" 2024-02-05 2024-02-07 0.8 68.2 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "26" 2024-02-05 2024-02-07 0.85 73.15 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "26" 2024-02-05 2024-02-07 0.9 78 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "26" 2024-02-05 2024-02-07 0.95 81.1 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "26" 2024-02-05 2024-02-07 0.975 83 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "26" 2024-02-05 2024-02-07 0.99 87.03 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "26" 2024-02-05 2024-02-08 0.01 26.99 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "26" 2024-02-05 2024-02-08 0.025 27.475 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "26" 2024-02-05 2024-02-08 0.05 32.95 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "26" 2024-02-05 2024-02-08 0.1 36 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "26" 2024-02-05 2024-02-08 0.15 38.85 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "26" 2024-02-05 2024-02-08 0.2 40 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "26" 2024-02-05 2024-02-08 0.25 41 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "26" 2024-02-05 2024-02-08 0.3 44.7 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "26" 2024-02-05 2024-02-08 0.35 46 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "26" 2024-02-05 2024-02-08 0.4 47.6 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "26" 2024-02-05 2024-02-08 0.45 49 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "26" 2024-02-05 2024-02-08 0.5 51.5 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "26" 2024-02-05 2024-02-08 0.55 53 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "26" 2024-02-05 2024-02-08 0.6 56.4 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "26" 2024-02-05 2024-02-08 0.65 60 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "26" 2024-02-05 2024-02-08 0.7 61 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "26" 2024-02-05 2024-02-08 0.75 64 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "26" 2024-02-05 2024-02-08 0.8 66.2 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "26" 2024-02-05 2024-02-08 0.85 69 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "26" 2024-02-05 2024-02-08 0.9 71 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "26" 2024-02-05 2024-02-08 0.95 74 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "26" 2024-02-05 2024-02-08 0.975 79.05 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "26" 2024-02-05 2024-02-08 0.99 83.07 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "26" 2024-02-05 2024-02-09 0.01 24.97 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "26" 2024-02-05 2024-02-09 0.025 28.475 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "26" 2024-02-05 2024-02-09 0.05 29 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "26" 2024-02-05 2024-02-09 0.1 35.9 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "26" 2024-02-05 2024-02-09 0.15 40 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "26" 2024-02-05 2024-02-09 0.2 43 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "26" 2024-02-05 2024-02-09 0.25 45 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "26" 2024-02-05 2024-02-09 0.3 47 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "26" 2024-02-05 2024-02-09 0.35 47 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "26" 2024-02-05 2024-02-09 0.4 48 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "26" 2024-02-05 2024-02-09 0.45 49 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "26" 2024-02-05 2024-02-09 0.5 50 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "26" 2024-02-05 2024-02-09 0.55 51.45 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "26" 2024-02-05 2024-02-09 0.6 52 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "26" 2024-02-05 2024-02-09 0.65 53 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "26" 2024-02-05 2024-02-09 0.7 55 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "26" 2024-02-05 2024-02-09 0.75 58 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "26" 2024-02-05 2024-02-09 0.8 58.2 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "26" 2024-02-05 2024-02-09 0.85 61 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "26" 2024-02-05 2024-02-09 0.9 65.1 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "26" 2024-02-05 2024-02-09 0.95 69.05 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "26" 2024-02-05 2024-02-09 0.975 76.1 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "26" 2024-02-05 2024-02-09 0.99 80.06 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "26" 2024-02-05 2024-02-10 0.01 21.99 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "26" 2024-02-05 2024-02-10 0.025 22.95 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "26" 2024-02-05 2024-02-10 0.05 25.95 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "26" 2024-02-05 2024-02-10 0.1 27.9 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "26" 2024-02-05 2024-02-10 0.15 33.7 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "26" 2024-02-05 2024-02-10 0.2 35 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "26" 2024-02-05 2024-02-10 0.25 37 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "26" 2024-02-05 2024-02-10 0.3 39 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "26" 2024-02-05 2024-02-10 0.35 41 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "26" 2024-02-05 2024-02-10 0.4 42.6 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "26" 2024-02-05 2024-02-10 0.45 43 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "26" 2024-02-05 2024-02-10 0.5 44 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "26" 2024-02-05 2024-02-10 0.55 45 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "26" 2024-02-05 2024-02-10 0.6 47 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "26" 2024-02-05 2024-02-10 0.65 48.35 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "26" 2024-02-05 2024-02-10 0.7 50 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "26" 2024-02-05 2024-02-10 0.75 51 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "26" 2024-02-05 2024-02-10 0.8 52.2 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "26" 2024-02-05 2024-02-10 0.85 56 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "26" 2024-02-05 2024-02-10 0.9 57.1 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "26" 2024-02-05 2024-02-10 0.95 64.05 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "26" 2024-02-05 2024-02-10 0.975 68.05 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "26" 2024-02-05 2024-02-10 0.99 74.2100000000001 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "26" 2024-02-05 2024-02-11 0.01 23.95 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "26" 2024-02-05 2024-02-11 0.025 25.475 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "26" 2024-02-05 2024-02-11 0.05 26 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "26" 2024-02-05 2024-02-11 0.1 28.9 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "26" 2024-02-05 2024-02-11 0.15 29.85 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "26" 2024-02-05 2024-02-11 0.2 31 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "26" 2024-02-05 2024-02-11 0.25 33.75 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "26" 2024-02-05 2024-02-11 0.3 35.7 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "26" 2024-02-05 2024-02-11 0.35 40 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "26" 2024-02-05 2024-02-11 0.4 41 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "26" 2024-02-05 2024-02-11 0.45 43 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "26" 2024-02-05 2024-02-11 0.5 44.5 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "26" 2024-02-05 2024-02-11 0.55 46 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "26" 2024-02-05 2024-02-11 0.6 46.4 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "26" 2024-02-05 2024-02-11 0.65 48.35 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "26" 2024-02-05 2024-02-11 0.7 50 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "26" 2024-02-05 2024-02-11 0.75 52 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "26" 2024-02-05 2024-02-11 0.8 52.2 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "26" 2024-02-05 2024-02-11 0.85 54 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "26" 2024-02-05 2024-02-11 0.9 59 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "26" 2024-02-05 2024-02-11 0.95 65.1 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "26" 2024-02-05 2024-02-11 0.975 68 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "26" 2024-02-05 2024-02-11 0.99 71.05 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "26" 2024-02-05 2024-02-12 0.01 19 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "26" 2024-02-05 2024-02-12 0.025 22.475 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "26" 2024-02-05 2024-02-12 0.05 25 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "26" 2024-02-05 2024-02-12 0.1 30 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "26" 2024-02-05 2024-02-12 0.15 34.55 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "26" 2024-02-05 2024-02-12 0.2 36 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "26" 2024-02-05 2024-02-12 0.25 38 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "26" 2024-02-05 2024-02-12 0.3 39 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "26" 2024-02-05 2024-02-12 0.35 40.65 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "26" 2024-02-05 2024-02-12 0.4 42 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "26" 2024-02-05 2024-02-12 0.45 45 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "26" 2024-02-05 2024-02-12 0.5 46 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "26" 2024-02-05 2024-02-12 0.55 47.45 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "26" 2024-02-05 2024-02-12 0.6 49 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "26" 2024-02-05 2024-02-12 0.65 51 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "26" 2024-02-05 2024-02-12 0.7 53 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "26" 2024-02-05 2024-02-12 0.75 55 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "26" 2024-02-05 2024-02-12 0.8 59 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "26" 2024-02-05 2024-02-12 0.85 63 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "26" 2024-02-05 2024-02-12 0.9 66 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "26" 2024-02-05 2024-02-12 0.95 68 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "26" 2024-02-05 2024-02-12 0.975 82.05 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "26" 2024-02-05 2024-02-12 0.99 83.1400000000001 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "26" 2024-02-05 2024-02-13 0.01 19.96 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "26" 2024-02-05 2024-02-13 0.025 22.9 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "26" 2024-02-05 2024-02-13 0.05 26 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "26" 2024-02-05 2024-02-13 0.1 27.9 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "26" 2024-02-05 2024-02-13 0.15 29 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "26" 2024-02-05 2024-02-13 0.2 30.8 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "26" 2024-02-05 2024-02-13 0.25 32 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "26" 2024-02-05 2024-02-13 0.3 35 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "26" 2024-02-05 2024-02-13 0.35 36 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "26" 2024-02-05 2024-02-13 0.4 39 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "26" 2024-02-05 2024-02-13 0.45 41 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "26" 2024-02-05 2024-02-13 0.5 42 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "26" 2024-02-05 2024-02-13 0.55 43 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "26" 2024-02-05 2024-02-13 0.6 45.4 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "26" 2024-02-05 2024-02-13 0.65 48.35 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "26" 2024-02-05 2024-02-13 0.7 51 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "26" 2024-02-05 2024-02-13 0.75 53 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "26" 2024-02-05 2024-02-13 0.8 56 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "26" 2024-02-05 2024-02-13 0.85 57 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "26" 2024-02-05 2024-02-13 0.9 59 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "26" 2024-02-05 2024-02-13 0.95 67 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "26" 2024-02-05 2024-02-13 0.975 68.525 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "26" 2024-02-05 2024-02-13 0.99 72.3100000000002 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "26" 2024-02-05 2024-02-14 0.01 18.95 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "26" 2024-02-05 2024-02-14 0.025 21.425 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "26" 2024-02-05 2024-02-14 0.05 24.95 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "26" 2024-02-05 2024-02-14 0.1 27.9 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "26" 2024-02-05 2024-02-14 0.15 32.85 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "26" 2024-02-05 2024-02-14 0.2 35 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "26" 2024-02-05 2024-02-14 0.25 37 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "26" 2024-02-05 2024-02-14 0.3 38.7 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "26" 2024-02-05 2024-02-14 0.35 41 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "26" 2024-02-05 2024-02-14 0.4 43 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "26" 2024-02-05 2024-02-14 0.45 45 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "26" 2024-02-05 2024-02-14 0.5 47 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "26" 2024-02-05 2024-02-14 0.55 48 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "26" 2024-02-05 2024-02-14 0.6 50 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "26" 2024-02-05 2024-02-14 0.65 51.35 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "26" 2024-02-05 2024-02-14 0.7 54.3 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "26" 2024-02-05 2024-02-14 0.75 56 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "26" 2024-02-05 2024-02-14 0.8 58 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "26" 2024-02-05 2024-02-14 0.85 61 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "26" 2024-02-05 2024-02-14 0.9 63 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "26" 2024-02-05 2024-02-14 0.95 73.1 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "26" 2024-02-05 2024-02-14 0.975 79.625 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "26" 2024-02-05 2024-02-14 0.99 87.02 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "26" 2024-02-05 2024-02-15 0.01 16.99 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "26" 2024-02-05 2024-02-15 0.025 18.475 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "26" 2024-02-05 2024-02-15 0.05 20.9 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "26" 2024-02-05 2024-02-15 0.1 26.9 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "26" 2024-02-05 2024-02-15 0.15 30.85 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "26" 2024-02-05 2024-02-15 0.2 32 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "26" 2024-02-05 2024-02-15 0.25 33 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "26" 2024-02-05 2024-02-15 0.3 34.7 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "26" 2024-02-05 2024-02-15 0.35 36.65 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "26" 2024-02-05 2024-02-15 0.4 38 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "26" 2024-02-05 2024-02-15 0.45 38 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "26" 2024-02-05 2024-02-15 0.5 41 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "26" 2024-02-05 2024-02-15 0.55 41 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "26" 2024-02-05 2024-02-15 0.6 44 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "26" 2024-02-05 2024-02-15 0.65 46 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "26" 2024-02-05 2024-02-15 0.7 48 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "26" 2024-02-05 2024-02-15 0.75 49 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "26" 2024-02-05 2024-02-15 0.8 52.2 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "26" 2024-02-05 2024-02-15 0.85 57 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "26" 2024-02-05 2024-02-15 0.9 61.1 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "26" 2024-02-05 2024-02-15 0.95 66 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "26" 2024-02-05 2024-02-15 0.975 74 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "26" 2024-02-05 2024-02-15 0.99 88.01 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "26" 2024-02-05 2024-02-16 0.01 13.99 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "26" 2024-02-05 2024-02-16 0.025 16 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "26" 2024-02-05 2024-02-16 0.05 16.95 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "26" 2024-02-05 2024-02-16 0.1 22.8 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "26" 2024-02-05 2024-02-16 0.15 26.7 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "26" 2024-02-05 2024-02-16 0.2 30 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "26" 2024-02-05 2024-02-16 0.25 31.75 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "26" 2024-02-05 2024-02-16 0.3 34 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "26" 2024-02-05 2024-02-16 0.35 35.65 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "26" 2024-02-05 2024-02-16 0.4 39.2 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "26" 2024-02-05 2024-02-16 0.45 40 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "26" 2024-02-05 2024-02-16 0.5 41 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "26" 2024-02-05 2024-02-16 0.55 42 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "26" 2024-02-05 2024-02-16 0.6 44 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "26" 2024-02-05 2024-02-16 0.65 46 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "26" 2024-02-05 2024-02-16 0.7 47.3 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "26" 2024-02-05 2024-02-16 0.75 52 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "26" 2024-02-05 2024-02-16 0.8 54 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "26" 2024-02-05 2024-02-16 0.85 55.45 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "26" 2024-02-05 2024-02-16 0.9 62.2 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "26" 2024-02-05 2024-02-16 0.95 70 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "26" 2024-02-05 2024-02-16 0.975 76.2499999999999 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "26" 2024-02-05 2024-02-16 0.99 100.02 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "26" 2024-02-05 2024-02-17 0.01 11.98 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "26" 2024-02-05 2024-02-17 0.025 14.95 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "26" 2024-02-05 2024-02-17 0.05 17.95 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "26" 2024-02-05 2024-02-17 0.1 21 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "26" 2024-02-05 2024-02-17 0.15 22.85 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "26" 2024-02-05 2024-02-17 0.2 23.8 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "26" 2024-02-05 2024-02-17 0.25 26.75 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "26" 2024-02-05 2024-02-17 0.3 29 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "26" 2024-02-05 2024-02-17 0.35 31 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "26" 2024-02-05 2024-02-17 0.4 32 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "26" 2024-02-05 2024-02-17 0.45 33 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "26" 2024-02-05 2024-02-17 0.5 36 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "26" 2024-02-05 2024-02-17 0.55 37 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "26" 2024-02-05 2024-02-17 0.6 37 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "26" 2024-02-05 2024-02-17 0.65 38.35 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "26" 2024-02-05 2024-02-17 0.7 42.3 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "26" 2024-02-05 2024-02-17 0.75 43.25 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "26" 2024-02-05 2024-02-17 0.8 45.2 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "26" 2024-02-05 2024-02-17 0.85 48.3 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "26" 2024-02-05 2024-02-17 0.9 53.1 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "26" 2024-02-05 2024-02-17 0.95 58.25 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "26" 2024-02-05 2024-02-17 0.975 77.1499999999999 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "26" 2024-02-05 2024-02-17 0.99 88.07 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "26" 2024-02-05 2024-02-18 0.01 13.95 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "26" 2024-02-05 2024-02-18 0.025 14.95 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "26" 2024-02-05 2024-02-18 0.05 16.95 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "26" 2024-02-05 2024-02-18 0.1 19.9 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "26" 2024-02-05 2024-02-18 0.15 23 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "26" 2024-02-05 2024-02-18 0.2 24 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "26" 2024-02-05 2024-02-18 0.25 26 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "26" 2024-02-05 2024-02-18 0.3 27 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "26" 2024-02-05 2024-02-18 0.35 29 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "26" 2024-02-05 2024-02-18 0.4 30 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "26" 2024-02-05 2024-02-18 0.45 32.55 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "26" 2024-02-05 2024-02-18 0.5 35 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "26" 2024-02-05 2024-02-18 0.55 36 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "26" 2024-02-05 2024-02-18 0.6 38.4 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "26" 2024-02-05 2024-02-18 0.65 39.35 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "26" 2024-02-05 2024-02-18 0.7 41.3 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "26" 2024-02-05 2024-02-18 0.75 44 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "26" 2024-02-05 2024-02-18 0.8 48 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "26" 2024-02-05 2024-02-18 0.85 50 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "26" 2024-02-05 2024-02-18 0.9 55 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "26" 2024-02-05 2024-02-18 0.95 63.05 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "26" 2024-02-05 2024-02-18 0.975 68.6749999999999 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "26" 2024-02-05 2024-02-18 0.99 78.05 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "26" 2024-02-05 2024-02-19 0.01 12.98 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "26" 2024-02-05 2024-02-19 0.025 16 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "26" 2024-02-05 2024-02-19 0.05 17.9 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "26" 2024-02-05 2024-02-19 0.1 21 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "26" 2024-02-05 2024-02-19 0.15 23.85 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "26" 2024-02-05 2024-02-19 0.2 28 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "26" 2024-02-05 2024-02-19 0.25 31 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "26" 2024-02-05 2024-02-19 0.3 32 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "26" 2024-02-05 2024-02-19 0.35 33 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "26" 2024-02-05 2024-02-19 0.4 35.6 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "26" 2024-02-05 2024-02-19 0.45 37 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "26" 2024-02-05 2024-02-19 0.5 38.5 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "26" 2024-02-05 2024-02-19 0.55 40 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "26" 2024-02-05 2024-02-19 0.6 42 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "26" 2024-02-05 2024-02-19 0.65 44 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "26" 2024-02-05 2024-02-19 0.7 45 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "26" 2024-02-05 2024-02-19 0.75 47.25 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "26" 2024-02-05 2024-02-19 0.8 53 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "26" 2024-02-05 2024-02-19 0.85 55.3 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "26" 2024-02-05 2024-02-19 0.9 60.1 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "26" 2024-02-05 2024-02-19 0.95 68.1 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "26" 2024-02-05 2024-02-19 0.975 78.525 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "26" 2024-02-05 2024-02-19 0.99 95.1600000000001 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "26" 2024-02-05 2024-02-20 0.01 10.98 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "26" 2024-02-05 2024-02-20 0.025 12.475 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "26" 2024-02-05 2024-02-20 0.05 14.95 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "26" 2024-02-05 2024-02-20 0.1 18.9 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "26" 2024-02-05 2024-02-20 0.15 21 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "26" 2024-02-05 2024-02-20 0.2 22.8 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "26" 2024-02-05 2024-02-20 0.25 24 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "26" 2024-02-05 2024-02-20 0.3 25.7 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "26" 2024-02-05 2024-02-20 0.35 28 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "26" 2024-02-05 2024-02-20 0.4 29.6 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "26" 2024-02-05 2024-02-20 0.45 33 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "26" 2024-02-05 2024-02-20 0.5 34.5 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "26" 2024-02-05 2024-02-20 0.55 37 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "26" 2024-02-05 2024-02-20 0.6 39 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "26" 2024-02-05 2024-02-20 0.65 41 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "26" 2024-02-05 2024-02-20 0.7 43 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "26" 2024-02-05 2024-02-20 0.75 47.0000000000001 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "26" 2024-02-05 2024-02-20 0.8 52.2 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "26" 2024-02-05 2024-02-20 0.85 55.15 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "26" 2024-02-05 2024-02-20 0.9 58.2 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "26" 2024-02-05 2024-02-20 0.95 64.15 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "26" 2024-02-05 2024-02-20 0.975 71.05 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "26" 2024-02-05 2024-02-20 0.99 101.21 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "26" 2024-02-05 2024-02-21 0.01 11.98 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "26" 2024-02-05 2024-02-21 0.025 13 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "26" 2024-02-05 2024-02-21 0.05 14.95 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "26" 2024-02-05 2024-02-21 0.1 17.9 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "26" 2024-02-05 2024-02-21 0.15 19.85 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "26" 2024-02-05 2024-02-21 0.2 21.8 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "26" 2024-02-05 2024-02-21 0.25 25 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "26" 2024-02-05 2024-02-21 0.3 27 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "26" 2024-02-05 2024-02-21 0.35 29 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "26" 2024-02-05 2024-02-21 0.4 30 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "26" 2024-02-05 2024-02-21 0.45 32 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "26" 2024-02-05 2024-02-21 0.5 33.5 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "26" 2024-02-05 2024-02-21 0.55 35.45 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "26" 2024-02-05 2024-02-21 0.6 38 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "26" 2024-02-05 2024-02-21 0.65 41.35 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "26" 2024-02-05 2024-02-21 0.7 44 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "26" 2024-02-05 2024-02-21 0.75 46.25 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "26" 2024-02-05 2024-02-21 0.8 52 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "26" 2024-02-05 2024-02-21 0.85 55 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "26" 2024-02-05 2024-02-21 0.9 64.1 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "26" 2024-02-05 2024-02-21 0.95 71.25 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "26" 2024-02-05 2024-02-21 0.975 84.2499999999999 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "26" 2024-02-05 2024-02-21 0.99 90.3300000000002 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "26" 2024-02-05 2024-02-22 0.01 10.98 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "26" 2024-02-05 2024-02-22 0.025 12 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "26" 2024-02-05 2024-02-22 0.05 13.95 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "26" 2024-02-05 2024-02-22 0.1 16 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "26" 2024-02-05 2024-02-22 0.15 17.85 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "26" 2024-02-05 2024-02-22 0.2 18.8 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "26" 2024-02-05 2024-02-22 0.25 20 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "26" 2024-02-05 2024-02-22 0.3 21.7 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "26" 2024-02-05 2024-02-22 0.35 24.65 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "26" 2024-02-05 2024-02-22 0.4 26.6 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "26" 2024-02-05 2024-02-22 0.45 31 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "26" 2024-02-05 2024-02-22 0.5 31.5 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "26" 2024-02-05 2024-02-22 0.55 33 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "26" 2024-02-05 2024-02-22 0.6 36 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "26" 2024-02-05 2024-02-22 0.65 37.35 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "26" 2024-02-05 2024-02-22 0.7 39.3 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "26" 2024-02-05 2024-02-22 0.75 43.5 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "26" 2024-02-05 2024-02-22 0.8 49.2 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "26" 2024-02-05 2024-02-22 0.85 53.15 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "26" 2024-02-05 2024-02-22 0.9 58 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "26" 2024-02-05 2024-02-22 0.95 66.05 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "26" 2024-02-05 2024-02-22 0.975 77.525 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "26" 2024-02-05 2024-02-22 0.99 105.29 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "26" 2024-02-05 2024-02-23 0.01 7.98 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "26" 2024-02-05 2024-02-23 0.025 9.475 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "26" 2024-02-05 2024-02-23 0.05 10.95 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "26" 2024-02-05 2024-02-23 0.1 15 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "26" 2024-02-05 2024-02-23 0.15 17.85 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "26" 2024-02-05 2024-02-23 0.2 19.8 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "26" 2024-02-05 2024-02-23 0.25 21.75 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "26" 2024-02-05 2024-02-23 0.3 22.7 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "26" 2024-02-05 2024-02-23 0.35 26.65 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "26" 2024-02-05 2024-02-23 0.4 27.6 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "26" 2024-02-05 2024-02-23 0.45 31.55 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "26" 2024-02-05 2024-02-23 0.5 33 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "26" 2024-02-05 2024-02-23 0.55 34 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "26" 2024-02-05 2024-02-23 0.6 35 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "26" 2024-02-05 2024-02-23 0.65 36 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "26" 2024-02-05 2024-02-23 0.7 40 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "26" 2024-02-05 2024-02-23 0.75 44 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "26" 2024-02-05 2024-02-23 0.8 46 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "26" 2024-02-05 2024-02-23 0.85 48 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "26" 2024-02-05 2024-02-23 0.9 56.2 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "26" 2024-02-05 2024-02-23 0.95 63.1 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "26" 2024-02-05 2024-02-23 0.975 67 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "26" 2024-02-05 2024-02-23 0.99 92.1700000000001 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "26" 2024-02-05 2024-02-24 0.01 7.99 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "26" 2024-02-05 2024-02-24 0.025 8.475 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "26" 2024-02-05 2024-02-24 0.05 9.95 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "26" 2024-02-05 2024-02-24 0.1 13.9 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "26" 2024-02-05 2024-02-24 0.15 15 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "26" 2024-02-05 2024-02-24 0.2 18 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "26" 2024-02-05 2024-02-24 0.25 19.75 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "26" 2024-02-05 2024-02-24 0.3 22 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "26" 2024-02-05 2024-02-24 0.35 22.65 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "26" 2024-02-05 2024-02-24 0.4 24.6 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "26" 2024-02-05 2024-02-24 0.45 26 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "26" 2024-02-05 2024-02-24 0.5 28 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "26" 2024-02-05 2024-02-24 0.55 29.45 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "26" 2024-02-05 2024-02-24 0.6 31.4 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "26" 2024-02-05 2024-02-24 0.65 34 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "26" 2024-02-05 2024-02-24 0.7 36 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "26" 2024-02-05 2024-02-24 0.75 38.25 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "26" 2024-02-05 2024-02-24 0.8 43 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "26" 2024-02-05 2024-02-24 0.85 47 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "26" 2024-02-05 2024-02-24 0.9 49.1 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "26" 2024-02-05 2024-02-24 0.95 57.75 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "26" 2024-02-05 2024-02-24 0.975 78.7249999999999 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "26" 2024-02-05 2024-02-24 0.99 117.34 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "26" 2024-02-05 2024-02-25 0.01 7.97 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "26" 2024-02-05 2024-02-25 0.025 8.475 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "26" 2024-02-05 2024-02-25 0.05 9.95 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "26" 2024-02-05 2024-02-25 0.1 13 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "26" 2024-02-05 2024-02-25 0.15 14 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "26" 2024-02-05 2024-02-25 0.2 15 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "26" 2024-02-05 2024-02-25 0.25 16.75 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "26" 2024-02-05 2024-02-25 0.3 19.7 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "26" 2024-02-05 2024-02-25 0.35 21 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "26" 2024-02-05 2024-02-25 0.4 23 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "26" 2024-02-05 2024-02-25 0.45 24 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "26" 2024-02-05 2024-02-25 0.5 26 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "26" 2024-02-05 2024-02-25 0.55 28.45 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "26" 2024-02-05 2024-02-25 0.6 30.4 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "26" 2024-02-05 2024-02-25 0.65 33.35 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "26" 2024-02-05 2024-02-25 0.7 38.6 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "26" 2024-02-05 2024-02-25 0.75 41.25 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "26" 2024-02-05 2024-02-25 0.8 43.2 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "26" 2024-02-05 2024-02-25 0.85 45.15 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "26" 2024-02-05 2024-02-25 0.9 48 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "26" 2024-02-05 2024-02-25 0.95 57.1 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "26" 2024-02-05 2024-02-25 0.975 64.05 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "26" 2024-02-05 2024-02-25 0.99 122.04 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "26" 2024-02-05 2024-02-26 0.01 8.99 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "26" 2024-02-05 2024-02-26 0.025 10 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "26" 2024-02-05 2024-02-26 0.05 12 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "26" 2024-02-05 2024-02-26 0.1 14.9 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "26" 2024-02-05 2024-02-26 0.15 15 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "26" 2024-02-05 2024-02-26 0.2 16 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "26" 2024-02-05 2024-02-26 0.25 18 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "26" 2024-02-05 2024-02-26 0.3 21.4 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "26" 2024-02-05 2024-02-26 0.35 23 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "26" 2024-02-05 2024-02-26 0.4 25 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "26" 2024-02-05 2024-02-26 0.45 26.55 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "26" 2024-02-05 2024-02-26 0.5 29 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "26" 2024-02-05 2024-02-26 0.55 31.9 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "26" 2024-02-05 2024-02-26 0.6 35 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "26" 2024-02-05 2024-02-26 0.65 36.35 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "26" 2024-02-05 2024-02-26 0.7 39.6 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "26" 2024-02-05 2024-02-26 0.75 44.25 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "26" 2024-02-05 2024-02-26 0.8 48.2 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "26" 2024-02-05 2024-02-26 0.85 54.15 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "26" 2024-02-05 2024-02-26 0.9 55.1 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "26" 2024-02-05 2024-02-26 0.95 64.1 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "26" 2024-02-05 2024-02-26 0.975 71 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "26" 2024-02-05 2024-02-26 0.99 124.21 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "26" 2024-02-05 2024-02-27 0.01 7.99 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "26" 2024-02-05 2024-02-27 0.025 8.475 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "26" 2024-02-05 2024-02-27 0.05 9 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "26" 2024-02-05 2024-02-27 0.1 11 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "26" 2024-02-05 2024-02-27 0.15 14 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "26" 2024-02-05 2024-02-27 0.2 15 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "26" 2024-02-05 2024-02-27 0.25 18 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "26" 2024-02-05 2024-02-27 0.3 20 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "26" 2024-02-05 2024-02-27 0.35 21 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "26" 2024-02-05 2024-02-27 0.4 23 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "26" 2024-02-05 2024-02-27 0.45 26 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "26" 2024-02-05 2024-02-27 0.5 28 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "26" 2024-02-05 2024-02-27 0.55 30 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "26" 2024-02-05 2024-02-27 0.6 32.4 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "26" 2024-02-05 2024-02-27 0.65 36 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "26" 2024-02-05 2024-02-27 0.7 37 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "26" 2024-02-05 2024-02-27 0.75 42.25 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "26" 2024-02-05 2024-02-27 0.8 44 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "26" 2024-02-05 2024-02-27 0.85 50.3 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "26" 2024-02-05 2024-02-27 0.9 54.3 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "26" 2024-02-05 2024-02-27 0.95 67.15 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "26" 2024-02-05 2024-02-27 0.975 75.6749999999999 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "26" 2024-02-05 2024-02-27 0.99 94.2900000000001 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "26" 2024-02-05 2024-02-28 0.01 4.99 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "26" 2024-02-05 2024-02-28 0.025 7.475 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "26" 2024-02-05 2024-02-28 0.05 8.95 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "26" 2024-02-05 2024-02-28 0.1 10.9 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "26" 2024-02-05 2024-02-28 0.15 14 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "26" 2024-02-05 2024-02-28 0.2 16 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "26" 2024-02-05 2024-02-28 0.25 18.75 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "26" 2024-02-05 2024-02-28 0.3 21 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "26" 2024-02-05 2024-02-28 0.35 22 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "26" 2024-02-05 2024-02-28 0.4 23 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "26" 2024-02-05 2024-02-28 0.45 25 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "26" 2024-02-05 2024-02-28 0.5 27 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "26" 2024-02-05 2024-02-28 0.55 29.45 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "26" 2024-02-05 2024-02-28 0.6 32.8 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "26" 2024-02-05 2024-02-28 0.65 36.7 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "26" 2024-02-05 2024-02-28 0.7 40.3 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "26" 2024-02-05 2024-02-28 0.75 42.25 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "26" 2024-02-05 2024-02-28 0.8 46 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "26" 2024-02-05 2024-02-28 0.85 51.15 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "26" 2024-02-05 2024-02-28 0.9 55.2 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "26" 2024-02-05 2024-02-28 0.95 62.1 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "26" 2024-02-05 2024-02-28 0.975 76.7749999999999 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "26" 2024-02-05 2024-02-28 0.99 151.16 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "26" 2024-02-05 2024-02-29 0.01 5.99 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "26" 2024-02-05 2024-02-29 0.025 9 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "26" 2024-02-05 2024-02-29 0.05 9.95 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "26" 2024-02-05 2024-02-29 0.1 11.9 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "26" 2024-02-05 2024-02-29 0.15 13 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "26" 2024-02-05 2024-02-29 0.2 14 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "26" 2024-02-05 2024-02-29 0.25 15 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "26" 2024-02-05 2024-02-29 0.3 16.7 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "26" 2024-02-05 2024-02-29 0.35 18.65 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "26" 2024-02-05 2024-02-29 0.4 21 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "26" 2024-02-05 2024-02-29 0.45 23 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "26" 2024-02-05 2024-02-29 0.5 24.5 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "26" 2024-02-05 2024-02-29 0.55 27.45 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "26" 2024-02-05 2024-02-29 0.6 30 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "26" 2024-02-05 2024-02-29 0.65 33.35 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "26" 2024-02-05 2024-02-29 0.7 35.6 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "26" 2024-02-05 2024-02-29 0.75 38 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "26" 2024-02-05 2024-02-29 0.8 41 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "26" 2024-02-05 2024-02-29 0.85 45 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "26" 2024-02-05 2024-02-29 0.9 54.3 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "26" 2024-02-05 2024-02-29 0.95 60.1 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "26" 2024-02-05 2024-02-29 0.975 69.525 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "26" 2024-02-05 2024-02-29 0.99 140.01 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "26" 2024-02-05 2024-03-01 0.01 6.97 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "26" 2024-02-05 2024-03-01 0.025 7 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "26" 2024-02-05 2024-03-01 0.05 8 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "26" 2024-02-05 2024-03-01 0.1 10.9 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "26" 2024-02-05 2024-03-01 0.15 12 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "26" 2024-02-05 2024-03-01 0.2 12 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "26" 2024-02-05 2024-03-01 0.25 14 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "26" 2024-02-05 2024-03-01 0.3 16 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "26" 2024-02-05 2024-03-01 0.35 17 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "26" 2024-02-05 2024-03-01 0.4 20 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "26" 2024-02-05 2024-03-01 0.45 22.55 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "26" 2024-02-05 2024-03-01 0.5 25 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "26" 2024-02-05 2024-03-01 0.55 28 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "26" 2024-02-05 2024-03-01 0.6 30 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "26" 2024-02-05 2024-03-01 0.65 34 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "26" 2024-02-05 2024-03-01 0.7 36 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "26" 2024-02-05 2024-03-01 0.75 39.25 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "26" 2024-02-05 2024-03-01 0.8 42.2 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "26" 2024-02-05 2024-03-01 0.85 47.45 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "26" 2024-02-05 2024-03-01 0.9 55.2 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "26" 2024-02-05 2024-03-01 0.95 66.2 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "26" 2024-02-05 2024-03-01 0.975 75.625 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "26" 2024-02-05 2024-03-01 0.99 112.6 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "26" 2024-02-05 2024-03-02 0.01 4.97 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "26" 2024-02-05 2024-03-02 0.025 7 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "26" 2024-02-05 2024-03-02 0.05 7 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "26" 2024-02-05 2024-03-02 0.1 8 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "26" 2024-02-05 2024-03-02 0.15 10 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "26" 2024-02-05 2024-03-02 0.2 11.8 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "26" 2024-02-05 2024-03-02 0.25 12.75 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "26" 2024-02-05 2024-03-02 0.3 15.7 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "26" 2024-02-05 2024-03-02 0.35 17 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "26" 2024-02-05 2024-03-02 0.4 18 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "26" 2024-02-05 2024-03-02 0.45 20.55 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "26" 2024-02-05 2024-03-02 0.5 23.5 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "26" 2024-02-05 2024-03-02 0.55 25.45 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "26" 2024-02-05 2024-03-02 0.6 27 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "26" 2024-02-05 2024-03-02 0.65 28.35 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "26" 2024-02-05 2024-03-02 0.7 31.3 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "26" 2024-02-05 2024-03-02 0.75 35.5 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "26" 2024-02-05 2024-03-02 0.8 39 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "26" 2024-02-05 2024-03-02 0.85 42 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "26" 2024-02-05 2024-03-02 0.9 55.2 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "26" 2024-02-05 2024-03-02 0.95 61.05 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "26" 2024-02-05 2024-03-02 0.975 79.2249999999998 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "26" 2024-02-05 2024-03-02 0.99 123.34 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "26" 2024-02-05 2024-03-03 0.01 3.99 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "26" 2024-02-05 2024-03-03 0.025 4.475 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "26" 2024-02-05 2024-03-03 0.05 5 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "26" 2024-02-05 2024-03-03 0.1 6.9 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "26" 2024-02-05 2024-03-03 0.15 10.85 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "26" 2024-02-05 2024-03-03 0.2 11 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "26" 2024-02-05 2024-03-03 0.25 12 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "26" 2024-02-05 2024-03-03 0.3 14 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "26" 2024-02-05 2024-03-03 0.35 15 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "26" 2024-02-05 2024-03-03 0.4 16 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "26" 2024-02-05 2024-03-03 0.45 18 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "26" 2024-02-05 2024-03-03 0.5 23 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "26" 2024-02-05 2024-03-03 0.55 24 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "26" 2024-02-05 2024-03-03 0.6 25 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "26" 2024-02-05 2024-03-03 0.65 26.35 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "26" 2024-02-05 2024-03-03 0.7 29.6 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "26" 2024-02-05 2024-03-03 0.75 34 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "26" 2024-02-05 2024-03-03 0.8 38 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "26" 2024-02-05 2024-03-03 0.85 41.15 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "26" 2024-02-05 2024-03-03 0.9 50 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "26" 2024-02-05 2024-03-03 0.95 58.1 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "26" 2024-02-05 2024-03-03 0.975 79.7999999999997 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "26" 2024-02-05 2024-03-03 0.99 136.35 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "26" 2024-02-05 2024-03-04 0.01 2.98 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "26" 2024-02-05 2024-03-04 0.025 5.475 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "26" 2024-02-05 2024-03-04 0.05 8 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "26" 2024-02-05 2024-03-04 0.1 9 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "26" 2024-02-05 2024-03-04 0.15 10 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "26" 2024-02-05 2024-03-04 0.2 12 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "26" 2024-02-05 2024-03-04 0.25 14 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "26" 2024-02-05 2024-03-04 0.3 15 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "26" 2024-02-05 2024-03-04 0.35 16.65 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "26" 2024-02-05 2024-03-04 0.4 18.6 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "26" 2024-02-05 2024-03-04 0.45 20 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "26" 2024-02-05 2024-03-04 0.5 23 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "26" 2024-02-05 2024-03-04 0.55 25 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "26" 2024-02-05 2024-03-04 0.6 28 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "26" 2024-02-05 2024-03-04 0.65 30.35 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "26" 2024-02-05 2024-03-04 0.7 33.3 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "26" 2024-02-05 2024-03-04 0.75 38.25 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "26" 2024-02-05 2024-03-04 0.8 41 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "26" 2024-02-05 2024-03-04 0.85 47.3 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "26" 2024-02-05 2024-03-04 0.9 52.1 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "26" 2024-02-05 2024-03-04 0.95 67.05 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "26" 2024-02-05 2024-03-04 0.975 81.1 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "26" 2024-02-05 2024-03-04 0.99 139.56 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "27" 2024-02-05 2024-02-06 0.01 16.98 "quantile" "hospital admissions only" +"1 day ahead inc hosp" "27" 2024-02-05 2024-02-06 0.025 17.95 "quantile" "hospital admissions only" +"1 day ahead inc hosp" "27" 2024-02-05 2024-02-06 0.05 20.95 "quantile" "hospital admissions only" +"1 day ahead inc hosp" "27" 2024-02-05 2024-02-06 0.1 22 "quantile" "hospital admissions only" +"1 day ahead inc hosp" "27" 2024-02-05 2024-02-06 0.15 24.85 "quantile" "hospital admissions only" +"1 day ahead inc hosp" "27" 2024-02-05 2024-02-06 0.2 26 "quantile" "hospital admissions only" +"1 day ahead inc hosp" "27" 2024-02-05 2024-02-06 0.25 26 "quantile" "hospital admissions only" +"1 day ahead inc hosp" "27" 2024-02-05 2024-02-06 0.3 27.7 "quantile" "hospital admissions only" +"1 day ahead inc hosp" "27" 2024-02-05 2024-02-06 0.35 28.65 "quantile" "hospital admissions only" +"1 day ahead inc hosp" "27" 2024-02-05 2024-02-06 0.4 30 "quantile" "hospital admissions only" +"1 day ahead inc hosp" "27" 2024-02-05 2024-02-06 0.45 31 "quantile" "hospital admissions only" +"1 day ahead inc hosp" "27" 2024-02-05 2024-02-06 0.5 32 "quantile" "hospital admissions only" +"1 day ahead inc hosp" "27" 2024-02-05 2024-02-06 0.55 33.45 "quantile" "hospital admissions only" +"1 day ahead inc hosp" "27" 2024-02-05 2024-02-06 0.6 35 "quantile" "hospital admissions only" +"1 day ahead inc hosp" "27" 2024-02-05 2024-02-06 0.65 36 "quantile" "hospital admissions only" +"1 day ahead inc hosp" "27" 2024-02-05 2024-02-06 0.7 37 "quantile" "hospital admissions only" +"1 day ahead inc hosp" "27" 2024-02-05 2024-02-06 0.75 39 "quantile" "hospital admissions only" +"1 day ahead inc hosp" "27" 2024-02-05 2024-02-06 0.8 40 "quantile" "hospital admissions only" +"1 day ahead inc hosp" "27" 2024-02-05 2024-02-06 0.85 43 "quantile" "hospital admissions only" +"1 day ahead inc hosp" "27" 2024-02-05 2024-02-06 0.9 46 "quantile" "hospital admissions only" +"1 day ahead inc hosp" "27" 2024-02-05 2024-02-06 0.95 48.15 "quantile" "hospital admissions only" +"1 day ahead inc hosp" "27" 2024-02-05 2024-02-06 0.975 52.525 "quantile" "hospital admissions only" +"1 day ahead inc hosp" "27" 2024-02-05 2024-02-06 0.99 55 "quantile" "hospital admissions only" +"2 day ahead inc hosp" "27" 2024-02-05 2024-02-07 0.01 17.99 "quantile" "hospital admissions only" +"2 day ahead inc hosp" "27" 2024-02-05 2024-02-07 0.025 18 "quantile" "hospital admissions only" +"2 day ahead inc hosp" "27" 2024-02-05 2024-02-07 0.05 19.95 "quantile" "hospital admissions only" +"2 day ahead inc hosp" "27" 2024-02-05 2024-02-07 0.1 24 "quantile" "hospital admissions only" +"2 day ahead inc hosp" "27" 2024-02-05 2024-02-07 0.15 25.85 "quantile" "hospital admissions only" +"2 day ahead inc hosp" "27" 2024-02-05 2024-02-07 0.2 29 "quantile" "hospital admissions only" +"2 day ahead inc hosp" "27" 2024-02-05 2024-02-07 0.25 29.75 "quantile" "hospital admissions only" +"2 day ahead inc hosp" "27" 2024-02-05 2024-02-07 0.3 30.7 "quantile" "hospital admissions only" +"2 day ahead inc hosp" "27" 2024-02-05 2024-02-07 0.35 31.65 "quantile" "hospital admissions only" +"2 day ahead inc hosp" "27" 2024-02-05 2024-02-07 0.4 32 "quantile" "hospital admissions only" +"2 day ahead inc hosp" "27" 2024-02-05 2024-02-07 0.45 34 "quantile" "hospital admissions only" +"2 day ahead inc hosp" "27" 2024-02-05 2024-02-07 0.5 36 "quantile" "hospital admissions only" +"2 day ahead inc hosp" "27" 2024-02-05 2024-02-07 0.55 37 "quantile" "hospital admissions only" +"2 day ahead inc hosp" "27" 2024-02-05 2024-02-07 0.6 38 "quantile" "hospital admissions only" +"2 day ahead inc hosp" "27" 2024-02-05 2024-02-07 0.65 39.35 "quantile" "hospital admissions only" +"2 day ahead inc hosp" "27" 2024-02-05 2024-02-07 0.7 40 "quantile" "hospital admissions only" +"2 day ahead inc hosp" "27" 2024-02-05 2024-02-07 0.75 41 "quantile" "hospital admissions only" +"2 day ahead inc hosp" "27" 2024-02-05 2024-02-07 0.8 42.2 "quantile" "hospital admissions only" +"2 day ahead inc hosp" "27" 2024-02-05 2024-02-07 0.85 44.15 "quantile" "hospital admissions only" +"2 day ahead inc hosp" "27" 2024-02-05 2024-02-07 0.9 46.1 "quantile" "hospital admissions only" +"2 day ahead inc hosp" "27" 2024-02-05 2024-02-07 0.95 49.1 "quantile" "hospital admissions only" +"2 day ahead inc hosp" "27" 2024-02-05 2024-02-07 0.975 58.1 "quantile" "hospital admissions only" +"2 day ahead inc hosp" "27" 2024-02-05 2024-02-07 0.99 63.08 "quantile" "hospital admissions only" +"3 day ahead inc hosp" "27" 2024-02-05 2024-02-08 0.01 12.99 "quantile" "hospital admissions only" +"3 day ahead inc hosp" "27" 2024-02-05 2024-02-08 0.025 16.475 "quantile" "hospital admissions only" +"3 day ahead inc hosp" "27" 2024-02-05 2024-02-08 0.05 17.95 "quantile" "hospital admissions only" +"3 day ahead inc hosp" "27" 2024-02-05 2024-02-08 0.1 20.9 "quantile" "hospital admissions only" +"3 day ahead inc hosp" "27" 2024-02-05 2024-02-08 0.15 22.85 "quantile" "hospital admissions only" +"3 day ahead inc hosp" "27" 2024-02-05 2024-02-08 0.2 25 "quantile" "hospital admissions only" +"3 day ahead inc hosp" "27" 2024-02-05 2024-02-08 0.25 25.75 "quantile" "hospital admissions only" +"3 day ahead inc hosp" "27" 2024-02-05 2024-02-08 0.3 27 "quantile" "hospital admissions only" +"3 day ahead inc hosp" "27" 2024-02-05 2024-02-08 0.35 28 "quantile" "hospital admissions only" +"3 day ahead inc hosp" "27" 2024-02-05 2024-02-08 0.4 29 "quantile" "hospital admissions only" +"3 day ahead inc hosp" "27" 2024-02-05 2024-02-08 0.45 31 "quantile" "hospital admissions only" +"3 day ahead inc hosp" "27" 2024-02-05 2024-02-08 0.5 31 "quantile" "hospital admissions only" +"3 day ahead inc hosp" "27" 2024-02-05 2024-02-08 0.55 32.45 "quantile" "hospital admissions only" +"3 day ahead inc hosp" "27" 2024-02-05 2024-02-08 0.6 34 "quantile" "hospital admissions only" +"3 day ahead inc hosp" "27" 2024-02-05 2024-02-08 0.65 35 "quantile" "hospital admissions only" +"3 day ahead inc hosp" "27" 2024-02-05 2024-02-08 0.7 37 "quantile" "hospital admissions only" +"3 day ahead inc hosp" "27" 2024-02-05 2024-02-08 0.75 38 "quantile" "hospital admissions only" +"3 day ahead inc hosp" "27" 2024-02-05 2024-02-08 0.8 39 "quantile" "hospital admissions only" +"3 day ahead inc hosp" "27" 2024-02-05 2024-02-08 0.85 40.15 "quantile" "hospital admissions only" +"3 day ahead inc hosp" "27" 2024-02-05 2024-02-08 0.9 42 "quantile" "hospital admissions only" +"3 day ahead inc hosp" "27" 2024-02-05 2024-02-08 0.95 46.05 "quantile" "hospital admissions only" +"3 day ahead inc hosp" "27" 2024-02-05 2024-02-08 0.975 49.05 "quantile" "hospital admissions only" +"3 day ahead inc hosp" "27" 2024-02-05 2024-02-08 0.99 51.03 "quantile" "hospital admissions only" +"4 day ahead inc hosp" "27" 2024-02-05 2024-02-09 0.01 13.99 "quantile" "hospital admissions only" +"4 day ahead inc hosp" "27" 2024-02-05 2024-02-09 0.025 14.95 "quantile" "hospital admissions only" +"4 day ahead inc hosp" "27" 2024-02-05 2024-02-09 0.05 17.95 "quantile" "hospital admissions only" +"4 day ahead inc hosp" "27" 2024-02-05 2024-02-09 0.1 19.9 "quantile" "hospital admissions only" +"4 day ahead inc hosp" "27" 2024-02-05 2024-02-09 0.15 21 "quantile" "hospital admissions only" +"4 day ahead inc hosp" "27" 2024-02-05 2024-02-09 0.2 24 "quantile" "hospital admissions only" +"4 day ahead inc hosp" "27" 2024-02-05 2024-02-09 0.25 24.75 "quantile" "hospital admissions only" +"4 day ahead inc hosp" "27" 2024-02-05 2024-02-09 0.3 26 "quantile" "hospital admissions only" +"4 day ahead inc hosp" "27" 2024-02-05 2024-02-09 0.35 28 "quantile" "hospital admissions only" +"4 day ahead inc hosp" "27" 2024-02-05 2024-02-09 0.4 29 "quantile" "hospital admissions only" +"4 day ahead inc hosp" "27" 2024-02-05 2024-02-09 0.45 30 "quantile" "hospital admissions only" +"4 day ahead inc hosp" "27" 2024-02-05 2024-02-09 0.5 30 "quantile" "hospital admissions only" +"4 day ahead inc hosp" "27" 2024-02-05 2024-02-09 0.55 31.45 "quantile" "hospital admissions only" +"4 day ahead inc hosp" "27" 2024-02-05 2024-02-09 0.6 33 "quantile" "hospital admissions only" +"4 day ahead inc hosp" "27" 2024-02-05 2024-02-09 0.65 34 "quantile" "hospital admissions only" +"4 day ahead inc hosp" "27" 2024-02-05 2024-02-09 0.7 35 "quantile" "hospital admissions only" +"4 day ahead inc hosp" "27" 2024-02-05 2024-02-09 0.75 36.25 "quantile" "hospital admissions only" +"4 day ahead inc hosp" "27" 2024-02-05 2024-02-09 0.8 39 "quantile" "hospital admissions only" +"4 day ahead inc hosp" "27" 2024-02-05 2024-02-09 0.85 41 "quantile" "hospital admissions only" +"4 day ahead inc hosp" "27" 2024-02-05 2024-02-09 0.9 44 "quantile" "hospital admissions only" +"4 day ahead inc hosp" "27" 2024-02-05 2024-02-09 0.95 46.05 "quantile" "hospital admissions only" +"4 day ahead inc hosp" "27" 2024-02-05 2024-02-09 0.975 49 "quantile" "hospital admissions only" +"4 day ahead inc hosp" "27" 2024-02-05 2024-02-09 0.99 50.07 "quantile" "hospital admissions only" +"5 day ahead inc hosp" "27" 2024-02-05 2024-02-10 0.01 11.99 "quantile" "hospital admissions only" +"5 day ahead inc hosp" "27" 2024-02-05 2024-02-10 0.025 12.475 "quantile" "hospital admissions only" +"5 day ahead inc hosp" "27" 2024-02-05 2024-02-10 0.05 14.95 "quantile" "hospital admissions only" +"5 day ahead inc hosp" "27" 2024-02-05 2024-02-10 0.1 16.9 "quantile" "hospital admissions only" +"5 day ahead inc hosp" "27" 2024-02-05 2024-02-10 0.15 17 "quantile" "hospital admissions only" +"5 day ahead inc hosp" "27" 2024-02-05 2024-02-10 0.2 18 "quantile" "hospital admissions only" +"5 day ahead inc hosp" "27" 2024-02-05 2024-02-10 0.25 20 "quantile" "hospital admissions only" +"5 day ahead inc hosp" "27" 2024-02-05 2024-02-10 0.3 20.7 "quantile" "hospital admissions only" +"5 day ahead inc hosp" "27" 2024-02-05 2024-02-10 0.35 21 "quantile" "hospital admissions only" +"5 day ahead inc hosp" "27" 2024-02-05 2024-02-10 0.4 23 "quantile" "hospital admissions only" +"5 day ahead inc hosp" "27" 2024-02-05 2024-02-10 0.45 24.55 "quantile" "hospital admissions only" +"5 day ahead inc hosp" "27" 2024-02-05 2024-02-10 0.5 25.5 "quantile" "hospital admissions only" +"5 day ahead inc hosp" "27" 2024-02-05 2024-02-10 0.55 27 "quantile" "hospital admissions only" +"5 day ahead inc hosp" "27" 2024-02-05 2024-02-10 0.6 28.4 "quantile" "hospital admissions only" +"5 day ahead inc hosp" "27" 2024-02-05 2024-02-10 0.65 29 "quantile" "hospital admissions only" +"5 day ahead inc hosp" "27" 2024-02-05 2024-02-10 0.7 30 "quantile" "hospital admissions only" +"5 day ahead inc hosp" "27" 2024-02-05 2024-02-10 0.75 31 "quantile" "hospital admissions only" +"5 day ahead inc hosp" "27" 2024-02-05 2024-02-10 0.8 33 "quantile" "hospital admissions only" +"5 day ahead inc hosp" "27" 2024-02-05 2024-02-10 0.85 35 "quantile" "hospital admissions only" +"5 day ahead inc hosp" "27" 2024-02-05 2024-02-10 0.9 37.2 "quantile" "hospital admissions only" +"5 day ahead inc hosp" "27" 2024-02-05 2024-02-10 0.95 42 "quantile" "hospital admissions only" +"5 day ahead inc hosp" "27" 2024-02-05 2024-02-10 0.975 43 "quantile" "hospital admissions only" +"5 day ahead inc hosp" "27" 2024-02-05 2024-02-10 0.99 51.07 "quantile" "hospital admissions only" +"6 day ahead inc hosp" "27" 2024-02-05 2024-02-11 0.01 11.97 "quantile" "hospital admissions only" +"6 day ahead inc hosp" "27" 2024-02-05 2024-02-11 0.025 12 "quantile" "hospital admissions only" +"6 day ahead inc hosp" "27" 2024-02-05 2024-02-11 0.05 13 "quantile" "hospital admissions only" +"6 day ahead inc hosp" "27" 2024-02-05 2024-02-11 0.1 15 "quantile" "hospital admissions only" +"6 day ahead inc hosp" "27" 2024-02-05 2024-02-11 0.15 18 "quantile" "hospital admissions only" +"6 day ahead inc hosp" "27" 2024-02-05 2024-02-11 0.2 19 "quantile" "hospital admissions only" +"6 day ahead inc hosp" "27" 2024-02-05 2024-02-11 0.25 21 "quantile" "hospital admissions only" +"6 day ahead inc hosp" "27" 2024-02-05 2024-02-11 0.3 21 "quantile" "hospital admissions only" +"6 day ahead inc hosp" "27" 2024-02-05 2024-02-11 0.35 23 "quantile" "hospital admissions only" +"6 day ahead inc hosp" "27" 2024-02-05 2024-02-11 0.4 24 "quantile" "hospital admissions only" +"6 day ahead inc hosp" "27" 2024-02-05 2024-02-11 0.45 25.55 "quantile" "hospital admissions only" +"6 day ahead inc hosp" "27" 2024-02-05 2024-02-11 0.5 27 "quantile" "hospital admissions only" +"6 day ahead inc hosp" "27" 2024-02-05 2024-02-11 0.55 27 "quantile" "hospital admissions only" +"6 day ahead inc hosp" "27" 2024-02-05 2024-02-11 0.6 29 "quantile" "hospital admissions only" +"6 day ahead inc hosp" "27" 2024-02-05 2024-02-11 0.65 29.35 "quantile" "hospital admissions only" +"6 day ahead inc hosp" "27" 2024-02-05 2024-02-11 0.7 31 "quantile" "hospital admissions only" +"6 day ahead inc hosp" "27" 2024-02-05 2024-02-11 0.75 32 "quantile" "hospital admissions only" +"6 day ahead inc hosp" "27" 2024-02-05 2024-02-11 0.8 34.2 "quantile" "hospital admissions only" +"6 day ahead inc hosp" "27" 2024-02-05 2024-02-11 0.85 37.15 "quantile" "hospital admissions only" +"6 day ahead inc hosp" "27" 2024-02-05 2024-02-11 0.9 40.1 "quantile" "hospital admissions only" +"6 day ahead inc hosp" "27" 2024-02-05 2024-02-11 0.95 44 "quantile" "hospital admissions only" +"6 day ahead inc hosp" "27" 2024-02-05 2024-02-11 0.975 45.05 "quantile" "hospital admissions only" +"6 day ahead inc hosp" "27" 2024-02-05 2024-02-11 0.99 47.1200000000001 "quantile" "hospital admissions only" +"7 day ahead inc hosp" "27" 2024-02-05 2024-02-12 0.01 9.98 "quantile" "hospital admissions only" +"7 day ahead inc hosp" "27" 2024-02-05 2024-02-12 0.025 12 "quantile" "hospital admissions only" +"7 day ahead inc hosp" "27" 2024-02-05 2024-02-12 0.05 13.95 "quantile" "hospital admissions only" +"7 day ahead inc hosp" "27" 2024-02-05 2024-02-12 0.1 16 "quantile" "hospital admissions only" +"7 day ahead inc hosp" "27" 2024-02-05 2024-02-12 0.15 19 "quantile" "hospital admissions only" +"7 day ahead inc hosp" "27" 2024-02-05 2024-02-12 0.2 21.8 "quantile" "hospital admissions only" +"7 day ahead inc hosp" "27" 2024-02-05 2024-02-12 0.25 23 "quantile" "hospital admissions only" +"7 day ahead inc hosp" "27" 2024-02-05 2024-02-12 0.3 24 "quantile" "hospital admissions only" +"7 day ahead inc hosp" "27" 2024-02-05 2024-02-12 0.35 25.65 "quantile" "hospital admissions only" +"7 day ahead inc hosp" "27" 2024-02-05 2024-02-12 0.4 27 "quantile" "hospital admissions only" +"7 day ahead inc hosp" "27" 2024-02-05 2024-02-12 0.45 28 "quantile" "hospital admissions only" +"7 day ahead inc hosp" "27" 2024-02-05 2024-02-12 0.5 29 "quantile" "hospital admissions only" +"7 day ahead inc hosp" "27" 2024-02-05 2024-02-12 0.55 30 "quantile" "hospital admissions only" +"7 day ahead inc hosp" "27" 2024-02-05 2024-02-12 0.6 31 "quantile" "hospital admissions only" +"7 day ahead inc hosp" "27" 2024-02-05 2024-02-12 0.65 32.35 "quantile" "hospital admissions only" +"7 day ahead inc hosp" "27" 2024-02-05 2024-02-12 0.7 33.3 "quantile" "hospital admissions only" +"7 day ahead inc hosp" "27" 2024-02-05 2024-02-12 0.75 36 "quantile" "hospital admissions only" +"7 day ahead inc hosp" "27" 2024-02-05 2024-02-12 0.8 39 "quantile" "hospital admissions only" +"7 day ahead inc hosp" "27" 2024-02-05 2024-02-12 0.85 41.15 "quantile" "hospital admissions only" +"7 day ahead inc hosp" "27" 2024-02-05 2024-02-12 0.9 43 "quantile" "hospital admissions only" +"7 day ahead inc hosp" "27" 2024-02-05 2024-02-12 0.95 47.1 "quantile" "hospital admissions only" +"7 day ahead inc hosp" "27" 2024-02-05 2024-02-12 0.975 50.525 "quantile" "hospital admissions only" +"7 day ahead inc hosp" "27" 2024-02-05 2024-02-12 0.99 55.1600000000001 "quantile" "hospital admissions only" +"8 day ahead inc hosp" "27" 2024-02-05 2024-02-13 0.01 7.96 "quantile" "hospital admissions only" +"8 day ahead inc hosp" "27" 2024-02-05 2024-02-13 0.025 14.475 "quantile" "hospital admissions only" +"8 day ahead inc hosp" "27" 2024-02-05 2024-02-13 0.05 15.95 "quantile" "hospital admissions only" +"8 day ahead inc hosp" "27" 2024-02-05 2024-02-13 0.1 17.9 "quantile" "hospital admissions only" +"8 day ahead inc hosp" "27" 2024-02-05 2024-02-13 0.15 20 "quantile" "hospital admissions only" +"8 day ahead inc hosp" "27" 2024-02-05 2024-02-13 0.2 21 "quantile" "hospital admissions only" +"8 day ahead inc hosp" "27" 2024-02-05 2024-02-13 0.25 23 "quantile" "hospital admissions only" +"8 day ahead inc hosp" "27" 2024-02-05 2024-02-13 0.3 24 "quantile" "hospital admissions only" +"8 day ahead inc hosp" "27" 2024-02-05 2024-02-13 0.35 25 "quantile" "hospital admissions only" +"8 day ahead inc hosp" "27" 2024-02-05 2024-02-13 0.4 26 "quantile" "hospital admissions only" +"8 day ahead inc hosp" "27" 2024-02-05 2024-02-13 0.45 27 "quantile" "hospital admissions only" +"8 day ahead inc hosp" "27" 2024-02-05 2024-02-13 0.5 28.5 "quantile" "hospital admissions only" +"8 day ahead inc hosp" "27" 2024-02-05 2024-02-13 0.55 30 "quantile" "hospital admissions only" +"8 day ahead inc hosp" "27" 2024-02-05 2024-02-13 0.6 31.4 "quantile" "hospital admissions only" +"8 day ahead inc hosp" "27" 2024-02-05 2024-02-13 0.65 33 "quantile" "hospital admissions only" +"8 day ahead inc hosp" "27" 2024-02-05 2024-02-13 0.7 34 "quantile" "hospital admissions only" +"8 day ahead inc hosp" "27" 2024-02-05 2024-02-13 0.75 35 "quantile" "hospital admissions only" +"8 day ahead inc hosp" "27" 2024-02-05 2024-02-13 0.8 37.2 "quantile" "hospital admissions only" +"8 day ahead inc hosp" "27" 2024-02-05 2024-02-13 0.85 39.15 "quantile" "hospital admissions only" +"8 day ahead inc hosp" "27" 2024-02-05 2024-02-13 0.9 41.1 "quantile" "hospital admissions only" +"8 day ahead inc hosp" "27" 2024-02-05 2024-02-13 0.95 44 "quantile" "hospital admissions only" +"8 day ahead inc hosp" "27" 2024-02-05 2024-02-13 0.975 48.625 "quantile" "hospital admissions only" +"8 day ahead inc hosp" "27" 2024-02-05 2024-02-13 0.99 51.07 "quantile" "hospital admissions only" +"9 day ahead inc hosp" "27" 2024-02-05 2024-02-14 0.01 13 "quantile" "hospital admissions only" +"9 day ahead inc hosp" "27" 2024-02-05 2024-02-14 0.025 14.475 "quantile" "hospital admissions only" +"9 day ahead inc hosp" "27" 2024-02-05 2024-02-14 0.05 16 "quantile" "hospital admissions only" +"9 day ahead inc hosp" "27" 2024-02-05 2024-02-14 0.1 17 "quantile" "hospital admissions only" +"9 day ahead inc hosp" "27" 2024-02-05 2024-02-14 0.15 18.85 "quantile" "hospital admissions only" +"9 day ahead inc hosp" "27" 2024-02-05 2024-02-14 0.2 22 "quantile" "hospital admissions only" +"9 day ahead inc hosp" "27" 2024-02-05 2024-02-14 0.25 23 "quantile" "hospital admissions only" +"9 day ahead inc hosp" "27" 2024-02-05 2024-02-14 0.3 24.7 "quantile" "hospital admissions only" +"9 day ahead inc hosp" "27" 2024-02-05 2024-02-14 0.35 26.65 "quantile" "hospital admissions only" +"9 day ahead inc hosp" "27" 2024-02-05 2024-02-14 0.4 28.6 "quantile" "hospital admissions only" +"9 day ahead inc hosp" "27" 2024-02-05 2024-02-14 0.45 29 "quantile" "hospital admissions only" +"9 day ahead inc hosp" "27" 2024-02-05 2024-02-14 0.5 31 "quantile" "hospital admissions only" +"9 day ahead inc hosp" "27" 2024-02-05 2024-02-14 0.55 32 "quantile" "hospital admissions only" +"9 day ahead inc hosp" "27" 2024-02-05 2024-02-14 0.6 33 "quantile" "hospital admissions only" +"9 day ahead inc hosp" "27" 2024-02-05 2024-02-14 0.65 34 "quantile" "hospital admissions only" +"9 day ahead inc hosp" "27" 2024-02-05 2024-02-14 0.7 35 "quantile" "hospital admissions only" +"9 day ahead inc hosp" "27" 2024-02-05 2024-02-14 0.75 36 "quantile" "hospital admissions only" +"9 day ahead inc hosp" "27" 2024-02-05 2024-02-14 0.8 37 "quantile" "hospital admissions only" +"9 day ahead inc hosp" "27" 2024-02-05 2024-02-14 0.85 39 "quantile" "hospital admissions only" +"9 day ahead inc hosp" "27" 2024-02-05 2024-02-14 0.9 42.2 "quantile" "hospital admissions only" +"9 day ahead inc hosp" "27" 2024-02-05 2024-02-14 0.95 49.15 "quantile" "hospital admissions only" +"9 day ahead inc hosp" "27" 2024-02-05 2024-02-14 0.975 54.1 "quantile" "hospital admissions only" +"9 day ahead inc hosp" "27" 2024-02-05 2024-02-14 0.99 60.02 "quantile" "hospital admissions only" +"10 day ahead inc hosp" "27" 2024-02-05 2024-02-15 0.01 9.99 "quantile" "hospital admissions only" +"10 day ahead inc hosp" "27" 2024-02-05 2024-02-15 0.025 10.95 "quantile" "hospital admissions only" +"10 day ahead inc hosp" "27" 2024-02-05 2024-02-15 0.05 13 "quantile" "hospital admissions only" +"10 day ahead inc hosp" "27" 2024-02-05 2024-02-15 0.1 16 "quantile" "hospital admissions only" +"10 day ahead inc hosp" "27" 2024-02-05 2024-02-15 0.15 18 "quantile" "hospital admissions only" +"10 day ahead inc hosp" "27" 2024-02-05 2024-02-15 0.2 18 "quantile" "hospital admissions only" +"10 day ahead inc hosp" "27" 2024-02-05 2024-02-15 0.25 19 "quantile" "hospital admissions only" +"10 day ahead inc hosp" "27" 2024-02-05 2024-02-15 0.3 20.7 "quantile" "hospital admissions only" +"10 day ahead inc hosp" "27" 2024-02-05 2024-02-15 0.35 22 "quantile" "hospital admissions only" +"10 day ahead inc hosp" "27" 2024-02-05 2024-02-15 0.4 25.6 "quantile" "hospital admissions only" +"10 day ahead inc hosp" "27" 2024-02-05 2024-02-15 0.45 26 "quantile" "hospital admissions only" +"10 day ahead inc hosp" "27" 2024-02-05 2024-02-15 0.5 27 "quantile" "hospital admissions only" +"10 day ahead inc hosp" "27" 2024-02-05 2024-02-15 0.55 28.45 "quantile" "hospital admissions only" +"10 day ahead inc hosp" "27" 2024-02-05 2024-02-15 0.6 30.4 "quantile" "hospital admissions only" +"10 day ahead inc hosp" "27" 2024-02-05 2024-02-15 0.65 32.35 "quantile" "hospital admissions only" +"10 day ahead inc hosp" "27" 2024-02-05 2024-02-15 0.7 33 "quantile" "hospital admissions only" +"10 day ahead inc hosp" "27" 2024-02-05 2024-02-15 0.75 35 "quantile" "hospital admissions only" +"10 day ahead inc hosp" "27" 2024-02-05 2024-02-15 0.8 38 "quantile" "hospital admissions only" +"10 day ahead inc hosp" "27" 2024-02-05 2024-02-15 0.85 39.15 "quantile" "hospital admissions only" +"10 day ahead inc hosp" "27" 2024-02-05 2024-02-15 0.9 43 "quantile" "hospital admissions only" +"10 day ahead inc hosp" "27" 2024-02-05 2024-02-15 0.95 47.1 "quantile" "hospital admissions only" +"10 day ahead inc hosp" "27" 2024-02-05 2024-02-15 0.975 52 "quantile" "hospital admissions only" +"10 day ahead inc hosp" "27" 2024-02-05 2024-02-15 0.99 55.1300000000001 "quantile" "hospital admissions only" +"11 day ahead inc hosp" "27" 2024-02-05 2024-02-16 0.01 7.98 "quantile" "hospital admissions only" +"11 day ahead inc hosp" "27" 2024-02-05 2024-02-16 0.025 8.95 "quantile" "hospital admissions only" +"11 day ahead inc hosp" "27" 2024-02-05 2024-02-16 0.05 11 "quantile" "hospital admissions only" +"11 day ahead inc hosp" "27" 2024-02-05 2024-02-16 0.1 14.9 "quantile" "hospital admissions only" +"11 day ahead inc hosp" "27" 2024-02-05 2024-02-16 0.15 16 "quantile" "hospital admissions only" +"11 day ahead inc hosp" "27" 2024-02-05 2024-02-16 0.2 17.8 "quantile" "hospital admissions only" +"11 day ahead inc hosp" "27" 2024-02-05 2024-02-16 0.25 18 "quantile" "hospital admissions only" +"11 day ahead inc hosp" "27" 2024-02-05 2024-02-16 0.3 19 "quantile" "hospital admissions only" +"11 day ahead inc hosp" "27" 2024-02-05 2024-02-16 0.35 20.65 "quantile" "hospital admissions only" +"11 day ahead inc hosp" "27" 2024-02-05 2024-02-16 0.4 22.2 "quantile" "hospital admissions only" +"11 day ahead inc hosp" "27" 2024-02-05 2024-02-16 0.45 25 "quantile" "hospital admissions only" +"11 day ahead inc hosp" "27" 2024-02-05 2024-02-16 0.5 26 "quantile" "hospital admissions only" +"11 day ahead inc hosp" "27" 2024-02-05 2024-02-16 0.55 27 "quantile" "hospital admissions only" +"11 day ahead inc hosp" "27" 2024-02-05 2024-02-16 0.6 29.4 "quantile" "hospital admissions only" +"11 day ahead inc hosp" "27" 2024-02-05 2024-02-16 0.65 30 "quantile" "hospital admissions only" +"11 day ahead inc hosp" "27" 2024-02-05 2024-02-16 0.7 32 "quantile" "hospital admissions only" +"11 day ahead inc hosp" "27" 2024-02-05 2024-02-16 0.75 32.25 "quantile" "hospital admissions only" +"11 day ahead inc hosp" "27" 2024-02-05 2024-02-16 0.8 35 "quantile" "hospital admissions only" +"11 day ahead inc hosp" "27" 2024-02-05 2024-02-16 0.85 40 "quantile" "hospital admissions only" +"11 day ahead inc hosp" "27" 2024-02-05 2024-02-16 0.9 41.1 "quantile" "hospital admissions only" +"11 day ahead inc hosp" "27" 2024-02-05 2024-02-16 0.95 46.05 "quantile" "hospital admissions only" +"11 day ahead inc hosp" "27" 2024-02-05 2024-02-16 0.975 51.05 "quantile" "hospital admissions only" +"11 day ahead inc hosp" "27" 2024-02-05 2024-02-16 0.99 53.06 "quantile" "hospital admissions only" +"12 day ahead inc hosp" "27" 2024-02-05 2024-02-17 0.01 7.98 "quantile" "hospital admissions only" +"12 day ahead inc hosp" "27" 2024-02-05 2024-02-17 0.025 9 "quantile" "hospital admissions only" +"12 day ahead inc hosp" "27" 2024-02-05 2024-02-17 0.05 10 "quantile" "hospital admissions only" +"12 day ahead inc hosp" "27" 2024-02-05 2024-02-17 0.1 12 "quantile" "hospital admissions only" +"12 day ahead inc hosp" "27" 2024-02-05 2024-02-17 0.15 15 "quantile" "hospital admissions only" +"12 day ahead inc hosp" "27" 2024-02-05 2024-02-17 0.2 16 "quantile" "hospital admissions only" +"12 day ahead inc hosp" "27" 2024-02-05 2024-02-17 0.25 17 "quantile" "hospital admissions only" +"12 day ahead inc hosp" "27" 2024-02-05 2024-02-17 0.3 18 "quantile" "hospital admissions only" +"12 day ahead inc hosp" "27" 2024-02-05 2024-02-17 0.35 20 "quantile" "hospital admissions only" +"12 day ahead inc hosp" "27" 2024-02-05 2024-02-17 0.4 20 "quantile" "hospital admissions only" +"12 day ahead inc hosp" "27" 2024-02-05 2024-02-17 0.45 21.55 "quantile" "hospital admissions only" +"12 day ahead inc hosp" "27" 2024-02-05 2024-02-17 0.5 23 "quantile" "hospital admissions only" +"12 day ahead inc hosp" "27" 2024-02-05 2024-02-17 0.55 24 "quantile" "hospital admissions only" +"12 day ahead inc hosp" "27" 2024-02-05 2024-02-17 0.6 25.4 "quantile" "hospital admissions only" +"12 day ahead inc hosp" "27" 2024-02-05 2024-02-17 0.65 28 "quantile" "hospital admissions only" +"12 day ahead inc hosp" "27" 2024-02-05 2024-02-17 0.7 29 "quantile" "hospital admissions only" +"12 day ahead inc hosp" "27" 2024-02-05 2024-02-17 0.75 30 "quantile" "hospital admissions only" +"12 day ahead inc hosp" "27" 2024-02-05 2024-02-17 0.8 32 "quantile" "hospital admissions only" +"12 day ahead inc hosp" "27" 2024-02-05 2024-02-17 0.85 34.15 "quantile" "hospital admissions only" +"12 day ahead inc hosp" "27" 2024-02-05 2024-02-17 0.9 39.1 "quantile" "hospital admissions only" +"12 day ahead inc hosp" "27" 2024-02-05 2024-02-17 0.95 43.1 "quantile" "hospital admissions only" +"12 day ahead inc hosp" "27" 2024-02-05 2024-02-17 0.975 49.525 "quantile" "hospital admissions only" +"12 day ahead inc hosp" "27" 2024-02-05 2024-02-17 0.99 51.03 "quantile" "hospital admissions only" +"13 day ahead inc hosp" "27" 2024-02-05 2024-02-18 0.01 7.97 "quantile" "hospital admissions only" +"13 day ahead inc hosp" "27" 2024-02-05 2024-02-18 0.025 8 "quantile" "hospital admissions only" +"13 day ahead inc hosp" "27" 2024-02-05 2024-02-18 0.05 9 "quantile" "hospital admissions only" +"13 day ahead inc hosp" "27" 2024-02-05 2024-02-18 0.1 10 "quantile" "hospital admissions only" +"13 day ahead inc hosp" "27" 2024-02-05 2024-02-18 0.15 12.85 "quantile" "hospital admissions only" +"13 day ahead inc hosp" "27" 2024-02-05 2024-02-18 0.2 14.8 "quantile" "hospital admissions only" +"13 day ahead inc hosp" "27" 2024-02-05 2024-02-18 0.25 16 "quantile" "hospital admissions only" +"13 day ahead inc hosp" "27" 2024-02-05 2024-02-18 0.3 18 "quantile" "hospital admissions only" +"13 day ahead inc hosp" "27" 2024-02-05 2024-02-18 0.35 18 "quantile" "hospital admissions only" +"13 day ahead inc hosp" "27" 2024-02-05 2024-02-18 0.4 19.6 "quantile" "hospital admissions only" +"13 day ahead inc hosp" "27" 2024-02-05 2024-02-18 0.45 21 "quantile" "hospital admissions only" +"13 day ahead inc hosp" "27" 2024-02-05 2024-02-18 0.5 22 "quantile" "hospital admissions only" +"13 day ahead inc hosp" "27" 2024-02-05 2024-02-18 0.55 23 "quantile" "hospital admissions only" +"13 day ahead inc hosp" "27" 2024-02-05 2024-02-18 0.6 24.4 "quantile" "hospital admissions only" +"13 day ahead inc hosp" "27" 2024-02-05 2024-02-18 0.65 26 "quantile" "hospital admissions only" +"13 day ahead inc hosp" "27" 2024-02-05 2024-02-18 0.7 29 "quantile" "hospital admissions only" +"13 day ahead inc hosp" "27" 2024-02-05 2024-02-18 0.75 30.25 "quantile" "hospital admissions only" +"13 day ahead inc hosp" "27" 2024-02-05 2024-02-18 0.8 32 "quantile" "hospital admissions only" +"13 day ahead inc hosp" "27" 2024-02-05 2024-02-18 0.85 32.15 "quantile" "hospital admissions only" +"13 day ahead inc hosp" "27" 2024-02-05 2024-02-18 0.9 34.1 "quantile" "hospital admissions only" +"13 day ahead inc hosp" "27" 2024-02-05 2024-02-18 0.95 38.05 "quantile" "hospital admissions only" +"13 day ahead inc hosp" "27" 2024-02-05 2024-02-18 0.975 40 "quantile" "hospital admissions only" +"13 day ahead inc hosp" "27" 2024-02-05 2024-02-18 0.99 41.2300000000001 "quantile" "hospital admissions only" +"14 day ahead inc hosp" "27" 2024-02-05 2024-02-19 0.01 7 "quantile" "hospital admissions only" +"14 day ahead inc hosp" "27" 2024-02-05 2024-02-19 0.025 8.95 "quantile" "hospital admissions only" +"14 day ahead inc hosp" "27" 2024-02-05 2024-02-19 0.05 11 "quantile" "hospital admissions only" +"14 day ahead inc hosp" "27" 2024-02-05 2024-02-19 0.1 13 "quantile" "hospital admissions only" +"14 day ahead inc hosp" "27" 2024-02-05 2024-02-19 0.15 16.85 "quantile" "hospital admissions only" +"14 day ahead inc hosp" "27" 2024-02-05 2024-02-19 0.2 17.8 "quantile" "hospital admissions only" +"14 day ahead inc hosp" "27" 2024-02-05 2024-02-19 0.25 19.75 "quantile" "hospital admissions only" +"14 day ahead inc hosp" "27" 2024-02-05 2024-02-19 0.3 21 "quantile" "hospital admissions only" +"14 day ahead inc hosp" "27" 2024-02-05 2024-02-19 0.35 22.65 "quantile" "hospital admissions only" +"14 day ahead inc hosp" "27" 2024-02-05 2024-02-19 0.4 23.6 "quantile" "hospital admissions only" +"14 day ahead inc hosp" "27" 2024-02-05 2024-02-19 0.45 24 "quantile" "hospital admissions only" +"14 day ahead inc hosp" "27" 2024-02-05 2024-02-19 0.5 25.5 "quantile" "hospital admissions only" +"14 day ahead inc hosp" "27" 2024-02-05 2024-02-19 0.55 26.45 "quantile" "hospital admissions only" +"14 day ahead inc hosp" "27" 2024-02-05 2024-02-19 0.6 27.4 "quantile" "hospital admissions only" +"14 day ahead inc hosp" "27" 2024-02-05 2024-02-19 0.65 28.35 "quantile" "hospital admissions only" +"14 day ahead inc hosp" "27" 2024-02-05 2024-02-19 0.7 30.3 "quantile" "hospital admissions only" +"14 day ahead inc hosp" "27" 2024-02-05 2024-02-19 0.75 33 "quantile" "hospital admissions only" +"14 day ahead inc hosp" "27" 2024-02-05 2024-02-19 0.8 35 "quantile" "hospital admissions only" +"14 day ahead inc hosp" "27" 2024-02-05 2024-02-19 0.85 39.15 "quantile" "hospital admissions only" +"14 day ahead inc hosp" "27" 2024-02-05 2024-02-19 0.9 42.3 "quantile" "hospital admissions only" +"14 day ahead inc hosp" "27" 2024-02-05 2024-02-19 0.95 46.05 "quantile" "hospital admissions only" +"14 day ahead inc hosp" "27" 2024-02-05 2024-02-19 0.975 51.625 "quantile" "hospital admissions only" +"14 day ahead inc hosp" "27" 2024-02-05 2024-02-19 0.99 55.1400000000001 "quantile" "hospital admissions only" +"15 day ahead inc hosp" "27" 2024-02-05 2024-02-20 0.01 7 "quantile" "hospital admissions only" +"15 day ahead inc hosp" "27" 2024-02-05 2024-02-20 0.025 8 "quantile" "hospital admissions only" +"15 day ahead inc hosp" "27" 2024-02-05 2024-02-20 0.05 9 "quantile" "hospital admissions only" +"15 day ahead inc hosp" "27" 2024-02-05 2024-02-20 0.1 14.9 "quantile" "hospital admissions only" +"15 day ahead inc hosp" "27" 2024-02-05 2024-02-20 0.15 16 "quantile" "hospital admissions only" +"15 day ahead inc hosp" "27" 2024-02-05 2024-02-20 0.2 17 "quantile" "hospital admissions only" +"15 day ahead inc hosp" "27" 2024-02-05 2024-02-20 0.25 18.75 "quantile" "hospital admissions only" +"15 day ahead inc hosp" "27" 2024-02-05 2024-02-20 0.3 20.7 "quantile" "hospital admissions only" +"15 day ahead inc hosp" "27" 2024-02-05 2024-02-20 0.35 22.65 "quantile" "hospital admissions only" +"15 day ahead inc hosp" "27" 2024-02-05 2024-02-20 0.4 23 "quantile" "hospital admissions only" +"15 day ahead inc hosp" "27" 2024-02-05 2024-02-20 0.45 24 "quantile" "hospital admissions only" +"15 day ahead inc hosp" "27" 2024-02-05 2024-02-20 0.5 25.5 "quantile" "hospital admissions only" +"15 day ahead inc hosp" "27" 2024-02-05 2024-02-20 0.55 27 "quantile" "hospital admissions only" +"15 day ahead inc hosp" "27" 2024-02-05 2024-02-20 0.6 28 "quantile" "hospital admissions only" +"15 day ahead inc hosp" "27" 2024-02-05 2024-02-20 0.65 29.35 "quantile" "hospital admissions only" +"15 day ahead inc hosp" "27" 2024-02-05 2024-02-20 0.7 32 "quantile" "hospital admissions only" +"15 day ahead inc hosp" "27" 2024-02-05 2024-02-20 0.75 34.5 "quantile" "hospital admissions only" +"15 day ahead inc hosp" "27" 2024-02-05 2024-02-20 0.8 37.2 "quantile" "hospital admissions only" +"15 day ahead inc hosp" "27" 2024-02-05 2024-02-20 0.85 39.15 "quantile" "hospital admissions only" +"15 day ahead inc hosp" "27" 2024-02-05 2024-02-20 0.9 43.2 "quantile" "hospital admissions only" +"15 day ahead inc hosp" "27" 2024-02-05 2024-02-20 0.95 51.05 "quantile" "hospital admissions only" +"15 day ahead inc hosp" "27" 2024-02-05 2024-02-20 0.975 56.575 "quantile" "hospital admissions only" +"15 day ahead inc hosp" "27" 2024-02-05 2024-02-20 0.99 59.07 "quantile" "hospital admissions only" +"16 day ahead inc hosp" "27" 2024-02-05 2024-02-21 0.01 6.99 "quantile" "hospital admissions only" +"16 day ahead inc hosp" "27" 2024-02-05 2024-02-21 0.025 10.475 "quantile" "hospital admissions only" +"16 day ahead inc hosp" "27" 2024-02-05 2024-02-21 0.05 11 "quantile" "hospital admissions only" +"16 day ahead inc hosp" "27" 2024-02-05 2024-02-21 0.1 13.9 "quantile" "hospital admissions only" +"16 day ahead inc hosp" "27" 2024-02-05 2024-02-21 0.15 15 "quantile" "hospital admissions only" +"16 day ahead inc hosp" "27" 2024-02-05 2024-02-21 0.2 17 "quantile" "hospital admissions only" +"16 day ahead inc hosp" "27" 2024-02-05 2024-02-21 0.25 19.75 "quantile" "hospital admissions only" +"16 day ahead inc hosp" "27" 2024-02-05 2024-02-21 0.3 22 "quantile" "hospital admissions only" +"16 day ahead inc hosp" "27" 2024-02-05 2024-02-21 0.35 23.65 "quantile" "hospital admissions only" +"16 day ahead inc hosp" "27" 2024-02-05 2024-02-21 0.4 25 "quantile" "hospital admissions only" +"16 day ahead inc hosp" "27" 2024-02-05 2024-02-21 0.45 25.55 "quantile" "hospital admissions only" +"16 day ahead inc hosp" "27" 2024-02-05 2024-02-21 0.5 27 "quantile" "hospital admissions only" +"16 day ahead inc hosp" "27" 2024-02-05 2024-02-21 0.55 28 "quantile" "hospital admissions only" +"16 day ahead inc hosp" "27" 2024-02-05 2024-02-21 0.6 29 "quantile" "hospital admissions only" +"16 day ahead inc hosp" "27" 2024-02-05 2024-02-21 0.65 31 "quantile" "hospital admissions only" +"16 day ahead inc hosp" "27" 2024-02-05 2024-02-21 0.7 33 "quantile" "hospital admissions only" +"16 day ahead inc hosp" "27" 2024-02-05 2024-02-21 0.75 34.25 "quantile" "hospital admissions only" +"16 day ahead inc hosp" "27" 2024-02-05 2024-02-21 0.8 37 "quantile" "hospital admissions only" +"16 day ahead inc hosp" "27" 2024-02-05 2024-02-21 0.85 40 "quantile" "hospital admissions only" +"16 day ahead inc hosp" "27" 2024-02-05 2024-02-21 0.9 45 "quantile" "hospital admissions only" +"16 day ahead inc hosp" "27" 2024-02-05 2024-02-21 0.95 48.15 "quantile" "hospital admissions only" +"16 day ahead inc hosp" "27" 2024-02-05 2024-02-21 0.975 54.1 "quantile" "hospital admissions only" +"16 day ahead inc hosp" "27" 2024-02-05 2024-02-21 0.99 65.2300000000001 "quantile" "hospital admissions only" +"17 day ahead inc hosp" "27" 2024-02-05 2024-02-22 0.01 4.98 "quantile" "hospital admissions only" +"17 day ahead inc hosp" "27" 2024-02-05 2024-02-22 0.025 6.475 "quantile" "hospital admissions only" +"17 day ahead inc hosp" "27" 2024-02-05 2024-02-22 0.05 8.95 "quantile" "hospital admissions only" +"17 day ahead inc hosp" "27" 2024-02-05 2024-02-22 0.1 13 "quantile" "hospital admissions only" +"17 day ahead inc hosp" "27" 2024-02-05 2024-02-22 0.15 15 "quantile" "hospital admissions only" +"17 day ahead inc hosp" "27" 2024-02-05 2024-02-22 0.2 16 "quantile" "hospital admissions only" +"17 day ahead inc hosp" "27" 2024-02-05 2024-02-22 0.25 17.75 "quantile" "hospital admissions only" +"17 day ahead inc hosp" "27" 2024-02-05 2024-02-22 0.3 19 "quantile" "hospital admissions only" +"17 day ahead inc hosp" "27" 2024-02-05 2024-02-22 0.35 21 "quantile" "hospital admissions only" +"17 day ahead inc hosp" "27" 2024-02-05 2024-02-22 0.4 22 "quantile" "hospital admissions only" +"17 day ahead inc hosp" "27" 2024-02-05 2024-02-22 0.45 24 "quantile" "hospital admissions only" +"17 day ahead inc hosp" "27" 2024-02-05 2024-02-22 0.5 24 "quantile" "hospital admissions only" +"17 day ahead inc hosp" "27" 2024-02-05 2024-02-22 0.55 25 "quantile" "hospital admissions only" +"17 day ahead inc hosp" "27" 2024-02-05 2024-02-22 0.6 28 "quantile" "hospital admissions only" +"17 day ahead inc hosp" "27" 2024-02-05 2024-02-22 0.65 29.35 "quantile" "hospital admissions only" +"17 day ahead inc hosp" "27" 2024-02-05 2024-02-22 0.7 31 "quantile" "hospital admissions only" +"17 day ahead inc hosp" "27" 2024-02-05 2024-02-22 0.75 32.5 "quantile" "hospital admissions only" +"17 day ahead inc hosp" "27" 2024-02-05 2024-02-22 0.8 35 "quantile" "hospital admissions only" +"17 day ahead inc hosp" "27" 2024-02-05 2024-02-22 0.85 38 "quantile" "hospital admissions only" +"17 day ahead inc hosp" "27" 2024-02-05 2024-02-22 0.9 43.1 "quantile" "hospital admissions only" +"17 day ahead inc hosp" "27" 2024-02-05 2024-02-22 0.95 49 "quantile" "hospital admissions only" +"17 day ahead inc hosp" "27" 2024-02-05 2024-02-22 0.975 49.525 "quantile" "hospital admissions only" +"17 day ahead inc hosp" "27" 2024-02-05 2024-02-22 0.99 51.2900000000001 "quantile" "hospital admissions only" +"18 day ahead inc hosp" "27" 2024-02-05 2024-02-23 0.01 4 "quantile" "hospital admissions only" +"18 day ahead inc hosp" "27" 2024-02-05 2024-02-23 0.025 6.425 "quantile" "hospital admissions only" +"18 day ahead inc hosp" "27" 2024-02-05 2024-02-23 0.05 8.95 "quantile" "hospital admissions only" +"18 day ahead inc hosp" "27" 2024-02-05 2024-02-23 0.1 11 "quantile" "hospital admissions only" +"18 day ahead inc hosp" "27" 2024-02-05 2024-02-23 0.15 12 "quantile" "hospital admissions only" +"18 day ahead inc hosp" "27" 2024-02-05 2024-02-23 0.2 13 "quantile" "hospital admissions only" +"18 day ahead inc hosp" "27" 2024-02-05 2024-02-23 0.25 15 "quantile" "hospital admissions only" +"18 day ahead inc hosp" "27" 2024-02-05 2024-02-23 0.3 17.7 "quantile" "hospital admissions only" +"18 day ahead inc hosp" "27" 2024-02-05 2024-02-23 0.35 20 "quantile" "hospital admissions only" +"18 day ahead inc hosp" "27" 2024-02-05 2024-02-23 0.4 21 "quantile" "hospital admissions only" +"18 day ahead inc hosp" "27" 2024-02-05 2024-02-23 0.45 23 "quantile" "hospital admissions only" +"18 day ahead inc hosp" "27" 2024-02-05 2024-02-23 0.5 24 "quantile" "hospital admissions only" +"18 day ahead inc hosp" "27" 2024-02-05 2024-02-23 0.55 24.45 "quantile" "hospital admissions only" +"18 day ahead inc hosp" "27" 2024-02-05 2024-02-23 0.6 27 "quantile" "hospital admissions only" +"18 day ahead inc hosp" "27" 2024-02-05 2024-02-23 0.65 28.35 "quantile" "hospital admissions only" +"18 day ahead inc hosp" "27" 2024-02-05 2024-02-23 0.7 29 "quantile" "hospital admissions only" +"18 day ahead inc hosp" "27" 2024-02-05 2024-02-23 0.75 31.25 "quantile" "hospital admissions only" +"18 day ahead inc hosp" "27" 2024-02-05 2024-02-23 0.8 32.2 "quantile" "hospital admissions only" +"18 day ahead inc hosp" "27" 2024-02-05 2024-02-23 0.85 36 "quantile" "hospital admissions only" +"18 day ahead inc hosp" "27" 2024-02-05 2024-02-23 0.9 38 "quantile" "hospital admissions only" +"18 day ahead inc hosp" "27" 2024-02-05 2024-02-23 0.95 45.05 "quantile" "hospital admissions only" +"18 day ahead inc hosp" "27" 2024-02-05 2024-02-23 0.975 47.575 "quantile" "hospital admissions only" +"18 day ahead inc hosp" "27" 2024-02-05 2024-02-23 0.99 52.4300000000002 "quantile" "hospital admissions only" +"19 day ahead inc hosp" "27" 2024-02-05 2024-02-24 0.01 5 "quantile" "hospital admissions only" +"19 day ahead inc hosp" "27" 2024-02-05 2024-02-24 0.025 6 "quantile" "hospital admissions only" +"19 day ahead inc hosp" "27" 2024-02-05 2024-02-24 0.05 6 "quantile" "hospital admissions only" +"19 day ahead inc hosp" "27" 2024-02-05 2024-02-24 0.1 10.9 "quantile" "hospital admissions only" +"19 day ahead inc hosp" "27" 2024-02-05 2024-02-24 0.15 13 "quantile" "hospital admissions only" +"19 day ahead inc hosp" "27" 2024-02-05 2024-02-24 0.2 14 "quantile" "hospital admissions only" +"19 day ahead inc hosp" "27" 2024-02-05 2024-02-24 0.25 15 "quantile" "hospital admissions only" +"19 day ahead inc hosp" "27" 2024-02-05 2024-02-24 0.3 16 "quantile" "hospital admissions only" +"19 day ahead inc hosp" "27" 2024-02-05 2024-02-24 0.35 17 "quantile" "hospital admissions only" +"19 day ahead inc hosp" "27" 2024-02-05 2024-02-24 0.4 18 "quantile" "hospital admissions only" +"19 day ahead inc hosp" "27" 2024-02-05 2024-02-24 0.45 19 "quantile" "hospital admissions only" +"19 day ahead inc hosp" "27" 2024-02-05 2024-02-24 0.5 20 "quantile" "hospital admissions only" +"19 day ahead inc hosp" "27" 2024-02-05 2024-02-24 0.55 21 "quantile" "hospital admissions only" +"19 day ahead inc hosp" "27" 2024-02-05 2024-02-24 0.6 22.4 "quantile" "hospital admissions only" +"19 day ahead inc hosp" "27" 2024-02-05 2024-02-24 0.65 24 "quantile" "hospital admissions only" +"19 day ahead inc hosp" "27" 2024-02-05 2024-02-24 0.7 26 "quantile" "hospital admissions only" +"19 day ahead inc hosp" "27" 2024-02-05 2024-02-24 0.75 28 "quantile" "hospital admissions only" +"19 day ahead inc hosp" "27" 2024-02-05 2024-02-24 0.8 30.2 "quantile" "hospital admissions only" +"19 day ahead inc hosp" "27" 2024-02-05 2024-02-24 0.85 32.15 "quantile" "hospital admissions only" +"19 day ahead inc hosp" "27" 2024-02-05 2024-02-24 0.9 37 "quantile" "hospital admissions only" +"19 day ahead inc hosp" "27" 2024-02-05 2024-02-24 0.95 38 "quantile" "hospital admissions only" +"19 day ahead inc hosp" "27" 2024-02-05 2024-02-24 0.975 39.575 "quantile" "hospital admissions only" +"19 day ahead inc hosp" "27" 2024-02-05 2024-02-24 0.99 57.1600000000001 "quantile" "hospital admissions only" +"20 day ahead inc hosp" "27" 2024-02-05 2024-02-25 0.01 5.97 "quantile" "hospital admissions only" +"20 day ahead inc hosp" "27" 2024-02-05 2024-02-25 0.025 6.475 "quantile" "hospital admissions only" +"20 day ahead inc hosp" "27" 2024-02-05 2024-02-25 0.05 7.95 "quantile" "hospital admissions only" +"20 day ahead inc hosp" "27" 2024-02-05 2024-02-25 0.1 8.9 "quantile" "hospital admissions only" +"20 day ahead inc hosp" "27" 2024-02-05 2024-02-25 0.15 10.85 "quantile" "hospital admissions only" +"20 day ahead inc hosp" "27" 2024-02-05 2024-02-25 0.2 13 "quantile" "hospital admissions only" +"20 day ahead inc hosp" "27" 2024-02-05 2024-02-25 0.25 13 "quantile" "hospital admissions only" +"20 day ahead inc hosp" "27" 2024-02-05 2024-02-25 0.3 14 "quantile" "hospital admissions only" +"20 day ahead inc hosp" "27" 2024-02-05 2024-02-25 0.35 15.65 "quantile" "hospital admissions only" +"20 day ahead inc hosp" "27" 2024-02-05 2024-02-25 0.4 18.6 "quantile" "hospital admissions only" +"20 day ahead inc hosp" "27" 2024-02-05 2024-02-25 0.45 19 "quantile" "hospital admissions only" +"20 day ahead inc hosp" "27" 2024-02-05 2024-02-25 0.5 20 "quantile" "hospital admissions only" +"20 day ahead inc hosp" "27" 2024-02-05 2024-02-25 0.55 22 "quantile" "hospital admissions only" +"20 day ahead inc hosp" "27" 2024-02-05 2024-02-25 0.6 23 "quantile" "hospital admissions only" +"20 day ahead inc hosp" "27" 2024-02-05 2024-02-25 0.65 24 "quantile" "hospital admissions only" +"20 day ahead inc hosp" "27" 2024-02-05 2024-02-25 0.7 25.3 "quantile" "hospital admissions only" +"20 day ahead inc hosp" "27" 2024-02-05 2024-02-25 0.75 28.25 "quantile" "hospital admissions only" +"20 day ahead inc hosp" "27" 2024-02-05 2024-02-25 0.8 31.2 "quantile" "hospital admissions only" +"20 day ahead inc hosp" "27" 2024-02-05 2024-02-25 0.85 35 "quantile" "hospital admissions only" +"20 day ahead inc hosp" "27" 2024-02-05 2024-02-25 0.9 36 "quantile" "hospital admissions only" +"20 day ahead inc hosp" "27" 2024-02-05 2024-02-25 0.95 39.05 "quantile" "hospital admissions only" +"20 day ahead inc hosp" "27" 2024-02-05 2024-02-25 0.975 48.1499999999999 "quantile" "hospital admissions only" +"20 day ahead inc hosp" "27" 2024-02-05 2024-02-25 0.99 54.1600000000001 "quantile" "hospital admissions only" +"21 day ahead inc hosp" "27" 2024-02-05 2024-02-26 0.01 5.98 "quantile" "hospital admissions only" +"21 day ahead inc hosp" "27" 2024-02-05 2024-02-26 0.025 6.95 "quantile" "hospital admissions only" +"21 day ahead inc hosp" "27" 2024-02-05 2024-02-26 0.05 8.95 "quantile" "hospital admissions only" +"21 day ahead inc hosp" "27" 2024-02-05 2024-02-26 0.1 11 "quantile" "hospital admissions only" +"21 day ahead inc hosp" "27" 2024-02-05 2024-02-26 0.15 12 "quantile" "hospital admissions only" +"21 day ahead inc hosp" "27" 2024-02-05 2024-02-26 0.2 14 "quantile" "hospital admissions only" +"21 day ahead inc hosp" "27" 2024-02-05 2024-02-26 0.25 15 "quantile" "hospital admissions only" +"21 day ahead inc hosp" "27" 2024-02-05 2024-02-26 0.3 16.7 "quantile" "hospital admissions only" +"21 day ahead inc hosp" "27" 2024-02-05 2024-02-26 0.35 18 "quantile" "hospital admissions only" +"21 day ahead inc hosp" "27" 2024-02-05 2024-02-26 0.4 19 "quantile" "hospital admissions only" +"21 day ahead inc hosp" "27" 2024-02-05 2024-02-26 0.45 20.55 "quantile" "hospital admissions only" +"21 day ahead inc hosp" "27" 2024-02-05 2024-02-26 0.5 23 "quantile" "hospital admissions only" +"21 day ahead inc hosp" "27" 2024-02-05 2024-02-26 0.55 24.45 "quantile" "hospital admissions only" +"21 day ahead inc hosp" "27" 2024-02-05 2024-02-26 0.6 26.4 "quantile" "hospital admissions only" +"21 day ahead inc hosp" "27" 2024-02-05 2024-02-26 0.65 28 "quantile" "hospital admissions only" +"21 day ahead inc hosp" "27" 2024-02-05 2024-02-26 0.7 29 "quantile" "hospital admissions only" +"21 day ahead inc hosp" "27" 2024-02-05 2024-02-26 0.75 30 "quantile" "hospital admissions only" +"21 day ahead inc hosp" "27" 2024-02-05 2024-02-26 0.8 32 "quantile" "hospital admissions only" +"21 day ahead inc hosp" "27" 2024-02-05 2024-02-26 0.85 36 "quantile" "hospital admissions only" +"21 day ahead inc hosp" "27" 2024-02-05 2024-02-26 0.9 38 "quantile" "hospital admissions only" +"21 day ahead inc hosp" "27" 2024-02-05 2024-02-26 0.95 42.1 "quantile" "hospital admissions only" +"21 day ahead inc hosp" "27" 2024-02-05 2024-02-26 0.975 49.1 "quantile" "hospital admissions only" +"21 day ahead inc hosp" "27" 2024-02-05 2024-02-26 0.99 52.3000000000002 "quantile" "hospital admissions only" +"22 day ahead inc hosp" "27" 2024-02-05 2024-02-27 0.01 6.96 "quantile" "hospital admissions only" +"22 day ahead inc hosp" "27" 2024-02-05 2024-02-27 0.025 8 "quantile" "hospital admissions only" +"22 day ahead inc hosp" "27" 2024-02-05 2024-02-27 0.05 8.95 "quantile" "hospital admissions only" +"22 day ahead inc hosp" "27" 2024-02-05 2024-02-27 0.1 11.8 "quantile" "hospital admissions only" +"22 day ahead inc hosp" "27" 2024-02-05 2024-02-27 0.15 12 "quantile" "hospital admissions only" +"22 day ahead inc hosp" "27" 2024-02-05 2024-02-27 0.2 14 "quantile" "hospital admissions only" +"22 day ahead inc hosp" "27" 2024-02-05 2024-02-27 0.25 15.75 "quantile" "hospital admissions only" +"22 day ahead inc hosp" "27" 2024-02-05 2024-02-27 0.3 17 "quantile" "hospital admissions only" +"22 day ahead inc hosp" "27" 2024-02-05 2024-02-27 0.35 20 "quantile" "hospital admissions only" +"22 day ahead inc hosp" "27" 2024-02-05 2024-02-27 0.4 21 "quantile" "hospital admissions only" +"22 day ahead inc hosp" "27" 2024-02-05 2024-02-27 0.45 22 "quantile" "hospital admissions only" +"22 day ahead inc hosp" "27" 2024-02-05 2024-02-27 0.5 24 "quantile" "hospital admissions only" +"22 day ahead inc hosp" "27" 2024-02-05 2024-02-27 0.55 25 "quantile" "hospital admissions only" +"22 day ahead inc hosp" "27" 2024-02-05 2024-02-27 0.6 26 "quantile" "hospital admissions only" +"22 day ahead inc hosp" "27" 2024-02-05 2024-02-27 0.65 27.35 "quantile" "hospital admissions only" +"22 day ahead inc hosp" "27" 2024-02-05 2024-02-27 0.7 29 "quantile" "hospital admissions only" +"22 day ahead inc hosp" "27" 2024-02-05 2024-02-27 0.75 31 "quantile" "hospital admissions only" +"22 day ahead inc hosp" "27" 2024-02-05 2024-02-27 0.8 34 "quantile" "hospital admissions only" +"22 day ahead inc hosp" "27" 2024-02-05 2024-02-27 0.85 39 "quantile" "hospital admissions only" +"22 day ahead inc hosp" "27" 2024-02-05 2024-02-27 0.9 43.1 "quantile" "hospital admissions only" +"22 day ahead inc hosp" "27" 2024-02-05 2024-02-27 0.95 47 "quantile" "hospital admissions only" +"22 day ahead inc hosp" "27" 2024-02-05 2024-02-27 0.975 52.1999999999999 "quantile" "hospital admissions only" +"22 day ahead inc hosp" "27" 2024-02-05 2024-02-27 0.99 62.3100000000002 "quantile" "hospital admissions only" +"23 day ahead inc hosp" "27" 2024-02-05 2024-02-28 0.01 4.99 "quantile" "hospital admissions only" +"23 day ahead inc hosp" "27" 2024-02-05 2024-02-28 0.025 7 "quantile" "hospital admissions only" +"23 day ahead inc hosp" "27" 2024-02-05 2024-02-28 0.05 8.95 "quantile" "hospital admissions only" +"23 day ahead inc hosp" "27" 2024-02-05 2024-02-28 0.1 10.9 "quantile" "hospital admissions only" +"23 day ahead inc hosp" "27" 2024-02-05 2024-02-28 0.15 13 "quantile" "hospital admissions only" +"23 day ahead inc hosp" "27" 2024-02-05 2024-02-28 0.2 14 "quantile" "hospital admissions only" +"23 day ahead inc hosp" "27" 2024-02-05 2024-02-28 0.25 17 "quantile" "hospital admissions only" +"23 day ahead inc hosp" "27" 2024-02-05 2024-02-28 0.3 17.7 "quantile" "hospital admissions only" +"23 day ahead inc hosp" "27" 2024-02-05 2024-02-28 0.35 18.65 "quantile" "hospital admissions only" +"23 day ahead inc hosp" "27" 2024-02-05 2024-02-28 0.4 20 "quantile" "hospital admissions only" +"23 day ahead inc hosp" "27" 2024-02-05 2024-02-28 0.45 21 "quantile" "hospital admissions only" +"23 day ahead inc hosp" "27" 2024-02-05 2024-02-28 0.5 23.5 "quantile" "hospital admissions only" +"23 day ahead inc hosp" "27" 2024-02-05 2024-02-28 0.55 25 "quantile" "hospital admissions only" +"23 day ahead inc hosp" "27" 2024-02-05 2024-02-28 0.6 26 "quantile" "hospital admissions only" +"23 day ahead inc hosp" "27" 2024-02-05 2024-02-28 0.65 28 "quantile" "hospital admissions only" +"23 day ahead inc hosp" "27" 2024-02-05 2024-02-28 0.7 31.3 "quantile" "hospital admissions only" +"23 day ahead inc hosp" "27" 2024-02-05 2024-02-28 0.75 34.25 "quantile" "hospital admissions only" +"23 day ahead inc hosp" "27" 2024-02-05 2024-02-28 0.8 37.2 "quantile" "hospital admissions only" +"23 day ahead inc hosp" "27" 2024-02-05 2024-02-28 0.85 40.15 "quantile" "hospital admissions only" +"23 day ahead inc hosp" "27" 2024-02-05 2024-02-28 0.9 42.1 "quantile" "hospital admissions only" +"23 day ahead inc hosp" "27" 2024-02-05 2024-02-28 0.95 51.05 "quantile" "hospital admissions only" +"23 day ahead inc hosp" "27" 2024-02-05 2024-02-28 0.975 53.525 "quantile" "hospital admissions only" +"23 day ahead inc hosp" "27" 2024-02-05 2024-02-28 0.99 70.4500000000002 "quantile" "hospital admissions only" +"24 day ahead inc hosp" "27" 2024-02-05 2024-02-29 0.01 2.99 "quantile" "hospital admissions only" +"24 day ahead inc hosp" "27" 2024-02-05 2024-02-29 0.025 5 "quantile" "hospital admissions only" +"24 day ahead inc hosp" "27" 2024-02-05 2024-02-29 0.05 6 "quantile" "hospital admissions only" +"24 day ahead inc hosp" "27" 2024-02-05 2024-02-29 0.1 10 "quantile" "hospital admissions only" +"24 day ahead inc hosp" "27" 2024-02-05 2024-02-29 0.15 12 "quantile" "hospital admissions only" +"24 day ahead inc hosp" "27" 2024-02-05 2024-02-29 0.2 13 "quantile" "hospital admissions only" +"24 day ahead inc hosp" "27" 2024-02-05 2024-02-29 0.25 15 "quantile" "hospital admissions only" +"24 day ahead inc hosp" "27" 2024-02-05 2024-02-29 0.3 17 "quantile" "hospital admissions only" +"24 day ahead inc hosp" "27" 2024-02-05 2024-02-29 0.35 18 "quantile" "hospital admissions only" +"24 day ahead inc hosp" "27" 2024-02-05 2024-02-29 0.4 20 "quantile" "hospital admissions only" +"24 day ahead inc hosp" "27" 2024-02-05 2024-02-29 0.45 21 "quantile" "hospital admissions only" +"24 day ahead inc hosp" "27" 2024-02-05 2024-02-29 0.5 22 "quantile" "hospital admissions only" +"24 day ahead inc hosp" "27" 2024-02-05 2024-02-29 0.55 23.45 "quantile" "hospital admissions only" +"24 day ahead inc hosp" "27" 2024-02-05 2024-02-29 0.6 25 "quantile" "hospital admissions only" +"24 day ahead inc hosp" "27" 2024-02-05 2024-02-29 0.65 27 "quantile" "hospital admissions only" +"24 day ahead inc hosp" "27" 2024-02-05 2024-02-29 0.7 29 "quantile" "hospital admissions only" +"24 day ahead inc hosp" "27" 2024-02-05 2024-02-29 0.75 31 "quantile" "hospital admissions only" +"24 day ahead inc hosp" "27" 2024-02-05 2024-02-29 0.8 33.2 "quantile" "hospital admissions only" +"24 day ahead inc hosp" "27" 2024-02-05 2024-02-29 0.85 38 "quantile" "hospital admissions only" +"24 day ahead inc hosp" "27" 2024-02-05 2024-02-29 0.9 42.1 "quantile" "hospital admissions only" +"24 day ahead inc hosp" "27" 2024-02-05 2024-02-29 0.95 51 "quantile" "hospital admissions only" +"24 day ahead inc hosp" "27" 2024-02-05 2024-02-29 0.975 54.525 "quantile" "hospital admissions only" +"24 day ahead inc hosp" "27" 2024-02-05 2024-02-29 0.99 67.4200000000002 "quantile" "hospital admissions only" +"25 day ahead inc hosp" "27" 2024-02-05 2024-03-01 0.01 2.99 "quantile" "hospital admissions only" +"25 day ahead inc hosp" "27" 2024-02-05 2024-03-01 0.025 4.475 "quantile" "hospital admissions only" +"25 day ahead inc hosp" "27" 2024-02-05 2024-03-01 0.05 6 "quantile" "hospital admissions only" +"25 day ahead inc hosp" "27" 2024-02-05 2024-03-01 0.1 10.9 "quantile" "hospital admissions only" +"25 day ahead inc hosp" "27" 2024-02-05 2024-03-01 0.15 12 "quantile" "hospital admissions only" +"25 day ahead inc hosp" "27" 2024-02-05 2024-03-01 0.2 13 "quantile" "hospital admissions only" +"25 day ahead inc hosp" "27" 2024-02-05 2024-03-01 0.25 14.75 "quantile" "hospital admissions only" +"25 day ahead inc hosp" "27" 2024-02-05 2024-03-01 0.3 15 "quantile" "hospital admissions only" +"25 day ahead inc hosp" "27" 2024-02-05 2024-03-01 0.35 16 "quantile" "hospital admissions only" +"25 day ahead inc hosp" "27" 2024-02-05 2024-03-01 0.4 17 "quantile" "hospital admissions only" +"25 day ahead inc hosp" "27" 2024-02-05 2024-03-01 0.45 18 "quantile" "hospital admissions only" +"25 day ahead inc hosp" "27" 2024-02-05 2024-03-01 0.5 20.5 "quantile" "hospital admissions only" +"25 day ahead inc hosp" "27" 2024-02-05 2024-03-01 0.55 22 "quantile" "hospital admissions only" +"25 day ahead inc hosp" "27" 2024-02-05 2024-03-01 0.6 25 "quantile" "hospital admissions only" +"25 day ahead inc hosp" "27" 2024-02-05 2024-03-01 0.65 27.35 "quantile" "hospital admissions only" +"25 day ahead inc hosp" "27" 2024-02-05 2024-03-01 0.7 30 "quantile" "hospital admissions only" +"25 day ahead inc hosp" "27" 2024-02-05 2024-03-01 0.75 32 "quantile" "hospital admissions only" +"25 day ahead inc hosp" "27" 2024-02-05 2024-03-01 0.8 33.4 "quantile" "hospital admissions only" +"25 day ahead inc hosp" "27" 2024-02-05 2024-03-01 0.85 37.15 "quantile" "hospital admissions only" +"25 day ahead inc hosp" "27" 2024-02-05 2024-03-01 0.9 41 "quantile" "hospital admissions only" +"25 day ahead inc hosp" "27" 2024-02-05 2024-03-01 0.95 44.05 "quantile" "hospital admissions only" +"25 day ahead inc hosp" "27" 2024-02-05 2024-03-01 0.975 46.525 "quantile" "hospital admissions only" +"25 day ahead inc hosp" "27" 2024-02-05 2024-03-01 0.99 51.9100000000005 "quantile" "hospital admissions only" +"26 day ahead inc hosp" "27" 2024-02-05 2024-03-02 0.01 3 "quantile" "hospital admissions only" +"26 day ahead inc hosp" "27" 2024-02-05 2024-03-02 0.025 4.475 "quantile" "hospital admissions only" +"26 day ahead inc hosp" "27" 2024-02-05 2024-03-02 0.05 6 "quantile" "hospital admissions only" +"26 day ahead inc hosp" "27" 2024-02-05 2024-03-02 0.1 7 "quantile" "hospital admissions only" +"26 day ahead inc hosp" "27" 2024-02-05 2024-03-02 0.15 9 "quantile" "hospital admissions only" +"26 day ahead inc hosp" "27" 2024-02-05 2024-03-02 0.2 10 "quantile" "hospital admissions only" +"26 day ahead inc hosp" "27" 2024-02-05 2024-03-02 0.25 11 "quantile" "hospital admissions only" +"26 day ahead inc hosp" "27" 2024-02-05 2024-03-02 0.3 13 "quantile" "hospital admissions only" +"26 day ahead inc hosp" "27" 2024-02-05 2024-03-02 0.35 14 "quantile" "hospital admissions only" +"26 day ahead inc hosp" "27" 2024-02-05 2024-03-02 0.4 15 "quantile" "hospital admissions only" +"26 day ahead inc hosp" "27" 2024-02-05 2024-03-02 0.45 16.55 "quantile" "hospital admissions only" +"26 day ahead inc hosp" "27" 2024-02-05 2024-03-02 0.5 19 "quantile" "hospital admissions only" +"26 day ahead inc hosp" "27" 2024-02-05 2024-03-02 0.55 20 "quantile" "hospital admissions only" +"26 day ahead inc hosp" "27" 2024-02-05 2024-03-02 0.6 21 "quantile" "hospital admissions only" +"26 day ahead inc hosp" "27" 2024-02-05 2024-03-02 0.65 22 "quantile" "hospital admissions only" +"26 day ahead inc hosp" "27" 2024-02-05 2024-03-02 0.7 23 "quantile" "hospital admissions only" +"26 day ahead inc hosp" "27" 2024-02-05 2024-03-02 0.75 25 "quantile" "hospital admissions only" +"26 day ahead inc hosp" "27" 2024-02-05 2024-03-02 0.8 27.2 "quantile" "hospital admissions only" +"26 day ahead inc hosp" "27" 2024-02-05 2024-03-02 0.85 34.15 "quantile" "hospital admissions only" +"26 day ahead inc hosp" "27" 2024-02-05 2024-03-02 0.9 38.1 "quantile" "hospital admissions only" +"26 day ahead inc hosp" "27" 2024-02-05 2024-03-02 0.95 42.1 "quantile" "hospital admissions only" +"26 day ahead inc hosp" "27" 2024-02-05 2024-03-02 0.975 45.575 "quantile" "hospital admissions only" +"26 day ahead inc hosp" "27" 2024-02-05 2024-03-02 0.99 49.7600000000004 "quantile" "hospital admissions only" +"27 day ahead inc hosp" "27" 2024-02-05 2024-03-03 0.01 2 "quantile" "hospital admissions only" +"27 day ahead inc hosp" "27" 2024-02-05 2024-03-03 0.025 3 "quantile" "hospital admissions only" +"27 day ahead inc hosp" "27" 2024-02-05 2024-03-03 0.05 3.95 "quantile" "hospital admissions only" +"27 day ahead inc hosp" "27" 2024-02-05 2024-03-03 0.1 6 "quantile" "hospital admissions only" +"27 day ahead inc hosp" "27" 2024-02-05 2024-03-03 0.15 8 "quantile" "hospital admissions only" +"27 day ahead inc hosp" "27" 2024-02-05 2024-03-03 0.2 10 "quantile" "hospital admissions only" +"27 day ahead inc hosp" "27" 2024-02-05 2024-03-03 0.25 11 "quantile" "hospital admissions only" +"27 day ahead inc hosp" "27" 2024-02-05 2024-03-03 0.3 12 "quantile" "hospital admissions only" +"27 day ahead inc hosp" "27" 2024-02-05 2024-03-03 0.35 13.65 "quantile" "hospital admissions only" +"27 day ahead inc hosp" "27" 2024-02-05 2024-03-03 0.4 16 "quantile" "hospital admissions only" +"27 day ahead inc hosp" "27" 2024-02-05 2024-03-03 0.45 17 "quantile" "hospital admissions only" +"27 day ahead inc hosp" "27" 2024-02-05 2024-03-03 0.5 18 "quantile" "hospital admissions only" +"27 day ahead inc hosp" "27" 2024-02-05 2024-03-03 0.55 19.45 "quantile" "hospital admissions only" +"27 day ahead inc hosp" "27" 2024-02-05 2024-03-03 0.6 21.4 "quantile" "hospital admissions only" +"27 day ahead inc hosp" "27" 2024-02-05 2024-03-03 0.65 23 "quantile" "hospital admissions only" +"27 day ahead inc hosp" "27" 2024-02-05 2024-03-03 0.7 24.3 "quantile" "hospital admissions only" +"27 day ahead inc hosp" "27" 2024-02-05 2024-03-03 0.75 26.25 "quantile" "hospital admissions only" +"27 day ahead inc hosp" "27" 2024-02-05 2024-03-03 0.8 29 "quantile" "hospital admissions only" +"27 day ahead inc hosp" "27" 2024-02-05 2024-03-03 0.85 33.15 "quantile" "hospital admissions only" +"27 day ahead inc hosp" "27" 2024-02-05 2024-03-03 0.9 34 "quantile" "hospital admissions only" +"27 day ahead inc hosp" "27" 2024-02-05 2024-03-03 0.95 42.1 "quantile" "hospital admissions only" +"27 day ahead inc hosp" "27" 2024-02-05 2024-03-03 0.975 47.525 "quantile" "hospital admissions only" +"27 day ahead inc hosp" "27" 2024-02-05 2024-03-03 0.99 49.5000000000003 "quantile" "hospital admissions only" +"28 day ahead inc hosp" "27" 2024-02-05 2024-03-04 0.01 2.98 "quantile" "hospital admissions only" +"28 day ahead inc hosp" "27" 2024-02-05 2024-03-04 0.025 3 "quantile" "hospital admissions only" +"28 day ahead inc hosp" "27" 2024-02-05 2024-03-04 0.05 5 "quantile" "hospital admissions only" +"28 day ahead inc hosp" "27" 2024-02-05 2024-03-04 0.1 8.9 "quantile" "hospital admissions only" +"28 day ahead inc hosp" "27" 2024-02-05 2024-03-04 0.15 11 "quantile" "hospital admissions only" +"28 day ahead inc hosp" "27" 2024-02-05 2024-03-04 0.2 12 "quantile" "hospital admissions only" +"28 day ahead inc hosp" "27" 2024-02-05 2024-03-04 0.25 14.75 "quantile" "hospital admissions only" +"28 day ahead inc hosp" "27" 2024-02-05 2024-03-04 0.3 15.7 "quantile" "hospital admissions only" +"28 day ahead inc hosp" "27" 2024-02-05 2024-03-04 0.35 16 "quantile" "hospital admissions only" +"28 day ahead inc hosp" "27" 2024-02-05 2024-03-04 0.4 18 "quantile" "hospital admissions only" +"28 day ahead inc hosp" "27" 2024-02-05 2024-03-04 0.45 20 "quantile" "hospital admissions only" +"28 day ahead inc hosp" "27" 2024-02-05 2024-03-04 0.5 21 "quantile" "hospital admissions only" +"28 day ahead inc hosp" "27" 2024-02-05 2024-03-04 0.55 22 "quantile" "hospital admissions only" +"28 day ahead inc hosp" "27" 2024-02-05 2024-03-04 0.6 24.4 "quantile" "hospital admissions only" +"28 day ahead inc hosp" "27" 2024-02-05 2024-03-04 0.65 27.7 "quantile" "hospital admissions only" +"28 day ahead inc hosp" "27" 2024-02-05 2024-03-04 0.7 30 "quantile" "hospital admissions only" +"28 day ahead inc hosp" "27" 2024-02-05 2024-03-04 0.75 32.25 "quantile" "hospital admissions only" +"28 day ahead inc hosp" "27" 2024-02-05 2024-03-04 0.8 35.2 "quantile" "hospital admissions only" +"28 day ahead inc hosp" "27" 2024-02-05 2024-03-04 0.85 39.15 "quantile" "hospital admissions only" +"28 day ahead inc hosp" "27" 2024-02-05 2024-03-04 0.9 42 "quantile" "hospital admissions only" +"28 day ahead inc hosp" "27" 2024-02-05 2024-03-04 0.95 46.05 "quantile" "hospital admissions only" +"28 day ahead inc hosp" "27" 2024-02-05 2024-03-04 0.975 48.575 "quantile" "hospital admissions only" +"28 day ahead inc hosp" "27" 2024-02-05 2024-03-04 0.99 61.3500000000002 "quantile" "hospital admissions only" +"1 day ahead inc hosp" "29" 2024-02-05 2024-02-06 0.01 29.99 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "29" 2024-02-05 2024-02-06 0.025 30.95 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "29" 2024-02-05 2024-02-06 0.05 32 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "29" 2024-02-05 2024-02-06 0.1 36 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "29" 2024-02-05 2024-02-06 0.15 38.85 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "29" 2024-02-05 2024-02-06 0.2 40 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "29" 2024-02-05 2024-02-06 0.25 42 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "29" 2024-02-05 2024-02-06 0.3 44.7 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "29" 2024-02-05 2024-02-06 0.35 45.65 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "29" 2024-02-05 2024-02-06 0.4 47 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "29" 2024-02-05 2024-02-06 0.45 48.55 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "29" 2024-02-05 2024-02-06 0.5 49 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "29" 2024-02-05 2024-02-06 0.55 50 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "29" 2024-02-05 2024-02-06 0.6 51 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "29" 2024-02-05 2024-02-06 0.65 53 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "29" 2024-02-05 2024-02-06 0.7 54 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "29" 2024-02-05 2024-02-06 0.75 56 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "29" 2024-02-05 2024-02-06 0.8 58 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "29" 2024-02-05 2024-02-06 0.85 60 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "29" 2024-02-05 2024-02-06 0.9 62.1 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "29" 2024-02-05 2024-02-06 0.95 65.05 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "29" 2024-02-05 2024-02-06 0.975 71.1499999999999 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "29" 2024-02-05 2024-02-06 0.99 76.06 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "29" 2024-02-05 2024-02-07 0.01 23.98 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "29" 2024-02-05 2024-02-07 0.025 30 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "29" 2024-02-05 2024-02-07 0.05 32 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "29" 2024-02-05 2024-02-07 0.1 34 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "29" 2024-02-05 2024-02-07 0.15 36.85 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "29" 2024-02-05 2024-02-07 0.2 38.8 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "29" 2024-02-05 2024-02-07 0.25 40.75 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "29" 2024-02-05 2024-02-07 0.3 42 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "29" 2024-02-05 2024-02-07 0.35 44 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "29" 2024-02-05 2024-02-07 0.4 46 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "29" 2024-02-05 2024-02-07 0.45 48 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "29" 2024-02-05 2024-02-07 0.5 49.5 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "29" 2024-02-05 2024-02-07 0.55 52 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "29" 2024-02-05 2024-02-07 0.6 52 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "29" 2024-02-05 2024-02-07 0.65 53.35 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "29" 2024-02-05 2024-02-07 0.7 54.3 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "29" 2024-02-05 2024-02-07 0.75 57 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "29" 2024-02-05 2024-02-07 0.8 57.2 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "29" 2024-02-05 2024-02-07 0.85 59.15 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "29" 2024-02-05 2024-02-07 0.9 64.1 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "29" 2024-02-05 2024-02-07 0.95 67 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "29" 2024-02-05 2024-02-07 0.975 68.575 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "29" 2024-02-05 2024-02-07 0.99 72.01 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "29" 2024-02-05 2024-02-08 0.01 29.95 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "29" 2024-02-05 2024-02-08 0.025 30 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "29" 2024-02-05 2024-02-08 0.05 31 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "29" 2024-02-05 2024-02-08 0.1 33.9 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "29" 2024-02-05 2024-02-08 0.15 36.7 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "29" 2024-02-05 2024-02-08 0.2 38 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "29" 2024-02-05 2024-02-08 0.25 41 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "29" 2024-02-05 2024-02-08 0.3 42 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "29" 2024-02-05 2024-02-08 0.35 44.65 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "29" 2024-02-05 2024-02-08 0.4 46 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "29" 2024-02-05 2024-02-08 0.45 47.55 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "29" 2024-02-05 2024-02-08 0.5 48.5 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "29" 2024-02-05 2024-02-08 0.55 50 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "29" 2024-02-05 2024-02-08 0.6 50.4 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "29" 2024-02-05 2024-02-08 0.65 52 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "29" 2024-02-05 2024-02-08 0.7 53 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "29" 2024-02-05 2024-02-08 0.75 54.25 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "29" 2024-02-05 2024-02-08 0.8 56 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "29" 2024-02-05 2024-02-08 0.85 59.15 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "29" 2024-02-05 2024-02-08 0.9 61.1 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "29" 2024-02-05 2024-02-08 0.95 63 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "29" 2024-02-05 2024-02-08 0.975 65.525 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "29" 2024-02-05 2024-02-08 0.99 67.08 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "29" 2024-02-05 2024-02-09 0.01 26 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "29" 2024-02-05 2024-02-09 0.025 27.95 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "29" 2024-02-05 2024-02-09 0.05 30 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "29" 2024-02-05 2024-02-09 0.1 33.9 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "29" 2024-02-05 2024-02-09 0.15 36 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "29" 2024-02-05 2024-02-09 0.2 36 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "29" 2024-02-05 2024-02-09 0.25 37 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "29" 2024-02-05 2024-02-09 0.3 38.7 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "29" 2024-02-05 2024-02-09 0.35 39.65 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "29" 2024-02-05 2024-02-09 0.4 41 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "29" 2024-02-05 2024-02-09 0.45 42 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "29" 2024-02-05 2024-02-09 0.5 44 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "29" 2024-02-05 2024-02-09 0.55 45.45 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "29" 2024-02-05 2024-02-09 0.6 46 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "29" 2024-02-05 2024-02-09 0.65 48 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "29" 2024-02-05 2024-02-09 0.7 50 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "29" 2024-02-05 2024-02-09 0.75 51 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "29" 2024-02-05 2024-02-09 0.8 53.2 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "29" 2024-02-05 2024-02-09 0.85 56.15 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "29" 2024-02-05 2024-02-09 0.9 59 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "29" 2024-02-05 2024-02-09 0.95 64.05 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "29" 2024-02-05 2024-02-09 0.975 65 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "29" 2024-02-05 2024-02-09 0.99 71.03 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "29" 2024-02-05 2024-02-10 0.01 20.98 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "29" 2024-02-05 2024-02-10 0.025 21.475 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "29" 2024-02-05 2024-02-10 0.05 22.95 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "29" 2024-02-05 2024-02-10 0.1 25 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "29" 2024-02-05 2024-02-10 0.15 27 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "29" 2024-02-05 2024-02-10 0.2 29 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "29" 2024-02-05 2024-02-10 0.25 31 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "29" 2024-02-05 2024-02-10 0.3 32.7 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "29" 2024-02-05 2024-02-10 0.35 34.65 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "29" 2024-02-05 2024-02-10 0.4 37 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "29" 2024-02-05 2024-02-10 0.45 38 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "29" 2024-02-05 2024-02-10 0.5 39 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "29" 2024-02-05 2024-02-10 0.55 41 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "29" 2024-02-05 2024-02-10 0.6 42 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "29" 2024-02-05 2024-02-10 0.65 44 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "29" 2024-02-05 2024-02-10 0.7 46 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "29" 2024-02-05 2024-02-10 0.75 48 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "29" 2024-02-05 2024-02-10 0.8 50.2 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "29" 2024-02-05 2024-02-10 0.85 53 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "29" 2024-02-05 2024-02-10 0.9 54.1 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "29" 2024-02-05 2024-02-10 0.95 60 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "29" 2024-02-05 2024-02-10 0.975 62.625 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "29" 2024-02-05 2024-02-10 0.99 66.06 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "29" 2024-02-05 2024-02-11 0.01 23.99 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "29" 2024-02-05 2024-02-11 0.025 25 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "29" 2024-02-05 2024-02-11 0.05 26.9 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "29" 2024-02-05 2024-02-11 0.1 30 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "29" 2024-02-05 2024-02-11 0.15 31 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "29" 2024-02-05 2024-02-11 0.2 33 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "29" 2024-02-05 2024-02-11 0.25 33.75 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "29" 2024-02-05 2024-02-11 0.3 34 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "29" 2024-02-05 2024-02-11 0.35 35 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "29" 2024-02-05 2024-02-11 0.4 37 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "29" 2024-02-05 2024-02-11 0.45 38 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "29" 2024-02-05 2024-02-11 0.5 38 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "29" 2024-02-05 2024-02-11 0.55 39 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "29" 2024-02-05 2024-02-11 0.6 42.4 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "29" 2024-02-05 2024-02-11 0.65 44 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "29" 2024-02-05 2024-02-11 0.7 46 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "29" 2024-02-05 2024-02-11 0.75 48 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "29" 2024-02-05 2024-02-11 0.8 50.2 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "29" 2024-02-05 2024-02-11 0.85 52 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "29" 2024-02-05 2024-02-11 0.9 55.1 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "29" 2024-02-05 2024-02-11 0.95 59.05 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "29" 2024-02-05 2024-02-11 0.975 63.525 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "29" 2024-02-05 2024-02-11 0.99 65.05 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "29" 2024-02-05 2024-02-12 0.01 22 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "29" 2024-02-05 2024-02-12 0.025 23.95 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "29" 2024-02-05 2024-02-12 0.05 25.95 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "29" 2024-02-05 2024-02-12 0.1 30 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "29" 2024-02-05 2024-02-12 0.15 34 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "29" 2024-02-05 2024-02-12 0.2 35.8 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "29" 2024-02-05 2024-02-12 0.25 38.5 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "29" 2024-02-05 2024-02-12 0.3 41.7 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "29" 2024-02-05 2024-02-12 0.35 43 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "29" 2024-02-05 2024-02-12 0.4 44 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "29" 2024-02-05 2024-02-12 0.45 45 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "29" 2024-02-05 2024-02-12 0.5 46 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "29" 2024-02-05 2024-02-12 0.55 49 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "29" 2024-02-05 2024-02-12 0.6 49 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "29" 2024-02-05 2024-02-12 0.65 51 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "29" 2024-02-05 2024-02-12 0.7 53 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "29" 2024-02-05 2024-02-12 0.75 55 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "29" 2024-02-05 2024-02-12 0.8 56.2 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "29" 2024-02-05 2024-02-12 0.85 61.15 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "29" 2024-02-05 2024-02-12 0.9 64.2 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "29" 2024-02-05 2024-02-12 0.95 69.1 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "29" 2024-02-05 2024-02-12 0.975 71 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "29" 2024-02-05 2024-02-12 0.99 73.3100000000002 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "29" 2024-02-05 2024-02-13 0.01 19.97 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "29" 2024-02-05 2024-02-13 0.025 21 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "29" 2024-02-05 2024-02-13 0.05 24.95 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "29" 2024-02-05 2024-02-13 0.1 29 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "29" 2024-02-05 2024-02-13 0.15 31 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "29" 2024-02-05 2024-02-13 0.2 33 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "29" 2024-02-05 2024-02-13 0.25 33.75 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "29" 2024-02-05 2024-02-13 0.3 35 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "29" 2024-02-05 2024-02-13 0.35 37 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "29" 2024-02-05 2024-02-13 0.4 38 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "29" 2024-02-05 2024-02-13 0.45 39 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "29" 2024-02-05 2024-02-13 0.5 41 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "29" 2024-02-05 2024-02-13 0.55 42 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "29" 2024-02-05 2024-02-13 0.6 44.4 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "29" 2024-02-05 2024-02-13 0.65 46.35 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "29" 2024-02-05 2024-02-13 0.7 48 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "29" 2024-02-05 2024-02-13 0.75 49.25 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "29" 2024-02-05 2024-02-13 0.8 52.2 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "29" 2024-02-05 2024-02-13 0.85 54 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "29" 2024-02-05 2024-02-13 0.9 57.3 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "29" 2024-02-05 2024-02-13 0.95 64.1 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "29" 2024-02-05 2024-02-13 0.975 69 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "29" 2024-02-05 2024-02-13 0.99 70.06 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "29" 2024-02-05 2024-02-14 0.01 22.93 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "29" 2024-02-05 2024-02-14 0.025 23 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "29" 2024-02-05 2024-02-14 0.05 26.85 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "29" 2024-02-05 2024-02-14 0.1 29.9 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "29" 2024-02-05 2024-02-14 0.15 32 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "29" 2024-02-05 2024-02-14 0.2 33.8 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "29" 2024-02-05 2024-02-14 0.25 34 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "29" 2024-02-05 2024-02-14 0.3 36 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "29" 2024-02-05 2024-02-14 0.35 37 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "29" 2024-02-05 2024-02-14 0.4 38.6 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "29" 2024-02-05 2024-02-14 0.45 41.55 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "29" 2024-02-05 2024-02-14 0.5 43 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "29" 2024-02-05 2024-02-14 0.55 44.45 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "29" 2024-02-05 2024-02-14 0.6 45 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "29" 2024-02-05 2024-02-14 0.65 47 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "29" 2024-02-05 2024-02-14 0.7 48 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "29" 2024-02-05 2024-02-14 0.75 50.25 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "29" 2024-02-05 2024-02-14 0.8 53.2 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "29" 2024-02-05 2024-02-14 0.85 57 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "29" 2024-02-05 2024-02-14 0.9 60.2 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "29" 2024-02-05 2024-02-14 0.95 66.05 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "29" 2024-02-05 2024-02-14 0.975 70.1499999999999 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "29" 2024-02-05 2024-02-14 0.99 75.02 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "29" 2024-02-05 2024-02-15 0.01 20.98 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "29" 2024-02-05 2024-02-15 0.025 22 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "29" 2024-02-05 2024-02-15 0.05 24.95 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "29" 2024-02-05 2024-02-15 0.1 28.9 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "29" 2024-02-05 2024-02-15 0.15 33 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "29" 2024-02-05 2024-02-15 0.2 35 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "29" 2024-02-05 2024-02-15 0.25 35 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "29" 2024-02-05 2024-02-15 0.3 36.7 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "29" 2024-02-05 2024-02-15 0.35 38.65 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "29" 2024-02-05 2024-02-15 0.4 40.6 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "29" 2024-02-05 2024-02-15 0.45 41.55 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "29" 2024-02-05 2024-02-15 0.5 43.5 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "29" 2024-02-05 2024-02-15 0.55 44.45 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "29" 2024-02-05 2024-02-15 0.6 46.8 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "29" 2024-02-05 2024-02-15 0.65 50 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "29" 2024-02-05 2024-02-15 0.7 52 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "29" 2024-02-05 2024-02-15 0.75 53 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "29" 2024-02-05 2024-02-15 0.8 56 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "29" 2024-02-05 2024-02-15 0.85 57.15 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "29" 2024-02-05 2024-02-15 0.9 63.1 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "29" 2024-02-05 2024-02-15 0.95 72.05 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "29" 2024-02-05 2024-02-15 0.975 76.1 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "29" 2024-02-05 2024-02-15 0.99 94.02 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "29" 2024-02-05 2024-02-16 0.01 13 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "29" 2024-02-05 2024-02-16 0.025 16.425 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "29" 2024-02-05 2024-02-16 0.05 19.95 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "29" 2024-02-05 2024-02-16 0.1 23 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "29" 2024-02-05 2024-02-16 0.15 26 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "29" 2024-02-05 2024-02-16 0.2 28.8 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "29" 2024-02-05 2024-02-16 0.25 30 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "29" 2024-02-05 2024-02-16 0.3 33 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "29" 2024-02-05 2024-02-16 0.35 34.65 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "29" 2024-02-05 2024-02-16 0.4 36 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "29" 2024-02-05 2024-02-16 0.45 37.55 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "29" 2024-02-05 2024-02-16 0.5 39 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "29" 2024-02-05 2024-02-16 0.55 40 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "29" 2024-02-05 2024-02-16 0.6 41 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "29" 2024-02-05 2024-02-16 0.65 42.35 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "29" 2024-02-05 2024-02-16 0.7 44 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "29" 2024-02-05 2024-02-16 0.75 46 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "29" 2024-02-05 2024-02-16 0.8 47.4 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "29" 2024-02-05 2024-02-16 0.85 50.15 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "29" 2024-02-05 2024-02-16 0.9 53 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "29" 2024-02-05 2024-02-16 0.95 64.1 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "29" 2024-02-05 2024-02-16 0.975 69.05 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "29" 2024-02-05 2024-02-16 0.99 71.05 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "29" 2024-02-05 2024-02-17 0.01 16.97 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "29" 2024-02-05 2024-02-17 0.025 17.475 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "29" 2024-02-05 2024-02-17 0.05 18.95 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "29" 2024-02-05 2024-02-17 0.1 21.9 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "29" 2024-02-05 2024-02-17 0.15 24.85 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "29" 2024-02-05 2024-02-17 0.2 25 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "29" 2024-02-05 2024-02-17 0.25 26 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "29" 2024-02-05 2024-02-17 0.3 28 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "29" 2024-02-05 2024-02-17 0.35 30.65 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "29" 2024-02-05 2024-02-17 0.4 31 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "29" 2024-02-05 2024-02-17 0.45 33 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "29" 2024-02-05 2024-02-17 0.5 34.5 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "29" 2024-02-05 2024-02-17 0.55 36 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "29" 2024-02-05 2024-02-17 0.6 38 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "29" 2024-02-05 2024-02-17 0.65 39 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "29" 2024-02-05 2024-02-17 0.7 40 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "29" 2024-02-05 2024-02-17 0.75 41 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "29" 2024-02-05 2024-02-17 0.8 45 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "29" 2024-02-05 2024-02-17 0.85 47 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "29" 2024-02-05 2024-02-17 0.9 52.3 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "29" 2024-02-05 2024-02-17 0.95 58 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "29" 2024-02-05 2024-02-17 0.975 59.525 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "29" 2024-02-05 2024-02-17 0.99 69.1600000000001 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "29" 2024-02-05 2024-02-18 0.01 14.99 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "29" 2024-02-05 2024-02-18 0.025 17 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "29" 2024-02-05 2024-02-18 0.05 18.9 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "29" 2024-02-05 2024-02-18 0.1 21 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "29" 2024-02-05 2024-02-18 0.15 22.85 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "29" 2024-02-05 2024-02-18 0.2 24.8 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "29" 2024-02-05 2024-02-18 0.25 27 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "29" 2024-02-05 2024-02-18 0.3 28.7 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "29" 2024-02-05 2024-02-18 0.35 30 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "29" 2024-02-05 2024-02-18 0.4 32 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "29" 2024-02-05 2024-02-18 0.45 33.55 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "29" 2024-02-05 2024-02-18 0.5 35 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "29" 2024-02-05 2024-02-18 0.55 36 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "29" 2024-02-05 2024-02-18 0.6 39 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "29" 2024-02-05 2024-02-18 0.65 41 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "29" 2024-02-05 2024-02-18 0.7 43 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "29" 2024-02-05 2024-02-18 0.75 44.25 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "29" 2024-02-05 2024-02-18 0.8 46.4 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "29" 2024-02-05 2024-02-18 0.85 49 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "29" 2024-02-05 2024-02-18 0.9 54.3 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "29" 2024-02-05 2024-02-18 0.95 60.05 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "29" 2024-02-05 2024-02-18 0.975 65.1999999999999 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "29" 2024-02-05 2024-02-18 0.99 69.09 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "29" 2024-02-05 2024-02-19 0.01 17.9 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "29" 2024-02-05 2024-02-19 0.025 20 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "29" 2024-02-05 2024-02-19 0.05 21 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "29" 2024-02-05 2024-02-19 0.1 23.9 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "29" 2024-02-05 2024-02-19 0.15 27 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "29" 2024-02-05 2024-02-19 0.2 28 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "29" 2024-02-05 2024-02-19 0.25 32.5 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "29" 2024-02-05 2024-02-19 0.3 34.7 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "29" 2024-02-05 2024-02-19 0.35 35.65 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "29" 2024-02-05 2024-02-19 0.4 37 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "29" 2024-02-05 2024-02-19 0.45 39.55 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "29" 2024-02-05 2024-02-19 0.5 42 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "29" 2024-02-05 2024-02-19 0.55 43 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "29" 2024-02-05 2024-02-19 0.6 45 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "29" 2024-02-05 2024-02-19 0.65 47 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "29" 2024-02-05 2024-02-19 0.7 49.3 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "29" 2024-02-05 2024-02-19 0.75 51 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "29" 2024-02-05 2024-02-19 0.8 53 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "29" 2024-02-05 2024-02-19 0.85 54 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "29" 2024-02-05 2024-02-19 0.9 59.1 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "29" 2024-02-05 2024-02-19 0.95 70.15 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "29" 2024-02-05 2024-02-19 0.975 74.575 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "29" 2024-02-05 2024-02-19 0.99 81.1700000000001 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "29" 2024-02-05 2024-02-20 0.01 17.99 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "29" 2024-02-05 2024-02-20 0.025 18.475 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "29" 2024-02-05 2024-02-20 0.05 21 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "29" 2024-02-05 2024-02-20 0.1 24 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "29" 2024-02-05 2024-02-20 0.15 27 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "29" 2024-02-05 2024-02-20 0.2 28 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "29" 2024-02-05 2024-02-20 0.25 30 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "29" 2024-02-05 2024-02-20 0.3 31 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "29" 2024-02-05 2024-02-20 0.35 32 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "29" 2024-02-05 2024-02-20 0.4 35 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "29" 2024-02-05 2024-02-20 0.45 36 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "29" 2024-02-05 2024-02-20 0.5 37 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "29" 2024-02-05 2024-02-20 0.55 39.45 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "29" 2024-02-05 2024-02-20 0.6 41 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "29" 2024-02-05 2024-02-20 0.65 42 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "29" 2024-02-05 2024-02-20 0.7 44.3 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "29" 2024-02-05 2024-02-20 0.75 48 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "29" 2024-02-05 2024-02-20 0.8 50 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "29" 2024-02-05 2024-02-20 0.85 55 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "29" 2024-02-05 2024-02-20 0.9 58.1 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "29" 2024-02-05 2024-02-20 0.95 67.2 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "29" 2024-02-05 2024-02-20 0.975 75.05 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "29" 2024-02-05 2024-02-20 0.99 78.02 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "29" 2024-02-05 2024-02-21 0.01 16.95 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "29" 2024-02-05 2024-02-21 0.025 18.475 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "29" 2024-02-05 2024-02-21 0.05 20 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "29" 2024-02-05 2024-02-21 0.1 22.9 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "29" 2024-02-05 2024-02-21 0.15 24 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "29" 2024-02-05 2024-02-21 0.2 27.8 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "29" 2024-02-05 2024-02-21 0.25 29 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "29" 2024-02-05 2024-02-21 0.3 32 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "29" 2024-02-05 2024-02-21 0.35 33.65 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "29" 2024-02-05 2024-02-21 0.4 35 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "29" 2024-02-05 2024-02-21 0.45 36 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "29" 2024-02-05 2024-02-21 0.5 38 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "29" 2024-02-05 2024-02-21 0.55 39.45 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "29" 2024-02-05 2024-02-21 0.6 41.4 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "29" 2024-02-05 2024-02-21 0.65 45.35 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "29" 2024-02-05 2024-02-21 0.7 50 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "29" 2024-02-05 2024-02-21 0.75 52 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "29" 2024-02-05 2024-02-21 0.8 54 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "29" 2024-02-05 2024-02-21 0.85 57.15 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "29" 2024-02-05 2024-02-21 0.9 60.1 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "29" 2024-02-05 2024-02-21 0.95 67.2 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "29" 2024-02-05 2024-02-21 0.975 72 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "29" 2024-02-05 2024-02-21 0.99 83.08 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "29" 2024-02-05 2024-02-22 0.01 16 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "29" 2024-02-05 2024-02-22 0.025 17.475 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "29" 2024-02-05 2024-02-22 0.05 20 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "29" 2024-02-05 2024-02-22 0.1 22 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "29" 2024-02-05 2024-02-22 0.15 24.7 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "29" 2024-02-05 2024-02-22 0.2 26 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "29" 2024-02-05 2024-02-22 0.25 28.75 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "29" 2024-02-05 2024-02-22 0.3 30 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "29" 2024-02-05 2024-02-22 0.35 32.65 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "29" 2024-02-05 2024-02-22 0.4 33 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "29" 2024-02-05 2024-02-22 0.45 35 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "29" 2024-02-05 2024-02-22 0.5 36 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "29" 2024-02-05 2024-02-22 0.55 39.45 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "29" 2024-02-05 2024-02-22 0.6 42 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "29" 2024-02-05 2024-02-22 0.65 46 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "29" 2024-02-05 2024-02-22 0.7 47 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "29" 2024-02-05 2024-02-22 0.75 50.5 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "29" 2024-02-05 2024-02-22 0.8 55 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "29" 2024-02-05 2024-02-22 0.85 59 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "29" 2024-02-05 2024-02-22 0.9 63 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "29" 2024-02-05 2024-02-22 0.95 71.55 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "29" 2024-02-05 2024-02-22 0.975 86.575 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "29" 2024-02-05 2024-02-22 0.99 92.03 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "29" 2024-02-05 2024-02-23 0.01 13 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "29" 2024-02-05 2024-02-23 0.025 14 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "29" 2024-02-05 2024-02-23 0.05 18.95 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "29" 2024-02-05 2024-02-23 0.1 20.9 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "29" 2024-02-05 2024-02-23 0.15 22 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "29" 2024-02-05 2024-02-23 0.2 24.8 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "29" 2024-02-05 2024-02-23 0.25 26 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "29" 2024-02-05 2024-02-23 0.3 27 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "29" 2024-02-05 2024-02-23 0.35 29 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "29" 2024-02-05 2024-02-23 0.4 31.6 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "29" 2024-02-05 2024-02-23 0.45 32 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "29" 2024-02-05 2024-02-23 0.5 35 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "29" 2024-02-05 2024-02-23 0.55 36 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "29" 2024-02-05 2024-02-23 0.6 39 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "29" 2024-02-05 2024-02-23 0.65 40.35 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "29" 2024-02-05 2024-02-23 0.7 43 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "29" 2024-02-05 2024-02-23 0.75 46.25 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "29" 2024-02-05 2024-02-23 0.8 50.2 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "29" 2024-02-05 2024-02-23 0.85 53 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "29" 2024-02-05 2024-02-23 0.9 59.1 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "29" 2024-02-05 2024-02-23 0.95 64.2 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "29" 2024-02-05 2024-02-23 0.975 71.1 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "29" 2024-02-05 2024-02-23 0.99 85.04 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "29" 2024-02-05 2024-02-24 0.01 10.99 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "29" 2024-02-05 2024-02-24 0.025 11 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "29" 2024-02-05 2024-02-24 0.05 14 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "29" 2024-02-05 2024-02-24 0.1 16.9 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "29" 2024-02-05 2024-02-24 0.15 20 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "29" 2024-02-05 2024-02-24 0.2 21.8 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "29" 2024-02-05 2024-02-24 0.25 22.75 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "29" 2024-02-05 2024-02-24 0.3 24 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "29" 2024-02-05 2024-02-24 0.35 26 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "29" 2024-02-05 2024-02-24 0.4 27 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "29" 2024-02-05 2024-02-24 0.45 28 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "29" 2024-02-05 2024-02-24 0.5 30 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "29" 2024-02-05 2024-02-24 0.55 32 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "29" 2024-02-05 2024-02-24 0.6 34 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "29" 2024-02-05 2024-02-24 0.65 36 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "29" 2024-02-05 2024-02-24 0.7 38 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "29" 2024-02-05 2024-02-24 0.75 40 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "29" 2024-02-05 2024-02-24 0.8 42.2 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "29" 2024-02-05 2024-02-24 0.85 47 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "29" 2024-02-05 2024-02-24 0.9 50.2 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "29" 2024-02-05 2024-02-24 0.95 55.25 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "29" 2024-02-05 2024-02-24 0.975 61.525 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "29" 2024-02-05 2024-02-24 0.99 75.01 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "29" 2024-02-05 2024-02-25 0.01 7.98 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "29" 2024-02-05 2024-02-25 0.025 9.475 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "29" 2024-02-05 2024-02-25 0.05 10.95 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "29" 2024-02-05 2024-02-25 0.1 15 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "29" 2024-02-05 2024-02-25 0.15 16.85 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "29" 2024-02-05 2024-02-25 0.2 21 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "29" 2024-02-05 2024-02-25 0.25 22 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "29" 2024-02-05 2024-02-25 0.3 24 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "29" 2024-02-05 2024-02-25 0.35 25.65 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "29" 2024-02-05 2024-02-25 0.4 28 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "29" 2024-02-05 2024-02-25 0.45 30 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "29" 2024-02-05 2024-02-25 0.5 31 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "29" 2024-02-05 2024-02-25 0.55 34.45 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "29" 2024-02-05 2024-02-25 0.6 36.4 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "29" 2024-02-05 2024-02-25 0.65 39.35 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "29" 2024-02-05 2024-02-25 0.7 41 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "29" 2024-02-05 2024-02-25 0.75 44.25 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "29" 2024-02-05 2024-02-25 0.8 47.2 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "29" 2024-02-05 2024-02-25 0.85 49 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "29" 2024-02-05 2024-02-25 0.9 51 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "29" 2024-02-05 2024-02-25 0.95 61.25 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "29" 2024-02-05 2024-02-25 0.975 72.7249999999999 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "29" 2024-02-05 2024-02-25 0.99 78.1100000000001 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "29" 2024-02-05 2024-02-26 0.01 11 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "29" 2024-02-05 2024-02-26 0.025 11.475 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "29" 2024-02-05 2024-02-26 0.05 15 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "29" 2024-02-05 2024-02-26 0.1 17 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "29" 2024-02-05 2024-02-26 0.15 22 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "29" 2024-02-05 2024-02-26 0.2 23.8 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "29" 2024-02-05 2024-02-26 0.25 27.5 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "29" 2024-02-05 2024-02-26 0.3 29 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "29" 2024-02-05 2024-02-26 0.35 30.65 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "29" 2024-02-05 2024-02-26 0.4 34 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "29" 2024-02-05 2024-02-26 0.45 35.55 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "29" 2024-02-05 2024-02-26 0.5 39 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "29" 2024-02-05 2024-02-26 0.55 41 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "29" 2024-02-05 2024-02-26 0.6 43.4 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "29" 2024-02-05 2024-02-26 0.65 47 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "29" 2024-02-05 2024-02-26 0.7 48.3 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "29" 2024-02-05 2024-02-26 0.75 51.25 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "29" 2024-02-05 2024-02-26 0.8 57.2 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "29" 2024-02-05 2024-02-26 0.85 63.15 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "29" 2024-02-05 2024-02-26 0.9 65.1 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "29" 2024-02-05 2024-02-26 0.95 78 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "29" 2024-02-05 2024-02-26 0.975 83.6749999999999 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "29" 2024-02-05 2024-02-26 0.99 94.1800000000001 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "29" 2024-02-05 2024-02-27 0.01 12.96 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "29" 2024-02-05 2024-02-27 0.025 13.475 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "29" 2024-02-05 2024-02-27 0.05 14.95 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "29" 2024-02-05 2024-02-27 0.1 17 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "29" 2024-02-05 2024-02-27 0.15 18 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "29" 2024-02-05 2024-02-27 0.2 21.8 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "29" 2024-02-05 2024-02-27 0.25 23 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "29" 2024-02-05 2024-02-27 0.3 27.4 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "29" 2024-02-05 2024-02-27 0.35 29 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "29" 2024-02-05 2024-02-27 0.4 31 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "29" 2024-02-05 2024-02-27 0.45 32.55 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "29" 2024-02-05 2024-02-27 0.5 35.5 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "29" 2024-02-05 2024-02-27 0.55 37 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "29" 2024-02-05 2024-02-27 0.6 39 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "29" 2024-02-05 2024-02-27 0.65 42 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "29" 2024-02-05 2024-02-27 0.7 43.6 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "29" 2024-02-05 2024-02-27 0.75 48.25 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "29" 2024-02-05 2024-02-27 0.8 51.4 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "29" 2024-02-05 2024-02-27 0.85 59.15 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "29" 2024-02-05 2024-02-27 0.9 61.3 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "29" 2024-02-05 2024-02-27 0.95 67.05 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "29" 2024-02-05 2024-02-27 0.975 77.2499999999999 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "29" 2024-02-05 2024-02-27 0.99 93.2100000000001 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "29" 2024-02-05 2024-02-28 0.01 11.98 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "29" 2024-02-05 2024-02-28 0.025 13.475 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "29" 2024-02-05 2024-02-28 0.05 14 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "29" 2024-02-05 2024-02-28 0.1 17 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "29" 2024-02-05 2024-02-28 0.15 18.85 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "29" 2024-02-05 2024-02-28 0.2 21 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "29" 2024-02-05 2024-02-28 0.25 24.5 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "29" 2024-02-05 2024-02-28 0.3 28 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "29" 2024-02-05 2024-02-28 0.35 30 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "29" 2024-02-05 2024-02-28 0.4 31.6 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "29" 2024-02-05 2024-02-28 0.45 33.55 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "29" 2024-02-05 2024-02-28 0.5 35.5 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "29" 2024-02-05 2024-02-28 0.55 37.45 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "29" 2024-02-05 2024-02-28 0.6 39.4 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "29" 2024-02-05 2024-02-28 0.65 42.35 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "29" 2024-02-05 2024-02-28 0.7 44.3 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "29" 2024-02-05 2024-02-28 0.75 48 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "29" 2024-02-05 2024-02-28 0.8 53.2 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "29" 2024-02-05 2024-02-28 0.85 56.15 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "29" 2024-02-05 2024-02-28 0.9 69.1 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "29" 2024-02-05 2024-02-28 0.95 74.15 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "29" 2024-02-05 2024-02-28 0.975 80.05 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "29" 2024-02-05 2024-02-28 0.99 83.03 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "29" 2024-02-05 2024-02-29 0.01 9.97 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "29" 2024-02-05 2024-02-29 0.025 11 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "29" 2024-02-05 2024-02-29 0.05 11.95 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "29" 2024-02-05 2024-02-29 0.1 16 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "29" 2024-02-05 2024-02-29 0.15 19 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "29" 2024-02-05 2024-02-29 0.2 23 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "29" 2024-02-05 2024-02-29 0.25 25.5 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "29" 2024-02-05 2024-02-29 0.3 28.7 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "29" 2024-02-05 2024-02-29 0.35 30 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "29" 2024-02-05 2024-02-29 0.4 31.6 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "29" 2024-02-05 2024-02-29 0.45 32.55 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "29" 2024-02-05 2024-02-29 0.5 36 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "29" 2024-02-05 2024-02-29 0.55 37.9 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "29" 2024-02-05 2024-02-29 0.6 41.4 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "29" 2024-02-05 2024-02-29 0.65 43 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "29" 2024-02-05 2024-02-29 0.7 47.3 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "29" 2024-02-05 2024-02-29 0.75 51.5 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "29" 2024-02-05 2024-02-29 0.8 53.2 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "29" 2024-02-05 2024-02-29 0.85 58.3 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "29" 2024-02-05 2024-02-29 0.9 61.1 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "29" 2024-02-05 2024-02-29 0.95 70.55 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "29" 2024-02-05 2024-02-29 0.975 83 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "29" 2024-02-05 2024-02-29 0.99 86.2700000000001 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "29" 2024-02-05 2024-03-01 0.01 9.98 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "29" 2024-02-05 2024-03-01 0.025 12.475 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "29" 2024-02-05 2024-03-01 0.05 13.95 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "29" 2024-02-05 2024-03-01 0.1 15 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "29" 2024-02-05 2024-03-01 0.15 17.85 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "29" 2024-02-05 2024-03-01 0.2 19 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "29" 2024-02-05 2024-03-01 0.25 21.75 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "29" 2024-02-05 2024-03-01 0.3 23.7 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "29" 2024-02-05 2024-03-01 0.35 25 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "29" 2024-02-05 2024-03-01 0.4 27 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "29" 2024-02-05 2024-03-01 0.45 29.55 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "29" 2024-02-05 2024-03-01 0.5 30.5 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "29" 2024-02-05 2024-03-01 0.55 34 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "29" 2024-02-05 2024-03-01 0.6 35 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "29" 2024-02-05 2024-03-01 0.65 38.7 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "29" 2024-02-05 2024-03-01 0.7 42 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "29" 2024-02-05 2024-03-01 0.75 46 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "29" 2024-02-05 2024-03-01 0.8 52 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "29" 2024-02-05 2024-03-01 0.85 55 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "29" 2024-02-05 2024-03-01 0.9 60.1 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "29" 2024-02-05 2024-03-01 0.95 78.25 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "29" 2024-02-05 2024-03-01 0.975 88.05 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "29" 2024-02-05 2024-03-01 0.99 91.05 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "29" 2024-02-05 2024-03-02 0.01 7.99 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "29" 2024-02-05 2024-03-02 0.025 8 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "29" 2024-02-05 2024-03-02 0.05 10 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "29" 2024-02-05 2024-03-02 0.1 14 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "29" 2024-02-05 2024-03-02 0.15 15 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "29" 2024-02-05 2024-03-02 0.2 17.8 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "29" 2024-02-05 2024-03-02 0.25 19 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "29" 2024-02-05 2024-03-02 0.3 23 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "29" 2024-02-05 2024-03-02 0.35 24.65 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "29" 2024-02-05 2024-03-02 0.4 25 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "29" 2024-02-05 2024-03-02 0.45 27.55 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "29" 2024-02-05 2024-03-02 0.5 29 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "29" 2024-02-05 2024-03-02 0.55 31 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "29" 2024-02-05 2024-03-02 0.6 31.4 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "29" 2024-02-05 2024-03-02 0.65 34.35 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "29" 2024-02-05 2024-03-02 0.7 40 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "29" 2024-02-05 2024-03-02 0.75 42.25 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "29" 2024-02-05 2024-03-02 0.8 47.6 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "29" 2024-02-05 2024-03-02 0.85 56 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "29" 2024-02-05 2024-03-02 0.9 62.3 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "29" 2024-02-05 2024-03-02 0.95 71 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "29" 2024-02-05 2024-03-02 0.975 73.625 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "29" 2024-02-05 2024-03-02 0.99 78.2900000000001 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "29" 2024-02-05 2024-03-03 0.01 7.99 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "29" 2024-02-05 2024-03-03 0.025 8 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "29" 2024-02-05 2024-03-03 0.05 9 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "29" 2024-02-05 2024-03-03 0.1 11.9 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "29" 2024-02-05 2024-03-03 0.15 13.85 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "29" 2024-02-05 2024-03-03 0.2 17 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "29" 2024-02-05 2024-03-03 0.25 18.75 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "29" 2024-02-05 2024-03-03 0.3 21.4 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "29" 2024-02-05 2024-03-03 0.35 23 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "29" 2024-02-05 2024-03-03 0.4 25.6 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "29" 2024-02-05 2024-03-03 0.45 27 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "29" 2024-02-05 2024-03-03 0.5 28 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "29" 2024-02-05 2024-03-03 0.55 29 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "29" 2024-02-05 2024-03-03 0.6 31.4 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "29" 2024-02-05 2024-03-03 0.65 35.35 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "29" 2024-02-05 2024-03-03 0.7 37.3 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "29" 2024-02-05 2024-03-03 0.75 42.25 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "29" 2024-02-05 2024-03-03 0.8 46 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "29" 2024-02-05 2024-03-03 0.85 50 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "29" 2024-02-05 2024-03-03 0.9 55.1 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "29" 2024-02-05 2024-03-03 0.95 65.05 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "29" 2024-02-05 2024-03-03 0.975 73.575 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "29" 2024-02-05 2024-03-03 0.99 79.05 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "29" 2024-02-05 2024-03-04 0.01 5 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "29" 2024-02-05 2024-03-04 0.025 7 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "29" 2024-02-05 2024-03-04 0.05 9.9 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "29" 2024-02-05 2024-03-04 0.1 14 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "29" 2024-02-05 2024-03-04 0.15 17.7 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "29" 2024-02-05 2024-03-04 0.2 21 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "29" 2024-02-05 2024-03-04 0.25 23 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "29" 2024-02-05 2024-03-04 0.3 25 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "29" 2024-02-05 2024-03-04 0.35 27.65 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "29" 2024-02-05 2024-03-04 0.4 30 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "29" 2024-02-05 2024-03-04 0.45 32 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "29" 2024-02-05 2024-03-04 0.5 34 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "29" 2024-02-05 2024-03-04 0.55 34 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "29" 2024-02-05 2024-03-04 0.6 38.4 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "29" 2024-02-05 2024-03-04 0.65 40.35 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "29" 2024-02-05 2024-03-04 0.7 47 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "29" 2024-02-05 2024-03-04 0.75 50.25 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "29" 2024-02-05 2024-03-04 0.8 57.4 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "29" 2024-02-05 2024-03-04 0.85 63.6 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "29" 2024-02-05 2024-03-04 0.9 72.2 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "29" 2024-02-05 2024-03-04 0.95 85.05 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "29" 2024-02-05 2024-03-04 0.975 95.575 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "29" 2024-02-05 2024-03-04 0.99 99.2000000000001 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "28" 2024-02-05 2024-02-06 0.01 7.97 "quantile" "hospital admissions only" +"1 day ahead inc hosp" "28" 2024-02-05 2024-02-06 0.025 8.475 "quantile" "hospital admissions only" +"1 day ahead inc hosp" "28" 2024-02-05 2024-02-06 0.05 10 "quantile" "hospital admissions only" +"1 day ahead inc hosp" "28" 2024-02-05 2024-02-06 0.1 11 "quantile" "hospital admissions only" +"1 day ahead inc hosp" "28" 2024-02-05 2024-02-06 0.15 11.85 "quantile" "hospital admissions only" +"1 day ahead inc hosp" "28" 2024-02-05 2024-02-06 0.2 13.8 "quantile" "hospital admissions only" +"1 day ahead inc hosp" "28" 2024-02-05 2024-02-06 0.25 15 "quantile" "hospital admissions only" +"1 day ahead inc hosp" "28" 2024-02-05 2024-02-06 0.3 16 "quantile" "hospital admissions only" +"1 day ahead inc hosp" "28" 2024-02-05 2024-02-06 0.35 16.65 "quantile" "hospital admissions only" +"1 day ahead inc hosp" "28" 2024-02-05 2024-02-06 0.4 18 "quantile" "hospital admissions only" +"1 day ahead inc hosp" "28" 2024-02-05 2024-02-06 0.45 18.55 "quantile" "hospital admissions only" +"1 day ahead inc hosp" "28" 2024-02-05 2024-02-06 0.5 19 "quantile" "hospital admissions only" +"1 day ahead inc hosp" "28" 2024-02-05 2024-02-06 0.55 19.45 "quantile" "hospital admissions only" +"1 day ahead inc hosp" "28" 2024-02-05 2024-02-06 0.6 20.4 "quantile" "hospital admissions only" +"1 day ahead inc hosp" "28" 2024-02-05 2024-02-06 0.65 22 "quantile" "hospital admissions only" +"1 day ahead inc hosp" "28" 2024-02-05 2024-02-06 0.7 22.3 "quantile" "hospital admissions only" +"1 day ahead inc hosp" "28" 2024-02-05 2024-02-06 0.75 24 "quantile" "hospital admissions only" +"1 day ahead inc hosp" "28" 2024-02-05 2024-02-06 0.8 24 "quantile" "hospital admissions only" +"1 day ahead inc hosp" "28" 2024-02-05 2024-02-06 0.85 25.15 "quantile" "hospital admissions only" +"1 day ahead inc hosp" "28" 2024-02-05 2024-02-06 0.9 28 "quantile" "hospital admissions only" +"1 day ahead inc hosp" "28" 2024-02-05 2024-02-06 0.95 29.05 "quantile" "hospital admissions only" +"1 day ahead inc hosp" "28" 2024-02-05 2024-02-06 0.975 33.575 "quantile" "hospital admissions only" +"1 day ahead inc hosp" "28" 2024-02-05 2024-02-06 0.99 39.04 "quantile" "hospital admissions only" +"2 day ahead inc hosp" "28" 2024-02-05 2024-02-07 0.01 7.99 "quantile" "hospital admissions only" +"2 day ahead inc hosp" "28" 2024-02-05 2024-02-07 0.025 8.475 "quantile" "hospital admissions only" +"2 day ahead inc hosp" "28" 2024-02-05 2024-02-07 0.05 10 "quantile" "hospital admissions only" +"2 day ahead inc hosp" "28" 2024-02-05 2024-02-07 0.1 12 "quantile" "hospital admissions only" +"2 day ahead inc hosp" "28" 2024-02-05 2024-02-07 0.15 13 "quantile" "hospital admissions only" +"2 day ahead inc hosp" "28" 2024-02-05 2024-02-07 0.2 14 "quantile" "hospital admissions only" +"2 day ahead inc hosp" "28" 2024-02-05 2024-02-07 0.25 15 "quantile" "hospital admissions only" +"2 day ahead inc hosp" "28" 2024-02-05 2024-02-07 0.3 15.7 "quantile" "hospital admissions only" +"2 day ahead inc hosp" "28" 2024-02-05 2024-02-07 0.35 17 "quantile" "hospital admissions only" +"2 day ahead inc hosp" "28" 2024-02-05 2024-02-07 0.4 18 "quantile" "hospital admissions only" +"2 day ahead inc hosp" "28" 2024-02-05 2024-02-07 0.45 19 "quantile" "hospital admissions only" +"2 day ahead inc hosp" "28" 2024-02-05 2024-02-07 0.5 20 "quantile" "hospital admissions only" +"2 day ahead inc hosp" "28" 2024-02-05 2024-02-07 0.55 21 "quantile" "hospital admissions only" +"2 day ahead inc hosp" "28" 2024-02-05 2024-02-07 0.6 22 "quantile" "hospital admissions only" +"2 day ahead inc hosp" "28" 2024-02-05 2024-02-07 0.65 23 "quantile" "hospital admissions only" +"2 day ahead inc hosp" "28" 2024-02-05 2024-02-07 0.7 24 "quantile" "hospital admissions only" +"2 day ahead inc hosp" "28" 2024-02-05 2024-02-07 0.75 25 "quantile" "hospital admissions only" +"2 day ahead inc hosp" "28" 2024-02-05 2024-02-07 0.8 26.2 "quantile" "hospital admissions only" +"2 day ahead inc hosp" "28" 2024-02-05 2024-02-07 0.85 28 "quantile" "hospital admissions only" +"2 day ahead inc hosp" "28" 2024-02-05 2024-02-07 0.9 30 "quantile" "hospital admissions only" +"2 day ahead inc hosp" "28" 2024-02-05 2024-02-07 0.95 31 "quantile" "hospital admissions only" +"2 day ahead inc hosp" "28" 2024-02-05 2024-02-07 0.975 33.525 "quantile" "hospital admissions only" +"2 day ahead inc hosp" "28" 2024-02-05 2024-02-07 0.99 35.02 "quantile" "hospital admissions only" +"3 day ahead inc hosp" "28" 2024-02-05 2024-02-08 0.01 6.99 "quantile" "hospital admissions only" +"3 day ahead inc hosp" "28" 2024-02-05 2024-02-08 0.025 9 "quantile" "hospital admissions only" +"3 day ahead inc hosp" "28" 2024-02-05 2024-02-08 0.05 9 "quantile" "hospital admissions only" +"3 day ahead inc hosp" "28" 2024-02-05 2024-02-08 0.1 11 "quantile" "hospital admissions only" +"3 day ahead inc hosp" "28" 2024-02-05 2024-02-08 0.15 12 "quantile" "hospital admissions only" +"3 day ahead inc hosp" "28" 2024-02-05 2024-02-08 0.2 12 "quantile" "hospital admissions only" +"3 day ahead inc hosp" "28" 2024-02-05 2024-02-08 0.25 13 "quantile" "hospital admissions only" +"3 day ahead inc hosp" "28" 2024-02-05 2024-02-08 0.3 14 "quantile" "hospital admissions only" +"3 day ahead inc hosp" "28" 2024-02-05 2024-02-08 0.35 15.65 "quantile" "hospital admissions only" +"3 day ahead inc hosp" "28" 2024-02-05 2024-02-08 0.4 16 "quantile" "hospital admissions only" +"3 day ahead inc hosp" "28" 2024-02-05 2024-02-08 0.45 17 "quantile" "hospital admissions only" +"3 day ahead inc hosp" "28" 2024-02-05 2024-02-08 0.5 17 "quantile" "hospital admissions only" +"3 day ahead inc hosp" "28" 2024-02-05 2024-02-08 0.55 18 "quantile" "hospital admissions only" +"3 day ahead inc hosp" "28" 2024-02-05 2024-02-08 0.6 19 "quantile" "hospital admissions only" +"3 day ahead inc hosp" "28" 2024-02-05 2024-02-08 0.65 20 "quantile" "hospital admissions only" +"3 day ahead inc hosp" "28" 2024-02-05 2024-02-08 0.7 20 "quantile" "hospital admissions only" +"3 day ahead inc hosp" "28" 2024-02-05 2024-02-08 0.75 21 "quantile" "hospital admissions only" +"3 day ahead inc hosp" "28" 2024-02-05 2024-02-08 0.8 22 "quantile" "hospital admissions only" +"3 day ahead inc hosp" "28" 2024-02-05 2024-02-08 0.85 22.15 "quantile" "hospital admissions only" +"3 day ahead inc hosp" "28" 2024-02-05 2024-02-08 0.9 24.1 "quantile" "hospital admissions only" +"3 day ahead inc hosp" "28" 2024-02-05 2024-02-08 0.95 28.1 "quantile" "hospital admissions only" +"3 day ahead inc hosp" "28" 2024-02-05 2024-02-08 0.975 31.05 "quantile" "hospital admissions only" +"3 day ahead inc hosp" "28" 2024-02-05 2024-02-08 0.99 32.03 "quantile" "hospital admissions only" +"4 day ahead inc hosp" "28" 2024-02-05 2024-02-09 0.01 6.99 "quantile" "hospital admissions only" +"4 day ahead inc hosp" "28" 2024-02-05 2024-02-09 0.025 7.475 "quantile" "hospital admissions only" +"4 day ahead inc hosp" "28" 2024-02-05 2024-02-09 0.05 9 "quantile" "hospital admissions only" +"4 day ahead inc hosp" "28" 2024-02-05 2024-02-09 0.1 10 "quantile" "hospital admissions only" +"4 day ahead inc hosp" "28" 2024-02-05 2024-02-09 0.15 11 "quantile" "hospital admissions only" +"4 day ahead inc hosp" "28" 2024-02-05 2024-02-09 0.2 12 "quantile" "hospital admissions only" +"4 day ahead inc hosp" "28" 2024-02-05 2024-02-09 0.25 13 "quantile" "hospital admissions only" +"4 day ahead inc hosp" "28" 2024-02-05 2024-02-09 0.3 14 "quantile" "hospital admissions only" +"4 day ahead inc hosp" "28" 2024-02-05 2024-02-09 0.35 15 "quantile" "hospital admissions only" +"4 day ahead inc hosp" "28" 2024-02-05 2024-02-09 0.4 16.6 "quantile" "hospital admissions only" +"4 day ahead inc hosp" "28" 2024-02-05 2024-02-09 0.45 17.55 "quantile" "hospital admissions only" +"4 day ahead inc hosp" "28" 2024-02-05 2024-02-09 0.5 18 "quantile" "hospital admissions only" +"4 day ahead inc hosp" "28" 2024-02-05 2024-02-09 0.55 19 "quantile" "hospital admissions only" +"4 day ahead inc hosp" "28" 2024-02-05 2024-02-09 0.6 20 "quantile" "hospital admissions only" +"4 day ahead inc hosp" "28" 2024-02-05 2024-02-09 0.65 22.35 "quantile" "hospital admissions only" +"4 day ahead inc hosp" "28" 2024-02-05 2024-02-09 0.7 23.3 "quantile" "hospital admissions only" +"4 day ahead inc hosp" "28" 2024-02-05 2024-02-09 0.75 26 "quantile" "hospital admissions only" +"4 day ahead inc hosp" "28" 2024-02-05 2024-02-09 0.8 26 "quantile" "hospital admissions only" +"4 day ahead inc hosp" "28" 2024-02-05 2024-02-09 0.85 27.15 "quantile" "hospital admissions only" +"4 day ahead inc hosp" "28" 2024-02-05 2024-02-09 0.9 29 "quantile" "hospital admissions only" +"4 day ahead inc hosp" "28" 2024-02-05 2024-02-09 0.95 34.15 "quantile" "hospital admissions only" +"4 day ahead inc hosp" "28" 2024-02-05 2024-02-09 0.975 39.525 "quantile" "hospital admissions only" +"4 day ahead inc hosp" "28" 2024-02-05 2024-02-09 0.99 41.1000000000001 "quantile" "hospital admissions only" +"5 day ahead inc hosp" "28" 2024-02-05 2024-02-10 0.01 4.99 "quantile" "hospital admissions only" +"5 day ahead inc hosp" "28" 2024-02-05 2024-02-10 0.025 5.475 "quantile" "hospital admissions only" +"5 day ahead inc hosp" "28" 2024-02-05 2024-02-10 0.05 6.95 "quantile" "hospital admissions only" +"5 day ahead inc hosp" "28" 2024-02-05 2024-02-10 0.1 10 "quantile" "hospital admissions only" +"5 day ahead inc hosp" "28" 2024-02-05 2024-02-10 0.15 10 "quantile" "hospital admissions only" +"5 day ahead inc hosp" "28" 2024-02-05 2024-02-10 0.2 11 "quantile" "hospital admissions only" +"5 day ahead inc hosp" "28" 2024-02-05 2024-02-10 0.25 12 "quantile" "hospital admissions only" +"5 day ahead inc hosp" "28" 2024-02-05 2024-02-10 0.3 12 "quantile" "hospital admissions only" +"5 day ahead inc hosp" "28" 2024-02-05 2024-02-10 0.35 13 "quantile" "hospital admissions only" +"5 day ahead inc hosp" "28" 2024-02-05 2024-02-10 0.4 14 "quantile" "hospital admissions only" +"5 day ahead inc hosp" "28" 2024-02-05 2024-02-10 0.45 14.55 "quantile" "hospital admissions only" +"5 day ahead inc hosp" "28" 2024-02-05 2024-02-10 0.5 16 "quantile" "hospital admissions only" +"5 day ahead inc hosp" "28" 2024-02-05 2024-02-10 0.55 16 "quantile" "hospital admissions only" +"5 day ahead inc hosp" "28" 2024-02-05 2024-02-10 0.6 17 "quantile" "hospital admissions only" +"5 day ahead inc hosp" "28" 2024-02-05 2024-02-10 0.65 17.35 "quantile" "hospital admissions only" +"5 day ahead inc hosp" "28" 2024-02-05 2024-02-10 0.7 18 "quantile" "hospital admissions only" +"5 day ahead inc hosp" "28" 2024-02-05 2024-02-10 0.75 19 "quantile" "hospital admissions only" +"5 day ahead inc hosp" "28" 2024-02-05 2024-02-10 0.8 19.2 "quantile" "hospital admissions only" +"5 day ahead inc hosp" "28" 2024-02-05 2024-02-10 0.85 21 "quantile" "hospital admissions only" +"5 day ahead inc hosp" "28" 2024-02-05 2024-02-10 0.9 23.1 "quantile" "hospital admissions only" +"5 day ahead inc hosp" "28" 2024-02-05 2024-02-10 0.95 26.1 "quantile" "hospital admissions only" +"5 day ahead inc hosp" "28" 2024-02-05 2024-02-10 0.975 29.525 "quantile" "hospital admissions only" +"5 day ahead inc hosp" "28" 2024-02-05 2024-02-10 0.99 32.08 "quantile" "hospital admissions only" +"6 day ahead inc hosp" "28" 2024-02-05 2024-02-11 0.01 5.97 "quantile" "hospital admissions only" +"6 day ahead inc hosp" "28" 2024-02-05 2024-02-11 0.025 7 "quantile" "hospital admissions only" +"6 day ahead inc hosp" "28" 2024-02-05 2024-02-11 0.05 7 "quantile" "hospital admissions only" +"6 day ahead inc hosp" "28" 2024-02-05 2024-02-11 0.1 10 "quantile" "hospital admissions only" +"6 day ahead inc hosp" "28" 2024-02-05 2024-02-11 0.15 10.85 "quantile" "hospital admissions only" +"6 day ahead inc hosp" "28" 2024-02-05 2024-02-11 0.2 11 "quantile" "hospital admissions only" +"6 day ahead inc hosp" "28" 2024-02-05 2024-02-11 0.25 12.75 "quantile" "hospital admissions only" +"6 day ahead inc hosp" "28" 2024-02-05 2024-02-11 0.3 13 "quantile" "hospital admissions only" +"6 day ahead inc hosp" "28" 2024-02-05 2024-02-11 0.35 14 "quantile" "hospital admissions only" +"6 day ahead inc hosp" "28" 2024-02-05 2024-02-11 0.4 15.6 "quantile" "hospital admissions only" +"6 day ahead inc hosp" "28" 2024-02-05 2024-02-11 0.45 16 "quantile" "hospital admissions only" +"6 day ahead inc hosp" "28" 2024-02-05 2024-02-11 0.5 17 "quantile" "hospital admissions only" +"6 day ahead inc hosp" "28" 2024-02-05 2024-02-11 0.55 18 "quantile" "hospital admissions only" +"6 day ahead inc hosp" "28" 2024-02-05 2024-02-11 0.6 19.4 "quantile" "hospital admissions only" +"6 day ahead inc hosp" "28" 2024-02-05 2024-02-11 0.65 20.35 "quantile" "hospital admissions only" +"6 day ahead inc hosp" "28" 2024-02-05 2024-02-11 0.7 22 "quantile" "hospital admissions only" +"6 day ahead inc hosp" "28" 2024-02-05 2024-02-11 0.75 23 "quantile" "hospital admissions only" +"6 day ahead inc hosp" "28" 2024-02-05 2024-02-11 0.8 24 "quantile" "hospital admissions only" +"6 day ahead inc hosp" "28" 2024-02-05 2024-02-11 0.85 26 "quantile" "hospital admissions only" +"6 day ahead inc hosp" "28" 2024-02-05 2024-02-11 0.9 28 "quantile" "hospital admissions only" +"6 day ahead inc hosp" "28" 2024-02-05 2024-02-11 0.95 31 "quantile" "hospital admissions only" +"6 day ahead inc hosp" "28" 2024-02-05 2024-02-11 0.975 33.05 "quantile" "hospital admissions only" +"6 day ahead inc hosp" "28" 2024-02-05 2024-02-11 0.99 35 "quantile" "hospital admissions only" +"7 day ahead inc hosp" "28" 2024-02-05 2024-02-12 0.01 9.95 "quantile" "hospital admissions only" +"7 day ahead inc hosp" "28" 2024-02-05 2024-02-12 0.025 10.475 "quantile" "hospital admissions only" +"7 day ahead inc hosp" "28" 2024-02-05 2024-02-12 0.05 11 "quantile" "hospital admissions only" +"7 day ahead inc hosp" "28" 2024-02-05 2024-02-12 0.1 12.9 "quantile" "hospital admissions only" +"7 day ahead inc hosp" "28" 2024-02-05 2024-02-12 0.15 13 "quantile" "hospital admissions only" +"7 day ahead inc hosp" "28" 2024-02-05 2024-02-12 0.2 14.8 "quantile" "hospital admissions only" +"7 day ahead inc hosp" "28" 2024-02-05 2024-02-12 0.25 15 "quantile" "hospital admissions only" +"7 day ahead inc hosp" "28" 2024-02-05 2024-02-12 0.3 16 "quantile" "hospital admissions only" +"7 day ahead inc hosp" "28" 2024-02-05 2024-02-12 0.35 17.65 "quantile" "hospital admissions only" +"7 day ahead inc hosp" "28" 2024-02-05 2024-02-12 0.4 18 "quantile" "hospital admissions only" +"7 day ahead inc hosp" "28" 2024-02-05 2024-02-12 0.45 19 "quantile" "hospital admissions only" +"7 day ahead inc hosp" "28" 2024-02-05 2024-02-12 0.5 20 "quantile" "hospital admissions only" +"7 day ahead inc hosp" "28" 2024-02-05 2024-02-12 0.55 21 "quantile" "hospital admissions only" +"7 day ahead inc hosp" "28" 2024-02-05 2024-02-12 0.6 22 "quantile" "hospital admissions only" +"7 day ahead inc hosp" "28" 2024-02-05 2024-02-12 0.65 23 "quantile" "hospital admissions only" +"7 day ahead inc hosp" "28" 2024-02-05 2024-02-12 0.7 24 "quantile" "hospital admissions only" +"7 day ahead inc hosp" "28" 2024-02-05 2024-02-12 0.75 25.25 "quantile" "hospital admissions only" +"7 day ahead inc hosp" "28" 2024-02-05 2024-02-12 0.8 27 "quantile" "hospital admissions only" +"7 day ahead inc hosp" "28" 2024-02-05 2024-02-12 0.85 30 "quantile" "hospital admissions only" +"7 day ahead inc hosp" "28" 2024-02-05 2024-02-12 0.9 32.1 "quantile" "hospital admissions only" +"7 day ahead inc hosp" "28" 2024-02-05 2024-02-12 0.95 36 "quantile" "hospital admissions only" +"7 day ahead inc hosp" "28" 2024-02-05 2024-02-12 0.975 36.525 "quantile" "hospital admissions only" +"7 day ahead inc hosp" "28" 2024-02-05 2024-02-12 0.99 37.02 "quantile" "hospital admissions only" +"8 day ahead inc hosp" "28" 2024-02-05 2024-02-13 0.01 5.97 "quantile" "hospital admissions only" +"8 day ahead inc hosp" "28" 2024-02-05 2024-02-13 0.025 6.475 "quantile" "hospital admissions only" +"8 day ahead inc hosp" "28" 2024-02-05 2024-02-13 0.05 7.95 "quantile" "hospital admissions only" +"8 day ahead inc hosp" "28" 2024-02-05 2024-02-13 0.1 9 "quantile" "hospital admissions only" +"8 day ahead inc hosp" "28" 2024-02-05 2024-02-13 0.15 10 "quantile" "hospital admissions only" +"8 day ahead inc hosp" "28" 2024-02-05 2024-02-13 0.2 11 "quantile" "hospital admissions only" +"8 day ahead inc hosp" "28" 2024-02-05 2024-02-13 0.25 12 "quantile" "hospital admissions only" +"8 day ahead inc hosp" "28" 2024-02-05 2024-02-13 0.3 13.7 "quantile" "hospital admissions only" +"8 day ahead inc hosp" "28" 2024-02-05 2024-02-13 0.35 15 "quantile" "hospital admissions only" +"8 day ahead inc hosp" "28" 2024-02-05 2024-02-13 0.4 16 "quantile" "hospital admissions only" +"8 day ahead inc hosp" "28" 2024-02-05 2024-02-13 0.45 16 "quantile" "hospital admissions only" +"8 day ahead inc hosp" "28" 2024-02-05 2024-02-13 0.5 17.5 "quantile" "hospital admissions only" +"8 day ahead inc hosp" "28" 2024-02-05 2024-02-13 0.55 18 "quantile" "hospital admissions only" +"8 day ahead inc hosp" "28" 2024-02-05 2024-02-13 0.6 20 "quantile" "hospital admissions only" +"8 day ahead inc hosp" "28" 2024-02-05 2024-02-13 0.65 21 "quantile" "hospital admissions only" +"8 day ahead inc hosp" "28" 2024-02-05 2024-02-13 0.7 22 "quantile" "hospital admissions only" +"8 day ahead inc hosp" "28" 2024-02-05 2024-02-13 0.75 23 "quantile" "hospital admissions only" +"8 day ahead inc hosp" "28" 2024-02-05 2024-02-13 0.8 25.2 "quantile" "hospital admissions only" +"8 day ahead inc hosp" "28" 2024-02-05 2024-02-13 0.85 27 "quantile" "hospital admissions only" +"8 day ahead inc hosp" "28" 2024-02-05 2024-02-13 0.9 28.1 "quantile" "hospital admissions only" +"8 day ahead inc hosp" "28" 2024-02-05 2024-02-13 0.95 31 "quantile" "hospital admissions only" +"8 day ahead inc hosp" "28" 2024-02-05 2024-02-13 0.975 32.525 "quantile" "hospital admissions only" +"8 day ahead inc hosp" "28" 2024-02-05 2024-02-13 0.99 37.05 "quantile" "hospital admissions only" +"9 day ahead inc hosp" "28" 2024-02-05 2024-02-14 0.01 3.98 "quantile" "hospital admissions only" +"9 day ahead inc hosp" "28" 2024-02-05 2024-02-14 0.025 5.475 "quantile" "hospital admissions only" +"9 day ahead inc hosp" "28" 2024-02-05 2024-02-14 0.05 6 "quantile" "hospital admissions only" +"9 day ahead inc hosp" "28" 2024-02-05 2024-02-14 0.1 9 "quantile" "hospital admissions only" +"9 day ahead inc hosp" "28" 2024-02-05 2024-02-14 0.15 11 "quantile" "hospital admissions only" +"9 day ahead inc hosp" "28" 2024-02-05 2024-02-14 0.2 11.8 "quantile" "hospital admissions only" +"9 day ahead inc hosp" "28" 2024-02-05 2024-02-14 0.25 12.75 "quantile" "hospital admissions only" +"9 day ahead inc hosp" "28" 2024-02-05 2024-02-14 0.3 13 "quantile" "hospital admissions only" +"9 day ahead inc hosp" "28" 2024-02-05 2024-02-14 0.35 14 "quantile" "hospital admissions only" +"9 day ahead inc hosp" "28" 2024-02-05 2024-02-14 0.4 15 "quantile" "hospital admissions only" +"9 day ahead inc hosp" "28" 2024-02-05 2024-02-14 0.45 16 "quantile" "hospital admissions only" +"9 day ahead inc hosp" "28" 2024-02-05 2024-02-14 0.5 17 "quantile" "hospital admissions only" +"9 day ahead inc hosp" "28" 2024-02-05 2024-02-14 0.55 18 "quantile" "hospital admissions only" +"9 day ahead inc hosp" "28" 2024-02-05 2024-02-14 0.6 19 "quantile" "hospital admissions only" +"9 day ahead inc hosp" "28" 2024-02-05 2024-02-14 0.65 19 "quantile" "hospital admissions only" +"9 day ahead inc hosp" "28" 2024-02-05 2024-02-14 0.7 20 "quantile" "hospital admissions only" +"9 day ahead inc hosp" "28" 2024-02-05 2024-02-14 0.75 21 "quantile" "hospital admissions only" +"9 day ahead inc hosp" "28" 2024-02-05 2024-02-14 0.8 23.2 "quantile" "hospital admissions only" +"9 day ahead inc hosp" "28" 2024-02-05 2024-02-14 0.85 25 "quantile" "hospital admissions only" +"9 day ahead inc hosp" "28" 2024-02-05 2024-02-14 0.9 27 "quantile" "hospital admissions only" +"9 day ahead inc hosp" "28" 2024-02-05 2024-02-14 0.95 29.05 "quantile" "hospital admissions only" +"9 day ahead inc hosp" "28" 2024-02-05 2024-02-14 0.975 32 "quantile" "hospital admissions only" +"9 day ahead inc hosp" "28" 2024-02-05 2024-02-14 0.99 38.02 "quantile" "hospital admissions only" +"10 day ahead inc hosp" "28" 2024-02-05 2024-02-15 0.01 3.99 "quantile" "hospital admissions only" +"10 day ahead inc hosp" "28" 2024-02-05 2024-02-15 0.025 4 "quantile" "hospital admissions only" +"10 day ahead inc hosp" "28" 2024-02-05 2024-02-15 0.05 6 "quantile" "hospital admissions only" +"10 day ahead inc hosp" "28" 2024-02-05 2024-02-15 0.1 8 "quantile" "hospital admissions only" +"10 day ahead inc hosp" "28" 2024-02-05 2024-02-15 0.15 9 "quantile" "hospital admissions only" +"10 day ahead inc hosp" "28" 2024-02-05 2024-02-15 0.2 10 "quantile" "hospital admissions only" +"10 day ahead inc hosp" "28" 2024-02-05 2024-02-15 0.25 11.75 "quantile" "hospital admissions only" +"10 day ahead inc hosp" "28" 2024-02-05 2024-02-15 0.3 12.7 "quantile" "hospital admissions only" +"10 day ahead inc hosp" "28" 2024-02-05 2024-02-15 0.35 14 "quantile" "hospital admissions only" +"10 day ahead inc hosp" "28" 2024-02-05 2024-02-15 0.4 14 "quantile" "hospital admissions only" +"10 day ahead inc hosp" "28" 2024-02-05 2024-02-15 0.45 15 "quantile" "hospital admissions only" +"10 day ahead inc hosp" "28" 2024-02-05 2024-02-15 0.5 16 "quantile" "hospital admissions only" +"10 day ahead inc hosp" "28" 2024-02-05 2024-02-15 0.55 16.45 "quantile" "hospital admissions only" +"10 day ahead inc hosp" "28" 2024-02-05 2024-02-15 0.6 17.4 "quantile" "hospital admissions only" +"10 day ahead inc hosp" "28" 2024-02-05 2024-02-15 0.65 19 "quantile" "hospital admissions only" +"10 day ahead inc hosp" "28" 2024-02-05 2024-02-15 0.7 20.3 "quantile" "hospital admissions only" +"10 day ahead inc hosp" "28" 2024-02-05 2024-02-15 0.75 22 "quantile" "hospital admissions only" +"10 day ahead inc hosp" "28" 2024-02-05 2024-02-15 0.8 24 "quantile" "hospital admissions only" +"10 day ahead inc hosp" "28" 2024-02-05 2024-02-15 0.85 25 "quantile" "hospital admissions only" +"10 day ahead inc hosp" "28" 2024-02-05 2024-02-15 0.9 26 "quantile" "hospital admissions only" +"10 day ahead inc hosp" "28" 2024-02-05 2024-02-15 0.95 28.05 "quantile" "hospital admissions only" +"10 day ahead inc hosp" "28" 2024-02-05 2024-02-15 0.975 33.05 "quantile" "hospital admissions only" +"10 day ahead inc hosp" "28" 2024-02-05 2024-02-15 0.99 34.02 "quantile" "hospital admissions only" +"11 day ahead inc hosp" "28" 2024-02-05 2024-02-16 0.01 3.99 "quantile" "hospital admissions only" +"11 day ahead inc hosp" "28" 2024-02-05 2024-02-16 0.025 4.475 "quantile" "hospital admissions only" +"11 day ahead inc hosp" "28" 2024-02-05 2024-02-16 0.05 7.85 "quantile" "hospital admissions only" +"11 day ahead inc hosp" "28" 2024-02-05 2024-02-16 0.1 10 "quantile" "hospital admissions only" +"11 day ahead inc hosp" "28" 2024-02-05 2024-02-16 0.15 11 "quantile" "hospital admissions only" +"11 day ahead inc hosp" "28" 2024-02-05 2024-02-16 0.2 12.8 "quantile" "hospital admissions only" +"11 day ahead inc hosp" "28" 2024-02-05 2024-02-16 0.25 14 "quantile" "hospital admissions only" +"11 day ahead inc hosp" "28" 2024-02-05 2024-02-16 0.3 15 "quantile" "hospital admissions only" +"11 day ahead inc hosp" "28" 2024-02-05 2024-02-16 0.35 16 "quantile" "hospital admissions only" +"11 day ahead inc hosp" "28" 2024-02-05 2024-02-16 0.4 17 "quantile" "hospital admissions only" +"11 day ahead inc hosp" "28" 2024-02-05 2024-02-16 0.45 18 "quantile" "hospital admissions only" +"11 day ahead inc hosp" "28" 2024-02-05 2024-02-16 0.5 19 "quantile" "hospital admissions only" +"11 day ahead inc hosp" "28" 2024-02-05 2024-02-16 0.55 19 "quantile" "hospital admissions only" +"11 day ahead inc hosp" "28" 2024-02-05 2024-02-16 0.6 21 "quantile" "hospital admissions only" +"11 day ahead inc hosp" "28" 2024-02-05 2024-02-16 0.65 22 "quantile" "hospital admissions only" +"11 day ahead inc hosp" "28" 2024-02-05 2024-02-16 0.7 23.3 "quantile" "hospital admissions only" +"11 day ahead inc hosp" "28" 2024-02-05 2024-02-16 0.75 24 "quantile" "hospital admissions only" +"11 day ahead inc hosp" "28" 2024-02-05 2024-02-16 0.8 25 "quantile" "hospital admissions only" +"11 day ahead inc hosp" "28" 2024-02-05 2024-02-16 0.85 28 "quantile" "hospital admissions only" +"11 day ahead inc hosp" "28" 2024-02-05 2024-02-16 0.9 29.1 "quantile" "hospital admissions only" +"11 day ahead inc hosp" "28" 2024-02-05 2024-02-16 0.95 33 "quantile" "hospital admissions only" +"11 day ahead inc hosp" "28" 2024-02-05 2024-02-16 0.975 33.525 "quantile" "hospital admissions only" +"11 day ahead inc hosp" "28" 2024-02-05 2024-02-16 0.99 34.03 "quantile" "hospital admissions only" +"12 day ahead inc hosp" "28" 2024-02-05 2024-02-17 0.01 4.99 "quantile" "hospital admissions only" +"12 day ahead inc hosp" "28" 2024-02-05 2024-02-17 0.025 5.475 "quantile" "hospital admissions only" +"12 day ahead inc hosp" "28" 2024-02-05 2024-02-17 0.05 6 "quantile" "hospital admissions only" +"12 day ahead inc hosp" "28" 2024-02-05 2024-02-17 0.1 7.9 "quantile" "hospital admissions only" +"12 day ahead inc hosp" "28" 2024-02-05 2024-02-17 0.15 9 "quantile" "hospital admissions only" +"12 day ahead inc hosp" "28" 2024-02-05 2024-02-17 0.2 10 "quantile" "hospital admissions only" +"12 day ahead inc hosp" "28" 2024-02-05 2024-02-17 0.25 11 "quantile" "hospital admissions only" +"12 day ahead inc hosp" "28" 2024-02-05 2024-02-17 0.3 11 "quantile" "hospital admissions only" +"12 day ahead inc hosp" "28" 2024-02-05 2024-02-17 0.35 11 "quantile" "hospital admissions only" +"12 day ahead inc hosp" "28" 2024-02-05 2024-02-17 0.4 12.6 "quantile" "hospital admissions only" +"12 day ahead inc hosp" "28" 2024-02-05 2024-02-17 0.45 13.55 "quantile" "hospital admissions only" +"12 day ahead inc hosp" "28" 2024-02-05 2024-02-17 0.5 14 "quantile" "hospital admissions only" +"12 day ahead inc hosp" "28" 2024-02-05 2024-02-17 0.55 15.45 "quantile" "hospital admissions only" +"12 day ahead inc hosp" "28" 2024-02-05 2024-02-17 0.6 17.4 "quantile" "hospital admissions only" +"12 day ahead inc hosp" "28" 2024-02-05 2024-02-17 0.65 19 "quantile" "hospital admissions only" +"12 day ahead inc hosp" "28" 2024-02-05 2024-02-17 0.7 20 "quantile" "hospital admissions only" +"12 day ahead inc hosp" "28" 2024-02-05 2024-02-17 0.75 21 "quantile" "hospital admissions only" +"12 day ahead inc hosp" "28" 2024-02-05 2024-02-17 0.8 22 "quantile" "hospital admissions only" +"12 day ahead inc hosp" "28" 2024-02-05 2024-02-17 0.85 23.15 "quantile" "hospital admissions only" +"12 day ahead inc hosp" "28" 2024-02-05 2024-02-17 0.9 27 "quantile" "hospital admissions only" +"12 day ahead inc hosp" "28" 2024-02-05 2024-02-17 0.95 28.05 "quantile" "hospital admissions only" +"12 day ahead inc hosp" "28" 2024-02-05 2024-02-17 0.975 30.525 "quantile" "hospital admissions only" +"12 day ahead inc hosp" "28" 2024-02-05 2024-02-17 0.99 34.01 "quantile" "hospital admissions only" +"13 day ahead inc hosp" "28" 2024-02-05 2024-02-18 0.01 4 "quantile" "hospital admissions only" +"13 day ahead inc hosp" "28" 2024-02-05 2024-02-18 0.025 5.475 "quantile" "hospital admissions only" +"13 day ahead inc hosp" "28" 2024-02-05 2024-02-18 0.05 6.95 "quantile" "hospital admissions only" +"13 day ahead inc hosp" "28" 2024-02-05 2024-02-18 0.1 8 "quantile" "hospital admissions only" +"13 day ahead inc hosp" "28" 2024-02-05 2024-02-18 0.15 9 "quantile" "hospital admissions only" +"13 day ahead inc hosp" "28" 2024-02-05 2024-02-18 0.2 11 "quantile" "hospital admissions only" +"13 day ahead inc hosp" "28" 2024-02-05 2024-02-18 0.25 11 "quantile" "hospital admissions only" +"13 day ahead inc hosp" "28" 2024-02-05 2024-02-18 0.3 11.7 "quantile" "hospital admissions only" +"13 day ahead inc hosp" "28" 2024-02-05 2024-02-18 0.35 12.65 "quantile" "hospital admissions only" +"13 day ahead inc hosp" "28" 2024-02-05 2024-02-18 0.4 13 "quantile" "hospital admissions only" +"13 day ahead inc hosp" "28" 2024-02-05 2024-02-18 0.45 14.55 "quantile" "hospital admissions only" +"13 day ahead inc hosp" "28" 2024-02-05 2024-02-18 0.5 15 "quantile" "hospital admissions only" +"13 day ahead inc hosp" "28" 2024-02-05 2024-02-18 0.55 15 "quantile" "hospital admissions only" +"13 day ahead inc hosp" "28" 2024-02-05 2024-02-18 0.6 16.4 "quantile" "hospital admissions only" +"13 day ahead inc hosp" "28" 2024-02-05 2024-02-18 0.65 18 "quantile" "hospital admissions only" +"13 day ahead inc hosp" "28" 2024-02-05 2024-02-18 0.7 20 "quantile" "hospital admissions only" +"13 day ahead inc hosp" "28" 2024-02-05 2024-02-18 0.75 21.25 "quantile" "hospital admissions only" +"13 day ahead inc hosp" "28" 2024-02-05 2024-02-18 0.8 24 "quantile" "hospital admissions only" +"13 day ahead inc hosp" "28" 2024-02-05 2024-02-18 0.85 26 "quantile" "hospital admissions only" +"13 day ahead inc hosp" "28" 2024-02-05 2024-02-18 0.9 27 "quantile" "hospital admissions only" +"13 day ahead inc hosp" "28" 2024-02-05 2024-02-18 0.95 30.05 "quantile" "hospital admissions only" +"13 day ahead inc hosp" "28" 2024-02-05 2024-02-18 0.975 35.575 "quantile" "hospital admissions only" +"13 day ahead inc hosp" "28" 2024-02-05 2024-02-18 0.99 38.05 "quantile" "hospital admissions only" +"14 day ahead inc hosp" "28" 2024-02-05 2024-02-19 0.01 3.99 "quantile" "hospital admissions only" +"14 day ahead inc hosp" "28" 2024-02-05 2024-02-19 0.025 4.475 "quantile" "hospital admissions only" +"14 day ahead inc hosp" "28" 2024-02-05 2024-02-19 0.05 6.95 "quantile" "hospital admissions only" +"14 day ahead inc hosp" "28" 2024-02-05 2024-02-19 0.1 8 "quantile" "hospital admissions only" +"14 day ahead inc hosp" "28" 2024-02-05 2024-02-19 0.15 10 "quantile" "hospital admissions only" +"14 day ahead inc hosp" "28" 2024-02-05 2024-02-19 0.2 11 "quantile" "hospital admissions only" +"14 day ahead inc hosp" "28" 2024-02-05 2024-02-19 0.25 12 "quantile" "hospital admissions only" +"14 day ahead inc hosp" "28" 2024-02-05 2024-02-19 0.3 13.7 "quantile" "hospital admissions only" +"14 day ahead inc hosp" "28" 2024-02-05 2024-02-19 0.35 15 "quantile" "hospital admissions only" +"14 day ahead inc hosp" "28" 2024-02-05 2024-02-19 0.4 16.6 "quantile" "hospital admissions only" +"14 day ahead inc hosp" "28" 2024-02-05 2024-02-19 0.45 18.55 "quantile" "hospital admissions only" +"14 day ahead inc hosp" "28" 2024-02-05 2024-02-19 0.5 20 "quantile" "hospital admissions only" +"14 day ahead inc hosp" "28" 2024-02-05 2024-02-19 0.55 21 "quantile" "hospital admissions only" +"14 day ahead inc hosp" "28" 2024-02-05 2024-02-19 0.6 22 "quantile" "hospital admissions only" +"14 day ahead inc hosp" "28" 2024-02-05 2024-02-19 0.65 23 "quantile" "hospital admissions only" +"14 day ahead inc hosp" "28" 2024-02-05 2024-02-19 0.7 24 "quantile" "hospital admissions only" +"14 day ahead inc hosp" "28" 2024-02-05 2024-02-19 0.75 25 "quantile" "hospital admissions only" +"14 day ahead inc hosp" "28" 2024-02-05 2024-02-19 0.8 26.4 "quantile" "hospital admissions only" +"14 day ahead inc hosp" "28" 2024-02-05 2024-02-19 0.85 28 "quantile" "hospital admissions only" +"14 day ahead inc hosp" "28" 2024-02-05 2024-02-19 0.9 30 "quantile" "hospital admissions only" +"14 day ahead inc hosp" "28" 2024-02-05 2024-02-19 0.95 35 "quantile" "hospital admissions only" +"14 day ahead inc hosp" "28" 2024-02-05 2024-02-19 0.975 37.05 "quantile" "hospital admissions only" +"14 day ahead inc hosp" "28" 2024-02-05 2024-02-19 0.99 40.07 "quantile" "hospital admissions only" +"15 day ahead inc hosp" "28" 2024-02-05 2024-02-20 0.01 4.98 "quantile" "hospital admissions only" +"15 day ahead inc hosp" "28" 2024-02-05 2024-02-20 0.025 5 "quantile" "hospital admissions only" +"15 day ahead inc hosp" "28" 2024-02-05 2024-02-20 0.05 6 "quantile" "hospital admissions only" +"15 day ahead inc hosp" "28" 2024-02-05 2024-02-20 0.1 7 "quantile" "hospital admissions only" +"15 day ahead inc hosp" "28" 2024-02-05 2024-02-20 0.15 9 "quantile" "hospital admissions only" +"15 day ahead inc hosp" "28" 2024-02-05 2024-02-20 0.2 10 "quantile" "hospital admissions only" +"15 day ahead inc hosp" "28" 2024-02-05 2024-02-20 0.25 11 "quantile" "hospital admissions only" +"15 day ahead inc hosp" "28" 2024-02-05 2024-02-20 0.3 12.7 "quantile" "hospital admissions only" +"15 day ahead inc hosp" "28" 2024-02-05 2024-02-20 0.35 14 "quantile" "hospital admissions only" +"15 day ahead inc hosp" "28" 2024-02-05 2024-02-20 0.4 14 "quantile" "hospital admissions only" +"15 day ahead inc hosp" "28" 2024-02-05 2024-02-20 0.45 15 "quantile" "hospital admissions only" +"15 day ahead inc hosp" "28" 2024-02-05 2024-02-20 0.5 15 "quantile" "hospital admissions only" +"15 day ahead inc hosp" "28" 2024-02-05 2024-02-20 0.55 16.45 "quantile" "hospital admissions only" +"15 day ahead inc hosp" "28" 2024-02-05 2024-02-20 0.6 17 "quantile" "hospital admissions only" +"15 day ahead inc hosp" "28" 2024-02-05 2024-02-20 0.65 18.35 "quantile" "hospital admissions only" +"15 day ahead inc hosp" "28" 2024-02-05 2024-02-20 0.7 19.3 "quantile" "hospital admissions only" +"15 day ahead inc hosp" "28" 2024-02-05 2024-02-20 0.75 21 "quantile" "hospital admissions only" +"15 day ahead inc hosp" "28" 2024-02-05 2024-02-20 0.8 22.2 "quantile" "hospital admissions only" +"15 day ahead inc hosp" "28" 2024-02-05 2024-02-20 0.85 26 "quantile" "hospital admissions only" +"15 day ahead inc hosp" "28" 2024-02-05 2024-02-20 0.9 27.1 "quantile" "hospital admissions only" +"15 day ahead inc hosp" "28" 2024-02-05 2024-02-20 0.95 33.05 "quantile" "hospital admissions only" +"15 day ahead inc hosp" "28" 2024-02-05 2024-02-20 0.975 34.525 "quantile" "hospital admissions only" +"15 day ahead inc hosp" "28" 2024-02-05 2024-02-20 0.99 36.08 "quantile" "hospital admissions only" +"16 day ahead inc hosp" "28" 2024-02-05 2024-02-21 0.01 4.99 "quantile" "hospital admissions only" +"16 day ahead inc hosp" "28" 2024-02-05 2024-02-21 0.025 5 "quantile" "hospital admissions only" +"16 day ahead inc hosp" "28" 2024-02-05 2024-02-21 0.05 5.95 "quantile" "hospital admissions only" +"16 day ahead inc hosp" "28" 2024-02-05 2024-02-21 0.1 8 "quantile" "hospital admissions only" +"16 day ahead inc hosp" "28" 2024-02-05 2024-02-21 0.15 9 "quantile" "hospital admissions only" +"16 day ahead inc hosp" "28" 2024-02-05 2024-02-21 0.2 10.8 "quantile" "hospital admissions only" +"16 day ahead inc hosp" "28" 2024-02-05 2024-02-21 0.25 12 "quantile" "hospital admissions only" +"16 day ahead inc hosp" "28" 2024-02-05 2024-02-21 0.3 12.7 "quantile" "hospital admissions only" +"16 day ahead inc hosp" "28" 2024-02-05 2024-02-21 0.35 13 "quantile" "hospital admissions only" +"16 day ahead inc hosp" "28" 2024-02-05 2024-02-21 0.4 14 "quantile" "hospital admissions only" +"16 day ahead inc hosp" "28" 2024-02-05 2024-02-21 0.45 15 "quantile" "hospital admissions only" +"16 day ahead inc hosp" "28" 2024-02-05 2024-02-21 0.5 16 "quantile" "hospital admissions only" +"16 day ahead inc hosp" "28" 2024-02-05 2024-02-21 0.55 17 "quantile" "hospital admissions only" +"16 day ahead inc hosp" "28" 2024-02-05 2024-02-21 0.6 18 "quantile" "hospital admissions only" +"16 day ahead inc hosp" "28" 2024-02-05 2024-02-21 0.65 18 "quantile" "hospital admissions only" +"16 day ahead inc hosp" "28" 2024-02-05 2024-02-21 0.7 20 "quantile" "hospital admissions only" +"16 day ahead inc hosp" "28" 2024-02-05 2024-02-21 0.75 22 "quantile" "hospital admissions only" +"16 day ahead inc hosp" "28" 2024-02-05 2024-02-21 0.8 23.2 "quantile" "hospital admissions only" +"16 day ahead inc hosp" "28" 2024-02-05 2024-02-21 0.85 26.15 "quantile" "hospital admissions only" +"16 day ahead inc hosp" "28" 2024-02-05 2024-02-21 0.9 29 "quantile" "hospital admissions only" +"16 day ahead inc hosp" "28" 2024-02-05 2024-02-21 0.95 32.05 "quantile" "hospital admissions only" +"16 day ahead inc hosp" "28" 2024-02-05 2024-02-21 0.975 34.575 "quantile" "hospital admissions only" +"16 day ahead inc hosp" "28" 2024-02-05 2024-02-21 0.99 37 "quantile" "hospital admissions only" +"17 day ahead inc hosp" "28" 2024-02-05 2024-02-22 0.01 2 "quantile" "hospital admissions only" +"17 day ahead inc hosp" "28" 2024-02-05 2024-02-22 0.025 3.475 "quantile" "hospital admissions only" +"17 day ahead inc hosp" "28" 2024-02-05 2024-02-22 0.05 4 "quantile" "hospital admissions only" +"17 day ahead inc hosp" "28" 2024-02-05 2024-02-22 0.1 6 "quantile" "hospital admissions only" +"17 day ahead inc hosp" "28" 2024-02-05 2024-02-22 0.15 7 "quantile" "hospital admissions only" +"17 day ahead inc hosp" "28" 2024-02-05 2024-02-22 0.2 8 "quantile" "hospital admissions only" +"17 day ahead inc hosp" "28" 2024-02-05 2024-02-22 0.25 9 "quantile" "hospital admissions only" +"17 day ahead inc hosp" "28" 2024-02-05 2024-02-22 0.3 9.7 "quantile" "hospital admissions only" +"17 day ahead inc hosp" "28" 2024-02-05 2024-02-22 0.35 11.65 "quantile" "hospital admissions only" +"17 day ahead inc hosp" "28" 2024-02-05 2024-02-22 0.4 12 "quantile" "hospital admissions only" +"17 day ahead inc hosp" "28" 2024-02-05 2024-02-22 0.45 14.1 "quantile" "hospital admissions only" +"17 day ahead inc hosp" "28" 2024-02-05 2024-02-22 0.5 15.5 "quantile" "hospital admissions only" +"17 day ahead inc hosp" "28" 2024-02-05 2024-02-22 0.55 16.45 "quantile" "hospital admissions only" +"17 day ahead inc hosp" "28" 2024-02-05 2024-02-22 0.6 17.4 "quantile" "hospital admissions only" +"17 day ahead inc hosp" "28" 2024-02-05 2024-02-22 0.65 19 "quantile" "hospital admissions only" +"17 day ahead inc hosp" "28" 2024-02-05 2024-02-22 0.7 19.3 "quantile" "hospital admissions only" +"17 day ahead inc hosp" "28" 2024-02-05 2024-02-22 0.75 20.25 "quantile" "hospital admissions only" +"17 day ahead inc hosp" "28" 2024-02-05 2024-02-22 0.8 23.2 "quantile" "hospital admissions only" +"17 day ahead inc hosp" "28" 2024-02-05 2024-02-22 0.85 25.3 "quantile" "hospital admissions only" +"17 day ahead inc hosp" "28" 2024-02-05 2024-02-22 0.9 29 "quantile" "hospital admissions only" +"17 day ahead inc hosp" "28" 2024-02-05 2024-02-22 0.95 32.05 "quantile" "hospital admissions only" +"17 day ahead inc hosp" "28" 2024-02-05 2024-02-22 0.975 34 "quantile" "hospital admissions only" +"17 day ahead inc hosp" "28" 2024-02-05 2024-02-22 0.99 38.03 "quantile" "hospital admissions only" +"18 day ahead inc hosp" "28" 2024-02-05 2024-02-23 0.01 3 "quantile" "hospital admissions only" +"18 day ahead inc hosp" "28" 2024-02-05 2024-02-23 0.025 4 "quantile" "hospital admissions only" +"18 day ahead inc hosp" "28" 2024-02-05 2024-02-23 0.05 6 "quantile" "hospital admissions only" +"18 day ahead inc hosp" "28" 2024-02-05 2024-02-23 0.1 7 "quantile" "hospital admissions only" +"18 day ahead inc hosp" "28" 2024-02-05 2024-02-23 0.15 9 "quantile" "hospital admissions only" +"18 day ahead inc hosp" "28" 2024-02-05 2024-02-23 0.2 10 "quantile" "hospital admissions only" +"18 day ahead inc hosp" "28" 2024-02-05 2024-02-23 0.25 11 "quantile" "hospital admissions only" +"18 day ahead inc hosp" "28" 2024-02-05 2024-02-23 0.3 12 "quantile" "hospital admissions only" +"18 day ahead inc hosp" "28" 2024-02-05 2024-02-23 0.35 14 "quantile" "hospital admissions only" +"18 day ahead inc hosp" "28" 2024-02-05 2024-02-23 0.4 16 "quantile" "hospital admissions only" +"18 day ahead inc hosp" "28" 2024-02-05 2024-02-23 0.45 16 "quantile" "hospital admissions only" +"18 day ahead inc hosp" "28" 2024-02-05 2024-02-23 0.5 17.5 "quantile" "hospital admissions only" +"18 day ahead inc hosp" "28" 2024-02-05 2024-02-23 0.55 19 "quantile" "hospital admissions only" +"18 day ahead inc hosp" "28" 2024-02-05 2024-02-23 0.6 20 "quantile" "hospital admissions only" +"18 day ahead inc hosp" "28" 2024-02-05 2024-02-23 0.65 21.35 "quantile" "hospital admissions only" +"18 day ahead inc hosp" "28" 2024-02-05 2024-02-23 0.7 24 "quantile" "hospital admissions only" +"18 day ahead inc hosp" "28" 2024-02-05 2024-02-23 0.75 25 "quantile" "hospital admissions only" +"18 day ahead inc hosp" "28" 2024-02-05 2024-02-23 0.8 27 "quantile" "hospital admissions only" +"18 day ahead inc hosp" "28" 2024-02-05 2024-02-23 0.85 28.15 "quantile" "hospital admissions only" +"18 day ahead inc hosp" "28" 2024-02-05 2024-02-23 0.9 30 "quantile" "hospital admissions only" +"18 day ahead inc hosp" "28" 2024-02-05 2024-02-23 0.95 35.05 "quantile" "hospital admissions only" +"18 day ahead inc hosp" "28" 2024-02-05 2024-02-23 0.975 38.05 "quantile" "hospital admissions only" +"18 day ahead inc hosp" "28" 2024-02-05 2024-02-23 0.99 39.1400000000001 "quantile" "hospital admissions only" +"19 day ahead inc hosp" "28" 2024-02-05 2024-02-24 0.01 2.99 "quantile" "hospital admissions only" +"19 day ahead inc hosp" "28" 2024-02-05 2024-02-24 0.025 3 "quantile" "hospital admissions only" +"19 day ahead inc hosp" "28" 2024-02-05 2024-02-24 0.05 4 "quantile" "hospital admissions only" +"19 day ahead inc hosp" "28" 2024-02-05 2024-02-24 0.1 5.9 "quantile" "hospital admissions only" +"19 day ahead inc hosp" "28" 2024-02-05 2024-02-24 0.15 7 "quantile" "hospital admissions only" +"19 day ahead inc hosp" "28" 2024-02-05 2024-02-24 0.2 8 "quantile" "hospital admissions only" +"19 day ahead inc hosp" "28" 2024-02-05 2024-02-24 0.25 8 "quantile" "hospital admissions only" +"19 day ahead inc hosp" "28" 2024-02-05 2024-02-24 0.3 9 "quantile" "hospital admissions only" +"19 day ahead inc hosp" "28" 2024-02-05 2024-02-24 0.35 10 "quantile" "hospital admissions only" +"19 day ahead inc hosp" "28" 2024-02-05 2024-02-24 0.4 11 "quantile" "hospital admissions only" +"19 day ahead inc hosp" "28" 2024-02-05 2024-02-24 0.45 12 "quantile" "hospital admissions only" +"19 day ahead inc hosp" "28" 2024-02-05 2024-02-24 0.5 14 "quantile" "hospital admissions only" +"19 day ahead inc hosp" "28" 2024-02-05 2024-02-24 0.55 15 "quantile" "hospital admissions only" +"19 day ahead inc hosp" "28" 2024-02-05 2024-02-24 0.6 16 "quantile" "hospital admissions only" +"19 day ahead inc hosp" "28" 2024-02-05 2024-02-24 0.65 17 "quantile" "hospital admissions only" +"19 day ahead inc hosp" "28" 2024-02-05 2024-02-24 0.7 18 "quantile" "hospital admissions only" +"19 day ahead inc hosp" "28" 2024-02-05 2024-02-24 0.75 19 "quantile" "hospital admissions only" +"19 day ahead inc hosp" "28" 2024-02-05 2024-02-24 0.8 20.2 "quantile" "hospital admissions only" +"19 day ahead inc hosp" "28" 2024-02-05 2024-02-24 0.85 21 "quantile" "hospital admissions only" +"19 day ahead inc hosp" "28" 2024-02-05 2024-02-24 0.9 22.1 "quantile" "hospital admissions only" +"19 day ahead inc hosp" "28" 2024-02-05 2024-02-24 0.95 28.05 "quantile" "hospital admissions only" +"19 day ahead inc hosp" "28" 2024-02-05 2024-02-24 0.975 29.525 "quantile" "hospital admissions only" +"19 day ahead inc hosp" "28" 2024-02-05 2024-02-24 0.99 34.03 "quantile" "hospital admissions only" +"20 day ahead inc hosp" "28" 2024-02-05 2024-02-25 0.01 2.99 "quantile" "hospital admissions only" +"20 day ahead inc hosp" "28" 2024-02-05 2024-02-25 0.025 3 "quantile" "hospital admissions only" +"20 day ahead inc hosp" "28" 2024-02-05 2024-02-25 0.05 4 "quantile" "hospital admissions only" +"20 day ahead inc hosp" "28" 2024-02-05 2024-02-25 0.1 6.9 "quantile" "hospital admissions only" +"20 day ahead inc hosp" "28" 2024-02-05 2024-02-25 0.15 8 "quantile" "hospital admissions only" +"20 day ahead inc hosp" "28" 2024-02-05 2024-02-25 0.2 9 "quantile" "hospital admissions only" +"20 day ahead inc hosp" "28" 2024-02-05 2024-02-25 0.25 9.75 "quantile" "hospital admissions only" +"20 day ahead inc hosp" "28" 2024-02-05 2024-02-25 0.3 10.7 "quantile" "hospital admissions only" +"20 day ahead inc hosp" "28" 2024-02-05 2024-02-25 0.35 11 "quantile" "hospital admissions only" +"20 day ahead inc hosp" "28" 2024-02-05 2024-02-25 0.4 13 "quantile" "hospital admissions only" +"20 day ahead inc hosp" "28" 2024-02-05 2024-02-25 0.45 14 "quantile" "hospital admissions only" +"20 day ahead inc hosp" "28" 2024-02-05 2024-02-25 0.5 15.5 "quantile" "hospital admissions only" +"20 day ahead inc hosp" "28" 2024-02-05 2024-02-25 0.55 17 "quantile" "hospital admissions only" +"20 day ahead inc hosp" "28" 2024-02-05 2024-02-25 0.6 18 "quantile" "hospital admissions only" +"20 day ahead inc hosp" "28" 2024-02-05 2024-02-25 0.65 18.35 "quantile" "hospital admissions only" +"20 day ahead inc hosp" "28" 2024-02-05 2024-02-25 0.7 20 "quantile" "hospital admissions only" +"20 day ahead inc hosp" "28" 2024-02-05 2024-02-25 0.75 21 "quantile" "hospital admissions only" +"20 day ahead inc hosp" "28" 2024-02-05 2024-02-25 0.8 23 "quantile" "hospital admissions only" +"20 day ahead inc hosp" "28" 2024-02-05 2024-02-25 0.85 26.15 "quantile" "hospital admissions only" +"20 day ahead inc hosp" "28" 2024-02-05 2024-02-25 0.9 29 "quantile" "hospital admissions only" +"20 day ahead inc hosp" "28" 2024-02-05 2024-02-25 0.95 35.1 "quantile" "hospital admissions only" +"20 day ahead inc hosp" "28" 2024-02-05 2024-02-25 0.975 37 "quantile" "hospital admissions only" +"20 day ahead inc hosp" "28" 2024-02-05 2024-02-25 0.99 42.08 "quantile" "hospital admissions only" +"21 day ahead inc hosp" "28" 2024-02-05 2024-02-26 0.01 3.98 "quantile" "hospital admissions only" +"21 day ahead inc hosp" "28" 2024-02-05 2024-02-26 0.025 4 "quantile" "hospital admissions only" +"21 day ahead inc hosp" "28" 2024-02-05 2024-02-26 0.05 5.95 "quantile" "hospital admissions only" +"21 day ahead inc hosp" "28" 2024-02-05 2024-02-26 0.1 6.9 "quantile" "hospital admissions only" +"21 day ahead inc hosp" "28" 2024-02-05 2024-02-26 0.15 7.85 "quantile" "hospital admissions only" +"21 day ahead inc hosp" "28" 2024-02-05 2024-02-26 0.2 9 "quantile" "hospital admissions only" +"21 day ahead inc hosp" "28" 2024-02-05 2024-02-26 0.25 10.75 "quantile" "hospital admissions only" +"21 day ahead inc hosp" "28" 2024-02-05 2024-02-26 0.3 12 "quantile" "hospital admissions only" +"21 day ahead inc hosp" "28" 2024-02-05 2024-02-26 0.35 14 "quantile" "hospital admissions only" +"21 day ahead inc hosp" "28" 2024-02-05 2024-02-26 0.4 16 "quantile" "hospital admissions only" +"21 day ahead inc hosp" "28" 2024-02-05 2024-02-26 0.45 17 "quantile" "hospital admissions only" +"21 day ahead inc hosp" "28" 2024-02-05 2024-02-26 0.5 18 "quantile" "hospital admissions only" +"21 day ahead inc hosp" "28" 2024-02-05 2024-02-26 0.55 19.45 "quantile" "hospital admissions only" +"21 day ahead inc hosp" "28" 2024-02-05 2024-02-26 0.6 21 "quantile" "hospital admissions only" +"21 day ahead inc hosp" "28" 2024-02-05 2024-02-26 0.65 23 "quantile" "hospital admissions only" +"21 day ahead inc hosp" "28" 2024-02-05 2024-02-26 0.7 24.3 "quantile" "hospital admissions only" +"21 day ahead inc hosp" "28" 2024-02-05 2024-02-26 0.75 26 "quantile" "hospital admissions only" +"21 day ahead inc hosp" "28" 2024-02-05 2024-02-26 0.8 28.2 "quantile" "hospital admissions only" +"21 day ahead inc hosp" "28" 2024-02-05 2024-02-26 0.85 30 "quantile" "hospital admissions only" +"21 day ahead inc hosp" "28" 2024-02-05 2024-02-26 0.9 32.1 "quantile" "hospital admissions only" +"21 day ahead inc hosp" "28" 2024-02-05 2024-02-26 0.95 36 "quantile" "hospital admissions only" +"21 day ahead inc hosp" "28" 2024-02-05 2024-02-26 0.975 38.575 "quantile" "hospital admissions only" +"21 day ahead inc hosp" "28" 2024-02-05 2024-02-26 0.99 42.09 "quantile" "hospital admissions only" +"22 day ahead inc hosp" "28" 2024-02-05 2024-02-27 0.01 0.99 "quantile" "hospital admissions only" +"22 day ahead inc hosp" "28" 2024-02-05 2024-02-27 0.025 2.475 "quantile" "hospital admissions only" +"22 day ahead inc hosp" "28" 2024-02-05 2024-02-27 0.05 4.95 "quantile" "hospital admissions only" +"22 day ahead inc hosp" "28" 2024-02-05 2024-02-27 0.1 6 "quantile" "hospital admissions only" +"22 day ahead inc hosp" "28" 2024-02-05 2024-02-27 0.15 8 "quantile" "hospital admissions only" +"22 day ahead inc hosp" "28" 2024-02-05 2024-02-27 0.2 9 "quantile" "hospital admissions only" +"22 day ahead inc hosp" "28" 2024-02-05 2024-02-27 0.25 11 "quantile" "hospital admissions only" +"22 day ahead inc hosp" "28" 2024-02-05 2024-02-27 0.3 12 "quantile" "hospital admissions only" +"22 day ahead inc hosp" "28" 2024-02-05 2024-02-27 0.35 12.65 "quantile" "hospital admissions only" +"22 day ahead inc hosp" "28" 2024-02-05 2024-02-27 0.4 13 "quantile" "hospital admissions only" +"22 day ahead inc hosp" "28" 2024-02-05 2024-02-27 0.45 13.55 "quantile" "hospital admissions only" +"22 day ahead inc hosp" "28" 2024-02-05 2024-02-27 0.5 15 "quantile" "hospital admissions only" +"22 day ahead inc hosp" "28" 2024-02-05 2024-02-27 0.55 16 "quantile" "hospital admissions only" +"22 day ahead inc hosp" "28" 2024-02-05 2024-02-27 0.6 17 "quantile" "hospital admissions only" +"22 day ahead inc hosp" "28" 2024-02-05 2024-02-27 0.65 18 "quantile" "hospital admissions only" +"22 day ahead inc hosp" "28" 2024-02-05 2024-02-27 0.7 20 "quantile" "hospital admissions only" +"22 day ahead inc hosp" "28" 2024-02-05 2024-02-27 0.75 21 "quantile" "hospital admissions only" +"22 day ahead inc hosp" "28" 2024-02-05 2024-02-27 0.8 23.2 "quantile" "hospital admissions only" +"22 day ahead inc hosp" "28" 2024-02-05 2024-02-27 0.85 26.15 "quantile" "hospital admissions only" +"22 day ahead inc hosp" "28" 2024-02-05 2024-02-27 0.9 29 "quantile" "hospital admissions only" +"22 day ahead inc hosp" "28" 2024-02-05 2024-02-27 0.95 32.05 "quantile" "hospital admissions only" +"22 day ahead inc hosp" "28" 2024-02-05 2024-02-27 0.975 35.525 "quantile" "hospital admissions only" +"22 day ahead inc hosp" "28" 2024-02-05 2024-02-27 0.99 38.04 "quantile" "hospital admissions only" +"23 day ahead inc hosp" "28" 2024-02-05 2024-02-28 0.01 1.98 "quantile" "hospital admissions only" +"23 day ahead inc hosp" "28" 2024-02-05 2024-02-28 0.025 3.475 "quantile" "hospital admissions only" +"23 day ahead inc hosp" "28" 2024-02-05 2024-02-28 0.05 5 "quantile" "hospital admissions only" +"23 day ahead inc hosp" "28" 2024-02-05 2024-02-28 0.1 6 "quantile" "hospital admissions only" +"23 day ahead inc hosp" "28" 2024-02-05 2024-02-28 0.15 7 "quantile" "hospital admissions only" +"23 day ahead inc hosp" "28" 2024-02-05 2024-02-28 0.2 8 "quantile" "hospital admissions only" +"23 day ahead inc hosp" "28" 2024-02-05 2024-02-28 0.25 9.75 "quantile" "hospital admissions only" +"23 day ahead inc hosp" "28" 2024-02-05 2024-02-28 0.3 11 "quantile" "hospital admissions only" +"23 day ahead inc hosp" "28" 2024-02-05 2024-02-28 0.35 12 "quantile" "hospital admissions only" +"23 day ahead inc hosp" "28" 2024-02-05 2024-02-28 0.4 13.6 "quantile" "hospital admissions only" +"23 day ahead inc hosp" "28" 2024-02-05 2024-02-28 0.45 15 "quantile" "hospital admissions only" +"23 day ahead inc hosp" "28" 2024-02-05 2024-02-28 0.5 16.5 "quantile" "hospital admissions only" +"23 day ahead inc hosp" "28" 2024-02-05 2024-02-28 0.55 17 "quantile" "hospital admissions only" +"23 day ahead inc hosp" "28" 2024-02-05 2024-02-28 0.6 18 "quantile" "hospital admissions only" +"23 day ahead inc hosp" "28" 2024-02-05 2024-02-28 0.65 19 "quantile" "hospital admissions only" +"23 day ahead inc hosp" "28" 2024-02-05 2024-02-28 0.7 21.3 "quantile" "hospital admissions only" +"23 day ahead inc hosp" "28" 2024-02-05 2024-02-28 0.75 23.25 "quantile" "hospital admissions only" +"23 day ahead inc hosp" "28" 2024-02-05 2024-02-28 0.8 25 "quantile" "hospital admissions only" +"23 day ahead inc hosp" "28" 2024-02-05 2024-02-28 0.85 28 "quantile" "hospital admissions only" +"23 day ahead inc hosp" "28" 2024-02-05 2024-02-28 0.9 31.1 "quantile" "hospital admissions only" +"23 day ahead inc hosp" "28" 2024-02-05 2024-02-28 0.95 35.1 "quantile" "hospital admissions only" +"23 day ahead inc hosp" "28" 2024-02-05 2024-02-28 0.975 37.525 "quantile" "hospital admissions only" +"23 day ahead inc hosp" "28" 2024-02-05 2024-02-28 0.99 39.1000000000001 "quantile" "hospital admissions only" +"24 day ahead inc hosp" "28" 2024-02-05 2024-02-29 0.01 2 "quantile" "hospital admissions only" +"24 day ahead inc hosp" "28" 2024-02-05 2024-02-29 0.025 3 "quantile" "hospital admissions only" +"24 day ahead inc hosp" "28" 2024-02-05 2024-02-29 0.05 3 "quantile" "hospital admissions only" +"24 day ahead inc hosp" "28" 2024-02-05 2024-02-29 0.1 5 "quantile" "hospital admissions only" +"24 day ahead inc hosp" "28" 2024-02-05 2024-02-29 0.15 6 "quantile" "hospital admissions only" +"24 day ahead inc hosp" "28" 2024-02-05 2024-02-29 0.2 7.8 "quantile" "hospital admissions only" +"24 day ahead inc hosp" "28" 2024-02-05 2024-02-29 0.25 10 "quantile" "hospital admissions only" +"24 day ahead inc hosp" "28" 2024-02-05 2024-02-29 0.3 10 "quantile" "hospital admissions only" +"24 day ahead inc hosp" "28" 2024-02-05 2024-02-29 0.35 11 "quantile" "hospital admissions only" +"24 day ahead inc hosp" "28" 2024-02-05 2024-02-29 0.4 12 "quantile" "hospital admissions only" +"24 day ahead inc hosp" "28" 2024-02-05 2024-02-29 0.45 13 "quantile" "hospital admissions only" +"24 day ahead inc hosp" "28" 2024-02-05 2024-02-29 0.5 14 "quantile" "hospital admissions only" +"24 day ahead inc hosp" "28" 2024-02-05 2024-02-29 0.55 15 "quantile" "hospital admissions only" +"24 day ahead inc hosp" "28" 2024-02-05 2024-02-29 0.6 17 "quantile" "hospital admissions only" +"24 day ahead inc hosp" "28" 2024-02-05 2024-02-29 0.65 18 "quantile" "hospital admissions only" +"24 day ahead inc hosp" "28" 2024-02-05 2024-02-29 0.7 21 "quantile" "hospital admissions only" +"24 day ahead inc hosp" "28" 2024-02-05 2024-02-29 0.75 23 "quantile" "hospital admissions only" +"24 day ahead inc hosp" "28" 2024-02-05 2024-02-29 0.8 24.2 "quantile" "hospital admissions only" +"24 day ahead inc hosp" "28" 2024-02-05 2024-02-29 0.85 26 "quantile" "hospital admissions only" +"24 day ahead inc hosp" "28" 2024-02-05 2024-02-29 0.9 27.2 "quantile" "hospital admissions only" +"24 day ahead inc hosp" "28" 2024-02-05 2024-02-29 0.95 31.05 "quantile" "hospital admissions only" +"24 day ahead inc hosp" "28" 2024-02-05 2024-02-29 0.975 33.575 "quantile" "hospital admissions only" +"24 day ahead inc hosp" "28" 2024-02-05 2024-02-29 0.99 41.1000000000001 "quantile" "hospital admissions only" +"25 day ahead inc hosp" "28" 2024-02-05 2024-03-01 0.01 0.99 "quantile" "hospital admissions only" +"25 day ahead inc hosp" "28" 2024-02-05 2024-03-01 0.025 2.475 "quantile" "hospital admissions only" +"25 day ahead inc hosp" "28" 2024-02-05 2024-03-01 0.05 4 "quantile" "hospital admissions only" +"25 day ahead inc hosp" "28" 2024-02-05 2024-03-01 0.1 5.9 "quantile" "hospital admissions only" +"25 day ahead inc hosp" "28" 2024-02-05 2024-03-01 0.15 7.85 "quantile" "hospital admissions only" +"25 day ahead inc hosp" "28" 2024-02-05 2024-03-01 0.2 9 "quantile" "hospital admissions only" +"25 day ahead inc hosp" "28" 2024-02-05 2024-03-01 0.25 10 "quantile" "hospital admissions only" +"25 day ahead inc hosp" "28" 2024-02-05 2024-03-01 0.3 11 "quantile" "hospital admissions only" +"25 day ahead inc hosp" "28" 2024-02-05 2024-03-01 0.35 12 "quantile" "hospital admissions only" +"25 day ahead inc hosp" "28" 2024-02-05 2024-03-01 0.4 13 "quantile" "hospital admissions only" +"25 day ahead inc hosp" "28" 2024-02-05 2024-03-01 0.45 15 "quantile" "hospital admissions only" +"25 day ahead inc hosp" "28" 2024-02-05 2024-03-01 0.5 15.5 "quantile" "hospital admissions only" +"25 day ahead inc hosp" "28" 2024-02-05 2024-03-01 0.55 16 "quantile" "hospital admissions only" +"25 day ahead inc hosp" "28" 2024-02-05 2024-03-01 0.6 17 "quantile" "hospital admissions only" +"25 day ahead inc hosp" "28" 2024-02-05 2024-03-01 0.65 20.35 "quantile" "hospital admissions only" +"25 day ahead inc hosp" "28" 2024-02-05 2024-03-01 0.7 23 "quantile" "hospital admissions only" +"25 day ahead inc hosp" "28" 2024-02-05 2024-03-01 0.75 24.25 "quantile" "hospital admissions only" +"25 day ahead inc hosp" "28" 2024-02-05 2024-03-01 0.8 29 "quantile" "hospital admissions only" +"25 day ahead inc hosp" "28" 2024-02-05 2024-03-01 0.85 30 "quantile" "hospital admissions only" +"25 day ahead inc hosp" "28" 2024-02-05 2024-03-01 0.9 33.1 "quantile" "hospital admissions only" +"25 day ahead inc hosp" "28" 2024-02-05 2024-03-01 0.95 37.05 "quantile" "hospital admissions only" +"25 day ahead inc hosp" "28" 2024-02-05 2024-03-01 0.975 38.525 "quantile" "hospital admissions only" +"25 day ahead inc hosp" "28" 2024-02-05 2024-03-01 0.99 39.01 "quantile" "hospital admissions only" +"26 day ahead inc hosp" "28" 2024-02-05 2024-03-02 0.01 0.99 "quantile" "hospital admissions only" +"26 day ahead inc hosp" "28" 2024-02-05 2024-03-02 0.025 2 "quantile" "hospital admissions only" +"26 day ahead inc hosp" "28" 2024-02-05 2024-03-02 0.05 3 "quantile" "hospital admissions only" +"26 day ahead inc hosp" "28" 2024-02-05 2024-03-02 0.1 4 "quantile" "hospital admissions only" +"26 day ahead inc hosp" "28" 2024-02-05 2024-03-02 0.15 5 "quantile" "hospital admissions only" +"26 day ahead inc hosp" "28" 2024-02-05 2024-03-02 0.2 6 "quantile" "hospital admissions only" +"26 day ahead inc hosp" "28" 2024-02-05 2024-03-02 0.25 7 "quantile" "hospital admissions only" +"26 day ahead inc hosp" "28" 2024-02-05 2024-03-02 0.3 8 "quantile" "hospital admissions only" +"26 day ahead inc hosp" "28" 2024-02-05 2024-03-02 0.35 9.65000000000001 "quantile" "hospital admissions only" +"26 day ahead inc hosp" "28" 2024-02-05 2024-03-02 0.4 11 "quantile" "hospital admissions only" +"26 day ahead inc hosp" "28" 2024-02-05 2024-03-02 0.45 12 "quantile" "hospital admissions only" +"26 day ahead inc hosp" "28" 2024-02-05 2024-03-02 0.5 12 "quantile" "hospital admissions only" +"26 day ahead inc hosp" "28" 2024-02-05 2024-03-02 0.55 13.45 "quantile" "hospital admissions only" +"26 day ahead inc hosp" "28" 2024-02-05 2024-03-02 0.6 14 "quantile" "hospital admissions only" +"26 day ahead inc hosp" "28" 2024-02-05 2024-03-02 0.65 15 "quantile" "hospital admissions only" +"26 day ahead inc hosp" "28" 2024-02-05 2024-03-02 0.7 16 "quantile" "hospital admissions only" +"26 day ahead inc hosp" "28" 2024-02-05 2024-03-02 0.75 19 "quantile" "hospital admissions only" +"26 day ahead inc hosp" "28" 2024-02-05 2024-03-02 0.8 20.2 "quantile" "hospital admissions only" +"26 day ahead inc hosp" "28" 2024-02-05 2024-03-02 0.85 24 "quantile" "hospital admissions only" +"26 day ahead inc hosp" "28" 2024-02-05 2024-03-02 0.9 26 "quantile" "hospital admissions only" +"26 day ahead inc hosp" "28" 2024-02-05 2024-03-02 0.95 28.05 "quantile" "hospital admissions only" +"26 day ahead inc hosp" "28" 2024-02-05 2024-03-02 0.975 32 "quantile" "hospital admissions only" +"26 day ahead inc hosp" "28" 2024-02-05 2024-03-02 0.99 33.1300000000001 "quantile" "hospital admissions only" +"27 day ahead inc hosp" "28" 2024-02-05 2024-03-03 0.01 1 "quantile" "hospital admissions only" +"27 day ahead inc hosp" "28" 2024-02-05 2024-03-03 0.025 2.475 "quantile" "hospital admissions only" +"27 day ahead inc hosp" "28" 2024-02-05 2024-03-03 0.05 3 "quantile" "hospital admissions only" +"27 day ahead inc hosp" "28" 2024-02-05 2024-03-03 0.1 6 "quantile" "hospital admissions only" +"27 day ahead inc hosp" "28" 2024-02-05 2024-03-03 0.15 6 "quantile" "hospital admissions only" +"27 day ahead inc hosp" "28" 2024-02-05 2024-03-03 0.2 7 "quantile" "hospital admissions only" +"27 day ahead inc hosp" "28" 2024-02-05 2024-03-03 0.25 8 "quantile" "hospital admissions only" +"27 day ahead inc hosp" "28" 2024-02-05 2024-03-03 0.3 10 "quantile" "hospital admissions only" +"27 day ahead inc hosp" "28" 2024-02-05 2024-03-03 0.35 11 "quantile" "hospital admissions only" +"27 day ahead inc hosp" "28" 2024-02-05 2024-03-03 0.4 12 "quantile" "hospital admissions only" +"27 day ahead inc hosp" "28" 2024-02-05 2024-03-03 0.45 12.55 "quantile" "hospital admissions only" +"27 day ahead inc hosp" "28" 2024-02-05 2024-03-03 0.5 13.5 "quantile" "hospital admissions only" +"27 day ahead inc hosp" "28" 2024-02-05 2024-03-03 0.55 15 "quantile" "hospital admissions only" +"27 day ahead inc hosp" "28" 2024-02-05 2024-03-03 0.6 17 "quantile" "hospital admissions only" +"27 day ahead inc hosp" "28" 2024-02-05 2024-03-03 0.65 19 "quantile" "hospital admissions only" +"27 day ahead inc hosp" "28" 2024-02-05 2024-03-03 0.7 20 "quantile" "hospital admissions only" +"27 day ahead inc hosp" "28" 2024-02-05 2024-03-03 0.75 23 "quantile" "hospital admissions only" +"27 day ahead inc hosp" "28" 2024-02-05 2024-03-03 0.8 25 "quantile" "hospital admissions only" +"27 day ahead inc hosp" "28" 2024-02-05 2024-03-03 0.85 27.15 "quantile" "hospital admissions only" +"27 day ahead inc hosp" "28" 2024-02-05 2024-03-03 0.9 32.1 "quantile" "hospital admissions only" +"27 day ahead inc hosp" "28" 2024-02-05 2024-03-03 0.95 35 "quantile" "hospital admissions only" +"27 day ahead inc hosp" "28" 2024-02-05 2024-03-03 0.975 38.625 "quantile" "hospital admissions only" +"27 day ahead inc hosp" "28" 2024-02-05 2024-03-03 0.99 41.1900000000001 "quantile" "hospital admissions only" +"28 day ahead inc hosp" "28" 2024-02-05 2024-03-04 0.01 0.99 "quantile" "hospital admissions only" +"28 day ahead inc hosp" "28" 2024-02-05 2024-03-04 0.025 3 "quantile" "hospital admissions only" +"28 day ahead inc hosp" "28" 2024-02-05 2024-03-04 0.05 5 "quantile" "hospital admissions only" +"28 day ahead inc hosp" "28" 2024-02-05 2024-03-04 0.1 6 "quantile" "hospital admissions only" +"28 day ahead inc hosp" "28" 2024-02-05 2024-03-04 0.15 7 "quantile" "hospital admissions only" +"28 day ahead inc hosp" "28" 2024-02-05 2024-03-04 0.2 9 "quantile" "hospital admissions only" +"28 day ahead inc hosp" "28" 2024-02-05 2024-03-04 0.25 9.75 "quantile" "hospital admissions only" +"28 day ahead inc hosp" "28" 2024-02-05 2024-03-04 0.3 11 "quantile" "hospital admissions only" +"28 day ahead inc hosp" "28" 2024-02-05 2024-03-04 0.35 12 "quantile" "hospital admissions only" +"28 day ahead inc hosp" "28" 2024-02-05 2024-03-04 0.4 14 "quantile" "hospital admissions only" +"28 day ahead inc hosp" "28" 2024-02-05 2024-03-04 0.45 15.55 "quantile" "hospital admissions only" +"28 day ahead inc hosp" "28" 2024-02-05 2024-03-04 0.5 17 "quantile" "hospital admissions only" +"28 day ahead inc hosp" "28" 2024-02-05 2024-03-04 0.55 19 "quantile" "hospital admissions only" +"28 day ahead inc hosp" "28" 2024-02-05 2024-03-04 0.6 20.4 "quantile" "hospital admissions only" +"28 day ahead inc hosp" "28" 2024-02-05 2024-03-04 0.65 22.35 "quantile" "hospital admissions only" +"28 day ahead inc hosp" "28" 2024-02-05 2024-03-04 0.7 26 "quantile" "hospital admissions only" +"28 day ahead inc hosp" "28" 2024-02-05 2024-03-04 0.75 28 "quantile" "hospital admissions only" +"28 day ahead inc hosp" "28" 2024-02-05 2024-03-04 0.8 29.2 "quantile" "hospital admissions only" +"28 day ahead inc hosp" "28" 2024-02-05 2024-03-04 0.85 30.15 "quantile" "hospital admissions only" +"28 day ahead inc hosp" "28" 2024-02-05 2024-03-04 0.9 33.1 "quantile" "hospital admissions only" +"28 day ahead inc hosp" "28" 2024-02-05 2024-03-04 0.95 38.2 "quantile" "hospital admissions only" +"28 day ahead inc hosp" "28" 2024-02-05 2024-03-04 0.975 42 "quantile" "hospital admissions only" +"28 day ahead inc hosp" "28" 2024-02-05 2024-03-04 0.99 46 "quantile" "hospital admissions only" +"1 day ahead inc hosp" "30" 2024-02-05 2024-02-06 0.01 1.99 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "30" 2024-02-05 2024-02-06 0.025 2 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "30" 2024-02-05 2024-02-06 0.05 3.95 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "30" 2024-02-05 2024-02-06 0.1 5 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "30" 2024-02-05 2024-02-06 0.15 6 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "30" 2024-02-05 2024-02-06 0.2 7 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "30" 2024-02-05 2024-02-06 0.25 7 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "30" 2024-02-05 2024-02-06 0.3 8 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "30" 2024-02-05 2024-02-06 0.35 9 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "30" 2024-02-05 2024-02-06 0.4 9.6 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "30" 2024-02-05 2024-02-06 0.45 10 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "30" 2024-02-05 2024-02-06 0.5 10.5 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "30" 2024-02-05 2024-02-06 0.55 11 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "30" 2024-02-05 2024-02-06 0.6 12 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "30" 2024-02-05 2024-02-06 0.65 12 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "30" 2024-02-05 2024-02-06 0.7 13 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "30" 2024-02-05 2024-02-06 0.75 14 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "30" 2024-02-05 2024-02-06 0.8 15 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "30" 2024-02-05 2024-02-06 0.85 16 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "30" 2024-02-05 2024-02-06 0.9 16.1 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "30" 2024-02-05 2024-02-06 0.95 20 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "30" 2024-02-05 2024-02-06 0.975 21 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "30" 2024-02-05 2024-02-06 0.99 21.08 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "30" 2024-02-05 2024-02-07 0.01 1.98 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "30" 2024-02-05 2024-02-07 0.025 3 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "30" 2024-02-05 2024-02-07 0.05 3.95 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "30" 2024-02-05 2024-02-07 0.1 4.9 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "30" 2024-02-05 2024-02-07 0.15 5 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "30" 2024-02-05 2024-02-07 0.2 5.8 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "30" 2024-02-05 2024-02-07 0.25 6 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "30" 2024-02-05 2024-02-07 0.3 7 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "30" 2024-02-05 2024-02-07 0.35 7 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "30" 2024-02-05 2024-02-07 0.4 7.6 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "30" 2024-02-05 2024-02-07 0.45 8 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "30" 2024-02-05 2024-02-07 0.5 9 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "30" 2024-02-05 2024-02-07 0.55 9 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "30" 2024-02-05 2024-02-07 0.6 10 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "30" 2024-02-05 2024-02-07 0.65 11 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "30" 2024-02-05 2024-02-07 0.7 11 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "30" 2024-02-05 2024-02-07 0.75 12 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "30" 2024-02-05 2024-02-07 0.8 12 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "30" 2024-02-05 2024-02-07 0.85 13 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "30" 2024-02-05 2024-02-07 0.9 15 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "30" 2024-02-05 2024-02-07 0.95 17.05 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "30" 2024-02-05 2024-02-07 0.975 19.05 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "30" 2024-02-05 2024-02-07 0.99 20.01 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "30" 2024-02-05 2024-02-08 0.01 0.99 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "30" 2024-02-05 2024-02-08 0.025 1 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "30" 2024-02-05 2024-02-08 0.05 1 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "30" 2024-02-05 2024-02-08 0.1 2 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "30" 2024-02-05 2024-02-08 0.15 3 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "30" 2024-02-05 2024-02-08 0.2 3 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "30" 2024-02-05 2024-02-08 0.25 4 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "30" 2024-02-05 2024-02-08 0.3 5 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "30" 2024-02-05 2024-02-08 0.35 5 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "30" 2024-02-05 2024-02-08 0.4 6 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "30" 2024-02-05 2024-02-08 0.45 6 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "30" 2024-02-05 2024-02-08 0.5 6 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "30" 2024-02-05 2024-02-08 0.55 7 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "30" 2024-02-05 2024-02-08 0.6 7 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "30" 2024-02-05 2024-02-08 0.65 7 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "30" 2024-02-05 2024-02-08 0.7 8 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "30" 2024-02-05 2024-02-08 0.75 8.25000000000001 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "30" 2024-02-05 2024-02-08 0.8 10 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "30" 2024-02-05 2024-02-08 0.85 11 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "30" 2024-02-05 2024-02-08 0.9 12 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "30" 2024-02-05 2024-02-08 0.95 14.05 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "30" 2024-02-05 2024-02-08 0.975 16 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "30" 2024-02-05 2024-02-08 0.99 18 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "30" 2024-02-05 2024-02-09 0.01 1.98 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "30" 2024-02-05 2024-02-09 0.025 2 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "30" 2024-02-05 2024-02-09 0.05 2.95 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "30" 2024-02-05 2024-02-09 0.1 3 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "30" 2024-02-05 2024-02-09 0.15 3.85 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "30" 2024-02-05 2024-02-09 0.2 4 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "30" 2024-02-05 2024-02-09 0.25 5 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "30" 2024-02-05 2024-02-09 0.3 5 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "30" 2024-02-05 2024-02-09 0.35 6 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "30" 2024-02-05 2024-02-09 0.4 6 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "30" 2024-02-05 2024-02-09 0.45 7 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "30" 2024-02-05 2024-02-09 0.5 7 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "30" 2024-02-05 2024-02-09 0.55 8 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "30" 2024-02-05 2024-02-09 0.6 8 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "30" 2024-02-05 2024-02-09 0.65 9 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "30" 2024-02-05 2024-02-09 0.7 9 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "30" 2024-02-05 2024-02-09 0.75 10 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "30" 2024-02-05 2024-02-09 0.8 10 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "30" 2024-02-05 2024-02-09 0.85 11 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "30" 2024-02-05 2024-02-09 0.9 12 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "30" 2024-02-05 2024-02-09 0.95 15 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "30" 2024-02-05 2024-02-09 0.975 17.525 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "30" 2024-02-05 2024-02-09 0.99 19.03 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "30" 2024-02-05 2024-02-10 0.01 0.99 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "30" 2024-02-05 2024-02-10 0.025 1 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "30" 2024-02-05 2024-02-10 0.05 1.95 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "30" 2024-02-05 2024-02-10 0.1 3 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "30" 2024-02-05 2024-02-10 0.15 3 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "30" 2024-02-05 2024-02-10 0.2 4 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "30" 2024-02-05 2024-02-10 0.25 4 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "30" 2024-02-05 2024-02-10 0.3 5 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "30" 2024-02-05 2024-02-10 0.35 5 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "30" 2024-02-05 2024-02-10 0.4 6 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "30" 2024-02-05 2024-02-10 0.45 6 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "30" 2024-02-05 2024-02-10 0.5 7 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "30" 2024-02-05 2024-02-10 0.55 7.45 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "30" 2024-02-05 2024-02-10 0.6 8 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "30" 2024-02-05 2024-02-10 0.65 8 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "30" 2024-02-05 2024-02-10 0.7 9 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "30" 2024-02-05 2024-02-10 0.75 9.25000000000001 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "30" 2024-02-05 2024-02-10 0.8 10 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "30" 2024-02-05 2024-02-10 0.85 11 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "30" 2024-02-05 2024-02-10 0.9 13 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "30" 2024-02-05 2024-02-10 0.95 13.05 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "30" 2024-02-05 2024-02-10 0.975 14 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "30" 2024-02-05 2024-02-10 0.99 15 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "30" 2024-02-05 2024-02-11 0.01 2 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "30" 2024-02-05 2024-02-11 0.025 2 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "30" 2024-02-05 2024-02-11 0.05 3 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "30" 2024-02-05 2024-02-11 0.1 4 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "30" 2024-02-05 2024-02-11 0.15 4 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "30" 2024-02-05 2024-02-11 0.2 5 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "30" 2024-02-05 2024-02-11 0.25 6 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "30" 2024-02-05 2024-02-11 0.3 6 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "30" 2024-02-05 2024-02-11 0.35 6.65000000000001 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "30" 2024-02-05 2024-02-11 0.4 7 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "30" 2024-02-05 2024-02-11 0.45 7 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "30" 2024-02-05 2024-02-11 0.5 8 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "30" 2024-02-05 2024-02-11 0.55 8 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "30" 2024-02-05 2024-02-11 0.6 9 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "30" 2024-02-05 2024-02-11 0.65 10 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "30" 2024-02-05 2024-02-11 0.7 10 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "30" 2024-02-05 2024-02-11 0.75 11 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "30" 2024-02-05 2024-02-11 0.8 12 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "30" 2024-02-05 2024-02-11 0.85 13 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "30" 2024-02-05 2024-02-11 0.9 15 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "30" 2024-02-05 2024-02-11 0.95 16.1 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "30" 2024-02-05 2024-02-11 0.975 18 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "30" 2024-02-05 2024-02-11 0.99 20.04 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "30" 2024-02-05 2024-02-12 0.01 0.99 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "30" 2024-02-05 2024-02-12 0.025 1.475 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "30" 2024-02-05 2024-02-12 0.05 2 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "30" 2024-02-05 2024-02-12 0.1 3 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "30" 2024-02-05 2024-02-12 0.15 3 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "30" 2024-02-05 2024-02-12 0.2 4 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "30" 2024-02-05 2024-02-12 0.25 5 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "30" 2024-02-05 2024-02-12 0.3 6 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "30" 2024-02-05 2024-02-12 0.35 6.65000000000001 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "30" 2024-02-05 2024-02-12 0.4 7 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "30" 2024-02-05 2024-02-12 0.45 7 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "30" 2024-02-05 2024-02-12 0.5 8 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "30" 2024-02-05 2024-02-12 0.55 8 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "30" 2024-02-05 2024-02-12 0.6 8 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "30" 2024-02-05 2024-02-12 0.65 9 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "30" 2024-02-05 2024-02-12 0.7 9 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "30" 2024-02-05 2024-02-12 0.75 10 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "30" 2024-02-05 2024-02-12 0.8 11 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "30" 2024-02-05 2024-02-12 0.85 12.15 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "30" 2024-02-05 2024-02-12 0.9 13.1 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "30" 2024-02-05 2024-02-12 0.95 15 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "30" 2024-02-05 2024-02-12 0.975 16 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "30" 2024-02-05 2024-02-12 0.99 19.03 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "30" 2024-02-05 2024-02-13 0.01 1 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "30" 2024-02-05 2024-02-13 0.025 3 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "30" 2024-02-05 2024-02-13 0.05 3.95 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "30" 2024-02-05 2024-02-13 0.1 4.9 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "30" 2024-02-05 2024-02-13 0.15 6 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "30" 2024-02-05 2024-02-13 0.2 6 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "30" 2024-02-05 2024-02-13 0.25 7 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "30" 2024-02-05 2024-02-13 0.3 7 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "30" 2024-02-05 2024-02-13 0.35 8 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "30" 2024-02-05 2024-02-13 0.4 9 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "30" 2024-02-05 2024-02-13 0.45 9 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "30" 2024-02-05 2024-02-13 0.5 10 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "30" 2024-02-05 2024-02-13 0.55 10.45 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "30" 2024-02-05 2024-02-13 0.6 11.4 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "30" 2024-02-05 2024-02-13 0.65 12 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "30" 2024-02-05 2024-02-13 0.7 12.3 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "30" 2024-02-05 2024-02-13 0.75 14 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "30" 2024-02-05 2024-02-13 0.8 14.2 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "30" 2024-02-05 2024-02-13 0.85 16 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "30" 2024-02-05 2024-02-13 0.9 17.1 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "30" 2024-02-05 2024-02-13 0.95 19 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "30" 2024-02-05 2024-02-13 0.975 20.525 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "30" 2024-02-05 2024-02-13 0.99 23.02 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "30" 2024-02-05 2024-02-14 0.01 1 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "30" 2024-02-05 2024-02-14 0.025 1.475 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "30" 2024-02-05 2024-02-14 0.05 2 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "30" 2024-02-05 2024-02-14 0.1 3 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "30" 2024-02-05 2024-02-14 0.15 4 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "30" 2024-02-05 2024-02-14 0.2 4.8 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "30" 2024-02-05 2024-02-14 0.25 5 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "30" 2024-02-05 2024-02-14 0.3 5.7 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "30" 2024-02-05 2024-02-14 0.35 6 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "30" 2024-02-05 2024-02-14 0.4 7 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "30" 2024-02-05 2024-02-14 0.45 7.55 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "30" 2024-02-05 2024-02-14 0.5 8 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "30" 2024-02-05 2024-02-14 0.55 8.45 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "30" 2024-02-05 2024-02-14 0.6 9 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "30" 2024-02-05 2024-02-14 0.65 10 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "30" 2024-02-05 2024-02-14 0.7 10.3 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "30" 2024-02-05 2024-02-14 0.75 11 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "30" 2024-02-05 2024-02-14 0.8 12 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "30" 2024-02-05 2024-02-14 0.85 13 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "30" 2024-02-05 2024-02-14 0.9 15 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "30" 2024-02-05 2024-02-14 0.95 17.1 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "30" 2024-02-05 2024-02-14 0.975 19 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "30" 2024-02-05 2024-02-14 0.99 22.03 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "30" 2024-02-05 2024-02-15 0.01 1 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "30" 2024-02-05 2024-02-15 0.025 2 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "30" 2024-02-05 2024-02-15 0.05 2 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "30" 2024-02-05 2024-02-15 0.1 2 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "30" 2024-02-05 2024-02-15 0.15 3 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "30" 2024-02-05 2024-02-15 0.2 3.8 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "30" 2024-02-05 2024-02-15 0.25 4 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "30" 2024-02-05 2024-02-15 0.3 5 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "30" 2024-02-05 2024-02-15 0.35 5 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "30" 2024-02-05 2024-02-15 0.4 5 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "30" 2024-02-05 2024-02-15 0.45 6 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "30" 2024-02-05 2024-02-15 0.5 6.5 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "30" 2024-02-05 2024-02-15 0.55 7 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "30" 2024-02-05 2024-02-15 0.6 7 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "30" 2024-02-05 2024-02-15 0.65 8 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "30" 2024-02-05 2024-02-15 0.7 9 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "30" 2024-02-05 2024-02-15 0.75 9 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "30" 2024-02-05 2024-02-15 0.8 10 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "30" 2024-02-05 2024-02-15 0.85 11 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "30" 2024-02-05 2024-02-15 0.9 12 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "30" 2024-02-05 2024-02-15 0.95 13 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "30" 2024-02-05 2024-02-15 0.975 13.525 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "30" 2024-02-05 2024-02-15 0.99 15.05 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "30" 2024-02-05 2024-02-16 0.01 0.99 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "30" 2024-02-05 2024-02-16 0.025 1.475 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "30" 2024-02-05 2024-02-16 0.05 2 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "30" 2024-02-05 2024-02-16 0.1 3 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "30" 2024-02-05 2024-02-16 0.15 3 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "30" 2024-02-05 2024-02-16 0.2 4 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "30" 2024-02-05 2024-02-16 0.25 4 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "30" 2024-02-05 2024-02-16 0.3 5 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "30" 2024-02-05 2024-02-16 0.35 5 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "30" 2024-02-05 2024-02-16 0.4 6 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "30" 2024-02-05 2024-02-16 0.45 6 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "30" 2024-02-05 2024-02-16 0.5 6.5 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "30" 2024-02-05 2024-02-16 0.55 7.45 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "30" 2024-02-05 2024-02-16 0.6 8 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "30" 2024-02-05 2024-02-16 0.65 8.35000000000001 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "30" 2024-02-05 2024-02-16 0.7 9 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "30" 2024-02-05 2024-02-16 0.75 9 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "30" 2024-02-05 2024-02-16 0.8 10 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "30" 2024-02-05 2024-02-16 0.85 11 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "30" 2024-02-05 2024-02-16 0.9 12.1 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "30" 2024-02-05 2024-02-16 0.95 13 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "30" 2024-02-05 2024-02-16 0.975 14 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "30" 2024-02-05 2024-02-16 0.99 15.01 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "30" 2024-02-05 2024-02-17 0.01 1 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "30" 2024-02-05 2024-02-17 0.025 1.475 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "30" 2024-02-05 2024-02-17 0.05 2 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "30" 2024-02-05 2024-02-17 0.1 3 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "30" 2024-02-05 2024-02-17 0.15 3 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "30" 2024-02-05 2024-02-17 0.2 3 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "30" 2024-02-05 2024-02-17 0.25 4 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "30" 2024-02-05 2024-02-17 0.3 4 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "30" 2024-02-05 2024-02-17 0.35 5 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "30" 2024-02-05 2024-02-17 0.4 5 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "30" 2024-02-05 2024-02-17 0.45 6 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "30" 2024-02-05 2024-02-17 0.5 6 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "30" 2024-02-05 2024-02-17 0.55 7 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "30" 2024-02-05 2024-02-17 0.6 8 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "30" 2024-02-05 2024-02-17 0.65 8.35000000000001 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "30" 2024-02-05 2024-02-17 0.7 9 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "30" 2024-02-05 2024-02-17 0.75 10 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "30" 2024-02-05 2024-02-17 0.8 10 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "30" 2024-02-05 2024-02-17 0.85 12 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "30" 2024-02-05 2024-02-17 0.9 13 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "30" 2024-02-05 2024-02-17 0.95 15 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "30" 2024-02-05 2024-02-17 0.975 15 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "30" 2024-02-05 2024-02-17 0.99 17.04 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "30" 2024-02-05 2024-02-18 0.01 1 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "30" 2024-02-05 2024-02-18 0.025 1 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "30" 2024-02-05 2024-02-18 0.05 2 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "30" 2024-02-05 2024-02-18 0.1 3 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "30" 2024-02-05 2024-02-18 0.15 3 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "30" 2024-02-05 2024-02-18 0.2 4 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "30" 2024-02-05 2024-02-18 0.25 4 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "30" 2024-02-05 2024-02-18 0.3 5 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "30" 2024-02-05 2024-02-18 0.35 5.65000000000001 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "30" 2024-02-05 2024-02-18 0.4 6 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "30" 2024-02-05 2024-02-18 0.45 6.55 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "30" 2024-02-05 2024-02-18 0.5 8 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "30" 2024-02-05 2024-02-18 0.55 8 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "30" 2024-02-05 2024-02-18 0.6 9 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "30" 2024-02-05 2024-02-18 0.65 9 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "30" 2024-02-05 2024-02-18 0.7 9 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "30" 2024-02-05 2024-02-18 0.75 10 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "30" 2024-02-05 2024-02-18 0.8 10.2 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "30" 2024-02-05 2024-02-18 0.85 11 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "30" 2024-02-05 2024-02-18 0.9 13 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "30" 2024-02-05 2024-02-18 0.95 15.05 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "30" 2024-02-05 2024-02-18 0.975 17.525 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "30" 2024-02-05 2024-02-18 0.99 19.04 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "30" 2024-02-05 2024-02-19 0.01 0 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "30" 2024-02-05 2024-02-19 0.025 1 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "30" 2024-02-05 2024-02-19 0.05 2 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "30" 2024-02-05 2024-02-19 0.1 3 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "30" 2024-02-05 2024-02-19 0.15 3 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "30" 2024-02-05 2024-02-19 0.2 4 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "30" 2024-02-05 2024-02-19 0.25 5 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "30" 2024-02-05 2024-02-19 0.3 5 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "30" 2024-02-05 2024-02-19 0.35 5 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "30" 2024-02-05 2024-02-19 0.4 5 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "30" 2024-02-05 2024-02-19 0.45 6 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "30" 2024-02-05 2024-02-19 0.5 7 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "30" 2024-02-05 2024-02-19 0.55 7.45 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "30" 2024-02-05 2024-02-19 0.6 8 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "30" 2024-02-05 2024-02-19 0.65 9 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "30" 2024-02-05 2024-02-19 0.7 10 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "30" 2024-02-05 2024-02-19 0.75 11 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "30" 2024-02-05 2024-02-19 0.8 11 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "30" 2024-02-05 2024-02-19 0.85 12.15 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "30" 2024-02-05 2024-02-19 0.9 14 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "30" 2024-02-05 2024-02-19 0.95 15 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "30" 2024-02-05 2024-02-19 0.975 17.1 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "30" 2024-02-05 2024-02-19 0.99 19.01 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "30" 2024-02-05 2024-02-20 0.01 1.99 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "30" 2024-02-05 2024-02-20 0.025 2.475 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "30" 2024-02-05 2024-02-20 0.05 3 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "30" 2024-02-05 2024-02-20 0.1 3.9 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "30" 2024-02-05 2024-02-20 0.15 5 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "30" 2024-02-05 2024-02-20 0.2 5 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "30" 2024-02-05 2024-02-20 0.25 5.75 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "30" 2024-02-05 2024-02-20 0.3 6 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "30" 2024-02-05 2024-02-20 0.35 7 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "30" 2024-02-05 2024-02-20 0.4 8 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "30" 2024-02-05 2024-02-20 0.45 8.55 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "30" 2024-02-05 2024-02-20 0.5 9.5 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "30" 2024-02-05 2024-02-20 0.55 10 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "30" 2024-02-05 2024-02-20 0.6 10.4 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "30" 2024-02-05 2024-02-20 0.65 11 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "30" 2024-02-05 2024-02-20 0.7 12 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "30" 2024-02-05 2024-02-20 0.75 13 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "30" 2024-02-05 2024-02-20 0.8 14 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "30" 2024-02-05 2024-02-20 0.85 15 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "30" 2024-02-05 2024-02-20 0.9 17 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "30" 2024-02-05 2024-02-20 0.95 21.05 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "30" 2024-02-05 2024-02-20 0.975 22.525 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "30" 2024-02-05 2024-02-20 0.99 25.01 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "30" 2024-02-05 2024-02-21 0.01 0 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "30" 2024-02-05 2024-02-21 0.025 0.475 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "30" 2024-02-05 2024-02-21 0.05 1.95 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "30" 2024-02-05 2024-02-21 0.1 2 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "30" 2024-02-05 2024-02-21 0.15 3.85 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "30" 2024-02-05 2024-02-21 0.2 4 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "30" 2024-02-05 2024-02-21 0.25 5 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "30" 2024-02-05 2024-02-21 0.3 5 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "30" 2024-02-05 2024-02-21 0.35 6 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "30" 2024-02-05 2024-02-21 0.4 6 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "30" 2024-02-05 2024-02-21 0.45 7 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "30" 2024-02-05 2024-02-21 0.5 7.5 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "30" 2024-02-05 2024-02-21 0.55 8 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "30" 2024-02-05 2024-02-21 0.6 8 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "30" 2024-02-05 2024-02-21 0.65 9 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "30" 2024-02-05 2024-02-21 0.7 10 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "30" 2024-02-05 2024-02-21 0.75 10.25 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "30" 2024-02-05 2024-02-21 0.8 11 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "30" 2024-02-05 2024-02-21 0.85 12 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "30" 2024-02-05 2024-02-21 0.9 14 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "30" 2024-02-05 2024-02-21 0.95 19 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "30" 2024-02-05 2024-02-21 0.975 19.525 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "30" 2024-02-05 2024-02-21 0.99 20.02 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "30" 2024-02-05 2024-02-22 0.01 0 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "30" 2024-02-05 2024-02-22 0.025 1 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "30" 2024-02-05 2024-02-22 0.05 1 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "30" 2024-02-05 2024-02-22 0.1 2 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "30" 2024-02-05 2024-02-22 0.15 2.85 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "30" 2024-02-05 2024-02-22 0.2 3 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "30" 2024-02-05 2024-02-22 0.25 3 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "30" 2024-02-05 2024-02-22 0.3 4 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "30" 2024-02-05 2024-02-22 0.35 5 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "30" 2024-02-05 2024-02-22 0.4 5 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "30" 2024-02-05 2024-02-22 0.45 5 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "30" 2024-02-05 2024-02-22 0.5 6 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "30" 2024-02-05 2024-02-22 0.55 6 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "30" 2024-02-05 2024-02-22 0.6 7 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "30" 2024-02-05 2024-02-22 0.65 8 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "30" 2024-02-05 2024-02-22 0.7 8.30000000000001 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "30" 2024-02-05 2024-02-22 0.75 9 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "30" 2024-02-05 2024-02-22 0.8 9.2 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "30" 2024-02-05 2024-02-22 0.85 11 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "30" 2024-02-05 2024-02-22 0.9 12.1 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "30" 2024-02-05 2024-02-22 0.95 14 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "30" 2024-02-05 2024-02-22 0.975 15 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "30" 2024-02-05 2024-02-22 0.99 16 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "30" 2024-02-05 2024-02-23 0.01 0 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "30" 2024-02-05 2024-02-23 0.025 1 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "30" 2024-02-05 2024-02-23 0.05 1 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "30" 2024-02-05 2024-02-23 0.1 2 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "30" 2024-02-05 2024-02-23 0.15 3 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "30" 2024-02-05 2024-02-23 0.2 3 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "30" 2024-02-05 2024-02-23 0.25 4 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "30" 2024-02-05 2024-02-23 0.3 4 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "30" 2024-02-05 2024-02-23 0.35 4.65000000000001 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "30" 2024-02-05 2024-02-23 0.4 5 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "30" 2024-02-05 2024-02-23 0.45 5 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "30" 2024-02-05 2024-02-23 0.5 6 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "30" 2024-02-05 2024-02-23 0.55 7 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "30" 2024-02-05 2024-02-23 0.6 7 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "30" 2024-02-05 2024-02-23 0.65 8 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "30" 2024-02-05 2024-02-23 0.7 8.30000000000001 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "30" 2024-02-05 2024-02-23 0.75 9 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "30" 2024-02-05 2024-02-23 0.8 10 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "30" 2024-02-05 2024-02-23 0.85 10 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "30" 2024-02-05 2024-02-23 0.9 12.1 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "30" 2024-02-05 2024-02-23 0.95 15.1 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "30" 2024-02-05 2024-02-23 0.975 21.525 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "30" 2024-02-05 2024-02-23 0.99 22 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "30" 2024-02-05 2024-02-24 0.01 0 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "30" 2024-02-05 2024-02-24 0.025 0.475 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "30" 2024-02-05 2024-02-24 0.05 1 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "30" 2024-02-05 2024-02-24 0.1 1 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "30" 2024-02-05 2024-02-24 0.15 2.85 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "30" 2024-02-05 2024-02-24 0.2 3.8 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "30" 2024-02-05 2024-02-24 0.25 4 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "30" 2024-02-05 2024-02-24 0.3 4.7 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "30" 2024-02-05 2024-02-24 0.35 5 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "30" 2024-02-05 2024-02-24 0.4 6 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "30" 2024-02-05 2024-02-24 0.45 6 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "30" 2024-02-05 2024-02-24 0.5 6 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "30" 2024-02-05 2024-02-24 0.55 7 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "30" 2024-02-05 2024-02-24 0.6 7 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "30" 2024-02-05 2024-02-24 0.65 8 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "30" 2024-02-05 2024-02-24 0.7 9 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "30" 2024-02-05 2024-02-24 0.75 9 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "30" 2024-02-05 2024-02-24 0.8 10 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "30" 2024-02-05 2024-02-24 0.85 11 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "30" 2024-02-05 2024-02-24 0.9 12 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "30" 2024-02-05 2024-02-24 0.95 14 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "30" 2024-02-05 2024-02-24 0.975 14 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "30" 2024-02-05 2024-02-24 0.99 14.01 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "30" 2024-02-05 2024-02-25 0.01 0.99 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "30" 2024-02-05 2024-02-25 0.025 1 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "30" 2024-02-05 2024-02-25 0.05 2 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "30" 2024-02-05 2024-02-25 0.1 2 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "30" 2024-02-05 2024-02-25 0.15 3 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "30" 2024-02-05 2024-02-25 0.2 4 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "30" 2024-02-05 2024-02-25 0.25 4 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "30" 2024-02-05 2024-02-25 0.3 5 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "30" 2024-02-05 2024-02-25 0.35 6 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "30" 2024-02-05 2024-02-25 0.4 6 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "30" 2024-02-05 2024-02-25 0.45 7 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "30" 2024-02-05 2024-02-25 0.5 7 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "30" 2024-02-05 2024-02-25 0.55 7 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "30" 2024-02-05 2024-02-25 0.6 8 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "30" 2024-02-05 2024-02-25 0.65 8 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "30" 2024-02-05 2024-02-25 0.7 9 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "30" 2024-02-05 2024-02-25 0.75 9 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "30" 2024-02-05 2024-02-25 0.8 10 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "30" 2024-02-05 2024-02-25 0.85 11 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "30" 2024-02-05 2024-02-25 0.9 13 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "30" 2024-02-05 2024-02-25 0.95 15.05 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "30" 2024-02-05 2024-02-25 0.975 16 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "30" 2024-02-05 2024-02-25 0.99 17.04 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "30" 2024-02-05 2024-02-26 0.01 0 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "30" 2024-02-05 2024-02-26 0.025 1 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "30" 2024-02-05 2024-02-26 0.05 1.95 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "30" 2024-02-05 2024-02-26 0.1 2 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "30" 2024-02-05 2024-02-26 0.15 3 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "30" 2024-02-05 2024-02-26 0.2 3.8 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "30" 2024-02-05 2024-02-26 0.25 4 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "30" 2024-02-05 2024-02-26 0.3 5 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "30" 2024-02-05 2024-02-26 0.35 5 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "30" 2024-02-05 2024-02-26 0.4 6 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "30" 2024-02-05 2024-02-26 0.45 6.55 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "30" 2024-02-05 2024-02-26 0.5 7 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "30" 2024-02-05 2024-02-26 0.55 8 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "30" 2024-02-05 2024-02-26 0.6 8 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "30" 2024-02-05 2024-02-26 0.65 9 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "30" 2024-02-05 2024-02-26 0.7 10 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "30" 2024-02-05 2024-02-26 0.75 10 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "30" 2024-02-05 2024-02-26 0.8 11 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "30" 2024-02-05 2024-02-26 0.85 11.15 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "30" 2024-02-05 2024-02-26 0.9 13 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "30" 2024-02-05 2024-02-26 0.95 15 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "30" 2024-02-05 2024-02-26 0.975 17 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "30" 2024-02-05 2024-02-26 0.99 17.04 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "30" 2024-02-05 2024-02-27 0.01 1 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "30" 2024-02-05 2024-02-27 0.025 2 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "30" 2024-02-05 2024-02-27 0.05 3 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "30" 2024-02-05 2024-02-27 0.1 3.9 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "30" 2024-02-05 2024-02-27 0.15 4 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "30" 2024-02-05 2024-02-27 0.2 5 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "30" 2024-02-05 2024-02-27 0.25 5 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "30" 2024-02-05 2024-02-27 0.3 6 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "30" 2024-02-05 2024-02-27 0.35 6 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "30" 2024-02-05 2024-02-27 0.4 7 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "30" 2024-02-05 2024-02-27 0.45 8 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "30" 2024-02-05 2024-02-27 0.5 8 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "30" 2024-02-05 2024-02-27 0.55 9 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "30" 2024-02-05 2024-02-27 0.6 10 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "30" 2024-02-05 2024-02-27 0.65 11 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "30" 2024-02-05 2024-02-27 0.7 12 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "30" 2024-02-05 2024-02-27 0.75 12.25 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "30" 2024-02-05 2024-02-27 0.8 14 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "30" 2024-02-05 2024-02-27 0.85 15 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "30" 2024-02-05 2024-02-27 0.9 17 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "30" 2024-02-05 2024-02-27 0.95 18.05 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "30" 2024-02-05 2024-02-27 0.975 19 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "30" 2024-02-05 2024-02-27 0.99 21.02 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "30" 2024-02-05 2024-02-28 0.01 0 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "30" 2024-02-05 2024-02-28 0.025 1 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "30" 2024-02-05 2024-02-28 0.05 1.95 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "30" 2024-02-05 2024-02-28 0.1 3 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "30" 2024-02-05 2024-02-28 0.15 3.85 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "30" 2024-02-05 2024-02-28 0.2 4 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "30" 2024-02-05 2024-02-28 0.25 5 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "30" 2024-02-05 2024-02-28 0.3 5.7 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "30" 2024-02-05 2024-02-28 0.35 6 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "30" 2024-02-05 2024-02-28 0.4 6 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "30" 2024-02-05 2024-02-28 0.45 6.55 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "30" 2024-02-05 2024-02-28 0.5 7 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "30" 2024-02-05 2024-02-28 0.55 8 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "30" 2024-02-05 2024-02-28 0.6 8 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "30" 2024-02-05 2024-02-28 0.65 9 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "30" 2024-02-05 2024-02-28 0.7 9 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "30" 2024-02-05 2024-02-28 0.75 10 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "30" 2024-02-05 2024-02-28 0.8 11 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "30" 2024-02-05 2024-02-28 0.85 12 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "30" 2024-02-05 2024-02-28 0.9 14.1 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "30" 2024-02-05 2024-02-28 0.95 19 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "30" 2024-02-05 2024-02-28 0.975 19.525 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "30" 2024-02-05 2024-02-28 0.99 20.05 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "30" 2024-02-05 2024-02-29 0.01 0 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "30" 2024-02-05 2024-02-29 0.025 0 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "30" 2024-02-05 2024-02-29 0.05 0.95 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "30" 2024-02-05 2024-02-29 0.1 1 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "30" 2024-02-05 2024-02-29 0.15 2 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "30" 2024-02-05 2024-02-29 0.2 2.8 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "30" 2024-02-05 2024-02-29 0.25 3 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "30" 2024-02-05 2024-02-29 0.3 4 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "30" 2024-02-05 2024-02-29 0.35 4 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "30" 2024-02-05 2024-02-29 0.4 4 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "30" 2024-02-05 2024-02-29 0.45 5 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "30" 2024-02-05 2024-02-29 0.5 5 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "30" 2024-02-05 2024-02-29 0.55 5.45 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "30" 2024-02-05 2024-02-29 0.6 6 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "30" 2024-02-05 2024-02-29 0.65 6.35000000000001 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "30" 2024-02-05 2024-02-29 0.7 8 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "30" 2024-02-05 2024-02-29 0.75 8 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "30" 2024-02-05 2024-02-29 0.8 9 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "30" 2024-02-05 2024-02-29 0.85 10 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "30" 2024-02-05 2024-02-29 0.9 11 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "30" 2024-02-05 2024-02-29 0.95 12 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "30" 2024-02-05 2024-02-29 0.975 12.525 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "30" 2024-02-05 2024-02-29 0.99 13.05 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "30" 2024-02-05 2024-03-01 0.01 0 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "30" 2024-02-05 2024-03-01 0.025 0 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "30" 2024-02-05 2024-03-01 0.05 1 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "30" 2024-02-05 2024-03-01 0.1 1 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "30" 2024-02-05 2024-03-01 0.15 2 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "30" 2024-02-05 2024-03-01 0.2 3 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "30" 2024-02-05 2024-03-01 0.25 3 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "30" 2024-02-05 2024-03-01 0.3 4 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "30" 2024-02-05 2024-03-01 0.35 4.65000000000001 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "30" 2024-02-05 2024-03-01 0.4 5 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "30" 2024-02-05 2024-03-01 0.45 5 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "30" 2024-02-05 2024-03-01 0.5 6 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "30" 2024-02-05 2024-03-01 0.55 7 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "30" 2024-02-05 2024-03-01 0.6 7 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "30" 2024-02-05 2024-03-01 0.65 8.35000000000001 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "30" 2024-02-05 2024-03-01 0.7 9 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "30" 2024-02-05 2024-03-01 0.75 10 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "30" 2024-02-05 2024-03-01 0.8 11 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "30" 2024-02-05 2024-03-01 0.85 11 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "30" 2024-02-05 2024-03-01 0.9 13.1 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "30" 2024-02-05 2024-03-01 0.95 15.1 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "30" 2024-02-05 2024-03-01 0.975 18.525 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "30" 2024-02-05 2024-03-01 0.99 21.03 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "30" 2024-02-05 2024-03-02 0.01 0.99 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "30" 2024-02-05 2024-03-02 0.025 1 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "30" 2024-02-05 2024-03-02 0.05 1 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "30" 2024-02-05 2024-03-02 0.1 2 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "30" 2024-02-05 2024-03-02 0.15 2 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "30" 2024-02-05 2024-03-02 0.2 3 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "30" 2024-02-05 2024-03-02 0.25 3 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "30" 2024-02-05 2024-03-02 0.3 4 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "30" 2024-02-05 2024-03-02 0.35 4 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "30" 2024-02-05 2024-03-02 0.4 5 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "30" 2024-02-05 2024-03-02 0.45 5 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "30" 2024-02-05 2024-03-02 0.5 6 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "30" 2024-02-05 2024-03-02 0.55 6 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "30" 2024-02-05 2024-03-02 0.6 7 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "30" 2024-02-05 2024-03-02 0.65 7 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "30" 2024-02-05 2024-03-02 0.7 8 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "30" 2024-02-05 2024-03-02 0.75 9 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "30" 2024-02-05 2024-03-02 0.8 10 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "30" 2024-02-05 2024-03-02 0.85 11 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "30" 2024-02-05 2024-03-02 0.9 12 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "30" 2024-02-05 2024-03-02 0.95 13 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "30" 2024-02-05 2024-03-02 0.975 13 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "30" 2024-02-05 2024-03-02 0.99 17.02 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "30" 2024-02-05 2024-03-03 0.01 0 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "30" 2024-02-05 2024-03-03 0.025 0.475 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "30" 2024-02-05 2024-03-03 0.05 1 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "30" 2024-02-05 2024-03-03 0.1 1.9 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "30" 2024-02-05 2024-03-03 0.15 3 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "30" 2024-02-05 2024-03-03 0.2 4 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "30" 2024-02-05 2024-03-03 0.25 4 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "30" 2024-02-05 2024-03-03 0.3 4 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "30" 2024-02-05 2024-03-03 0.35 5 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "30" 2024-02-05 2024-03-03 0.4 6 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "30" 2024-02-05 2024-03-03 0.45 6 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "30" 2024-02-05 2024-03-03 0.5 7 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "30" 2024-02-05 2024-03-03 0.55 7 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "30" 2024-02-05 2024-03-03 0.6 8 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "30" 2024-02-05 2024-03-03 0.65 8.35000000000001 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "30" 2024-02-05 2024-03-03 0.7 9 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "30" 2024-02-05 2024-03-03 0.75 10 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "30" 2024-02-05 2024-03-03 0.8 11 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "30" 2024-02-05 2024-03-03 0.85 11.15 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "30" 2024-02-05 2024-03-03 0.9 13 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "30" 2024-02-05 2024-03-03 0.95 16.05 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "30" 2024-02-05 2024-03-03 0.975 19.575 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "30" 2024-02-05 2024-03-03 0.99 23 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "30" 2024-02-05 2024-03-04 0.01 0 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "30" 2024-02-05 2024-03-04 0.025 0 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "30" 2024-02-05 2024-03-04 0.05 0 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "30" 2024-02-05 2024-03-04 0.1 1.9 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "30" 2024-02-05 2024-03-04 0.15 2 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "30" 2024-02-05 2024-03-04 0.2 2.8 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "30" 2024-02-05 2024-03-04 0.25 3 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "30" 2024-02-05 2024-03-04 0.3 4 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "30" 2024-02-05 2024-03-04 0.35 4.65000000000001 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "30" 2024-02-05 2024-03-04 0.4 5 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "30" 2024-02-05 2024-03-04 0.45 5 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "30" 2024-02-05 2024-03-04 0.5 6 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "30" 2024-02-05 2024-03-04 0.55 6 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "30" 2024-02-05 2024-03-04 0.6 7 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "30" 2024-02-05 2024-03-04 0.65 7 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "30" 2024-02-05 2024-03-04 0.7 8 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "30" 2024-02-05 2024-03-04 0.75 9 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "30" 2024-02-05 2024-03-04 0.8 10 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "30" 2024-02-05 2024-03-04 0.85 11 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "30" 2024-02-05 2024-03-04 0.9 12.1 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "30" 2024-02-05 2024-03-04 0.95 15.05 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "30" 2024-02-05 2024-03-04 0.975 16.525 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "30" 2024-02-05 2024-03-04 0.99 20.01 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "37" 2024-02-05 2024-02-06 0.01 71.97 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "37" 2024-02-05 2024-02-06 0.025 76.475 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "37" 2024-02-05 2024-02-06 0.05 78 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "37" 2024-02-05 2024-02-06 0.1 81.8 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "37" 2024-02-05 2024-02-06 0.15 84.85 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "37" 2024-02-05 2024-02-06 0.2 88.6 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "37" 2024-02-05 2024-02-06 0.25 91 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "37" 2024-02-05 2024-02-06 0.3 92 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "37" 2024-02-05 2024-02-06 0.35 94 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "37" 2024-02-05 2024-02-06 0.4 96 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "37" 2024-02-05 2024-02-06 0.45 97 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "37" 2024-02-05 2024-02-06 0.5 98.5 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "37" 2024-02-05 2024-02-06 0.55 101.45 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "37" 2024-02-05 2024-02-06 0.6 103 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "37" 2024-02-05 2024-02-06 0.65 107 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "37" 2024-02-05 2024-02-06 0.7 108 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "37" 2024-02-05 2024-02-06 0.75 109 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "37" 2024-02-05 2024-02-06 0.8 112 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "37" 2024-02-05 2024-02-06 0.85 114.15 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "37" 2024-02-05 2024-02-06 0.9 118 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "37" 2024-02-05 2024-02-06 0.95 122.1 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "37" 2024-02-05 2024-02-06 0.975 128.1 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "37" 2024-02-05 2024-02-06 0.99 137.04 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "37" 2024-02-05 2024-02-07 0.01 71.99 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "37" 2024-02-05 2024-02-07 0.025 74.425 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "37" 2024-02-05 2024-02-07 0.05 76.95 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "37" 2024-02-05 2024-02-07 0.1 83 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "37" 2024-02-05 2024-02-07 0.15 86.85 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "37" 2024-02-05 2024-02-07 0.2 88 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "37" 2024-02-05 2024-02-07 0.25 93 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "37" 2024-02-05 2024-02-07 0.3 95.7 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "37" 2024-02-05 2024-02-07 0.35 98 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "37" 2024-02-05 2024-02-07 0.4 99 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "37" 2024-02-05 2024-02-07 0.45 100 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "37" 2024-02-05 2024-02-07 0.5 101.5 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "37" 2024-02-05 2024-02-07 0.55 102.45 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "37" 2024-02-05 2024-02-07 0.6 104 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "37" 2024-02-05 2024-02-07 0.65 105 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "37" 2024-02-05 2024-02-07 0.7 106 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "37" 2024-02-05 2024-02-07 0.75 108 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "37" 2024-02-05 2024-02-07 0.8 109 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "37" 2024-02-05 2024-02-07 0.85 110.3 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "37" 2024-02-05 2024-02-07 0.9 117.1 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "37" 2024-02-05 2024-02-07 0.95 123.05 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "37" 2024-02-05 2024-02-07 0.975 132.3 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "37" 2024-02-05 2024-02-07 0.99 140.2 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "37" 2024-02-05 2024-02-08 0.01 66.89 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "37" 2024-02-05 2024-02-08 0.025 69 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "37" 2024-02-05 2024-02-08 0.05 70 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "37" 2024-02-05 2024-02-08 0.1 76 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "37" 2024-02-05 2024-02-08 0.15 79 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "37" 2024-02-05 2024-02-08 0.2 83.8 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "37" 2024-02-05 2024-02-08 0.25 86.75 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "37" 2024-02-05 2024-02-08 0.3 88 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "37" 2024-02-05 2024-02-08 0.35 88 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "37" 2024-02-05 2024-02-08 0.4 90 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "37" 2024-02-05 2024-02-08 0.45 94 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "37" 2024-02-05 2024-02-08 0.5 95 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "37" 2024-02-05 2024-02-08 0.55 96 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "37" 2024-02-05 2024-02-08 0.6 99 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "37" 2024-02-05 2024-02-08 0.65 102.7 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "37" 2024-02-05 2024-02-08 0.7 106 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "37" 2024-02-05 2024-02-08 0.75 107.25 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "37" 2024-02-05 2024-02-08 0.8 109 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "37" 2024-02-05 2024-02-08 0.85 112 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "37" 2024-02-05 2024-02-08 0.9 115.1 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "37" 2024-02-05 2024-02-08 0.95 122 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "37" 2024-02-05 2024-02-08 0.975 125.575 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "37" 2024-02-05 2024-02-08 0.99 127.03 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "37" 2024-02-05 2024-02-09 0.01 65.85 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "37" 2024-02-05 2024-02-09 0.025 69.425 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "37" 2024-02-05 2024-02-09 0.05 73.9 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "37" 2024-02-05 2024-02-09 0.1 76 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "37" 2024-02-05 2024-02-09 0.15 81 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "37" 2024-02-05 2024-02-09 0.2 83 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "37" 2024-02-05 2024-02-09 0.25 84 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "37" 2024-02-05 2024-02-09 0.3 85 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "37" 2024-02-05 2024-02-09 0.35 87 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "37" 2024-02-05 2024-02-09 0.4 90 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "37" 2024-02-05 2024-02-09 0.45 91.55 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "37" 2024-02-05 2024-02-09 0.5 93 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "37" 2024-02-05 2024-02-09 0.55 94.45 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "37" 2024-02-05 2024-02-09 0.6 97.4 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "37" 2024-02-05 2024-02-09 0.65 99.35 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "37" 2024-02-05 2024-02-09 0.7 102.3 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "37" 2024-02-05 2024-02-09 0.75 104.25 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "37" 2024-02-05 2024-02-09 0.8 107 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "37" 2024-02-05 2024-02-09 0.85 110 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "37" 2024-02-05 2024-02-09 0.9 113 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "37" 2024-02-05 2024-02-09 0.95 118 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "37" 2024-02-05 2024-02-09 0.975 120.05 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "37" 2024-02-05 2024-02-09 0.99 126.09 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "37" 2024-02-05 2024-02-10 0.01 50.94 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "37" 2024-02-05 2024-02-10 0.025 54.475 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "37" 2024-02-05 2024-02-10 0.05 56.95 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "37" 2024-02-05 2024-02-10 0.1 62.9 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "37" 2024-02-05 2024-02-10 0.15 65.85 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "37" 2024-02-05 2024-02-10 0.2 68.8 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "37" 2024-02-05 2024-02-10 0.25 70 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "37" 2024-02-05 2024-02-10 0.3 73.7 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "37" 2024-02-05 2024-02-10 0.35 75.65 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "37" 2024-02-05 2024-02-10 0.4 78.8 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "37" 2024-02-05 2024-02-10 0.45 82 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "37" 2024-02-05 2024-02-10 0.5 84.5 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "37" 2024-02-05 2024-02-10 0.55 87 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "37" 2024-02-05 2024-02-10 0.6 88 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "37" 2024-02-05 2024-02-10 0.65 89 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "37" 2024-02-05 2024-02-10 0.7 92 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "37" 2024-02-05 2024-02-10 0.75 94 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "37" 2024-02-05 2024-02-10 0.8 95 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "37" 2024-02-05 2024-02-10 0.85 96.15 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "37" 2024-02-05 2024-02-10 0.9 98 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "37" 2024-02-05 2024-02-10 0.95 107.05 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "37" 2024-02-05 2024-02-10 0.975 113.05 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "37" 2024-02-05 2024-02-10 0.99 115.07 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "37" 2024-02-05 2024-02-11 0.01 57.88 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "37" 2024-02-05 2024-02-11 0.025 60.475 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "37" 2024-02-05 2024-02-11 0.05 66.75 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "37" 2024-02-05 2024-02-11 0.1 69.9 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "37" 2024-02-05 2024-02-11 0.15 73 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "37" 2024-02-05 2024-02-11 0.2 75 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "37" 2024-02-05 2024-02-11 0.25 77 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "37" 2024-02-05 2024-02-11 0.3 78.7 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "37" 2024-02-05 2024-02-11 0.35 81 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "37" 2024-02-05 2024-02-11 0.4 83.2 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "37" 2024-02-05 2024-02-11 0.45 86.55 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "37" 2024-02-05 2024-02-11 0.5 88.5 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "37" 2024-02-05 2024-02-11 0.55 90 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "37" 2024-02-05 2024-02-11 0.6 92 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "37" 2024-02-05 2024-02-11 0.65 94 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "37" 2024-02-05 2024-02-11 0.7 95 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "37" 2024-02-05 2024-02-11 0.75 96 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "37" 2024-02-05 2024-02-11 0.8 98.6 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "37" 2024-02-05 2024-02-11 0.85 104 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "37" 2024-02-05 2024-02-11 0.9 111.1 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "37" 2024-02-05 2024-02-11 0.95 115.05 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "37" 2024-02-05 2024-02-11 0.975 117 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "37" 2024-02-05 2024-02-11 0.99 127.14 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "37" 2024-02-05 2024-02-12 0.01 65.96 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "37" 2024-02-05 2024-02-12 0.025 66.95 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "37" 2024-02-05 2024-02-12 0.05 70.85 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "37" 2024-02-05 2024-02-12 0.1 79.9 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "37" 2024-02-05 2024-02-12 0.15 83.7 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "37" 2024-02-05 2024-02-12 0.2 86.8 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "37" 2024-02-05 2024-02-12 0.25 87 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "37" 2024-02-05 2024-02-12 0.3 91.7 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "37" 2024-02-05 2024-02-12 0.35 92.65 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "37" 2024-02-05 2024-02-12 0.4 95 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "37" 2024-02-05 2024-02-12 0.45 96.55 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "37" 2024-02-05 2024-02-12 0.5 99 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "37" 2024-02-05 2024-02-12 0.55 101 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "37" 2024-02-05 2024-02-12 0.6 105.4 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "37" 2024-02-05 2024-02-12 0.65 106.35 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "37" 2024-02-05 2024-02-12 0.7 109.3 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "37" 2024-02-05 2024-02-12 0.75 112.25 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "37" 2024-02-05 2024-02-12 0.8 116 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "37" 2024-02-05 2024-02-12 0.85 120.15 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "37" 2024-02-05 2024-02-12 0.9 125 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "37" 2024-02-05 2024-02-12 0.95 128.1 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "37" 2024-02-05 2024-02-12 0.975 134.05 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "37" 2024-02-05 2024-02-12 0.99 147.27 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "37" 2024-02-05 2024-02-13 0.01 53.88 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "37" 2024-02-05 2024-02-13 0.025 59.9 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "37" 2024-02-05 2024-02-13 0.05 69.7 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "37" 2024-02-05 2024-02-13 0.1 76 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "37" 2024-02-05 2024-02-13 0.15 79.85 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "37" 2024-02-05 2024-02-13 0.2 82 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "37" 2024-02-05 2024-02-13 0.25 83.75 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "37" 2024-02-05 2024-02-13 0.3 86.4 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "37" 2024-02-05 2024-02-13 0.35 88.65 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "37" 2024-02-05 2024-02-13 0.4 92.6 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "37" 2024-02-05 2024-02-13 0.45 93.55 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "37" 2024-02-05 2024-02-13 0.5 95 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "37" 2024-02-05 2024-02-13 0.55 96.9 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "37" 2024-02-05 2024-02-13 0.6 98.4 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "37" 2024-02-05 2024-02-13 0.65 101.35 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "37" 2024-02-05 2024-02-13 0.7 104.3 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "37" 2024-02-05 2024-02-13 0.75 105 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "37" 2024-02-05 2024-02-13 0.8 107 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "37" 2024-02-05 2024-02-13 0.85 113.3 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "37" 2024-02-05 2024-02-13 0.9 122.1 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "37" 2024-02-05 2024-02-13 0.95 129.1 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "37" 2024-02-05 2024-02-13 0.975 139.15 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "37" 2024-02-05 2024-02-13 0.99 146.11 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "37" 2024-02-05 2024-02-14 0.01 61.97 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "37" 2024-02-05 2024-02-14 0.025 67.95 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "37" 2024-02-05 2024-02-14 0.05 72 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "37" 2024-02-05 2024-02-14 0.1 73 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "37" 2024-02-05 2024-02-14 0.15 76.7 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "37" 2024-02-05 2024-02-14 0.2 80.8 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "37" 2024-02-05 2024-02-14 0.25 83 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "37" 2024-02-05 2024-02-14 0.3 87.7 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "37" 2024-02-05 2024-02-14 0.35 89 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "37" 2024-02-05 2024-02-14 0.4 92 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "37" 2024-02-05 2024-02-14 0.45 96 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "37" 2024-02-05 2024-02-14 0.5 97.5 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "37" 2024-02-05 2024-02-14 0.55 99 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "37" 2024-02-05 2024-02-14 0.6 101.4 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "37" 2024-02-05 2024-02-14 0.65 105 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "37" 2024-02-05 2024-02-14 0.7 107 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "37" 2024-02-05 2024-02-14 0.75 109.25 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "37" 2024-02-05 2024-02-14 0.8 113.2 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "37" 2024-02-05 2024-02-14 0.85 117 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "37" 2024-02-05 2024-02-14 0.9 121.3 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "37" 2024-02-05 2024-02-14 0.95 132.1 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "37" 2024-02-05 2024-02-14 0.975 142.25 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "37" 2024-02-05 2024-02-14 0.99 154.22 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "37" 2024-02-05 2024-02-15 0.01 58.84 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "37" 2024-02-05 2024-02-15 0.025 62.475 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "37" 2024-02-05 2024-02-15 0.05 64 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "37" 2024-02-05 2024-02-15 0.1 70.9 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "37" 2024-02-05 2024-02-15 0.15 74 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "37" 2024-02-05 2024-02-15 0.2 77 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "37" 2024-02-05 2024-02-15 0.25 82.75 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "37" 2024-02-05 2024-02-15 0.3 84 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "37" 2024-02-05 2024-02-15 0.35 86 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "37" 2024-02-05 2024-02-15 0.4 88 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "37" 2024-02-05 2024-02-15 0.45 92.1 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "37" 2024-02-05 2024-02-15 0.5 95 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "37" 2024-02-05 2024-02-15 0.55 99 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "37" 2024-02-05 2024-02-15 0.6 101.4 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "37" 2024-02-05 2024-02-15 0.65 102.35 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "37" 2024-02-05 2024-02-15 0.7 105 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "37" 2024-02-05 2024-02-15 0.75 107 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "37" 2024-02-05 2024-02-15 0.8 111 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "37" 2024-02-05 2024-02-15 0.85 112.15 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "37" 2024-02-05 2024-02-15 0.9 117 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "37" 2024-02-05 2024-02-15 0.95 127.1 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "37" 2024-02-05 2024-02-15 0.975 140.525 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "37" 2024-02-05 2024-02-15 0.99 143.08 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "37" 2024-02-05 2024-02-16 0.01 47.84 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "37" 2024-02-05 2024-02-16 0.025 52.85 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "37" 2024-02-05 2024-02-16 0.05 60.95 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "37" 2024-02-05 2024-02-16 0.1 65.9 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "37" 2024-02-05 2024-02-16 0.15 69.85 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "37" 2024-02-05 2024-02-16 0.2 73.6 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "37" 2024-02-05 2024-02-16 0.25 78 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "37" 2024-02-05 2024-02-16 0.3 80 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "37" 2024-02-05 2024-02-16 0.35 82 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "37" 2024-02-05 2024-02-16 0.4 83.6 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "37" 2024-02-05 2024-02-16 0.45 86.55 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "37" 2024-02-05 2024-02-16 0.5 88 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "37" 2024-02-05 2024-02-16 0.55 91 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "37" 2024-02-05 2024-02-16 0.6 94 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "37" 2024-02-05 2024-02-16 0.65 98 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "37" 2024-02-05 2024-02-16 0.7 100.3 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "37" 2024-02-05 2024-02-16 0.75 105.25 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "37" 2024-02-05 2024-02-16 0.8 109 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "37" 2024-02-05 2024-02-16 0.85 111.3 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "37" 2024-02-05 2024-02-16 0.9 115 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "37" 2024-02-05 2024-02-16 0.95 122.05 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "37" 2024-02-05 2024-02-16 0.975 132.1 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "37" 2024-02-05 2024-02-16 0.99 142.1 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "37" 2024-02-05 2024-02-17 0.01 48.98 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "37" 2024-02-05 2024-02-17 0.025 49 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "37" 2024-02-05 2024-02-17 0.05 51 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "37" 2024-02-05 2024-02-17 0.1 58.8 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "37" 2024-02-05 2024-02-17 0.15 62 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "37" 2024-02-05 2024-02-17 0.2 64 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "37" 2024-02-05 2024-02-17 0.25 65 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "37" 2024-02-05 2024-02-17 0.3 68.7 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "37" 2024-02-05 2024-02-17 0.35 73.95 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "37" 2024-02-05 2024-02-17 0.4 76.6 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "37" 2024-02-05 2024-02-17 0.45 78 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "37" 2024-02-05 2024-02-17 0.5 80 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "37" 2024-02-05 2024-02-17 0.55 80 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "37" 2024-02-05 2024-02-17 0.6 83.4 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "37" 2024-02-05 2024-02-17 0.65 84.35 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "37" 2024-02-05 2024-02-17 0.7 87.3 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "37" 2024-02-05 2024-02-17 0.75 91.25 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "37" 2024-02-05 2024-02-17 0.8 96 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "37" 2024-02-05 2024-02-17 0.85 98.15 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "37" 2024-02-05 2024-02-17 0.9 105.2 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "37" 2024-02-05 2024-02-17 0.95 112.1 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "37" 2024-02-05 2024-02-17 0.975 121.05 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "37" 2024-02-05 2024-02-17 0.99 124.12 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "37" 2024-02-05 2024-02-18 0.01 37.99 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "37" 2024-02-05 2024-02-18 0.025 52.85 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "37" 2024-02-05 2024-02-18 0.05 59.9 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "37" 2024-02-05 2024-02-18 0.1 64.7 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "37" 2024-02-05 2024-02-18 0.15 67.7 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "37" 2024-02-05 2024-02-18 0.2 70.8 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "37" 2024-02-05 2024-02-18 0.25 73 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "37" 2024-02-05 2024-02-18 0.3 77.7 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "37" 2024-02-05 2024-02-18 0.35 81.65 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "37" 2024-02-05 2024-02-18 0.4 83.6 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "37" 2024-02-05 2024-02-18 0.45 86 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "37" 2024-02-05 2024-02-18 0.5 87 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "37" 2024-02-05 2024-02-18 0.55 88 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "37" 2024-02-05 2024-02-18 0.6 90.4 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "37" 2024-02-05 2024-02-18 0.65 94 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "37" 2024-02-05 2024-02-18 0.7 95.3 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "37" 2024-02-05 2024-02-18 0.75 98 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "37" 2024-02-05 2024-02-18 0.8 101 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "37" 2024-02-05 2024-02-18 0.85 102.75 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "37" 2024-02-05 2024-02-18 0.9 109.2 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "37" 2024-02-05 2024-02-18 0.95 119.15 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "37" 2024-02-05 2024-02-18 0.975 129.15 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "37" 2024-02-05 2024-02-18 0.99 141.02 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "37" 2024-02-05 2024-02-19 0.01 50.96 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "37" 2024-02-05 2024-02-19 0.025 52.95 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "37" 2024-02-05 2024-02-19 0.05 58.9 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "37" 2024-02-05 2024-02-19 0.1 71.6 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "37" 2024-02-05 2024-02-19 0.15 77 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "37" 2024-02-05 2024-02-19 0.2 82.8 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "37" 2024-02-05 2024-02-19 0.25 85 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "37" 2024-02-05 2024-02-19 0.3 87 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "37" 2024-02-05 2024-02-19 0.35 89 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "37" 2024-02-05 2024-02-19 0.4 90.6 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "37" 2024-02-05 2024-02-19 0.45 94.55 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "37" 2024-02-05 2024-02-19 0.5 96.5 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "37" 2024-02-05 2024-02-19 0.55 98 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "37" 2024-02-05 2024-02-19 0.6 101.4 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "37" 2024-02-05 2024-02-19 0.65 106.35 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "37" 2024-02-05 2024-02-19 0.7 110.3 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "37" 2024-02-05 2024-02-19 0.75 113.25 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "37" 2024-02-05 2024-02-19 0.8 117.4 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "37" 2024-02-05 2024-02-19 0.85 122.15 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "37" 2024-02-05 2024-02-19 0.9 127.1 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "37" 2024-02-05 2024-02-19 0.95 131.3 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "37" 2024-02-05 2024-02-19 0.975 138.525 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "37" 2024-02-05 2024-02-19 0.99 142.07 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "37" 2024-02-05 2024-02-20 0.01 46.97 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "37" 2024-02-05 2024-02-20 0.025 55.225 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "37" 2024-02-05 2024-02-20 0.05 62.9 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "37" 2024-02-05 2024-02-20 0.1 70.9 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "37" 2024-02-05 2024-02-20 0.15 75.85 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "37" 2024-02-05 2024-02-20 0.2 78 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "37" 2024-02-05 2024-02-20 0.25 79.75 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "37" 2024-02-05 2024-02-20 0.3 83 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "37" 2024-02-05 2024-02-20 0.35 85.65 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "37" 2024-02-05 2024-02-20 0.4 89 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "37" 2024-02-05 2024-02-20 0.45 91 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "37" 2024-02-05 2024-02-20 0.5 95 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "37" 2024-02-05 2024-02-20 0.55 96.45 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "37" 2024-02-05 2024-02-20 0.6 99 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "37" 2024-02-05 2024-02-20 0.65 102 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "37" 2024-02-05 2024-02-20 0.7 104.6 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "37" 2024-02-05 2024-02-20 0.75 109.5 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "37" 2024-02-05 2024-02-20 0.8 114 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "37" 2024-02-05 2024-02-20 0.85 121.3 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "37" 2024-02-05 2024-02-20 0.9 126.2 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "37" 2024-02-05 2024-02-20 0.95 131 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "37" 2024-02-05 2024-02-20 0.975 138.3 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "37" 2024-02-05 2024-02-20 0.99 152.11 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "37" 2024-02-05 2024-02-21 0.01 46.89 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "37" 2024-02-05 2024-02-21 0.025 52.375 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "37" 2024-02-05 2024-02-21 0.05 60.7 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "37" 2024-02-05 2024-02-21 0.1 74.8 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "37" 2024-02-05 2024-02-21 0.15 77 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "37" 2024-02-05 2024-02-21 0.2 81 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "37" 2024-02-05 2024-02-21 0.25 82 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "37" 2024-02-05 2024-02-21 0.3 84 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "37" 2024-02-05 2024-02-21 0.35 87.65 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "37" 2024-02-05 2024-02-21 0.4 90.6 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "37" 2024-02-05 2024-02-21 0.45 92.55 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "37" 2024-02-05 2024-02-21 0.5 97 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "37" 2024-02-05 2024-02-21 0.55 98.45 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "37" 2024-02-05 2024-02-21 0.6 102 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "37" 2024-02-05 2024-02-21 0.65 104.7 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "37" 2024-02-05 2024-02-21 0.7 107.3 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "37" 2024-02-05 2024-02-21 0.75 112.75 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "37" 2024-02-05 2024-02-21 0.8 118.2 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "37" 2024-02-05 2024-02-21 0.85 121.15 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "37" 2024-02-05 2024-02-21 0.9 131 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "37" 2024-02-05 2024-02-21 0.95 142 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "37" 2024-02-05 2024-02-21 0.975 145.575 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "37" 2024-02-05 2024-02-21 0.99 150.08 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "37" 2024-02-05 2024-02-22 0.01 43.98 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "37" 2024-02-05 2024-02-22 0.025 47.325 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "37" 2024-02-05 2024-02-22 0.05 54.95 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "37" 2024-02-05 2024-02-22 0.1 64.9 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "37" 2024-02-05 2024-02-22 0.15 71 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "37" 2024-02-05 2024-02-22 0.2 76 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "37" 2024-02-05 2024-02-22 0.25 79 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "37" 2024-02-05 2024-02-22 0.3 82 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "37" 2024-02-05 2024-02-22 0.35 83.65 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "37" 2024-02-05 2024-02-22 0.4 86.6 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "37" 2024-02-05 2024-02-22 0.45 88.55 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "37" 2024-02-05 2024-02-22 0.5 92 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "37" 2024-02-05 2024-02-22 0.55 94 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "37" 2024-02-05 2024-02-22 0.6 96 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "37" 2024-02-05 2024-02-22 0.65 99 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "37" 2024-02-05 2024-02-22 0.7 102.3 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "37" 2024-02-05 2024-02-22 0.75 107 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "37" 2024-02-05 2024-02-22 0.8 112.6 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "37" 2024-02-05 2024-02-22 0.85 122.15 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "37" 2024-02-05 2024-02-22 0.9 127.4 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "37" 2024-02-05 2024-02-22 0.95 137.55 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "37" 2024-02-05 2024-02-22 0.975 150.05 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "37" 2024-02-05 2024-02-22 0.99 152.03 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "37" 2024-02-05 2024-02-23 0.01 37.99 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "37" 2024-02-05 2024-02-23 0.025 45.325 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "37" 2024-02-05 2024-02-23 0.05 54.95 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "37" 2024-02-05 2024-02-23 0.1 61.9 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "37" 2024-02-05 2024-02-23 0.15 66.85 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "37" 2024-02-05 2024-02-23 0.2 70 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "37" 2024-02-05 2024-02-23 0.25 73.75 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "37" 2024-02-05 2024-02-23 0.3 77 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "37" 2024-02-05 2024-02-23 0.35 81 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "37" 2024-02-05 2024-02-23 0.4 82 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "37" 2024-02-05 2024-02-23 0.45 84 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "37" 2024-02-05 2024-02-23 0.5 87 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "37" 2024-02-05 2024-02-23 0.55 90.45 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "37" 2024-02-05 2024-02-23 0.6 94 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "37" 2024-02-05 2024-02-23 0.65 97 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "37" 2024-02-05 2024-02-23 0.7 100 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "37" 2024-02-05 2024-02-23 0.75 108.75 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "37" 2024-02-05 2024-02-23 0.8 112.2 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "37" 2024-02-05 2024-02-23 0.85 120.15 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "37" 2024-02-05 2024-02-23 0.9 125.2 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "37" 2024-02-05 2024-02-23 0.95 137.15 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "37" 2024-02-05 2024-02-23 0.975 148.575 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "37" 2024-02-05 2024-02-23 0.99 161.02 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "37" 2024-02-05 2024-02-24 0.01 37.9 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "37" 2024-02-05 2024-02-24 0.025 39.475 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "37" 2024-02-05 2024-02-24 0.05 47.7 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "37" 2024-02-05 2024-02-24 0.1 53.9 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "37" 2024-02-05 2024-02-24 0.15 55 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "37" 2024-02-05 2024-02-24 0.2 60.4 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "37" 2024-02-05 2024-02-24 0.25 62.75 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "37" 2024-02-05 2024-02-24 0.3 67.7 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "37" 2024-02-05 2024-02-24 0.35 69 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "37" 2024-02-05 2024-02-24 0.4 71 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "37" 2024-02-05 2024-02-24 0.45 75 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "37" 2024-02-05 2024-02-24 0.5 76 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "37" 2024-02-05 2024-02-24 0.55 79.45 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "37" 2024-02-05 2024-02-24 0.6 82.4 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "37" 2024-02-05 2024-02-24 0.65 87.35 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "37" 2024-02-05 2024-02-24 0.7 89.3 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "37" 2024-02-05 2024-02-24 0.75 92.25 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "37" 2024-02-05 2024-02-24 0.8 99.2 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "37" 2024-02-05 2024-02-24 0.85 103 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "37" 2024-02-05 2024-02-24 0.9 109 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "37" 2024-02-05 2024-02-24 0.95 114.05 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "37" 2024-02-05 2024-02-24 0.975 117.575 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "37" 2024-02-05 2024-02-24 0.99 121.21 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "37" 2024-02-05 2024-02-25 0.01 36.91 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "37" 2024-02-05 2024-02-25 0.025 46 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "37" 2024-02-05 2024-02-25 0.05 49.85 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "37" 2024-02-05 2024-02-25 0.1 54.8 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "37" 2024-02-05 2024-02-25 0.15 59.85 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "37" 2024-02-05 2024-02-25 0.2 64.6 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "37" 2024-02-05 2024-02-25 0.25 66.75 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "37" 2024-02-05 2024-02-25 0.3 71.7 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "37" 2024-02-05 2024-02-25 0.35 75.65 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "37" 2024-02-05 2024-02-25 0.4 79.2 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "37" 2024-02-05 2024-02-25 0.45 81 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "37" 2024-02-05 2024-02-25 0.5 85 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "37" 2024-02-05 2024-02-25 0.55 89 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "37" 2024-02-05 2024-02-25 0.6 91.4 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "37" 2024-02-05 2024-02-25 0.65 94 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "37" 2024-02-05 2024-02-25 0.7 99 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "37" 2024-02-05 2024-02-25 0.75 103 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "37" 2024-02-05 2024-02-25 0.8 106.2 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "37" 2024-02-05 2024-02-25 0.85 109.3 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "37" 2024-02-05 2024-02-25 0.9 114.4 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "37" 2024-02-05 2024-02-25 0.95 126.05 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "37" 2024-02-05 2024-02-25 0.975 131.05 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "37" 2024-02-05 2024-02-25 0.99 138.34 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "37" 2024-02-05 2024-02-26 0.01 45.95 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "37" 2024-02-05 2024-02-26 0.025 55.375 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "37" 2024-02-05 2024-02-26 0.05 58 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "37" 2024-02-05 2024-02-26 0.1 63.9 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "37" 2024-02-05 2024-02-26 0.15 67 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "37" 2024-02-05 2024-02-26 0.2 74.8 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "37" 2024-02-05 2024-02-26 0.25 80.75 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "37" 2024-02-05 2024-02-26 0.3 83 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "37" 2024-02-05 2024-02-26 0.35 85.65 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "37" 2024-02-05 2024-02-26 0.4 91.2 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "37" 2024-02-05 2024-02-26 0.45 93 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "37" 2024-02-05 2024-02-26 0.5 96.5 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "37" 2024-02-05 2024-02-26 0.55 102.45 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "37" 2024-02-05 2024-02-26 0.6 106 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "37" 2024-02-05 2024-02-26 0.65 108 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "37" 2024-02-05 2024-02-26 0.7 113.3 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "37" 2024-02-05 2024-02-26 0.75 114.5 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "37" 2024-02-05 2024-02-26 0.8 121.2 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "37" 2024-02-05 2024-02-26 0.85 129 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "37" 2024-02-05 2024-02-26 0.9 135.1 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "37" 2024-02-05 2024-02-26 0.95 148 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "37" 2024-02-05 2024-02-26 0.975 163.6 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "37" 2024-02-05 2024-02-26 0.99 180.13 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "37" 2024-02-05 2024-02-27 0.01 46.86 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "37" 2024-02-05 2024-02-27 0.025 47 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "37" 2024-02-05 2024-02-27 0.05 48 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "37" 2024-02-05 2024-02-27 0.1 59 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "37" 2024-02-05 2024-02-27 0.15 64.85 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "37" 2024-02-05 2024-02-27 0.2 67.8 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "37" 2024-02-05 2024-02-27 0.25 73.25 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "37" 2024-02-05 2024-02-27 0.3 76.7 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "37" 2024-02-05 2024-02-27 0.35 81 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "37" 2024-02-05 2024-02-27 0.4 85.6 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "37" 2024-02-05 2024-02-27 0.45 89 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "37" 2024-02-05 2024-02-27 0.5 90.5 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "37" 2024-02-05 2024-02-27 0.55 93.45 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "37" 2024-02-05 2024-02-27 0.6 97.8 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "37" 2024-02-05 2024-02-27 0.65 103 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "37" 2024-02-05 2024-02-27 0.7 105.3 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "37" 2024-02-05 2024-02-27 0.75 114 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "37" 2024-02-05 2024-02-27 0.8 117.2 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "37" 2024-02-05 2024-02-27 0.85 121.15 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "37" 2024-02-05 2024-02-27 0.9 136.1 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "37" 2024-02-05 2024-02-27 0.95 144.15 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "37" 2024-02-05 2024-02-27 0.975 152.2 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "37" 2024-02-05 2024-02-27 0.99 161.04 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "37" 2024-02-05 2024-02-28 0.01 32.97 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "37" 2024-02-05 2024-02-28 0.025 45.425 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "37" 2024-02-05 2024-02-28 0.05 53.65 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "37" 2024-02-05 2024-02-28 0.1 61 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "37" 2024-02-05 2024-02-28 0.15 69.4 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "37" 2024-02-05 2024-02-28 0.2 73.2 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "37" 2024-02-05 2024-02-28 0.25 78 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "37" 2024-02-05 2024-02-28 0.3 81.7 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "37" 2024-02-05 2024-02-28 0.35 85 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "37" 2024-02-05 2024-02-28 0.4 88.2 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "37" 2024-02-05 2024-02-28 0.45 92 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "37" 2024-02-05 2024-02-28 0.5 94 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "37" 2024-02-05 2024-02-28 0.55 98 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "37" 2024-02-05 2024-02-28 0.6 101.4 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "37" 2024-02-05 2024-02-28 0.65 103.35 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "37" 2024-02-05 2024-02-28 0.7 108.3 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "37" 2024-02-05 2024-02-28 0.75 112.75 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "37" 2024-02-05 2024-02-28 0.8 121.6 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "37" 2024-02-05 2024-02-28 0.85 126.9 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "37" 2024-02-05 2024-02-28 0.9 138.4 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "37" 2024-02-05 2024-02-28 0.95 159.05 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "37" 2024-02-05 2024-02-28 0.975 163.1 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "37" 2024-02-05 2024-02-28 0.99 167.19 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "37" 2024-02-05 2024-02-29 0.01 33.82 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "37" 2024-02-05 2024-02-29 0.025 38.375 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "37" 2024-02-05 2024-02-29 0.05 46.75 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "37" 2024-02-05 2024-02-29 0.1 55 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "37" 2024-02-05 2024-02-29 0.15 62 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "37" 2024-02-05 2024-02-29 0.2 65.8 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "37" 2024-02-05 2024-02-29 0.25 69 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "37" 2024-02-05 2024-02-29 0.3 71.7 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "37" 2024-02-05 2024-02-29 0.35 78.65 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "37" 2024-02-05 2024-02-29 0.4 84 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "37" 2024-02-05 2024-02-29 0.45 86 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "37" 2024-02-05 2024-02-29 0.5 89 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "37" 2024-02-05 2024-02-29 0.55 92 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "37" 2024-02-05 2024-02-29 0.6 97 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "37" 2024-02-05 2024-02-29 0.65 100.35 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "37" 2024-02-05 2024-02-29 0.7 106.3 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "37" 2024-02-05 2024-02-29 0.75 113 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "37" 2024-02-05 2024-02-29 0.8 119.2 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "37" 2024-02-05 2024-02-29 0.85 125.45 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "37" 2024-02-05 2024-02-29 0.9 136.2 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "37" 2024-02-05 2024-02-29 0.95 149.05 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "37" 2024-02-05 2024-02-29 0.975 157.875 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "37" 2024-02-05 2024-02-29 0.99 166.25 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "37" 2024-02-05 2024-03-01 0.01 33.98 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "37" 2024-02-05 2024-03-01 0.025 37.475 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "37" 2024-02-05 2024-03-01 0.05 41.95 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "37" 2024-02-05 2024-03-01 0.1 50.7 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "37" 2024-02-05 2024-03-01 0.15 56 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "37" 2024-02-05 2024-03-01 0.2 62.6 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "37" 2024-02-05 2024-03-01 0.25 72.5 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "37" 2024-02-05 2024-03-01 0.3 77 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "37" 2024-02-05 2024-03-01 0.35 80 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "37" 2024-02-05 2024-03-01 0.4 82 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "37" 2024-02-05 2024-03-01 0.45 84.55 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "37" 2024-02-05 2024-03-01 0.5 89 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "37" 2024-02-05 2024-03-01 0.55 93.35 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "37" 2024-02-05 2024-03-01 0.6 98 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "37" 2024-02-05 2024-03-01 0.65 101 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "37" 2024-02-05 2024-03-01 0.7 104 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "37" 2024-02-05 2024-03-01 0.75 107.25 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "37" 2024-02-05 2024-03-01 0.8 111.4 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "37" 2024-02-05 2024-03-01 0.85 118 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "37" 2024-02-05 2024-03-01 0.9 125.3 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "37" 2024-02-05 2024-03-01 0.95 148 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "37" 2024-02-05 2024-03-01 0.975 156.575 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "37" 2024-02-05 2024-03-01 0.99 158.04 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "37" 2024-02-05 2024-03-02 0.01 24.91 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "37" 2024-02-05 2024-03-02 0.025 29.325 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "37" 2024-02-05 2024-03-02 0.05 36.9 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "37" 2024-02-05 2024-03-02 0.1 48 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "37" 2024-02-05 2024-03-02 0.15 52.85 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "37" 2024-02-05 2024-03-02 0.2 56 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "37" 2024-02-05 2024-03-02 0.25 61 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "37" 2024-02-05 2024-03-02 0.3 64.7 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "37" 2024-02-05 2024-03-02 0.35 66 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "37" 2024-02-05 2024-03-02 0.4 70.8 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "37" 2024-02-05 2024-03-02 0.45 75 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "37" 2024-02-05 2024-03-02 0.5 77.5 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "37" 2024-02-05 2024-03-02 0.55 80.45 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "37" 2024-02-05 2024-03-02 0.6 82.4 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "37" 2024-02-05 2024-03-02 0.65 88 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "37" 2024-02-05 2024-03-02 0.7 90.9 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "37" 2024-02-05 2024-03-02 0.75 94.25 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "37" 2024-02-05 2024-03-02 0.8 99 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "37" 2024-02-05 2024-03-02 0.85 103 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "37" 2024-02-05 2024-03-02 0.9 111.3 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "37" 2024-02-05 2024-03-02 0.95 119.3 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "37" 2024-02-05 2024-03-02 0.975 136.15 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "37" 2024-02-05 2024-03-02 0.99 153.08 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "37" 2024-02-05 2024-03-03 0.01 25.97 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "37" 2024-02-05 2024-03-03 0.025 29.95 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "37" 2024-02-05 2024-03-03 0.05 31.95 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "37" 2024-02-05 2024-03-03 0.1 46.7 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "37" 2024-02-05 2024-03-03 0.15 52.85 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "37" 2024-02-05 2024-03-03 0.2 58.8 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "37" 2024-02-05 2024-03-03 0.25 63.5 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "37" 2024-02-05 2024-03-03 0.3 71.4 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "37" 2024-02-05 2024-03-03 0.35 75 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "37" 2024-02-05 2024-03-03 0.4 77 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "37" 2024-02-05 2024-03-03 0.45 80.55 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "37" 2024-02-05 2024-03-03 0.5 82 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "37" 2024-02-05 2024-03-03 0.55 84.45 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "37" 2024-02-05 2024-03-03 0.6 89.4 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "37" 2024-02-05 2024-03-03 0.65 95.35 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "37" 2024-02-05 2024-03-03 0.7 99 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "37" 2024-02-05 2024-03-03 0.75 102.25 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "37" 2024-02-05 2024-03-03 0.8 109.4 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "37" 2024-02-05 2024-03-03 0.85 117.75 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "37" 2024-02-05 2024-03-03 0.9 125.2 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "37" 2024-02-05 2024-03-03 0.95 150.65 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "37" 2024-02-05 2024-03-03 0.975 173.05 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "37" 2024-02-05 2024-03-03 0.99 179.02 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "37" 2024-02-05 2024-03-04 0.01 32.97 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "37" 2024-02-05 2024-03-04 0.025 40.375 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "37" 2024-02-05 2024-03-04 0.05 45.9 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "37" 2024-02-05 2024-03-04 0.1 50.9 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "37" 2024-02-05 2024-03-04 0.15 59.7 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "37" 2024-02-05 2024-03-04 0.2 68.6 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "37" 2024-02-05 2024-03-04 0.25 72.75 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "37" 2024-02-05 2024-03-04 0.3 77.4 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "37" 2024-02-05 2024-03-04 0.35 83.3 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "37" 2024-02-05 2024-03-04 0.4 87 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "37" 2024-02-05 2024-03-04 0.45 92 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "37" 2024-02-05 2024-03-04 0.5 94 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "37" 2024-02-05 2024-03-04 0.55 95.9 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "37" 2024-02-05 2024-03-04 0.6 101.8 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "37" 2024-02-05 2024-03-04 0.65 106.35 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "37" 2024-02-05 2024-03-04 0.7 113.3 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "37" 2024-02-05 2024-03-04 0.75 117 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "37" 2024-02-05 2024-03-04 0.8 126.2 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "37" 2024-02-05 2024-03-04 0.85 129.3 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "37" 2024-02-05 2024-03-04 0.9 136.4 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "37" 2024-02-05 2024-03-04 0.95 161.4 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "37" 2024-02-05 2024-03-04 0.975 180.1 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "37" 2024-02-05 2024-03-04 0.99 194.12 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "38" 2024-02-05 2024-02-06 0.01 0.99 "quantile" "hospital admissions only" +"1 day ahead inc hosp" "38" 2024-02-05 2024-02-06 0.025 1 "quantile" "hospital admissions only" +"1 day ahead inc hosp" "38" 2024-02-05 2024-02-06 0.05 1 "quantile" "hospital admissions only" +"1 day ahead inc hosp" "38" 2024-02-05 2024-02-06 0.1 2 "quantile" "hospital admissions only" +"1 day ahead inc hosp" "38" 2024-02-05 2024-02-06 0.15 3 "quantile" "hospital admissions only" +"1 day ahead inc hosp" "38" 2024-02-05 2024-02-06 0.2 3 "quantile" "hospital admissions only" +"1 day ahead inc hosp" "38" 2024-02-05 2024-02-06 0.25 4 "quantile" "hospital admissions only" +"1 day ahead inc hosp" "38" 2024-02-05 2024-02-06 0.3 4 "quantile" "hospital admissions only" +"1 day ahead inc hosp" "38" 2024-02-05 2024-02-06 0.35 5 "quantile" "hospital admissions only" +"1 day ahead inc hosp" "38" 2024-02-05 2024-02-06 0.4 5 "quantile" "hospital admissions only" +"1 day ahead inc hosp" "38" 2024-02-05 2024-02-06 0.45 6 "quantile" "hospital admissions only" +"1 day ahead inc hosp" "38" 2024-02-05 2024-02-06 0.5 6 "quantile" "hospital admissions only" +"1 day ahead inc hosp" "38" 2024-02-05 2024-02-06 0.55 7 "quantile" "hospital admissions only" +"1 day ahead inc hosp" "38" 2024-02-05 2024-02-06 0.6 7 "quantile" "hospital admissions only" +"1 day ahead inc hosp" "38" 2024-02-05 2024-02-06 0.65 7 "quantile" "hospital admissions only" +"1 day ahead inc hosp" "38" 2024-02-05 2024-02-06 0.7 7 "quantile" "hospital admissions only" +"1 day ahead inc hosp" "38" 2024-02-05 2024-02-06 0.75 8 "quantile" "hospital admissions only" +"1 day ahead inc hosp" "38" 2024-02-05 2024-02-06 0.8 8 "quantile" "hospital admissions only" +"1 day ahead inc hosp" "38" 2024-02-05 2024-02-06 0.85 9 "quantile" "hospital admissions only" +"1 day ahead inc hosp" "38" 2024-02-05 2024-02-06 0.9 10 "quantile" "hospital admissions only" +"1 day ahead inc hosp" "38" 2024-02-05 2024-02-06 0.95 11 "quantile" "hospital admissions only" +"1 day ahead inc hosp" "38" 2024-02-05 2024-02-06 0.975 12 "quantile" "hospital admissions only" +"1 day ahead inc hosp" "38" 2024-02-05 2024-02-06 0.99 14.01 "quantile" "hospital admissions only" +"2 day ahead inc hosp" "38" 2024-02-05 2024-02-07 0.01 1 "quantile" "hospital admissions only" +"2 day ahead inc hosp" "38" 2024-02-05 2024-02-07 0.025 1 "quantile" "hospital admissions only" +"2 day ahead inc hosp" "38" 2024-02-05 2024-02-07 0.05 1.95 "quantile" "hospital admissions only" +"2 day ahead inc hosp" "38" 2024-02-05 2024-02-07 0.1 3 "quantile" "hospital admissions only" +"2 day ahead inc hosp" "38" 2024-02-05 2024-02-07 0.15 3 "quantile" "hospital admissions only" +"2 day ahead inc hosp" "38" 2024-02-05 2024-02-07 0.2 4 "quantile" "hospital admissions only" +"2 day ahead inc hosp" "38" 2024-02-05 2024-02-07 0.25 4 "quantile" "hospital admissions only" +"2 day ahead inc hosp" "38" 2024-02-05 2024-02-07 0.3 4 "quantile" "hospital admissions only" +"2 day ahead inc hosp" "38" 2024-02-05 2024-02-07 0.35 4 "quantile" "hospital admissions only" +"2 day ahead inc hosp" "38" 2024-02-05 2024-02-07 0.4 5 "quantile" "hospital admissions only" +"2 day ahead inc hosp" "38" 2024-02-05 2024-02-07 0.45 5 "quantile" "hospital admissions only" +"2 day ahead inc hosp" "38" 2024-02-05 2024-02-07 0.5 6 "quantile" "hospital admissions only" +"2 day ahead inc hosp" "38" 2024-02-05 2024-02-07 0.55 6 "quantile" "hospital admissions only" +"2 day ahead inc hosp" "38" 2024-02-05 2024-02-07 0.6 7 "quantile" "hospital admissions only" +"2 day ahead inc hosp" "38" 2024-02-05 2024-02-07 0.65 7 "quantile" "hospital admissions only" +"2 day ahead inc hosp" "38" 2024-02-05 2024-02-07 0.7 8 "quantile" "hospital admissions only" +"2 day ahead inc hosp" "38" 2024-02-05 2024-02-07 0.75 8 "quantile" "hospital admissions only" +"2 day ahead inc hosp" "38" 2024-02-05 2024-02-07 0.8 9.2 "quantile" "hospital admissions only" +"2 day ahead inc hosp" "38" 2024-02-05 2024-02-07 0.85 10 "quantile" "hospital admissions only" +"2 day ahead inc hosp" "38" 2024-02-05 2024-02-07 0.9 11 "quantile" "hospital admissions only" +"2 day ahead inc hosp" "38" 2024-02-05 2024-02-07 0.95 13 "quantile" "hospital admissions only" +"2 day ahead inc hosp" "38" 2024-02-05 2024-02-07 0.975 13 "quantile" "hospital admissions only" +"2 day ahead inc hosp" "38" 2024-02-05 2024-02-07 0.99 13.01 "quantile" "hospital admissions only" +"3 day ahead inc hosp" "38" 2024-02-05 2024-02-08 0.01 0 "quantile" "hospital admissions only" +"3 day ahead inc hosp" "38" 2024-02-05 2024-02-08 0.025 1 "quantile" "hospital admissions only" +"3 day ahead inc hosp" "38" 2024-02-05 2024-02-08 0.05 1.95 "quantile" "hospital admissions only" +"3 day ahead inc hosp" "38" 2024-02-05 2024-02-08 0.1 2 "quantile" "hospital admissions only" +"3 day ahead inc hosp" "38" 2024-02-05 2024-02-08 0.15 2.85 "quantile" "hospital admissions only" +"3 day ahead inc hosp" "38" 2024-02-05 2024-02-08 0.2 3 "quantile" "hospital admissions only" +"3 day ahead inc hosp" "38" 2024-02-05 2024-02-08 0.25 3 "quantile" "hospital admissions only" +"3 day ahead inc hosp" "38" 2024-02-05 2024-02-08 0.3 3.7 "quantile" "hospital admissions only" +"3 day ahead inc hosp" "38" 2024-02-05 2024-02-08 0.35 4 "quantile" "hospital admissions only" +"3 day ahead inc hosp" "38" 2024-02-05 2024-02-08 0.4 4 "quantile" "hospital admissions only" +"3 day ahead inc hosp" "38" 2024-02-05 2024-02-08 0.45 5 "quantile" "hospital admissions only" +"3 day ahead inc hosp" "38" 2024-02-05 2024-02-08 0.5 5 "quantile" "hospital admissions only" +"3 day ahead inc hosp" "38" 2024-02-05 2024-02-08 0.55 6 "quantile" "hospital admissions only" +"3 day ahead inc hosp" "38" 2024-02-05 2024-02-08 0.6 6 "quantile" "hospital admissions only" +"3 day ahead inc hosp" "38" 2024-02-05 2024-02-08 0.65 6 "quantile" "hospital admissions only" +"3 day ahead inc hosp" "38" 2024-02-05 2024-02-08 0.7 7 "quantile" "hospital admissions only" +"3 day ahead inc hosp" "38" 2024-02-05 2024-02-08 0.75 7 "quantile" "hospital admissions only" +"3 day ahead inc hosp" "38" 2024-02-05 2024-02-08 0.8 8 "quantile" "hospital admissions only" +"3 day ahead inc hosp" "38" 2024-02-05 2024-02-08 0.85 9 "quantile" "hospital admissions only" +"3 day ahead inc hosp" "38" 2024-02-05 2024-02-08 0.9 10 "quantile" "hospital admissions only" +"3 day ahead inc hosp" "38" 2024-02-05 2024-02-08 0.95 11 "quantile" "hospital admissions only" +"3 day ahead inc hosp" "38" 2024-02-05 2024-02-08 0.975 12 "quantile" "hospital admissions only" +"3 day ahead inc hosp" "38" 2024-02-05 2024-02-08 0.99 12.03 "quantile" "hospital admissions only" +"4 day ahead inc hosp" "38" 2024-02-05 2024-02-09 0.01 1 "quantile" "hospital admissions only" +"4 day ahead inc hosp" "38" 2024-02-05 2024-02-09 0.025 1 "quantile" "hospital admissions only" +"4 day ahead inc hosp" "38" 2024-02-05 2024-02-09 0.05 1.95 "quantile" "hospital admissions only" +"4 day ahead inc hosp" "38" 2024-02-05 2024-02-09 0.1 2 "quantile" "hospital admissions only" +"4 day ahead inc hosp" "38" 2024-02-05 2024-02-09 0.15 3 "quantile" "hospital admissions only" +"4 day ahead inc hosp" "38" 2024-02-05 2024-02-09 0.2 4 "quantile" "hospital admissions only" +"4 day ahead inc hosp" "38" 2024-02-05 2024-02-09 0.25 4 "quantile" "hospital admissions only" +"4 day ahead inc hosp" "38" 2024-02-05 2024-02-09 0.3 4 "quantile" "hospital admissions only" +"4 day ahead inc hosp" "38" 2024-02-05 2024-02-09 0.35 5 "quantile" "hospital admissions only" +"4 day ahead inc hosp" "38" 2024-02-05 2024-02-09 0.4 5 "quantile" "hospital admissions only" +"4 day ahead inc hosp" "38" 2024-02-05 2024-02-09 0.45 6 "quantile" "hospital admissions only" +"4 day ahead inc hosp" "38" 2024-02-05 2024-02-09 0.5 6 "quantile" "hospital admissions only" +"4 day ahead inc hosp" "38" 2024-02-05 2024-02-09 0.55 6 "quantile" "hospital admissions only" +"4 day ahead inc hosp" "38" 2024-02-05 2024-02-09 0.6 6 "quantile" "hospital admissions only" +"4 day ahead inc hosp" "38" 2024-02-05 2024-02-09 0.65 7 "quantile" "hospital admissions only" +"4 day ahead inc hosp" "38" 2024-02-05 2024-02-09 0.7 7 "quantile" "hospital admissions only" +"4 day ahead inc hosp" "38" 2024-02-05 2024-02-09 0.75 7 "quantile" "hospital admissions only" +"4 day ahead inc hosp" "38" 2024-02-05 2024-02-09 0.8 8 "quantile" "hospital admissions only" +"4 day ahead inc hosp" "38" 2024-02-05 2024-02-09 0.85 9 "quantile" "hospital admissions only" +"4 day ahead inc hosp" "38" 2024-02-05 2024-02-09 0.9 9 "quantile" "hospital admissions only" +"4 day ahead inc hosp" "38" 2024-02-05 2024-02-09 0.95 11 "quantile" "hospital admissions only" +"4 day ahead inc hosp" "38" 2024-02-05 2024-02-09 0.975 11.525 "quantile" "hospital admissions only" +"4 day ahead inc hosp" "38" 2024-02-05 2024-02-09 0.99 12.02 "quantile" "hospital admissions only" +"5 day ahead inc hosp" "38" 2024-02-05 2024-02-10 0.01 0.99 "quantile" "hospital admissions only" +"5 day ahead inc hosp" "38" 2024-02-05 2024-02-10 0.025 1 "quantile" "hospital admissions only" +"5 day ahead inc hosp" "38" 2024-02-05 2024-02-10 0.05 1 "quantile" "hospital admissions only" +"5 day ahead inc hosp" "38" 2024-02-05 2024-02-10 0.1 2 "quantile" "hospital admissions only" +"5 day ahead inc hosp" "38" 2024-02-05 2024-02-10 0.15 2 "quantile" "hospital admissions only" +"5 day ahead inc hosp" "38" 2024-02-05 2024-02-10 0.2 3 "quantile" "hospital admissions only" +"5 day ahead inc hosp" "38" 2024-02-05 2024-02-10 0.25 3 "quantile" "hospital admissions only" +"5 day ahead inc hosp" "38" 2024-02-05 2024-02-10 0.3 3.7 "quantile" "hospital admissions only" +"5 day ahead inc hosp" "38" 2024-02-05 2024-02-10 0.35 4 "quantile" "hospital admissions only" +"5 day ahead inc hosp" "38" 2024-02-05 2024-02-10 0.4 4 "quantile" "hospital admissions only" +"5 day ahead inc hosp" "38" 2024-02-05 2024-02-10 0.45 4 "quantile" "hospital admissions only" +"5 day ahead inc hosp" "38" 2024-02-05 2024-02-10 0.5 4.5 "quantile" "hospital admissions only" +"5 day ahead inc hosp" "38" 2024-02-05 2024-02-10 0.55 5 "quantile" "hospital admissions only" +"5 day ahead inc hosp" "38" 2024-02-05 2024-02-10 0.6 5 "quantile" "hospital admissions only" +"5 day ahead inc hosp" "38" 2024-02-05 2024-02-10 0.65 6 "quantile" "hospital admissions only" +"5 day ahead inc hosp" "38" 2024-02-05 2024-02-10 0.7 6.30000000000001 "quantile" "hospital admissions only" +"5 day ahead inc hosp" "38" 2024-02-05 2024-02-10 0.75 7 "quantile" "hospital admissions only" +"5 day ahead inc hosp" "38" 2024-02-05 2024-02-10 0.8 7 "quantile" "hospital admissions only" +"5 day ahead inc hosp" "38" 2024-02-05 2024-02-10 0.85 8 "quantile" "hospital admissions only" +"5 day ahead inc hosp" "38" 2024-02-05 2024-02-10 0.9 9 "quantile" "hospital admissions only" +"5 day ahead inc hosp" "38" 2024-02-05 2024-02-10 0.95 11 "quantile" "hospital admissions only" +"5 day ahead inc hosp" "38" 2024-02-05 2024-02-10 0.975 11.525 "quantile" "hospital admissions only" +"5 day ahead inc hosp" "38" 2024-02-05 2024-02-10 0.99 13 "quantile" "hospital admissions only" +"6 day ahead inc hosp" "38" 2024-02-05 2024-02-11 0.01 0.99 "quantile" "hospital admissions only" +"6 day ahead inc hosp" "38" 2024-02-05 2024-02-11 0.025 1 "quantile" "hospital admissions only" +"6 day ahead inc hosp" "38" 2024-02-05 2024-02-11 0.05 1 "quantile" "hospital admissions only" +"6 day ahead inc hosp" "38" 2024-02-05 2024-02-11 0.1 2 "quantile" "hospital admissions only" +"6 day ahead inc hosp" "38" 2024-02-05 2024-02-11 0.15 2 "quantile" "hospital admissions only" +"6 day ahead inc hosp" "38" 2024-02-05 2024-02-11 0.2 3 "quantile" "hospital admissions only" +"6 day ahead inc hosp" "38" 2024-02-05 2024-02-11 0.25 3 "quantile" "hospital admissions only" +"6 day ahead inc hosp" "38" 2024-02-05 2024-02-11 0.3 4 "quantile" "hospital admissions only" +"6 day ahead inc hosp" "38" 2024-02-05 2024-02-11 0.35 4 "quantile" "hospital admissions only" +"6 day ahead inc hosp" "38" 2024-02-05 2024-02-11 0.4 4 "quantile" "hospital admissions only" +"6 day ahead inc hosp" "38" 2024-02-05 2024-02-11 0.45 4 "quantile" "hospital admissions only" +"6 day ahead inc hosp" "38" 2024-02-05 2024-02-11 0.5 5 "quantile" "hospital admissions only" +"6 day ahead inc hosp" "38" 2024-02-05 2024-02-11 0.55 5 "quantile" "hospital admissions only" +"6 day ahead inc hosp" "38" 2024-02-05 2024-02-11 0.6 5 "quantile" "hospital admissions only" +"6 day ahead inc hosp" "38" 2024-02-05 2024-02-11 0.65 6 "quantile" "hospital admissions only" +"6 day ahead inc hosp" "38" 2024-02-05 2024-02-11 0.7 6 "quantile" "hospital admissions only" +"6 day ahead inc hosp" "38" 2024-02-05 2024-02-11 0.75 6.25000000000001 "quantile" "hospital admissions only" +"6 day ahead inc hosp" "38" 2024-02-05 2024-02-11 0.8 7 "quantile" "hospital admissions only" +"6 day ahead inc hosp" "38" 2024-02-05 2024-02-11 0.85 7.15000000000001 "quantile" "hospital admissions only" +"6 day ahead inc hosp" "38" 2024-02-05 2024-02-11 0.9 9 "quantile" "hospital admissions only" +"6 day ahead inc hosp" "38" 2024-02-05 2024-02-11 0.95 11 "quantile" "hospital admissions only" +"6 day ahead inc hosp" "38" 2024-02-05 2024-02-11 0.975 11 "quantile" "hospital admissions only" +"6 day ahead inc hosp" "38" 2024-02-05 2024-02-11 0.99 12.05 "quantile" "hospital admissions only" +"7 day ahead inc hosp" "38" 2024-02-05 2024-02-12 0.01 0 "quantile" "hospital admissions only" +"7 day ahead inc hosp" "38" 2024-02-05 2024-02-12 0.025 1 "quantile" "hospital admissions only" +"7 day ahead inc hosp" "38" 2024-02-05 2024-02-12 0.05 2 "quantile" "hospital admissions only" +"7 day ahead inc hosp" "38" 2024-02-05 2024-02-12 0.1 2.9 "quantile" "hospital admissions only" +"7 day ahead inc hosp" "38" 2024-02-05 2024-02-12 0.15 3 "quantile" "hospital admissions only" +"7 day ahead inc hosp" "38" 2024-02-05 2024-02-12 0.2 3 "quantile" "hospital admissions only" +"7 day ahead inc hosp" "38" 2024-02-05 2024-02-12 0.25 4 "quantile" "hospital admissions only" +"7 day ahead inc hosp" "38" 2024-02-05 2024-02-12 0.3 4 "quantile" "hospital admissions only" +"7 day ahead inc hosp" "38" 2024-02-05 2024-02-12 0.35 4 "quantile" "hospital admissions only" +"7 day ahead inc hosp" "38" 2024-02-05 2024-02-12 0.4 4 "quantile" "hospital admissions only" +"7 day ahead inc hosp" "38" 2024-02-05 2024-02-12 0.45 5 "quantile" "hospital admissions only" +"7 day ahead inc hosp" "38" 2024-02-05 2024-02-12 0.5 5 "quantile" "hospital admissions only" +"7 day ahead inc hosp" "38" 2024-02-05 2024-02-12 0.55 5.45 "quantile" "hospital admissions only" +"7 day ahead inc hosp" "38" 2024-02-05 2024-02-12 0.6 6 "quantile" "hospital admissions only" +"7 day ahead inc hosp" "38" 2024-02-05 2024-02-12 0.65 6.35000000000001 "quantile" "hospital admissions only" +"7 day ahead inc hosp" "38" 2024-02-05 2024-02-12 0.7 7 "quantile" "hospital admissions only" +"7 day ahead inc hosp" "38" 2024-02-05 2024-02-12 0.75 7 "quantile" "hospital admissions only" +"7 day ahead inc hosp" "38" 2024-02-05 2024-02-12 0.8 7 "quantile" "hospital admissions only" +"7 day ahead inc hosp" "38" 2024-02-05 2024-02-12 0.85 8 "quantile" "hospital admissions only" +"7 day ahead inc hosp" "38" 2024-02-05 2024-02-12 0.9 9 "quantile" "hospital admissions only" +"7 day ahead inc hosp" "38" 2024-02-05 2024-02-12 0.95 10.05 "quantile" "hospital admissions only" +"7 day ahead inc hosp" "38" 2024-02-05 2024-02-12 0.975 11.525 "quantile" "hospital admissions only" +"7 day ahead inc hosp" "38" 2024-02-05 2024-02-12 0.99 14 "quantile" "hospital admissions only" +"8 day ahead inc hosp" "38" 2024-02-05 2024-02-13 0.01 1 "quantile" "hospital admissions only" +"8 day ahead inc hosp" "38" 2024-02-05 2024-02-13 0.025 1.475 "quantile" "hospital admissions only" +"8 day ahead inc hosp" "38" 2024-02-05 2024-02-13 0.05 2 "quantile" "hospital admissions only" +"8 day ahead inc hosp" "38" 2024-02-05 2024-02-13 0.1 2 "quantile" "hospital admissions only" +"8 day ahead inc hosp" "38" 2024-02-05 2024-02-13 0.15 3 "quantile" "hospital admissions only" +"8 day ahead inc hosp" "38" 2024-02-05 2024-02-13 0.2 3 "quantile" "hospital admissions only" +"8 day ahead inc hosp" "38" 2024-02-05 2024-02-13 0.25 3 "quantile" "hospital admissions only" +"8 day ahead inc hosp" "38" 2024-02-05 2024-02-13 0.3 4 "quantile" "hospital admissions only" +"8 day ahead inc hosp" "38" 2024-02-05 2024-02-13 0.35 4 "quantile" "hospital admissions only" +"8 day ahead inc hosp" "38" 2024-02-05 2024-02-13 0.4 4.6 "quantile" "hospital admissions only" +"8 day ahead inc hosp" "38" 2024-02-05 2024-02-13 0.45 5 "quantile" "hospital admissions only" +"8 day ahead inc hosp" "38" 2024-02-05 2024-02-13 0.5 5.5 "quantile" "hospital admissions only" +"8 day ahead inc hosp" "38" 2024-02-05 2024-02-13 0.55 6 "quantile" "hospital admissions only" +"8 day ahead inc hosp" "38" 2024-02-05 2024-02-13 0.6 6 "quantile" "hospital admissions only" +"8 day ahead inc hosp" "38" 2024-02-05 2024-02-13 0.65 7 "quantile" "hospital admissions only" +"8 day ahead inc hosp" "38" 2024-02-05 2024-02-13 0.7 7 "quantile" "hospital admissions only" +"8 day ahead inc hosp" "38" 2024-02-05 2024-02-13 0.75 7.25000000000001 "quantile" "hospital admissions only" +"8 day ahead inc hosp" "38" 2024-02-05 2024-02-13 0.8 8 "quantile" "hospital admissions only" +"8 day ahead inc hosp" "38" 2024-02-05 2024-02-13 0.85 9 "quantile" "hospital admissions only" +"8 day ahead inc hosp" "38" 2024-02-05 2024-02-13 0.9 11 "quantile" "hospital admissions only" +"8 day ahead inc hosp" "38" 2024-02-05 2024-02-13 0.95 12 "quantile" "hospital admissions only" +"8 day ahead inc hosp" "38" 2024-02-05 2024-02-13 0.975 14.05 "quantile" "hospital admissions only" +"8 day ahead inc hosp" "38" 2024-02-05 2024-02-13 0.99 15.02 "quantile" "hospital admissions only" +"9 day ahead inc hosp" "38" 2024-02-05 2024-02-14 0.01 0.99 "quantile" "hospital admissions only" +"9 day ahead inc hosp" "38" 2024-02-05 2024-02-14 0.025 1 "quantile" "hospital admissions only" +"9 day ahead inc hosp" "38" 2024-02-05 2024-02-14 0.05 1.95 "quantile" "hospital admissions only" +"9 day ahead inc hosp" "38" 2024-02-05 2024-02-14 0.1 2.9 "quantile" "hospital admissions only" +"9 day ahead inc hosp" "38" 2024-02-05 2024-02-14 0.15 3 "quantile" "hospital admissions only" +"9 day ahead inc hosp" "38" 2024-02-05 2024-02-14 0.2 3.8 "quantile" "hospital admissions only" +"9 day ahead inc hosp" "38" 2024-02-05 2024-02-14 0.25 4 "quantile" "hospital admissions only" +"9 day ahead inc hosp" "38" 2024-02-05 2024-02-14 0.3 4 "quantile" "hospital admissions only" +"9 day ahead inc hosp" "38" 2024-02-05 2024-02-14 0.35 5 "quantile" "hospital admissions only" +"9 day ahead inc hosp" "38" 2024-02-05 2024-02-14 0.4 5 "quantile" "hospital admissions only" +"9 day ahead inc hosp" "38" 2024-02-05 2024-02-14 0.45 5 "quantile" "hospital admissions only" +"9 day ahead inc hosp" "38" 2024-02-05 2024-02-14 0.5 5.5 "quantile" "hospital admissions only" +"9 day ahead inc hosp" "38" 2024-02-05 2024-02-14 0.55 6 "quantile" "hospital admissions only" +"9 day ahead inc hosp" "38" 2024-02-05 2024-02-14 0.6 6 "quantile" "hospital admissions only" +"9 day ahead inc hosp" "38" 2024-02-05 2024-02-14 0.65 6 "quantile" "hospital admissions only" +"9 day ahead inc hosp" "38" 2024-02-05 2024-02-14 0.7 6.30000000000001 "quantile" "hospital admissions only" +"9 day ahead inc hosp" "38" 2024-02-05 2024-02-14 0.75 7 "quantile" "hospital admissions only" +"9 day ahead inc hosp" "38" 2024-02-05 2024-02-14 0.8 7.2 "quantile" "hospital admissions only" +"9 day ahead inc hosp" "38" 2024-02-05 2024-02-14 0.85 8 "quantile" "hospital admissions only" +"9 day ahead inc hosp" "38" 2024-02-05 2024-02-14 0.9 9 "quantile" "hospital admissions only" +"9 day ahead inc hosp" "38" 2024-02-05 2024-02-14 0.95 10 "quantile" "hospital admissions only" +"9 day ahead inc hosp" "38" 2024-02-05 2024-02-14 0.975 11 "quantile" "hospital admissions only" +"9 day ahead inc hosp" "38" 2024-02-05 2024-02-14 0.99 13.01 "quantile" "hospital admissions only" +"10 day ahead inc hosp" "38" 2024-02-05 2024-02-15 0.01 1 "quantile" "hospital admissions only" +"10 day ahead inc hosp" "38" 2024-02-05 2024-02-15 0.025 1 "quantile" "hospital admissions only" +"10 day ahead inc hosp" "38" 2024-02-05 2024-02-15 0.05 1 "quantile" "hospital admissions only" +"10 day ahead inc hosp" "38" 2024-02-05 2024-02-15 0.1 2 "quantile" "hospital admissions only" +"10 day ahead inc hosp" "38" 2024-02-05 2024-02-15 0.15 2 "quantile" "hospital admissions only" +"10 day ahead inc hosp" "38" 2024-02-05 2024-02-15 0.2 3 "quantile" "hospital admissions only" +"10 day ahead inc hosp" "38" 2024-02-05 2024-02-15 0.25 3 "quantile" "hospital admissions only" +"10 day ahead inc hosp" "38" 2024-02-05 2024-02-15 0.3 4 "quantile" "hospital admissions only" +"10 day ahead inc hosp" "38" 2024-02-05 2024-02-15 0.35 4 "quantile" "hospital admissions only" +"10 day ahead inc hosp" "38" 2024-02-05 2024-02-15 0.4 4 "quantile" "hospital admissions only" +"10 day ahead inc hosp" "38" 2024-02-05 2024-02-15 0.45 5 "quantile" "hospital admissions only" +"10 day ahead inc hosp" "38" 2024-02-05 2024-02-15 0.5 5 "quantile" "hospital admissions only" +"10 day ahead inc hosp" "38" 2024-02-05 2024-02-15 0.55 5 "quantile" "hospital admissions only" +"10 day ahead inc hosp" "38" 2024-02-05 2024-02-15 0.6 6 "quantile" "hospital admissions only" +"10 day ahead inc hosp" "38" 2024-02-05 2024-02-15 0.65 6 "quantile" "hospital admissions only" +"10 day ahead inc hosp" "38" 2024-02-05 2024-02-15 0.7 6 "quantile" "hospital admissions only" +"10 day ahead inc hosp" "38" 2024-02-05 2024-02-15 0.75 7.25000000000001 "quantile" "hospital admissions only" +"10 day ahead inc hosp" "38" 2024-02-05 2024-02-15 0.8 8 "quantile" "hospital admissions only" +"10 day ahead inc hosp" "38" 2024-02-05 2024-02-15 0.85 9 "quantile" "hospital admissions only" +"10 day ahead inc hosp" "38" 2024-02-05 2024-02-15 0.9 10 "quantile" "hospital admissions only" +"10 day ahead inc hosp" "38" 2024-02-05 2024-02-15 0.95 11.05 "quantile" "hospital admissions only" +"10 day ahead inc hosp" "38" 2024-02-05 2024-02-15 0.975 12.525 "quantile" "hospital admissions only" +"10 day ahead inc hosp" "38" 2024-02-05 2024-02-15 0.99 13.02 "quantile" "hospital admissions only" +"11 day ahead inc hosp" "38" 2024-02-05 2024-02-16 0.01 0.99 "quantile" "hospital admissions only" +"11 day ahead inc hosp" "38" 2024-02-05 2024-02-16 0.025 1 "quantile" "hospital admissions only" +"11 day ahead inc hosp" "38" 2024-02-05 2024-02-16 0.05 1 "quantile" "hospital admissions only" +"11 day ahead inc hosp" "38" 2024-02-05 2024-02-16 0.1 2 "quantile" "hospital admissions only" +"11 day ahead inc hosp" "38" 2024-02-05 2024-02-16 0.15 3 "quantile" "hospital admissions only" +"11 day ahead inc hosp" "38" 2024-02-05 2024-02-16 0.2 3 "quantile" "hospital admissions only" +"11 day ahead inc hosp" "38" 2024-02-05 2024-02-16 0.25 3 "quantile" "hospital admissions only" +"11 day ahead inc hosp" "38" 2024-02-05 2024-02-16 0.3 4 "quantile" "hospital admissions only" +"11 day ahead inc hosp" "38" 2024-02-05 2024-02-16 0.35 4 "quantile" "hospital admissions only" +"11 day ahead inc hosp" "38" 2024-02-05 2024-02-16 0.4 5 "quantile" "hospital admissions only" +"11 day ahead inc hosp" "38" 2024-02-05 2024-02-16 0.45 5 "quantile" "hospital admissions only" +"11 day ahead inc hosp" "38" 2024-02-05 2024-02-16 0.5 6 "quantile" "hospital admissions only" +"11 day ahead inc hosp" "38" 2024-02-05 2024-02-16 0.55 6 "quantile" "hospital admissions only" +"11 day ahead inc hosp" "38" 2024-02-05 2024-02-16 0.6 6 "quantile" "hospital admissions only" +"11 day ahead inc hosp" "38" 2024-02-05 2024-02-16 0.65 7 "quantile" "hospital admissions only" +"11 day ahead inc hosp" "38" 2024-02-05 2024-02-16 0.7 7 "quantile" "hospital admissions only" +"11 day ahead inc hosp" "38" 2024-02-05 2024-02-16 0.75 8 "quantile" "hospital admissions only" +"11 day ahead inc hosp" "38" 2024-02-05 2024-02-16 0.8 8 "quantile" "hospital admissions only" +"11 day ahead inc hosp" "38" 2024-02-05 2024-02-16 0.85 8 "quantile" "hospital admissions only" +"11 day ahead inc hosp" "38" 2024-02-05 2024-02-16 0.9 9 "quantile" "hospital admissions only" +"11 day ahead inc hosp" "38" 2024-02-05 2024-02-16 0.95 10.05 "quantile" "hospital admissions only" +"11 day ahead inc hosp" "38" 2024-02-05 2024-02-16 0.975 12.05 "quantile" "hospital admissions only" +"11 day ahead inc hosp" "38" 2024-02-05 2024-02-16 0.99 16 "quantile" "hospital admissions only" +"12 day ahead inc hosp" "38" 2024-02-05 2024-02-17 0.01 0 "quantile" "hospital admissions only" +"12 day ahead inc hosp" "38" 2024-02-05 2024-02-17 0.025 1 "quantile" "hospital admissions only" +"12 day ahead inc hosp" "38" 2024-02-05 2024-02-17 0.05 1 "quantile" "hospital admissions only" +"12 day ahead inc hosp" "38" 2024-02-05 2024-02-17 0.1 1 "quantile" "hospital admissions only" +"12 day ahead inc hosp" "38" 2024-02-05 2024-02-17 0.15 2 "quantile" "hospital admissions only" +"12 day ahead inc hosp" "38" 2024-02-05 2024-02-17 0.2 2 "quantile" "hospital admissions only" +"12 day ahead inc hosp" "38" 2024-02-05 2024-02-17 0.25 3 "quantile" "hospital admissions only" +"12 day ahead inc hosp" "38" 2024-02-05 2024-02-17 0.3 3 "quantile" "hospital admissions only" +"12 day ahead inc hosp" "38" 2024-02-05 2024-02-17 0.35 3 "quantile" "hospital admissions only" +"12 day ahead inc hosp" "38" 2024-02-05 2024-02-17 0.4 3.6 "quantile" "hospital admissions only" +"12 day ahead inc hosp" "38" 2024-02-05 2024-02-17 0.45 4 "quantile" "hospital admissions only" +"12 day ahead inc hosp" "38" 2024-02-05 2024-02-17 0.5 5 "quantile" "hospital admissions only" +"12 day ahead inc hosp" "38" 2024-02-05 2024-02-17 0.55 5 "quantile" "hospital admissions only" +"12 day ahead inc hosp" "38" 2024-02-05 2024-02-17 0.6 6 "quantile" "hospital admissions only" +"12 day ahead inc hosp" "38" 2024-02-05 2024-02-17 0.65 6 "quantile" "hospital admissions only" +"12 day ahead inc hosp" "38" 2024-02-05 2024-02-17 0.7 7 "quantile" "hospital admissions only" +"12 day ahead inc hosp" "38" 2024-02-05 2024-02-17 0.75 7 "quantile" "hospital admissions only" +"12 day ahead inc hosp" "38" 2024-02-05 2024-02-17 0.8 7 "quantile" "hospital admissions only" +"12 day ahead inc hosp" "38" 2024-02-05 2024-02-17 0.85 7.15000000000001 "quantile" "hospital admissions only" +"12 day ahead inc hosp" "38" 2024-02-05 2024-02-17 0.9 8 "quantile" "hospital admissions only" +"12 day ahead inc hosp" "38" 2024-02-05 2024-02-17 0.95 10 "quantile" "hospital admissions only" +"12 day ahead inc hosp" "38" 2024-02-05 2024-02-17 0.975 10.525 "quantile" "hospital admissions only" +"12 day ahead inc hosp" "38" 2024-02-05 2024-02-17 0.99 11 "quantile" "hospital admissions only" +"13 day ahead inc hosp" "38" 2024-02-05 2024-02-18 0.01 0.99 "quantile" "hospital admissions only" +"13 day ahead inc hosp" "38" 2024-02-05 2024-02-18 0.025 1 "quantile" "hospital admissions only" +"13 day ahead inc hosp" "38" 2024-02-05 2024-02-18 0.05 1 "quantile" "hospital admissions only" +"13 day ahead inc hosp" "38" 2024-02-05 2024-02-18 0.1 2 "quantile" "hospital admissions only" +"13 day ahead inc hosp" "38" 2024-02-05 2024-02-18 0.15 2 "quantile" "hospital admissions only" +"13 day ahead inc hosp" "38" 2024-02-05 2024-02-18 0.2 2 "quantile" "hospital admissions only" +"13 day ahead inc hosp" "38" 2024-02-05 2024-02-18 0.25 3 "quantile" "hospital admissions only" +"13 day ahead inc hosp" "38" 2024-02-05 2024-02-18 0.3 3 "quantile" "hospital admissions only" +"13 day ahead inc hosp" "38" 2024-02-05 2024-02-18 0.35 4 "quantile" "hospital admissions only" +"13 day ahead inc hosp" "38" 2024-02-05 2024-02-18 0.4 4 "quantile" "hospital admissions only" +"13 day ahead inc hosp" "38" 2024-02-05 2024-02-18 0.45 4 "quantile" "hospital admissions only" +"13 day ahead inc hosp" "38" 2024-02-05 2024-02-18 0.5 5 "quantile" "hospital admissions only" +"13 day ahead inc hosp" "38" 2024-02-05 2024-02-18 0.55 5 "quantile" "hospital admissions only" +"13 day ahead inc hosp" "38" 2024-02-05 2024-02-18 0.6 5 "quantile" "hospital admissions only" +"13 day ahead inc hosp" "38" 2024-02-05 2024-02-18 0.65 5 "quantile" "hospital admissions only" +"13 day ahead inc hosp" "38" 2024-02-05 2024-02-18 0.7 5.30000000000001 "quantile" "hospital admissions only" +"13 day ahead inc hosp" "38" 2024-02-05 2024-02-18 0.75 6 "quantile" "hospital admissions only" +"13 day ahead inc hosp" "38" 2024-02-05 2024-02-18 0.8 6 "quantile" "hospital admissions only" +"13 day ahead inc hosp" "38" 2024-02-05 2024-02-18 0.85 7 "quantile" "hospital admissions only" +"13 day ahead inc hosp" "38" 2024-02-05 2024-02-18 0.9 8 "quantile" "hospital admissions only" +"13 day ahead inc hosp" "38" 2024-02-05 2024-02-18 0.95 9.05 "quantile" "hospital admissions only" +"13 day ahead inc hosp" "38" 2024-02-05 2024-02-18 0.975 11.05 "quantile" "hospital admissions only" +"13 day ahead inc hosp" "38" 2024-02-05 2024-02-18 0.99 14.01 "quantile" "hospital admissions only" +"14 day ahead inc hosp" "38" 2024-02-05 2024-02-19 0.01 0 "quantile" "hospital admissions only" +"14 day ahead inc hosp" "38" 2024-02-05 2024-02-19 0.025 0 "quantile" "hospital admissions only" +"14 day ahead inc hosp" "38" 2024-02-05 2024-02-19 0.05 1 "quantile" "hospital admissions only" +"14 day ahead inc hosp" "38" 2024-02-05 2024-02-19 0.1 1.9 "quantile" "hospital admissions only" +"14 day ahead inc hosp" "38" 2024-02-05 2024-02-19 0.15 2 "quantile" "hospital admissions only" +"14 day ahead inc hosp" "38" 2024-02-05 2024-02-19 0.2 2 "quantile" "hospital admissions only" +"14 day ahead inc hosp" "38" 2024-02-05 2024-02-19 0.25 3 "quantile" "hospital admissions only" +"14 day ahead inc hosp" "38" 2024-02-05 2024-02-19 0.3 3 "quantile" "hospital admissions only" +"14 day ahead inc hosp" "38" 2024-02-05 2024-02-19 0.35 3 "quantile" "hospital admissions only" +"14 day ahead inc hosp" "38" 2024-02-05 2024-02-19 0.4 4 "quantile" "hospital admissions only" +"14 day ahead inc hosp" "38" 2024-02-05 2024-02-19 0.45 4 "quantile" "hospital admissions only" +"14 day ahead inc hosp" "38" 2024-02-05 2024-02-19 0.5 4 "quantile" "hospital admissions only" +"14 day ahead inc hosp" "38" 2024-02-05 2024-02-19 0.55 5 "quantile" "hospital admissions only" +"14 day ahead inc hosp" "38" 2024-02-05 2024-02-19 0.6 5 "quantile" "hospital admissions only" +"14 day ahead inc hosp" "38" 2024-02-05 2024-02-19 0.65 5 "quantile" "hospital admissions only" +"14 day ahead inc hosp" "38" 2024-02-05 2024-02-19 0.7 6 "quantile" "hospital admissions only" +"14 day ahead inc hosp" "38" 2024-02-05 2024-02-19 0.75 6.25000000000001 "quantile" "hospital admissions only" +"14 day ahead inc hosp" "38" 2024-02-05 2024-02-19 0.8 7 "quantile" "hospital admissions only" +"14 day ahead inc hosp" "38" 2024-02-05 2024-02-19 0.85 8 "quantile" "hospital admissions only" +"14 day ahead inc hosp" "38" 2024-02-05 2024-02-19 0.9 9 "quantile" "hospital admissions only" +"14 day ahead inc hosp" "38" 2024-02-05 2024-02-19 0.95 11 "quantile" "hospital admissions only" +"14 day ahead inc hosp" "38" 2024-02-05 2024-02-19 0.975 11 "quantile" "hospital admissions only" +"14 day ahead inc hosp" "38" 2024-02-05 2024-02-19 0.99 12 "quantile" "hospital admissions only" +"15 day ahead inc hosp" "38" 2024-02-05 2024-02-20 0.01 0.99 "quantile" "hospital admissions only" +"15 day ahead inc hosp" "38" 2024-02-05 2024-02-20 0.025 1 "quantile" "hospital admissions only" +"15 day ahead inc hosp" "38" 2024-02-05 2024-02-20 0.05 1 "quantile" "hospital admissions only" +"15 day ahead inc hosp" "38" 2024-02-05 2024-02-20 0.1 2 "quantile" "hospital admissions only" +"15 day ahead inc hosp" "38" 2024-02-05 2024-02-20 0.15 2 "quantile" "hospital admissions only" +"15 day ahead inc hosp" "38" 2024-02-05 2024-02-20 0.2 2 "quantile" "hospital admissions only" +"15 day ahead inc hosp" "38" 2024-02-05 2024-02-20 0.25 3 "quantile" "hospital admissions only" +"15 day ahead inc hosp" "38" 2024-02-05 2024-02-20 0.3 3 "quantile" "hospital admissions only" +"15 day ahead inc hosp" "38" 2024-02-05 2024-02-20 0.35 4 "quantile" "hospital admissions only" +"15 day ahead inc hosp" "38" 2024-02-05 2024-02-20 0.4 4 "quantile" "hospital admissions only" +"15 day ahead inc hosp" "38" 2024-02-05 2024-02-20 0.45 4 "quantile" "hospital admissions only" +"15 day ahead inc hosp" "38" 2024-02-05 2024-02-20 0.5 5 "quantile" "hospital admissions only" +"15 day ahead inc hosp" "38" 2024-02-05 2024-02-20 0.55 5 "quantile" "hospital admissions only" +"15 day ahead inc hosp" "38" 2024-02-05 2024-02-20 0.6 6 "quantile" "hospital admissions only" +"15 day ahead inc hosp" "38" 2024-02-05 2024-02-20 0.65 6 "quantile" "hospital admissions only" +"15 day ahead inc hosp" "38" 2024-02-05 2024-02-20 0.7 7 "quantile" "hospital admissions only" +"15 day ahead inc hosp" "38" 2024-02-05 2024-02-20 0.75 8 "quantile" "hospital admissions only" +"15 day ahead inc hosp" "38" 2024-02-05 2024-02-20 0.8 9 "quantile" "hospital admissions only" +"15 day ahead inc hosp" "38" 2024-02-05 2024-02-20 0.85 9 "quantile" "hospital admissions only" +"15 day ahead inc hosp" "38" 2024-02-05 2024-02-20 0.9 10 "quantile" "hospital admissions only" +"15 day ahead inc hosp" "38" 2024-02-05 2024-02-20 0.95 10.05 "quantile" "hospital admissions only" +"15 day ahead inc hosp" "38" 2024-02-05 2024-02-20 0.975 12 "quantile" "hospital admissions only" +"15 day ahead inc hosp" "38" 2024-02-05 2024-02-20 0.99 12.05 "quantile" "hospital admissions only" +"16 day ahead inc hosp" "38" 2024-02-05 2024-02-21 0.01 1 "quantile" "hospital admissions only" +"16 day ahead inc hosp" "38" 2024-02-05 2024-02-21 0.025 1 "quantile" "hospital admissions only" +"16 day ahead inc hosp" "38" 2024-02-05 2024-02-21 0.05 1 "quantile" "hospital admissions only" +"16 day ahead inc hosp" "38" 2024-02-05 2024-02-21 0.1 2 "quantile" "hospital admissions only" +"16 day ahead inc hosp" "38" 2024-02-05 2024-02-21 0.15 2 "quantile" "hospital admissions only" +"16 day ahead inc hosp" "38" 2024-02-05 2024-02-21 0.2 3 "quantile" "hospital admissions only" +"16 day ahead inc hosp" "38" 2024-02-05 2024-02-21 0.25 3 "quantile" "hospital admissions only" +"16 day ahead inc hosp" "38" 2024-02-05 2024-02-21 0.3 3 "quantile" "hospital admissions only" +"16 day ahead inc hosp" "38" 2024-02-05 2024-02-21 0.35 4 "quantile" "hospital admissions only" +"16 day ahead inc hosp" "38" 2024-02-05 2024-02-21 0.4 4 "quantile" "hospital admissions only" +"16 day ahead inc hosp" "38" 2024-02-05 2024-02-21 0.45 5 "quantile" "hospital admissions only" +"16 day ahead inc hosp" "38" 2024-02-05 2024-02-21 0.5 5 "quantile" "hospital admissions only" +"16 day ahead inc hosp" "38" 2024-02-05 2024-02-21 0.55 5 "quantile" "hospital admissions only" +"16 day ahead inc hosp" "38" 2024-02-05 2024-02-21 0.6 6 "quantile" "hospital admissions only" +"16 day ahead inc hosp" "38" 2024-02-05 2024-02-21 0.65 6 "quantile" "hospital admissions only" +"16 day ahead inc hosp" "38" 2024-02-05 2024-02-21 0.7 7 "quantile" "hospital admissions only" +"16 day ahead inc hosp" "38" 2024-02-05 2024-02-21 0.75 7.25000000000001 "quantile" "hospital admissions only" +"16 day ahead inc hosp" "38" 2024-02-05 2024-02-21 0.8 8 "quantile" "hospital admissions only" +"16 day ahead inc hosp" "38" 2024-02-05 2024-02-21 0.85 9 "quantile" "hospital admissions only" +"16 day ahead inc hosp" "38" 2024-02-05 2024-02-21 0.9 10 "quantile" "hospital admissions only" +"16 day ahead inc hosp" "38" 2024-02-05 2024-02-21 0.95 12 "quantile" "hospital admissions only" +"16 day ahead inc hosp" "38" 2024-02-05 2024-02-21 0.975 13 "quantile" "hospital admissions only" +"16 day ahead inc hosp" "38" 2024-02-05 2024-02-21 0.99 14 "quantile" "hospital admissions only" +"17 day ahead inc hosp" "38" 2024-02-05 2024-02-22 0.01 0 "quantile" "hospital admissions only" +"17 day ahead inc hosp" "38" 2024-02-05 2024-02-22 0.025 0 "quantile" "hospital admissions only" +"17 day ahead inc hosp" "38" 2024-02-05 2024-02-22 0.05 1 "quantile" "hospital admissions only" +"17 day ahead inc hosp" "38" 2024-02-05 2024-02-22 0.1 1 "quantile" "hospital admissions only" +"17 day ahead inc hosp" "38" 2024-02-05 2024-02-22 0.15 1.85 "quantile" "hospital admissions only" +"17 day ahead inc hosp" "38" 2024-02-05 2024-02-22 0.2 2 "quantile" "hospital admissions only" +"17 day ahead inc hosp" "38" 2024-02-05 2024-02-22 0.25 2 "quantile" "hospital admissions only" +"17 day ahead inc hosp" "38" 2024-02-05 2024-02-22 0.3 3 "quantile" "hospital admissions only" +"17 day ahead inc hosp" "38" 2024-02-05 2024-02-22 0.35 3 "quantile" "hospital admissions only" +"17 day ahead inc hosp" "38" 2024-02-05 2024-02-22 0.4 4 "quantile" "hospital admissions only" +"17 day ahead inc hosp" "38" 2024-02-05 2024-02-22 0.45 4 "quantile" "hospital admissions only" +"17 day ahead inc hosp" "38" 2024-02-05 2024-02-22 0.5 4 "quantile" "hospital admissions only" +"17 day ahead inc hosp" "38" 2024-02-05 2024-02-22 0.55 5 "quantile" "hospital admissions only" +"17 day ahead inc hosp" "38" 2024-02-05 2024-02-22 0.6 5 "quantile" "hospital admissions only" +"17 day ahead inc hosp" "38" 2024-02-05 2024-02-22 0.65 6 "quantile" "hospital admissions only" +"17 day ahead inc hosp" "38" 2024-02-05 2024-02-22 0.7 6.30000000000001 "quantile" "hospital admissions only" +"17 day ahead inc hosp" "38" 2024-02-05 2024-02-22 0.75 7 "quantile" "hospital admissions only" +"17 day ahead inc hosp" "38" 2024-02-05 2024-02-22 0.8 8 "quantile" "hospital admissions only" +"17 day ahead inc hosp" "38" 2024-02-05 2024-02-22 0.85 8 "quantile" "hospital admissions only" +"17 day ahead inc hosp" "38" 2024-02-05 2024-02-22 0.9 10.1 "quantile" "hospital admissions only" +"17 day ahead inc hosp" "38" 2024-02-05 2024-02-22 0.95 12 "quantile" "hospital admissions only" +"17 day ahead inc hosp" "38" 2024-02-05 2024-02-22 0.975 13 "quantile" "hospital admissions only" +"17 day ahead inc hosp" "38" 2024-02-05 2024-02-22 0.99 17.01 "quantile" "hospital admissions only" +"18 day ahead inc hosp" "38" 2024-02-05 2024-02-23 0.01 0 "quantile" "hospital admissions only" +"18 day ahead inc hosp" "38" 2024-02-05 2024-02-23 0.025 0.475 "quantile" "hospital admissions only" +"18 day ahead inc hosp" "38" 2024-02-05 2024-02-23 0.05 1 "quantile" "hospital admissions only" +"18 day ahead inc hosp" "38" 2024-02-05 2024-02-23 0.1 2 "quantile" "hospital admissions only" +"18 day ahead inc hosp" "38" 2024-02-05 2024-02-23 0.15 2 "quantile" "hospital admissions only" +"18 day ahead inc hosp" "38" 2024-02-05 2024-02-23 0.2 3 "quantile" "hospital admissions only" +"18 day ahead inc hosp" "38" 2024-02-05 2024-02-23 0.25 3 "quantile" "hospital admissions only" +"18 day ahead inc hosp" "38" 2024-02-05 2024-02-23 0.3 3 "quantile" "hospital admissions only" +"18 day ahead inc hosp" "38" 2024-02-05 2024-02-23 0.35 3 "quantile" "hospital admissions only" +"18 day ahead inc hosp" "38" 2024-02-05 2024-02-23 0.4 4 "quantile" "hospital admissions only" +"18 day ahead inc hosp" "38" 2024-02-05 2024-02-23 0.45 5 "quantile" "hospital admissions only" +"18 day ahead inc hosp" "38" 2024-02-05 2024-02-23 0.5 5 "quantile" "hospital admissions only" +"18 day ahead inc hosp" "38" 2024-02-05 2024-02-23 0.55 5.45 "quantile" "hospital admissions only" +"18 day ahead inc hosp" "38" 2024-02-05 2024-02-23 0.6 6 "quantile" "hospital admissions only" +"18 day ahead inc hosp" "38" 2024-02-05 2024-02-23 0.65 6 "quantile" "hospital admissions only" +"18 day ahead inc hosp" "38" 2024-02-05 2024-02-23 0.7 7 "quantile" "hospital admissions only" +"18 day ahead inc hosp" "38" 2024-02-05 2024-02-23 0.75 7 "quantile" "hospital admissions only" +"18 day ahead inc hosp" "38" 2024-02-05 2024-02-23 0.8 8 "quantile" "hospital admissions only" +"18 day ahead inc hosp" "38" 2024-02-05 2024-02-23 0.85 8.15000000000001 "quantile" "hospital admissions only" +"18 day ahead inc hosp" "38" 2024-02-05 2024-02-23 0.9 9 "quantile" "hospital admissions only" +"18 day ahead inc hosp" "38" 2024-02-05 2024-02-23 0.95 10.05 "quantile" "hospital admissions only" +"18 day ahead inc hosp" "38" 2024-02-05 2024-02-23 0.975 11.525 "quantile" "hospital admissions only" +"18 day ahead inc hosp" "38" 2024-02-05 2024-02-23 0.99 12.01 "quantile" "hospital admissions only" +"19 day ahead inc hosp" "38" 2024-02-05 2024-02-24 0.01 0 "quantile" "hospital admissions only" +"19 day ahead inc hosp" "38" 2024-02-05 2024-02-24 0.025 0 "quantile" "hospital admissions only" +"19 day ahead inc hosp" "38" 2024-02-05 2024-02-24 0.05 0.95 "quantile" "hospital admissions only" +"19 day ahead inc hosp" "38" 2024-02-05 2024-02-24 0.1 1 "quantile" "hospital admissions only" +"19 day ahead inc hosp" "38" 2024-02-05 2024-02-24 0.15 2 "quantile" "hospital admissions only" +"19 day ahead inc hosp" "38" 2024-02-05 2024-02-24 0.2 2 "quantile" "hospital admissions only" +"19 day ahead inc hosp" "38" 2024-02-05 2024-02-24 0.25 2 "quantile" "hospital admissions only" +"19 day ahead inc hosp" "38" 2024-02-05 2024-02-24 0.3 3 "quantile" "hospital admissions only" +"19 day ahead inc hosp" "38" 2024-02-05 2024-02-24 0.35 3 "quantile" "hospital admissions only" +"19 day ahead inc hosp" "38" 2024-02-05 2024-02-24 0.4 3 "quantile" "hospital admissions only" +"19 day ahead inc hosp" "38" 2024-02-05 2024-02-24 0.45 4 "quantile" "hospital admissions only" +"19 day ahead inc hosp" "38" 2024-02-05 2024-02-24 0.5 4 "quantile" "hospital admissions only" +"19 day ahead inc hosp" "38" 2024-02-05 2024-02-24 0.55 4 "quantile" "hospital admissions only" +"19 day ahead inc hosp" "38" 2024-02-05 2024-02-24 0.6 5 "quantile" "hospital admissions only" +"19 day ahead inc hosp" "38" 2024-02-05 2024-02-24 0.65 5 "quantile" "hospital admissions only" +"19 day ahead inc hosp" "38" 2024-02-05 2024-02-24 0.7 6 "quantile" "hospital admissions only" +"19 day ahead inc hosp" "38" 2024-02-05 2024-02-24 0.75 6 "quantile" "hospital admissions only" +"19 day ahead inc hosp" "38" 2024-02-05 2024-02-24 0.8 7 "quantile" "hospital admissions only" +"19 day ahead inc hosp" "38" 2024-02-05 2024-02-24 0.85 7 "quantile" "hospital admissions only" +"19 day ahead inc hosp" "38" 2024-02-05 2024-02-24 0.9 8 "quantile" "hospital admissions only" +"19 day ahead inc hosp" "38" 2024-02-05 2024-02-24 0.95 10.05 "quantile" "hospital admissions only" +"19 day ahead inc hosp" "38" 2024-02-05 2024-02-24 0.975 11.525 "quantile" "hospital admissions only" +"19 day ahead inc hosp" "38" 2024-02-05 2024-02-24 0.99 13.01 "quantile" "hospital admissions only" +"20 day ahead inc hosp" "38" 2024-02-05 2024-02-25 0.01 0 "quantile" "hospital admissions only" +"20 day ahead inc hosp" "38" 2024-02-05 2024-02-25 0.025 0 "quantile" "hospital admissions only" +"20 day ahead inc hosp" "38" 2024-02-05 2024-02-25 0.05 0.95 "quantile" "hospital admissions only" +"20 day ahead inc hosp" "38" 2024-02-05 2024-02-25 0.1 1 "quantile" "hospital admissions only" +"20 day ahead inc hosp" "38" 2024-02-05 2024-02-25 0.15 2 "quantile" "hospital admissions only" +"20 day ahead inc hosp" "38" 2024-02-05 2024-02-25 0.2 2 "quantile" "hospital admissions only" +"20 day ahead inc hosp" "38" 2024-02-05 2024-02-25 0.25 3 "quantile" "hospital admissions only" +"20 day ahead inc hosp" "38" 2024-02-05 2024-02-25 0.3 3 "quantile" "hospital admissions only" +"20 day ahead inc hosp" "38" 2024-02-05 2024-02-25 0.35 3 "quantile" "hospital admissions only" +"20 day ahead inc hosp" "38" 2024-02-05 2024-02-25 0.4 3 "quantile" "hospital admissions only" +"20 day ahead inc hosp" "38" 2024-02-05 2024-02-25 0.45 4 "quantile" "hospital admissions only" +"20 day ahead inc hosp" "38" 2024-02-05 2024-02-25 0.5 4 "quantile" "hospital admissions only" +"20 day ahead inc hosp" "38" 2024-02-05 2024-02-25 0.55 4 "quantile" "hospital admissions only" +"20 day ahead inc hosp" "38" 2024-02-05 2024-02-25 0.6 5 "quantile" "hospital admissions only" +"20 day ahead inc hosp" "38" 2024-02-05 2024-02-25 0.65 5 "quantile" "hospital admissions only" +"20 day ahead inc hosp" "38" 2024-02-05 2024-02-25 0.7 6 "quantile" "hospital admissions only" +"20 day ahead inc hosp" "38" 2024-02-05 2024-02-25 0.75 6 "quantile" "hospital admissions only" +"20 day ahead inc hosp" "38" 2024-02-05 2024-02-25 0.8 7 "quantile" "hospital admissions only" +"20 day ahead inc hosp" "38" 2024-02-05 2024-02-25 0.85 8 "quantile" "hospital admissions only" +"20 day ahead inc hosp" "38" 2024-02-05 2024-02-25 0.9 9 "quantile" "hospital admissions only" +"20 day ahead inc hosp" "38" 2024-02-05 2024-02-25 0.95 10 "quantile" "hospital admissions only" +"20 day ahead inc hosp" "38" 2024-02-05 2024-02-25 0.975 11.525 "quantile" "hospital admissions only" +"20 day ahead inc hosp" "38" 2024-02-05 2024-02-25 0.99 12.01 "quantile" "hospital admissions only" +"21 day ahead inc hosp" "38" 2024-02-05 2024-02-26 0.01 0 "quantile" "hospital admissions only" +"21 day ahead inc hosp" "38" 2024-02-05 2024-02-26 0.025 0.475 "quantile" "hospital admissions only" +"21 day ahead inc hosp" "38" 2024-02-05 2024-02-26 0.05 1 "quantile" "hospital admissions only" +"21 day ahead inc hosp" "38" 2024-02-05 2024-02-26 0.1 2 "quantile" "hospital admissions only" +"21 day ahead inc hosp" "38" 2024-02-05 2024-02-26 0.15 2 "quantile" "hospital admissions only" +"21 day ahead inc hosp" "38" 2024-02-05 2024-02-26 0.2 2 "quantile" "hospital admissions only" +"21 day ahead inc hosp" "38" 2024-02-05 2024-02-26 0.25 2 "quantile" "hospital admissions only" +"21 day ahead inc hosp" "38" 2024-02-05 2024-02-26 0.3 3 "quantile" "hospital admissions only" +"21 day ahead inc hosp" "38" 2024-02-05 2024-02-26 0.35 3 "quantile" "hospital admissions only" +"21 day ahead inc hosp" "38" 2024-02-05 2024-02-26 0.4 4 "quantile" "hospital admissions only" +"21 day ahead inc hosp" "38" 2024-02-05 2024-02-26 0.45 4 "quantile" "hospital admissions only" +"21 day ahead inc hosp" "38" 2024-02-05 2024-02-26 0.5 4 "quantile" "hospital admissions only" +"21 day ahead inc hosp" "38" 2024-02-05 2024-02-26 0.55 5 "quantile" "hospital admissions only" +"21 day ahead inc hosp" "38" 2024-02-05 2024-02-26 0.6 5.40000000000001 "quantile" "hospital admissions only" +"21 day ahead inc hosp" "38" 2024-02-05 2024-02-26 0.65 6 "quantile" "hospital admissions only" +"21 day ahead inc hosp" "38" 2024-02-05 2024-02-26 0.7 7 "quantile" "hospital admissions only" +"21 day ahead inc hosp" "38" 2024-02-05 2024-02-26 0.75 7 "quantile" "hospital admissions only" +"21 day ahead inc hosp" "38" 2024-02-05 2024-02-26 0.8 7.2 "quantile" "hospital admissions only" +"21 day ahead inc hosp" "38" 2024-02-05 2024-02-26 0.85 8 "quantile" "hospital admissions only" +"21 day ahead inc hosp" "38" 2024-02-05 2024-02-26 0.9 9 "quantile" "hospital admissions only" +"21 day ahead inc hosp" "38" 2024-02-05 2024-02-26 0.95 10.05 "quantile" "hospital admissions only" +"21 day ahead inc hosp" "38" 2024-02-05 2024-02-26 0.975 11.525 "quantile" "hospital admissions only" +"21 day ahead inc hosp" "38" 2024-02-05 2024-02-26 0.99 12.02 "quantile" "hospital admissions only" +"22 day ahead inc hosp" "38" 2024-02-05 2024-02-27 0.01 0 "quantile" "hospital admissions only" +"22 day ahead inc hosp" "38" 2024-02-05 2024-02-27 0.025 0.475 "quantile" "hospital admissions only" +"22 day ahead inc hosp" "38" 2024-02-05 2024-02-27 0.05 1 "quantile" "hospital admissions only" +"22 day ahead inc hosp" "38" 2024-02-05 2024-02-27 0.1 2 "quantile" "hospital admissions only" +"22 day ahead inc hosp" "38" 2024-02-05 2024-02-27 0.15 2 "quantile" "hospital admissions only" +"22 day ahead inc hosp" "38" 2024-02-05 2024-02-27 0.2 3 "quantile" "hospital admissions only" +"22 day ahead inc hosp" "38" 2024-02-05 2024-02-27 0.25 3 "quantile" "hospital admissions only" +"22 day ahead inc hosp" "38" 2024-02-05 2024-02-27 0.3 3 "quantile" "hospital admissions only" +"22 day ahead inc hosp" "38" 2024-02-05 2024-02-27 0.35 3.65000000000001 "quantile" "hospital admissions only" +"22 day ahead inc hosp" "38" 2024-02-05 2024-02-27 0.4 4 "quantile" "hospital admissions only" +"22 day ahead inc hosp" "38" 2024-02-05 2024-02-27 0.45 4.55 "quantile" "hospital admissions only" +"22 day ahead inc hosp" "38" 2024-02-05 2024-02-27 0.5 5 "quantile" "hospital admissions only" +"22 day ahead inc hosp" "38" 2024-02-05 2024-02-27 0.55 5 "quantile" "hospital admissions only" +"22 day ahead inc hosp" "38" 2024-02-05 2024-02-27 0.6 6 "quantile" "hospital admissions only" +"22 day ahead inc hosp" "38" 2024-02-05 2024-02-27 0.65 6 "quantile" "hospital admissions only" +"22 day ahead inc hosp" "38" 2024-02-05 2024-02-27 0.7 6 "quantile" "hospital admissions only" +"22 day ahead inc hosp" "38" 2024-02-05 2024-02-27 0.75 7 "quantile" "hospital admissions only" +"22 day ahead inc hosp" "38" 2024-02-05 2024-02-27 0.8 7 "quantile" "hospital admissions only" +"22 day ahead inc hosp" "38" 2024-02-05 2024-02-27 0.85 7 "quantile" "hospital admissions only" +"22 day ahead inc hosp" "38" 2024-02-05 2024-02-27 0.9 8.10000000000001 "quantile" "hospital admissions only" +"22 day ahead inc hosp" "38" 2024-02-05 2024-02-27 0.95 10.05 "quantile" "hospital admissions only" +"22 day ahead inc hosp" "38" 2024-02-05 2024-02-27 0.975 15.525 "quantile" "hospital admissions only" +"22 day ahead inc hosp" "38" 2024-02-05 2024-02-27 0.99 16 "quantile" "hospital admissions only" +"23 day ahead inc hosp" "38" 2024-02-05 2024-02-28 0.01 0 "quantile" "hospital admissions only" +"23 day ahead inc hosp" "38" 2024-02-05 2024-02-28 0.025 1 "quantile" "hospital admissions only" +"23 day ahead inc hosp" "38" 2024-02-05 2024-02-28 0.05 1 "quantile" "hospital admissions only" +"23 day ahead inc hosp" "38" 2024-02-05 2024-02-28 0.1 2 "quantile" "hospital admissions only" +"23 day ahead inc hosp" "38" 2024-02-05 2024-02-28 0.15 3 "quantile" "hospital admissions only" +"23 day ahead inc hosp" "38" 2024-02-05 2024-02-28 0.2 3 "quantile" "hospital admissions only" +"23 day ahead inc hosp" "38" 2024-02-05 2024-02-28 0.25 3 "quantile" "hospital admissions only" +"23 day ahead inc hosp" "38" 2024-02-05 2024-02-28 0.3 4 "quantile" "hospital admissions only" +"23 day ahead inc hosp" "38" 2024-02-05 2024-02-28 0.35 4 "quantile" "hospital admissions only" +"23 day ahead inc hosp" "38" 2024-02-05 2024-02-28 0.4 4 "quantile" "hospital admissions only" +"23 day ahead inc hosp" "38" 2024-02-05 2024-02-28 0.45 5 "quantile" "hospital admissions only" +"23 day ahead inc hosp" "38" 2024-02-05 2024-02-28 0.5 5 "quantile" "hospital admissions only" +"23 day ahead inc hosp" "38" 2024-02-05 2024-02-28 0.55 6 "quantile" "hospital admissions only" +"23 day ahead inc hosp" "38" 2024-02-05 2024-02-28 0.6 6 "quantile" "hospital admissions only" +"23 day ahead inc hosp" "38" 2024-02-05 2024-02-28 0.65 6.35000000000001 "quantile" "hospital admissions only" +"23 day ahead inc hosp" "38" 2024-02-05 2024-02-28 0.7 7 "quantile" "hospital admissions only" +"23 day ahead inc hosp" "38" 2024-02-05 2024-02-28 0.75 7 "quantile" "hospital admissions only" +"23 day ahead inc hosp" "38" 2024-02-05 2024-02-28 0.8 8 "quantile" "hospital admissions only" +"23 day ahead inc hosp" "38" 2024-02-05 2024-02-28 0.85 8.15000000000001 "quantile" "hospital admissions only" +"23 day ahead inc hosp" "38" 2024-02-05 2024-02-28 0.9 10 "quantile" "hospital admissions only" +"23 day ahead inc hosp" "38" 2024-02-05 2024-02-28 0.95 11 "quantile" "hospital admissions only" +"23 day ahead inc hosp" "38" 2024-02-05 2024-02-28 0.975 12 "quantile" "hospital admissions only" +"23 day ahead inc hosp" "38" 2024-02-05 2024-02-28 0.99 13.02 "quantile" "hospital admissions only" +"24 day ahead inc hosp" "38" 2024-02-05 2024-02-29 0.01 0 "quantile" "hospital admissions only" +"24 day ahead inc hosp" "38" 2024-02-05 2024-02-29 0.025 0.475 "quantile" "hospital admissions only" +"24 day ahead inc hosp" "38" 2024-02-05 2024-02-29 0.05 1 "quantile" "hospital admissions only" +"24 day ahead inc hosp" "38" 2024-02-05 2024-02-29 0.1 2 "quantile" "hospital admissions only" +"24 day ahead inc hosp" "38" 2024-02-05 2024-02-29 0.15 2 "quantile" "hospital admissions only" +"24 day ahead inc hosp" "38" 2024-02-05 2024-02-29 0.2 3 "quantile" "hospital admissions only" +"24 day ahead inc hosp" "38" 2024-02-05 2024-02-29 0.25 3 "quantile" "hospital admissions only" +"24 day ahead inc hosp" "38" 2024-02-05 2024-02-29 0.3 3 "quantile" "hospital admissions only" +"24 day ahead inc hosp" "38" 2024-02-05 2024-02-29 0.35 3 "quantile" "hospital admissions only" +"24 day ahead inc hosp" "38" 2024-02-05 2024-02-29 0.4 4 "quantile" "hospital admissions only" +"24 day ahead inc hosp" "38" 2024-02-05 2024-02-29 0.45 4 "quantile" "hospital admissions only" +"24 day ahead inc hosp" "38" 2024-02-05 2024-02-29 0.5 4 "quantile" "hospital admissions only" +"24 day ahead inc hosp" "38" 2024-02-05 2024-02-29 0.55 5 "quantile" "hospital admissions only" +"24 day ahead inc hosp" "38" 2024-02-05 2024-02-29 0.6 5 "quantile" "hospital admissions only" +"24 day ahead inc hosp" "38" 2024-02-05 2024-02-29 0.65 6 "quantile" "hospital admissions only" +"24 day ahead inc hosp" "38" 2024-02-05 2024-02-29 0.7 6.30000000000001 "quantile" "hospital admissions only" +"24 day ahead inc hosp" "38" 2024-02-05 2024-02-29 0.75 7 "quantile" "hospital admissions only" +"24 day ahead inc hosp" "38" 2024-02-05 2024-02-29 0.8 8 "quantile" "hospital admissions only" +"24 day ahead inc hosp" "38" 2024-02-05 2024-02-29 0.85 9 "quantile" "hospital admissions only" +"24 day ahead inc hosp" "38" 2024-02-05 2024-02-29 0.9 10 "quantile" "hospital admissions only" +"24 day ahead inc hosp" "38" 2024-02-05 2024-02-29 0.95 13 "quantile" "hospital admissions only" +"24 day ahead inc hosp" "38" 2024-02-05 2024-02-29 0.975 15.525 "quantile" "hospital admissions only" +"24 day ahead inc hosp" "38" 2024-02-05 2024-02-29 0.99 17 "quantile" "hospital admissions only" +"25 day ahead inc hosp" "38" 2024-02-05 2024-03-01 0.01 0 "quantile" "hospital admissions only" +"25 day ahead inc hosp" "38" 2024-02-05 2024-03-01 0.025 0 "quantile" "hospital admissions only" +"25 day ahead inc hosp" "38" 2024-02-05 2024-03-01 0.05 1 "quantile" "hospital admissions only" +"25 day ahead inc hosp" "38" 2024-02-05 2024-03-01 0.1 1 "quantile" "hospital admissions only" +"25 day ahead inc hosp" "38" 2024-02-05 2024-03-01 0.15 1.85 "quantile" "hospital admissions only" +"25 day ahead inc hosp" "38" 2024-02-05 2024-03-01 0.2 2 "quantile" "hospital admissions only" +"25 day ahead inc hosp" "38" 2024-02-05 2024-03-01 0.25 3 "quantile" "hospital admissions only" +"25 day ahead inc hosp" "38" 2024-02-05 2024-03-01 0.3 3 "quantile" "hospital admissions only" +"25 day ahead inc hosp" "38" 2024-02-05 2024-03-01 0.35 3.65000000000001 "quantile" "hospital admissions only" +"25 day ahead inc hosp" "38" 2024-02-05 2024-03-01 0.4 4 "quantile" "hospital admissions only" +"25 day ahead inc hosp" "38" 2024-02-05 2024-03-01 0.45 4 "quantile" "hospital admissions only" +"25 day ahead inc hosp" "38" 2024-02-05 2024-03-01 0.5 5 "quantile" "hospital admissions only" +"25 day ahead inc hosp" "38" 2024-02-05 2024-03-01 0.55 5 "quantile" "hospital admissions only" +"25 day ahead inc hosp" "38" 2024-02-05 2024-03-01 0.6 5 "quantile" "hospital admissions only" +"25 day ahead inc hosp" "38" 2024-02-05 2024-03-01 0.65 6 "quantile" "hospital admissions only" +"25 day ahead inc hosp" "38" 2024-02-05 2024-03-01 0.7 6 "quantile" "hospital admissions only" +"25 day ahead inc hosp" "38" 2024-02-05 2024-03-01 0.75 7 "quantile" "hospital admissions only" +"25 day ahead inc hosp" "38" 2024-02-05 2024-03-01 0.8 7 "quantile" "hospital admissions only" +"25 day ahead inc hosp" "38" 2024-02-05 2024-03-01 0.85 8 "quantile" "hospital admissions only" +"25 day ahead inc hosp" "38" 2024-02-05 2024-03-01 0.9 9 "quantile" "hospital admissions only" +"25 day ahead inc hosp" "38" 2024-02-05 2024-03-01 0.95 9 "quantile" "hospital admissions only" +"25 day ahead inc hosp" "38" 2024-02-05 2024-03-01 0.975 10.525 "quantile" "hospital admissions only" +"25 day ahead inc hosp" "38" 2024-02-05 2024-03-01 0.99 11.04 "quantile" "hospital admissions only" +"26 day ahead inc hosp" "38" 2024-02-05 2024-03-02 0.01 0 "quantile" "hospital admissions only" +"26 day ahead inc hosp" "38" 2024-02-05 2024-03-02 0.025 0 "quantile" "hospital admissions only" +"26 day ahead inc hosp" "38" 2024-02-05 2024-03-02 0.05 0 "quantile" "hospital admissions only" +"26 day ahead inc hosp" "38" 2024-02-05 2024-03-02 0.1 1 "quantile" "hospital admissions only" +"26 day ahead inc hosp" "38" 2024-02-05 2024-03-02 0.15 1 "quantile" "hospital admissions only" +"26 day ahead inc hosp" "38" 2024-02-05 2024-03-02 0.2 2 "quantile" "hospital admissions only" +"26 day ahead inc hosp" "38" 2024-02-05 2024-03-02 0.25 2 "quantile" "hospital admissions only" +"26 day ahead inc hosp" "38" 2024-02-05 2024-03-02 0.3 2 "quantile" "hospital admissions only" +"26 day ahead inc hosp" "38" 2024-02-05 2024-03-02 0.35 2 "quantile" "hospital admissions only" +"26 day ahead inc hosp" "38" 2024-02-05 2024-03-02 0.4 3 "quantile" "hospital admissions only" +"26 day ahead inc hosp" "38" 2024-02-05 2024-03-02 0.45 4 "quantile" "hospital admissions only" +"26 day ahead inc hosp" "38" 2024-02-05 2024-03-02 0.5 4 "quantile" "hospital admissions only" +"26 day ahead inc hosp" "38" 2024-02-05 2024-03-02 0.55 4 "quantile" "hospital admissions only" +"26 day ahead inc hosp" "38" 2024-02-05 2024-03-02 0.6 5 "quantile" "hospital admissions only" +"26 day ahead inc hosp" "38" 2024-02-05 2024-03-02 0.65 5 "quantile" "hospital admissions only" +"26 day ahead inc hosp" "38" 2024-02-05 2024-03-02 0.7 6 "quantile" "hospital admissions only" +"26 day ahead inc hosp" "38" 2024-02-05 2024-03-02 0.75 6.25000000000001 "quantile" "hospital admissions only" +"26 day ahead inc hosp" "38" 2024-02-05 2024-03-02 0.8 7 "quantile" "hospital admissions only" +"26 day ahead inc hosp" "38" 2024-02-05 2024-03-02 0.85 8 "quantile" "hospital admissions only" +"26 day ahead inc hosp" "38" 2024-02-05 2024-03-02 0.9 9 "quantile" "hospital admissions only" +"26 day ahead inc hosp" "38" 2024-02-05 2024-03-02 0.95 11 "quantile" "hospital admissions only" +"26 day ahead inc hosp" "38" 2024-02-05 2024-03-02 0.975 11 "quantile" "hospital admissions only" +"26 day ahead inc hosp" "38" 2024-02-05 2024-03-02 0.99 12.04 "quantile" "hospital admissions only" +"27 day ahead inc hosp" "38" 2024-02-05 2024-03-03 0.01 0 "quantile" "hospital admissions only" +"27 day ahead inc hosp" "38" 2024-02-05 2024-03-03 0.025 0 "quantile" "hospital admissions only" +"27 day ahead inc hosp" "38" 2024-02-05 2024-03-03 0.05 0 "quantile" "hospital admissions only" +"27 day ahead inc hosp" "38" 2024-02-05 2024-03-03 0.1 1 "quantile" "hospital admissions only" +"27 day ahead inc hosp" "38" 2024-02-05 2024-03-03 0.15 1 "quantile" "hospital admissions only" +"27 day ahead inc hosp" "38" 2024-02-05 2024-03-03 0.2 2 "quantile" "hospital admissions only" +"27 day ahead inc hosp" "38" 2024-02-05 2024-03-03 0.25 2 "quantile" "hospital admissions only" +"27 day ahead inc hosp" "38" 2024-02-05 2024-03-03 0.3 3 "quantile" "hospital admissions only" +"27 day ahead inc hosp" "38" 2024-02-05 2024-03-03 0.35 3 "quantile" "hospital admissions only" +"27 day ahead inc hosp" "38" 2024-02-05 2024-03-03 0.4 3 "quantile" "hospital admissions only" +"27 day ahead inc hosp" "38" 2024-02-05 2024-03-03 0.45 4 "quantile" "hospital admissions only" +"27 day ahead inc hosp" "38" 2024-02-05 2024-03-03 0.5 4 "quantile" "hospital admissions only" +"27 day ahead inc hosp" "38" 2024-02-05 2024-03-03 0.55 4 "quantile" "hospital admissions only" +"27 day ahead inc hosp" "38" 2024-02-05 2024-03-03 0.6 5 "quantile" "hospital admissions only" +"27 day ahead inc hosp" "38" 2024-02-05 2024-03-03 0.65 5 "quantile" "hospital admissions only" +"27 day ahead inc hosp" "38" 2024-02-05 2024-03-03 0.7 6 "quantile" "hospital admissions only" +"27 day ahead inc hosp" "38" 2024-02-05 2024-03-03 0.75 6 "quantile" "hospital admissions only" +"27 day ahead inc hosp" "38" 2024-02-05 2024-03-03 0.8 6.2 "quantile" "hospital admissions only" +"27 day ahead inc hosp" "38" 2024-02-05 2024-03-03 0.85 7 "quantile" "hospital admissions only" +"27 day ahead inc hosp" "38" 2024-02-05 2024-03-03 0.9 8 "quantile" "hospital admissions only" +"27 day ahead inc hosp" "38" 2024-02-05 2024-03-03 0.95 11 "quantile" "hospital admissions only" +"27 day ahead inc hosp" "38" 2024-02-05 2024-03-03 0.975 12.525 "quantile" "hospital admissions only" +"27 day ahead inc hosp" "38" 2024-02-05 2024-03-03 0.99 17.01 "quantile" "hospital admissions only" +"28 day ahead inc hosp" "38" 2024-02-05 2024-03-04 0.01 0 "quantile" "hospital admissions only" +"28 day ahead inc hosp" "38" 2024-02-05 2024-03-04 0.025 0 "quantile" "hospital admissions only" +"28 day ahead inc hosp" "38" 2024-02-05 2024-03-04 0.05 1 "quantile" "hospital admissions only" +"28 day ahead inc hosp" "38" 2024-02-05 2024-03-04 0.1 1.9 "quantile" "hospital admissions only" +"28 day ahead inc hosp" "38" 2024-02-05 2024-03-04 0.15 2 "quantile" "hospital admissions only" +"28 day ahead inc hosp" "38" 2024-02-05 2024-03-04 0.2 2 "quantile" "hospital admissions only" +"28 day ahead inc hosp" "38" 2024-02-05 2024-03-04 0.25 3 "quantile" "hospital admissions only" +"28 day ahead inc hosp" "38" 2024-02-05 2024-03-04 0.3 3 "quantile" "hospital admissions only" +"28 day ahead inc hosp" "38" 2024-02-05 2024-03-04 0.35 3 "quantile" "hospital admissions only" +"28 day ahead inc hosp" "38" 2024-02-05 2024-03-04 0.4 4 "quantile" "hospital admissions only" +"28 day ahead inc hosp" "38" 2024-02-05 2024-03-04 0.45 4 "quantile" "hospital admissions only" +"28 day ahead inc hosp" "38" 2024-02-05 2024-03-04 0.5 4 "quantile" "hospital admissions only" +"28 day ahead inc hosp" "38" 2024-02-05 2024-03-04 0.55 5 "quantile" "hospital admissions only" +"28 day ahead inc hosp" "38" 2024-02-05 2024-03-04 0.6 5 "quantile" "hospital admissions only" +"28 day ahead inc hosp" "38" 2024-02-05 2024-03-04 0.65 5 "quantile" "hospital admissions only" +"28 day ahead inc hosp" "38" 2024-02-05 2024-03-04 0.7 6 "quantile" "hospital admissions only" +"28 day ahead inc hosp" "38" 2024-02-05 2024-03-04 0.75 7 "quantile" "hospital admissions only" +"28 day ahead inc hosp" "38" 2024-02-05 2024-03-04 0.8 8 "quantile" "hospital admissions only" +"28 day ahead inc hosp" "38" 2024-02-05 2024-03-04 0.85 8 "quantile" "hospital admissions only" +"28 day ahead inc hosp" "38" 2024-02-05 2024-03-04 0.9 9 "quantile" "hospital admissions only" +"28 day ahead inc hosp" "38" 2024-02-05 2024-03-04 0.95 11.05 "quantile" "hospital admissions only" +"28 day ahead inc hosp" "38" 2024-02-05 2024-03-04 0.975 12 "quantile" "hospital admissions only" +"28 day ahead inc hosp" "38" 2024-02-05 2024-03-04 0.99 13.02 "quantile" "hospital admissions only" +"1 day ahead inc hosp" "31" 2024-02-05 2024-02-06 0.01 2 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "31" 2024-02-05 2024-02-06 0.025 3.475 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "31" 2024-02-05 2024-02-06 0.05 5.9 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "31" 2024-02-05 2024-02-06 0.1 6.9 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "31" 2024-02-05 2024-02-06 0.15 7 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "31" 2024-02-05 2024-02-06 0.2 8 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "31" 2024-02-05 2024-02-06 0.25 9 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "31" 2024-02-05 2024-02-06 0.3 9 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "31" 2024-02-05 2024-02-06 0.35 9 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "31" 2024-02-05 2024-02-06 0.4 10 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "31" 2024-02-05 2024-02-06 0.45 10 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "31" 2024-02-05 2024-02-06 0.5 11 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "31" 2024-02-05 2024-02-06 0.55 11 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "31" 2024-02-05 2024-02-06 0.6 12 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "31" 2024-02-05 2024-02-06 0.65 13 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "31" 2024-02-05 2024-02-06 0.7 14 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "31" 2024-02-05 2024-02-06 0.75 14 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "31" 2024-02-05 2024-02-06 0.8 15 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "31" 2024-02-05 2024-02-06 0.85 15.15 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "31" 2024-02-05 2024-02-06 0.9 17 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "31" 2024-02-05 2024-02-06 0.95 18 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "31" 2024-02-05 2024-02-06 0.975 19.05 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "31" 2024-02-05 2024-02-06 0.99 20.01 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "31" 2024-02-05 2024-02-07 0.01 4 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "31" 2024-02-05 2024-02-07 0.025 4.475 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "31" 2024-02-05 2024-02-07 0.05 5 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "31" 2024-02-05 2024-02-07 0.1 7 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "31" 2024-02-05 2024-02-07 0.15 8 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "31" 2024-02-05 2024-02-07 0.2 8 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "31" 2024-02-05 2024-02-07 0.25 8.75 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "31" 2024-02-05 2024-02-07 0.3 9 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "31" 2024-02-05 2024-02-07 0.35 9 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "31" 2024-02-05 2024-02-07 0.4 10 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "31" 2024-02-05 2024-02-07 0.45 11 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "31" 2024-02-05 2024-02-07 0.5 11 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "31" 2024-02-05 2024-02-07 0.55 11.45 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "31" 2024-02-05 2024-02-07 0.6 12 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "31" 2024-02-05 2024-02-07 0.65 13 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "31" 2024-02-05 2024-02-07 0.7 13 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "31" 2024-02-05 2024-02-07 0.75 14 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "31" 2024-02-05 2024-02-07 0.8 14.2 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "31" 2024-02-05 2024-02-07 0.85 15 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "31" 2024-02-05 2024-02-07 0.9 16 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "31" 2024-02-05 2024-02-07 0.95 17 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "31" 2024-02-05 2024-02-07 0.975 20.05 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "31" 2024-02-05 2024-02-07 0.99 21.06 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "31" 2024-02-05 2024-02-08 0.01 1.99 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "31" 2024-02-05 2024-02-08 0.025 2.475 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "31" 2024-02-05 2024-02-08 0.05 4 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "31" 2024-02-05 2024-02-08 0.1 5.9 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "31" 2024-02-05 2024-02-08 0.15 7 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "31" 2024-02-05 2024-02-08 0.2 7 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "31" 2024-02-05 2024-02-08 0.25 8 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "31" 2024-02-05 2024-02-08 0.3 8 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "31" 2024-02-05 2024-02-08 0.35 9 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "31" 2024-02-05 2024-02-08 0.4 9 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "31" 2024-02-05 2024-02-08 0.45 10 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "31" 2024-02-05 2024-02-08 0.5 11 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "31" 2024-02-05 2024-02-08 0.55 11 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "31" 2024-02-05 2024-02-08 0.6 12 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "31" 2024-02-05 2024-02-08 0.65 12 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "31" 2024-02-05 2024-02-08 0.7 13 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "31" 2024-02-05 2024-02-08 0.75 13.25 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "31" 2024-02-05 2024-02-08 0.8 14 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "31" 2024-02-05 2024-02-08 0.85 15 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "31" 2024-02-05 2024-02-08 0.9 17 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "31" 2024-02-05 2024-02-08 0.95 20 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "31" 2024-02-05 2024-02-08 0.975 20.525 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "31" 2024-02-05 2024-02-08 0.99 29.06 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "31" 2024-02-05 2024-02-09 0.01 2.99 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "31" 2024-02-05 2024-02-09 0.025 3.475 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "31" 2024-02-05 2024-02-09 0.05 5 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "31" 2024-02-05 2024-02-09 0.1 6 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "31" 2024-02-05 2024-02-09 0.15 6 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "31" 2024-02-05 2024-02-09 0.2 7 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "31" 2024-02-05 2024-02-09 0.25 8 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "31" 2024-02-05 2024-02-09 0.3 8 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "31" 2024-02-05 2024-02-09 0.35 8 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "31" 2024-02-05 2024-02-09 0.4 9 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "31" 2024-02-05 2024-02-09 0.45 9 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "31" 2024-02-05 2024-02-09 0.5 10 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "31" 2024-02-05 2024-02-09 0.55 10 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "31" 2024-02-05 2024-02-09 0.6 11.4 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "31" 2024-02-05 2024-02-09 0.65 12 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "31" 2024-02-05 2024-02-09 0.7 13 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "31" 2024-02-05 2024-02-09 0.75 14 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "31" 2024-02-05 2024-02-09 0.8 15 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "31" 2024-02-05 2024-02-09 0.85 15.15 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "31" 2024-02-05 2024-02-09 0.9 16.1 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "31" 2024-02-05 2024-02-09 0.95 19.05 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "31" 2024-02-05 2024-02-09 0.975 21.05 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "31" 2024-02-05 2024-02-09 0.99 23.08 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "31" 2024-02-05 2024-02-10 0.01 3 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "31" 2024-02-05 2024-02-10 0.025 3 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "31" 2024-02-05 2024-02-10 0.05 3.95 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "31" 2024-02-05 2024-02-10 0.1 4 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "31" 2024-02-05 2024-02-10 0.15 5 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "31" 2024-02-05 2024-02-10 0.2 6 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "31" 2024-02-05 2024-02-10 0.25 7 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "31" 2024-02-05 2024-02-10 0.3 7 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "31" 2024-02-05 2024-02-10 0.35 8 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "31" 2024-02-05 2024-02-10 0.4 8 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "31" 2024-02-05 2024-02-10 0.45 8 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "31" 2024-02-05 2024-02-10 0.5 9 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "31" 2024-02-05 2024-02-10 0.55 9 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "31" 2024-02-05 2024-02-10 0.6 10 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "31" 2024-02-05 2024-02-10 0.65 11 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "31" 2024-02-05 2024-02-10 0.7 11.3 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "31" 2024-02-05 2024-02-10 0.75 12 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "31" 2024-02-05 2024-02-10 0.8 13.2 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "31" 2024-02-05 2024-02-10 0.85 14 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "31" 2024-02-05 2024-02-10 0.9 15 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "31" 2024-02-05 2024-02-10 0.95 16.05 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "31" 2024-02-05 2024-02-10 0.975 17.525 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "31" 2024-02-05 2024-02-10 0.99 18.01 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "31" 2024-02-05 2024-02-11 0.01 3 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "31" 2024-02-05 2024-02-11 0.025 4 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "31" 2024-02-05 2024-02-11 0.05 4 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "31" 2024-02-05 2024-02-11 0.1 6 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "31" 2024-02-05 2024-02-11 0.15 6 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "31" 2024-02-05 2024-02-11 0.2 7 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "31" 2024-02-05 2024-02-11 0.25 7 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "31" 2024-02-05 2024-02-11 0.3 8 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "31" 2024-02-05 2024-02-11 0.35 9 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "31" 2024-02-05 2024-02-11 0.4 10 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "31" 2024-02-05 2024-02-11 0.45 10 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "31" 2024-02-05 2024-02-11 0.5 11 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "31" 2024-02-05 2024-02-11 0.55 11.45 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "31" 2024-02-05 2024-02-11 0.6 12 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "31" 2024-02-05 2024-02-11 0.65 13 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "31" 2024-02-05 2024-02-11 0.7 14 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "31" 2024-02-05 2024-02-11 0.75 14.25 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "31" 2024-02-05 2024-02-11 0.8 15 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "31" 2024-02-05 2024-02-11 0.85 16 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "31" 2024-02-05 2024-02-11 0.9 17 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "31" 2024-02-05 2024-02-11 0.95 19 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "31" 2024-02-05 2024-02-11 0.975 19.525 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "31" 2024-02-05 2024-02-11 0.99 24 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "31" 2024-02-05 2024-02-12 0.01 3.98 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "31" 2024-02-05 2024-02-12 0.025 4.475 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "31" 2024-02-05 2024-02-12 0.05 5 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "31" 2024-02-05 2024-02-12 0.1 6 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "31" 2024-02-05 2024-02-12 0.15 6 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "31" 2024-02-05 2024-02-12 0.2 7 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "31" 2024-02-05 2024-02-12 0.25 8 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "31" 2024-02-05 2024-02-12 0.3 8.7 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "31" 2024-02-05 2024-02-12 0.35 9 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "31" 2024-02-05 2024-02-12 0.4 10 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "31" 2024-02-05 2024-02-12 0.45 11 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "31" 2024-02-05 2024-02-12 0.5 12 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "31" 2024-02-05 2024-02-12 0.55 12 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "31" 2024-02-05 2024-02-12 0.6 13 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "31" 2024-02-05 2024-02-12 0.65 14 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "31" 2024-02-05 2024-02-12 0.7 14 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "31" 2024-02-05 2024-02-12 0.75 14 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "31" 2024-02-05 2024-02-12 0.8 15 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "31" 2024-02-05 2024-02-12 0.85 16.15 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "31" 2024-02-05 2024-02-12 0.9 18.1 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "31" 2024-02-05 2024-02-12 0.95 21.05 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "31" 2024-02-05 2024-02-12 0.975 22 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "31" 2024-02-05 2024-02-12 0.99 23.1300000000001 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "31" 2024-02-05 2024-02-13 0.01 0 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "31" 2024-02-05 2024-02-13 0.025 2.475 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "31" 2024-02-05 2024-02-13 0.05 3 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "31" 2024-02-05 2024-02-13 0.1 5 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "31" 2024-02-05 2024-02-13 0.15 5.85 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "31" 2024-02-05 2024-02-13 0.2 7 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "31" 2024-02-05 2024-02-13 0.25 7 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "31" 2024-02-05 2024-02-13 0.3 7.7 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "31" 2024-02-05 2024-02-13 0.35 8 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "31" 2024-02-05 2024-02-13 0.4 8 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "31" 2024-02-05 2024-02-13 0.45 9 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "31" 2024-02-05 2024-02-13 0.5 10 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "31" 2024-02-05 2024-02-13 0.55 10.45 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "31" 2024-02-05 2024-02-13 0.6 11 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "31" 2024-02-05 2024-02-13 0.65 12 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "31" 2024-02-05 2024-02-13 0.7 13 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "31" 2024-02-05 2024-02-13 0.75 14 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "31" 2024-02-05 2024-02-13 0.8 15 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "31" 2024-02-05 2024-02-13 0.85 15 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "31" 2024-02-05 2024-02-13 0.9 17 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "31" 2024-02-05 2024-02-13 0.95 19 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "31" 2024-02-05 2024-02-13 0.975 21 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "31" 2024-02-05 2024-02-13 0.99 22.09 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "31" 2024-02-05 2024-02-14 0.01 4 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "31" 2024-02-05 2024-02-14 0.025 4 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "31" 2024-02-05 2024-02-14 0.05 4 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "31" 2024-02-05 2024-02-14 0.1 5 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "31" 2024-02-05 2024-02-14 0.15 6 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "31" 2024-02-05 2024-02-14 0.2 6.8 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "31" 2024-02-05 2024-02-14 0.25 7.75 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "31" 2024-02-05 2024-02-14 0.3 8 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "31" 2024-02-05 2024-02-14 0.35 9 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "31" 2024-02-05 2024-02-14 0.4 9 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "31" 2024-02-05 2024-02-14 0.45 9.55 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "31" 2024-02-05 2024-02-14 0.5 10 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "31" 2024-02-05 2024-02-14 0.55 11 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "31" 2024-02-05 2024-02-14 0.6 11.4 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "31" 2024-02-05 2024-02-14 0.65 12 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "31" 2024-02-05 2024-02-14 0.7 12.3 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "31" 2024-02-05 2024-02-14 0.75 13 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "31" 2024-02-05 2024-02-14 0.8 14.2 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "31" 2024-02-05 2024-02-14 0.85 16 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "31" 2024-02-05 2024-02-14 0.9 19.1 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "31" 2024-02-05 2024-02-14 0.95 23.05 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "31" 2024-02-05 2024-02-14 0.975 24.525 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "31" 2024-02-05 2024-02-14 0.99 26.06 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "31" 2024-02-05 2024-02-15 0.01 2 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "31" 2024-02-05 2024-02-15 0.025 2 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "31" 2024-02-05 2024-02-15 0.05 3 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "31" 2024-02-05 2024-02-15 0.1 4 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "31" 2024-02-05 2024-02-15 0.15 5 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "31" 2024-02-05 2024-02-15 0.2 6 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "31" 2024-02-05 2024-02-15 0.25 7 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "31" 2024-02-05 2024-02-15 0.3 7 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "31" 2024-02-05 2024-02-15 0.35 8 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "31" 2024-02-05 2024-02-15 0.4 8 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "31" 2024-02-05 2024-02-15 0.45 9 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "31" 2024-02-05 2024-02-15 0.5 9 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "31" 2024-02-05 2024-02-15 0.55 10 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "31" 2024-02-05 2024-02-15 0.6 11 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "31" 2024-02-05 2024-02-15 0.65 12 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "31" 2024-02-05 2024-02-15 0.7 12 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "31" 2024-02-05 2024-02-15 0.75 12.25 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "31" 2024-02-05 2024-02-15 0.8 13.2 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "31" 2024-02-05 2024-02-15 0.85 15 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "31" 2024-02-05 2024-02-15 0.9 16 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "31" 2024-02-05 2024-02-15 0.95 19.05 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "31" 2024-02-05 2024-02-15 0.975 22.575 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "31" 2024-02-05 2024-02-15 0.99 27 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "31" 2024-02-05 2024-02-16 0.01 2 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "31" 2024-02-05 2024-02-16 0.025 3 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "31" 2024-02-05 2024-02-16 0.05 4 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "31" 2024-02-05 2024-02-16 0.1 4 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "31" 2024-02-05 2024-02-16 0.15 5 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "31" 2024-02-05 2024-02-16 0.2 6 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "31" 2024-02-05 2024-02-16 0.25 6 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "31" 2024-02-05 2024-02-16 0.3 7 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "31" 2024-02-05 2024-02-16 0.35 7.65000000000001 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "31" 2024-02-05 2024-02-16 0.4 8 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "31" 2024-02-05 2024-02-16 0.45 8 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "31" 2024-02-05 2024-02-16 0.5 9 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "31" 2024-02-05 2024-02-16 0.55 9 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "31" 2024-02-05 2024-02-16 0.6 10 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "31" 2024-02-05 2024-02-16 0.65 10 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "31" 2024-02-05 2024-02-16 0.7 11 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "31" 2024-02-05 2024-02-16 0.75 11 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "31" 2024-02-05 2024-02-16 0.8 12.2 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "31" 2024-02-05 2024-02-16 0.85 15 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "31" 2024-02-05 2024-02-16 0.9 16 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "31" 2024-02-05 2024-02-16 0.95 18 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "31" 2024-02-05 2024-02-16 0.975 20.1 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "31" 2024-02-05 2024-02-16 0.99 24.07 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "31" 2024-02-05 2024-02-17 0.01 0.99 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "31" 2024-02-05 2024-02-17 0.025 1 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "31" 2024-02-05 2024-02-17 0.05 2 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "31" 2024-02-05 2024-02-17 0.1 5 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "31" 2024-02-05 2024-02-17 0.15 5 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "31" 2024-02-05 2024-02-17 0.2 6 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "31" 2024-02-05 2024-02-17 0.25 6 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "31" 2024-02-05 2024-02-17 0.3 7 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "31" 2024-02-05 2024-02-17 0.35 8 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "31" 2024-02-05 2024-02-17 0.4 8 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "31" 2024-02-05 2024-02-17 0.45 8 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "31" 2024-02-05 2024-02-17 0.5 9 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "31" 2024-02-05 2024-02-17 0.55 9 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "31" 2024-02-05 2024-02-17 0.6 10 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "31" 2024-02-05 2024-02-17 0.65 10 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "31" 2024-02-05 2024-02-17 0.7 11 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "31" 2024-02-05 2024-02-17 0.75 11 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "31" 2024-02-05 2024-02-17 0.8 11 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "31" 2024-02-05 2024-02-17 0.85 12.15 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "31" 2024-02-05 2024-02-17 0.9 14.1 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "31" 2024-02-05 2024-02-17 0.95 16.05 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "31" 2024-02-05 2024-02-17 0.975 17 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "31" 2024-02-05 2024-02-17 0.99 18.02 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "31" 2024-02-05 2024-02-18 0.01 1.99 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "31" 2024-02-05 2024-02-18 0.025 3 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "31" 2024-02-05 2024-02-18 0.05 3 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "31" 2024-02-05 2024-02-18 0.1 4 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "31" 2024-02-05 2024-02-18 0.15 5 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "31" 2024-02-05 2024-02-18 0.2 6 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "31" 2024-02-05 2024-02-18 0.25 7 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "31" 2024-02-05 2024-02-18 0.3 7 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "31" 2024-02-05 2024-02-18 0.35 8 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "31" 2024-02-05 2024-02-18 0.4 9 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "31" 2024-02-05 2024-02-18 0.45 10 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "31" 2024-02-05 2024-02-18 0.5 10 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "31" 2024-02-05 2024-02-18 0.55 10.45 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "31" 2024-02-05 2024-02-18 0.6 11 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "31" 2024-02-05 2024-02-18 0.65 11.35 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "31" 2024-02-05 2024-02-18 0.7 12 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "31" 2024-02-05 2024-02-18 0.75 13 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "31" 2024-02-05 2024-02-18 0.8 14 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "31" 2024-02-05 2024-02-18 0.85 15.15 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "31" 2024-02-05 2024-02-18 0.9 17 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "31" 2024-02-05 2024-02-18 0.95 18.05 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "31" 2024-02-05 2024-02-18 0.975 20.05 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "31" 2024-02-05 2024-02-18 0.99 22.03 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "31" 2024-02-05 2024-02-19 0.01 1.99 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "31" 2024-02-05 2024-02-19 0.025 2 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "31" 2024-02-05 2024-02-19 0.05 4 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "31" 2024-02-05 2024-02-19 0.1 5 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "31" 2024-02-05 2024-02-19 0.15 5 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "31" 2024-02-05 2024-02-19 0.2 6 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "31" 2024-02-05 2024-02-19 0.25 6.75 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "31" 2024-02-05 2024-02-19 0.3 7 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "31" 2024-02-05 2024-02-19 0.35 8 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "31" 2024-02-05 2024-02-19 0.4 8 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "31" 2024-02-05 2024-02-19 0.45 9 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "31" 2024-02-05 2024-02-19 0.5 9 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "31" 2024-02-05 2024-02-19 0.55 10 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "31" 2024-02-05 2024-02-19 0.6 11 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "31" 2024-02-05 2024-02-19 0.65 12 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "31" 2024-02-05 2024-02-19 0.7 13 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "31" 2024-02-05 2024-02-19 0.75 14 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "31" 2024-02-05 2024-02-19 0.8 15 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "31" 2024-02-05 2024-02-19 0.85 16 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "31" 2024-02-05 2024-02-19 0.9 18 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "31" 2024-02-05 2024-02-19 0.95 19.1 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "31" 2024-02-05 2024-02-19 0.975 23.525 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "31" 2024-02-05 2024-02-19 0.99 26.01 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "31" 2024-02-05 2024-02-20 0.01 1 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "31" 2024-02-05 2024-02-20 0.025 2.475 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "31" 2024-02-05 2024-02-20 0.05 3 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "31" 2024-02-05 2024-02-20 0.1 4 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "31" 2024-02-05 2024-02-20 0.15 5 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "31" 2024-02-05 2024-02-20 0.2 5 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "31" 2024-02-05 2024-02-20 0.25 5 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "31" 2024-02-05 2024-02-20 0.3 6 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "31" 2024-02-05 2024-02-20 0.35 7 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "31" 2024-02-05 2024-02-20 0.4 7 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "31" 2024-02-05 2024-02-20 0.45 7 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "31" 2024-02-05 2024-02-20 0.5 8 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "31" 2024-02-05 2024-02-20 0.55 8 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "31" 2024-02-05 2024-02-20 0.6 9 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "31" 2024-02-05 2024-02-20 0.65 10 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "31" 2024-02-05 2024-02-20 0.7 11 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "31" 2024-02-05 2024-02-20 0.75 12 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "31" 2024-02-05 2024-02-20 0.8 12.2 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "31" 2024-02-05 2024-02-20 0.85 14 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "31" 2024-02-05 2024-02-20 0.9 15.1 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "31" 2024-02-05 2024-02-20 0.95 17.05 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "31" 2024-02-05 2024-02-20 0.975 19.525 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "31" 2024-02-05 2024-02-20 0.99 21.06 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "31" 2024-02-05 2024-02-21 0.01 0.99 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "31" 2024-02-05 2024-02-21 0.025 2 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "31" 2024-02-05 2024-02-21 0.05 2.95 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "31" 2024-02-05 2024-02-21 0.1 3.9 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "31" 2024-02-05 2024-02-21 0.15 4 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "31" 2024-02-05 2024-02-21 0.2 5 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "31" 2024-02-05 2024-02-21 0.25 6 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "31" 2024-02-05 2024-02-21 0.3 6 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "31" 2024-02-05 2024-02-21 0.35 7 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "31" 2024-02-05 2024-02-21 0.4 7 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "31" 2024-02-05 2024-02-21 0.45 8 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "31" 2024-02-05 2024-02-21 0.5 8 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "31" 2024-02-05 2024-02-21 0.55 9.45 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "31" 2024-02-05 2024-02-21 0.6 10 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "31" 2024-02-05 2024-02-21 0.65 11 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "31" 2024-02-05 2024-02-21 0.7 12 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "31" 2024-02-05 2024-02-21 0.75 12.25 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "31" 2024-02-05 2024-02-21 0.8 14 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "31" 2024-02-05 2024-02-21 0.85 15 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "31" 2024-02-05 2024-02-21 0.9 18 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "31" 2024-02-05 2024-02-21 0.95 19 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "31" 2024-02-05 2024-02-21 0.975 21.575 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "31" 2024-02-05 2024-02-21 0.99 24.09 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "31" 2024-02-05 2024-02-22 0.01 0.99 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "31" 2024-02-05 2024-02-22 0.025 2 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "31" 2024-02-05 2024-02-22 0.05 2 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "31" 2024-02-05 2024-02-22 0.1 3 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "31" 2024-02-05 2024-02-22 0.15 4 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "31" 2024-02-05 2024-02-22 0.2 5 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "31" 2024-02-05 2024-02-22 0.25 6 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "31" 2024-02-05 2024-02-22 0.3 7 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "31" 2024-02-05 2024-02-22 0.35 7.65000000000001 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "31" 2024-02-05 2024-02-22 0.4 8 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "31" 2024-02-05 2024-02-22 0.45 8 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "31" 2024-02-05 2024-02-22 0.5 9 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "31" 2024-02-05 2024-02-22 0.55 9.45 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "31" 2024-02-05 2024-02-22 0.6 10 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "31" 2024-02-05 2024-02-22 0.65 11 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "31" 2024-02-05 2024-02-22 0.7 12 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "31" 2024-02-05 2024-02-22 0.75 13 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "31" 2024-02-05 2024-02-22 0.8 14 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "31" 2024-02-05 2024-02-22 0.85 15.15 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "31" 2024-02-05 2024-02-22 0.9 18 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "31" 2024-02-05 2024-02-22 0.95 20.05 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "31" 2024-02-05 2024-02-22 0.975 22.525 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "31" 2024-02-05 2024-02-22 0.99 24.1800000000001 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "31" 2024-02-05 2024-02-23 0.01 1 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "31" 2024-02-05 2024-02-23 0.025 1.475 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "31" 2024-02-05 2024-02-23 0.05 2 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "31" 2024-02-05 2024-02-23 0.1 3 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "31" 2024-02-05 2024-02-23 0.15 4 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "31" 2024-02-05 2024-02-23 0.2 4 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "31" 2024-02-05 2024-02-23 0.25 5 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "31" 2024-02-05 2024-02-23 0.3 6 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "31" 2024-02-05 2024-02-23 0.35 6 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "31" 2024-02-05 2024-02-23 0.4 7 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "31" 2024-02-05 2024-02-23 0.45 7 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "31" 2024-02-05 2024-02-23 0.5 8 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "31" 2024-02-05 2024-02-23 0.55 8.45 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "31" 2024-02-05 2024-02-23 0.6 9.40000000000001 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "31" 2024-02-05 2024-02-23 0.65 10 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "31" 2024-02-05 2024-02-23 0.7 10.3 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "31" 2024-02-05 2024-02-23 0.75 11.25 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "31" 2024-02-05 2024-02-23 0.8 12.2 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "31" 2024-02-05 2024-02-23 0.85 14.15 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "31" 2024-02-05 2024-02-23 0.9 15.2 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "31" 2024-02-05 2024-02-23 0.95 20 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "31" 2024-02-05 2024-02-23 0.975 22.05 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "31" 2024-02-05 2024-02-23 0.99 25.1500000000001 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "31" 2024-02-05 2024-02-24 0.01 0.99 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "31" 2024-02-05 2024-02-24 0.025 1.475 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "31" 2024-02-05 2024-02-24 0.05 2 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "31" 2024-02-05 2024-02-24 0.1 3 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "31" 2024-02-05 2024-02-24 0.15 3.85 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "31" 2024-02-05 2024-02-24 0.2 4 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "31" 2024-02-05 2024-02-24 0.25 4 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "31" 2024-02-05 2024-02-24 0.3 5 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "31" 2024-02-05 2024-02-24 0.35 5 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "31" 2024-02-05 2024-02-24 0.4 6 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "31" 2024-02-05 2024-02-24 0.45 6 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "31" 2024-02-05 2024-02-24 0.5 7 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "31" 2024-02-05 2024-02-24 0.55 7 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "31" 2024-02-05 2024-02-24 0.6 8 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "31" 2024-02-05 2024-02-24 0.65 9 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "31" 2024-02-05 2024-02-24 0.7 9.30000000000001 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "31" 2024-02-05 2024-02-24 0.75 10 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "31" 2024-02-05 2024-02-24 0.8 11 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "31" 2024-02-05 2024-02-24 0.85 12.15 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "31" 2024-02-05 2024-02-24 0.9 15 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "31" 2024-02-05 2024-02-24 0.95 17 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "31" 2024-02-05 2024-02-24 0.975 18 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "31" 2024-02-05 2024-02-24 0.99 19.1000000000001 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "31" 2024-02-05 2024-02-25 0.01 1 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "31" 2024-02-05 2024-02-25 0.025 2 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "31" 2024-02-05 2024-02-25 0.05 2.95 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "31" 2024-02-05 2024-02-25 0.1 3 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "31" 2024-02-05 2024-02-25 0.15 4 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "31" 2024-02-05 2024-02-25 0.2 5 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "31" 2024-02-05 2024-02-25 0.25 5.75 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "31" 2024-02-05 2024-02-25 0.3 6 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "31" 2024-02-05 2024-02-25 0.35 7 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "31" 2024-02-05 2024-02-25 0.4 7 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "31" 2024-02-05 2024-02-25 0.45 8 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "31" 2024-02-05 2024-02-25 0.5 8.5 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "31" 2024-02-05 2024-02-25 0.55 9 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "31" 2024-02-05 2024-02-25 0.6 10 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "31" 2024-02-05 2024-02-25 0.65 11 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "31" 2024-02-05 2024-02-25 0.7 12 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "31" 2024-02-05 2024-02-25 0.75 13 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "31" 2024-02-05 2024-02-25 0.8 13 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "31" 2024-02-05 2024-02-25 0.85 14.15 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "31" 2024-02-05 2024-02-25 0.9 16 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "31" 2024-02-05 2024-02-25 0.95 17.05 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "31" 2024-02-05 2024-02-25 0.975 21.525 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "31" 2024-02-05 2024-02-25 0.99 26.1900000000001 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "31" 2024-02-05 2024-02-26 0.01 2 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "31" 2024-02-05 2024-02-26 0.025 3 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "31" 2024-02-05 2024-02-26 0.05 3.95 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "31" 2024-02-05 2024-02-26 0.1 4 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "31" 2024-02-05 2024-02-26 0.15 5 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "31" 2024-02-05 2024-02-26 0.2 6 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "31" 2024-02-05 2024-02-26 0.25 6 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "31" 2024-02-05 2024-02-26 0.3 7 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "31" 2024-02-05 2024-02-26 0.35 7 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "31" 2024-02-05 2024-02-26 0.4 7.6 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "31" 2024-02-05 2024-02-26 0.45 8 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "31" 2024-02-05 2024-02-26 0.5 9 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "31" 2024-02-05 2024-02-26 0.55 10 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "31" 2024-02-05 2024-02-26 0.6 10 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "31" 2024-02-05 2024-02-26 0.65 11 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "31" 2024-02-05 2024-02-26 0.7 12 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "31" 2024-02-05 2024-02-26 0.75 13 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "31" 2024-02-05 2024-02-26 0.8 15 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "31" 2024-02-05 2024-02-26 0.85 16 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "31" 2024-02-05 2024-02-26 0.9 17 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "31" 2024-02-05 2024-02-26 0.95 19.1 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "31" 2024-02-05 2024-02-26 0.975 21.525 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "31" 2024-02-05 2024-02-26 0.99 22.3200000000002 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "31" 2024-02-05 2024-02-27 0.01 0 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "31" 2024-02-05 2024-02-27 0.025 0 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "31" 2024-02-05 2024-02-27 0.05 1 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "31" 2024-02-05 2024-02-27 0.1 2 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "31" 2024-02-05 2024-02-27 0.15 3.85 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "31" 2024-02-05 2024-02-27 0.2 5 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "31" 2024-02-05 2024-02-27 0.25 5 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "31" 2024-02-05 2024-02-27 0.3 6 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "31" 2024-02-05 2024-02-27 0.35 6 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "31" 2024-02-05 2024-02-27 0.4 7 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "31" 2024-02-05 2024-02-27 0.45 7 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "31" 2024-02-05 2024-02-27 0.5 8 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "31" 2024-02-05 2024-02-27 0.55 8 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "31" 2024-02-05 2024-02-27 0.6 9.40000000000001 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "31" 2024-02-05 2024-02-27 0.65 10 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "31" 2024-02-05 2024-02-27 0.7 11 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "31" 2024-02-05 2024-02-27 0.75 12 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "31" 2024-02-05 2024-02-27 0.8 13 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "31" 2024-02-05 2024-02-27 0.85 14.15 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "31" 2024-02-05 2024-02-27 0.9 16.1 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "31" 2024-02-05 2024-02-27 0.95 20.1 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "31" 2024-02-05 2024-02-27 0.975 24 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "31" 2024-02-05 2024-02-27 0.99 25.1100000000001 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "31" 2024-02-05 2024-02-28 0.01 0.99 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "31" 2024-02-05 2024-02-28 0.025 1 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "31" 2024-02-05 2024-02-28 0.05 1.95 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "31" 2024-02-05 2024-02-28 0.1 2.9 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "31" 2024-02-05 2024-02-28 0.15 3 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "31" 2024-02-05 2024-02-28 0.2 4 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "31" 2024-02-05 2024-02-28 0.25 5 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "31" 2024-02-05 2024-02-28 0.3 5 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "31" 2024-02-05 2024-02-28 0.35 6 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "31" 2024-02-05 2024-02-28 0.4 6.6 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "31" 2024-02-05 2024-02-28 0.45 7 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "31" 2024-02-05 2024-02-28 0.5 8 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "31" 2024-02-05 2024-02-28 0.55 9 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "31" 2024-02-05 2024-02-28 0.6 9 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "31" 2024-02-05 2024-02-28 0.65 10 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "31" 2024-02-05 2024-02-28 0.7 11 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "31" 2024-02-05 2024-02-28 0.75 11 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "31" 2024-02-05 2024-02-28 0.8 11.2 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "31" 2024-02-05 2024-02-28 0.85 14 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "31" 2024-02-05 2024-02-28 0.9 18 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "31" 2024-02-05 2024-02-28 0.95 20.1 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "31" 2024-02-05 2024-02-28 0.975 23.575 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "31" 2024-02-05 2024-02-28 0.99 33.02 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "31" 2024-02-05 2024-02-29 0.01 1 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "31" 2024-02-05 2024-02-29 0.025 1 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "31" 2024-02-05 2024-02-29 0.05 1.95 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "31" 2024-02-05 2024-02-29 0.1 3 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "31" 2024-02-05 2024-02-29 0.15 4 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "31" 2024-02-05 2024-02-29 0.2 4 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "31" 2024-02-05 2024-02-29 0.25 5 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "31" 2024-02-05 2024-02-29 0.3 6 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "31" 2024-02-05 2024-02-29 0.35 6 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "31" 2024-02-05 2024-02-29 0.4 7 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "31" 2024-02-05 2024-02-29 0.45 7 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "31" 2024-02-05 2024-02-29 0.5 8 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "31" 2024-02-05 2024-02-29 0.55 8 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "31" 2024-02-05 2024-02-29 0.6 9 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "31" 2024-02-05 2024-02-29 0.65 9.35000000000001 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "31" 2024-02-05 2024-02-29 0.7 10 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "31" 2024-02-05 2024-02-29 0.75 11 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "31" 2024-02-05 2024-02-29 0.8 12 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "31" 2024-02-05 2024-02-29 0.85 12.15 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "31" 2024-02-05 2024-02-29 0.9 15.3 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "31" 2024-02-05 2024-02-29 0.95 19 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "31" 2024-02-05 2024-02-29 0.975 19.525 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "31" 2024-02-05 2024-02-29 0.99 22.1700000000001 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "31" 2024-02-05 2024-03-01 0.01 1 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "31" 2024-02-05 2024-03-01 0.025 1 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "31" 2024-02-05 2024-03-01 0.05 1 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "31" 2024-02-05 2024-03-01 0.1 2.9 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "31" 2024-02-05 2024-03-01 0.15 3 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "31" 2024-02-05 2024-03-01 0.2 4 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "31" 2024-02-05 2024-03-01 0.25 5 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "31" 2024-02-05 2024-03-01 0.3 5 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "31" 2024-02-05 2024-03-01 0.35 5.65000000000001 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "31" 2024-02-05 2024-03-01 0.4 6 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "31" 2024-02-05 2024-03-01 0.45 6 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "31" 2024-02-05 2024-03-01 0.5 7 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "31" 2024-02-05 2024-03-01 0.55 8 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "31" 2024-02-05 2024-03-01 0.6 8 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "31" 2024-02-05 2024-03-01 0.65 9 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "31" 2024-02-05 2024-03-01 0.7 10.3 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "31" 2024-02-05 2024-03-01 0.75 12.25 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "31" 2024-02-05 2024-03-01 0.8 13.2 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "31" 2024-02-05 2024-03-01 0.85 14.15 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "31" 2024-02-05 2024-03-01 0.9 16.1 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "31" 2024-02-05 2024-03-01 0.95 20 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "31" 2024-02-05 2024-03-01 0.975 24 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "31" 2024-02-05 2024-03-01 0.99 25 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "31" 2024-02-05 2024-03-02 0.01 0.99 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "31" 2024-02-05 2024-03-02 0.025 1 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "31" 2024-02-05 2024-03-02 0.05 1.95 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "31" 2024-02-05 2024-03-02 0.1 3 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "31" 2024-02-05 2024-03-02 0.15 3 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "31" 2024-02-05 2024-03-02 0.2 4 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "31" 2024-02-05 2024-03-02 0.25 4 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "31" 2024-02-05 2024-03-02 0.3 5 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "31" 2024-02-05 2024-03-02 0.35 5 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "31" 2024-02-05 2024-03-02 0.4 6 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "31" 2024-02-05 2024-03-02 0.45 6.55 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "31" 2024-02-05 2024-03-02 0.5 7 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "31" 2024-02-05 2024-03-02 0.55 7.45 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "31" 2024-02-05 2024-03-02 0.6 8 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "31" 2024-02-05 2024-03-02 0.65 9 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "31" 2024-02-05 2024-03-02 0.7 9 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "31" 2024-02-05 2024-03-02 0.75 9 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "31" 2024-02-05 2024-03-02 0.8 10 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "31" 2024-02-05 2024-03-02 0.85 11 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "31" 2024-02-05 2024-03-02 0.9 13.2 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "31" 2024-02-05 2024-03-02 0.95 16.05 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "31" 2024-02-05 2024-03-02 0.975 18.05 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "31" 2024-02-05 2024-03-02 0.99 20.2000000000001 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "31" 2024-02-05 2024-03-03 0.01 0 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "31" 2024-02-05 2024-03-03 0.025 0.475 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "31" 2024-02-05 2024-03-03 0.05 1 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "31" 2024-02-05 2024-03-03 0.1 3 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "31" 2024-02-05 2024-03-03 0.15 4 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "31" 2024-02-05 2024-03-03 0.2 4 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "31" 2024-02-05 2024-03-03 0.25 5 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "31" 2024-02-05 2024-03-03 0.3 6.7 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "31" 2024-02-05 2024-03-03 0.35 7 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "31" 2024-02-05 2024-03-03 0.4 7 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "31" 2024-02-05 2024-03-03 0.45 8 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "31" 2024-02-05 2024-03-03 0.5 8 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "31" 2024-02-05 2024-03-03 0.55 9 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "31" 2024-02-05 2024-03-03 0.6 9 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "31" 2024-02-05 2024-03-03 0.65 10 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "31" 2024-02-05 2024-03-03 0.7 11 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "31" 2024-02-05 2024-03-03 0.75 12 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "31" 2024-02-05 2024-03-03 0.8 13 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "31" 2024-02-05 2024-03-03 0.85 13.15 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "31" 2024-02-05 2024-03-03 0.9 16 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "31" 2024-02-05 2024-03-03 0.95 17 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "31" 2024-02-05 2024-03-03 0.975 18.525 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "31" 2024-02-05 2024-03-03 0.99 21.2200000000001 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "31" 2024-02-05 2024-03-04 0.01 1.99 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "31" 2024-02-05 2024-03-04 0.025 2 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "31" 2024-02-05 2024-03-04 0.05 2 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "31" 2024-02-05 2024-03-04 0.1 2 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "31" 2024-02-05 2024-03-04 0.15 3 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "31" 2024-02-05 2024-03-04 0.2 4 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "31" 2024-02-05 2024-03-04 0.25 5.75 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "31" 2024-02-05 2024-03-04 0.3 6 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "31" 2024-02-05 2024-03-04 0.35 6.65000000000001 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "31" 2024-02-05 2024-03-04 0.4 7 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "31" 2024-02-05 2024-03-04 0.45 8 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "31" 2024-02-05 2024-03-04 0.5 8.5 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "31" 2024-02-05 2024-03-04 0.55 9 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "31" 2024-02-05 2024-03-04 0.6 10.4 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "31" 2024-02-05 2024-03-04 0.65 11.35 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "31" 2024-02-05 2024-03-04 0.7 13 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "31" 2024-02-05 2024-03-04 0.75 13 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "31" 2024-02-05 2024-03-04 0.8 14 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "31" 2024-02-05 2024-03-04 0.85 16 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "31" 2024-02-05 2024-03-04 0.9 18 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "31" 2024-02-05 2024-03-04 0.95 22.05 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "31" 2024-02-05 2024-03-04 0.975 23 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "31" 2024-02-05 2024-03-04 0.99 27.2500000000001 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "33" 2024-02-05 2024-02-06 0.01 2 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "33" 2024-02-05 2024-02-06 0.025 3 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "33" 2024-02-05 2024-02-06 0.05 4 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "33" 2024-02-05 2024-02-06 0.1 5 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "33" 2024-02-05 2024-02-06 0.15 6 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "33" 2024-02-05 2024-02-06 0.2 6.8 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "33" 2024-02-05 2024-02-06 0.25 7 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "33" 2024-02-05 2024-02-06 0.3 7 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "33" 2024-02-05 2024-02-06 0.35 8 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "33" 2024-02-05 2024-02-06 0.4 9 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "33" 2024-02-05 2024-02-06 0.45 9 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "33" 2024-02-05 2024-02-06 0.5 10 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "33" 2024-02-05 2024-02-06 0.55 10 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "33" 2024-02-05 2024-02-06 0.6 11 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "33" 2024-02-05 2024-02-06 0.65 11 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "33" 2024-02-05 2024-02-06 0.7 12 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "33" 2024-02-05 2024-02-06 0.75 12 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "33" 2024-02-05 2024-02-06 0.8 13 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "33" 2024-02-05 2024-02-06 0.85 14 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "33" 2024-02-05 2024-02-06 0.9 16 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "33" 2024-02-05 2024-02-06 0.95 18 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "33" 2024-02-05 2024-02-06 0.975 19.525 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "33" 2024-02-05 2024-02-06 0.99 20.03 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "33" 2024-02-05 2024-02-07 0.01 1.99 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "33" 2024-02-05 2024-02-07 0.025 3 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "33" 2024-02-05 2024-02-07 0.05 3 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "33" 2024-02-05 2024-02-07 0.1 6 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "33" 2024-02-05 2024-02-07 0.15 6 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "33" 2024-02-05 2024-02-07 0.2 6.8 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "33" 2024-02-05 2024-02-07 0.25 7 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "33" 2024-02-05 2024-02-07 0.3 8 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "33" 2024-02-05 2024-02-07 0.35 8 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "33" 2024-02-05 2024-02-07 0.4 8.6 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "33" 2024-02-05 2024-02-07 0.45 9 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "33" 2024-02-05 2024-02-07 0.5 10 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "33" 2024-02-05 2024-02-07 0.55 10.45 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "33" 2024-02-05 2024-02-07 0.6 11.4 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "33" 2024-02-05 2024-02-07 0.65 12 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "33" 2024-02-05 2024-02-07 0.7 12.3 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "33" 2024-02-05 2024-02-07 0.75 13 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "33" 2024-02-05 2024-02-07 0.8 14 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "33" 2024-02-05 2024-02-07 0.85 14.15 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "33" 2024-02-05 2024-02-07 0.9 16 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "33" 2024-02-05 2024-02-07 0.95 17 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "33" 2024-02-05 2024-02-07 0.975 18 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "33" 2024-02-05 2024-02-07 0.99 23.02 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "33" 2024-02-05 2024-02-08 0.01 2.98 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "33" 2024-02-05 2024-02-08 0.025 3 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "33" 2024-02-05 2024-02-08 0.05 3.95 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "33" 2024-02-05 2024-02-08 0.1 4 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "33" 2024-02-05 2024-02-08 0.15 5 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "33" 2024-02-05 2024-02-08 0.2 5.8 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "33" 2024-02-05 2024-02-08 0.25 6 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "33" 2024-02-05 2024-02-08 0.3 6.7 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "33" 2024-02-05 2024-02-08 0.35 7 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "33" 2024-02-05 2024-02-08 0.4 7 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "33" 2024-02-05 2024-02-08 0.45 8 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "33" 2024-02-05 2024-02-08 0.5 8 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "33" 2024-02-05 2024-02-08 0.55 9 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "33" 2024-02-05 2024-02-08 0.6 9 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "33" 2024-02-05 2024-02-08 0.65 10 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "33" 2024-02-05 2024-02-08 0.7 10 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "33" 2024-02-05 2024-02-08 0.75 10 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "33" 2024-02-05 2024-02-08 0.8 12 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "33" 2024-02-05 2024-02-08 0.85 13 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "33" 2024-02-05 2024-02-08 0.9 14 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "33" 2024-02-05 2024-02-08 0.95 16.05 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "33" 2024-02-05 2024-02-08 0.975 20.05 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "33" 2024-02-05 2024-02-08 0.99 21.01 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "33" 2024-02-05 2024-02-09 0.01 2.99 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "33" 2024-02-05 2024-02-09 0.025 3 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "33" 2024-02-05 2024-02-09 0.05 3.95 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "33" 2024-02-05 2024-02-09 0.1 4 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "33" 2024-02-05 2024-02-09 0.15 5 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "33" 2024-02-05 2024-02-09 0.2 6 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "33" 2024-02-05 2024-02-09 0.25 6 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "33" 2024-02-05 2024-02-09 0.3 7 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "33" 2024-02-05 2024-02-09 0.35 7 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "33" 2024-02-05 2024-02-09 0.4 7 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "33" 2024-02-05 2024-02-09 0.45 8 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "33" 2024-02-05 2024-02-09 0.5 9 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "33" 2024-02-05 2024-02-09 0.55 9 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "33" 2024-02-05 2024-02-09 0.6 10 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "33" 2024-02-05 2024-02-09 0.65 11 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "33" 2024-02-05 2024-02-09 0.7 12 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "33" 2024-02-05 2024-02-09 0.75 12 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "33" 2024-02-05 2024-02-09 0.8 13 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "33" 2024-02-05 2024-02-09 0.85 15 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "33" 2024-02-05 2024-02-09 0.9 16 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "33" 2024-02-05 2024-02-09 0.95 17.05 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "33" 2024-02-05 2024-02-09 0.975 18 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "33" 2024-02-05 2024-02-09 0.99 19.1000000000001 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "33" 2024-02-05 2024-02-10 0.01 1 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "33" 2024-02-05 2024-02-10 0.025 1.475 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "33" 2024-02-05 2024-02-10 0.05 3 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "33" 2024-02-05 2024-02-10 0.1 3 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "33" 2024-02-05 2024-02-10 0.15 3.85 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "33" 2024-02-05 2024-02-10 0.2 4 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "33" 2024-02-05 2024-02-10 0.25 4 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "33" 2024-02-05 2024-02-10 0.3 5 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "33" 2024-02-05 2024-02-10 0.35 5 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "33" 2024-02-05 2024-02-10 0.4 5 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "33" 2024-02-05 2024-02-10 0.45 6 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "33" 2024-02-05 2024-02-10 0.5 7 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "33" 2024-02-05 2024-02-10 0.55 7 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "33" 2024-02-05 2024-02-10 0.6 8 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "33" 2024-02-05 2024-02-10 0.65 8 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "33" 2024-02-05 2024-02-10 0.7 8 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "33" 2024-02-05 2024-02-10 0.75 9 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "33" 2024-02-05 2024-02-10 0.8 10 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "33" 2024-02-05 2024-02-10 0.85 10 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "33" 2024-02-05 2024-02-10 0.9 10.1 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "33" 2024-02-05 2024-02-10 0.95 12 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "33" 2024-02-05 2024-02-10 0.975 14.575 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "33" 2024-02-05 2024-02-10 0.99 17.02 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "33" 2024-02-05 2024-02-11 0.01 2 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "33" 2024-02-05 2024-02-11 0.025 2 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "33" 2024-02-05 2024-02-11 0.05 2 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "33" 2024-02-05 2024-02-11 0.1 3 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "33" 2024-02-05 2024-02-11 0.15 4 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "33" 2024-02-05 2024-02-11 0.2 4 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "33" 2024-02-05 2024-02-11 0.25 5 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "33" 2024-02-05 2024-02-11 0.3 5 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "33" 2024-02-05 2024-02-11 0.35 6 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "33" 2024-02-05 2024-02-11 0.4 6 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "33" 2024-02-05 2024-02-11 0.45 7 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "33" 2024-02-05 2024-02-11 0.5 7 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "33" 2024-02-05 2024-02-11 0.55 8 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "33" 2024-02-05 2024-02-11 0.6 9 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "33" 2024-02-05 2024-02-11 0.65 9.35000000000001 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "33" 2024-02-05 2024-02-11 0.7 10 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "33" 2024-02-05 2024-02-11 0.75 11 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "33" 2024-02-05 2024-02-11 0.8 12 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "33" 2024-02-05 2024-02-11 0.85 12 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "33" 2024-02-05 2024-02-11 0.9 13.1 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "33" 2024-02-05 2024-02-11 0.95 16.15 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "33" 2024-02-05 2024-02-11 0.975 20 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "33" 2024-02-05 2024-02-11 0.99 22 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "33" 2024-02-05 2024-02-12 0.01 0.99 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "33" 2024-02-05 2024-02-12 0.025 2.475 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "33" 2024-02-05 2024-02-12 0.05 3 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "33" 2024-02-05 2024-02-12 0.1 4 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "33" 2024-02-05 2024-02-12 0.15 5 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "33" 2024-02-05 2024-02-12 0.2 6 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "33" 2024-02-05 2024-02-12 0.25 6.75 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "33" 2024-02-05 2024-02-12 0.3 7 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "33" 2024-02-05 2024-02-12 0.35 7 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "33" 2024-02-05 2024-02-12 0.4 8 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "33" 2024-02-05 2024-02-12 0.45 8 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "33" 2024-02-05 2024-02-12 0.5 9 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "33" 2024-02-05 2024-02-12 0.55 9 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "33" 2024-02-05 2024-02-12 0.6 10 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "33" 2024-02-05 2024-02-12 0.65 10 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "33" 2024-02-05 2024-02-12 0.7 11 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "33" 2024-02-05 2024-02-12 0.75 12 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "33" 2024-02-05 2024-02-12 0.8 12.2 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "33" 2024-02-05 2024-02-12 0.85 14 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "33" 2024-02-05 2024-02-12 0.9 15 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "33" 2024-02-05 2024-02-12 0.95 16 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "33" 2024-02-05 2024-02-12 0.975 17.525 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "33" 2024-02-05 2024-02-12 0.99 19.08 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "33" 2024-02-05 2024-02-13 0.01 1 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "33" 2024-02-05 2024-02-13 0.025 2 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "33" 2024-02-05 2024-02-13 0.05 3 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "33" 2024-02-05 2024-02-13 0.1 4 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "33" 2024-02-05 2024-02-13 0.15 4.85 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "33" 2024-02-05 2024-02-13 0.2 5 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "33" 2024-02-05 2024-02-13 0.25 6 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "33" 2024-02-05 2024-02-13 0.3 6 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "33" 2024-02-05 2024-02-13 0.35 6.65000000000001 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "33" 2024-02-05 2024-02-13 0.4 7 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "33" 2024-02-05 2024-02-13 0.45 7 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "33" 2024-02-05 2024-02-13 0.5 8 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "33" 2024-02-05 2024-02-13 0.55 8 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "33" 2024-02-05 2024-02-13 0.6 9 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "33" 2024-02-05 2024-02-13 0.65 9 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "33" 2024-02-05 2024-02-13 0.7 10 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "33" 2024-02-05 2024-02-13 0.75 11 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "33" 2024-02-05 2024-02-13 0.8 13 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "33" 2024-02-05 2024-02-13 0.85 13 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "33" 2024-02-05 2024-02-13 0.9 15 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "33" 2024-02-05 2024-02-13 0.95 17.05 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "33" 2024-02-05 2024-02-13 0.975 20 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "33" 2024-02-05 2024-02-13 0.99 22.01 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "33" 2024-02-05 2024-02-14 0.01 2 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "33" 2024-02-05 2024-02-14 0.025 3.475 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "33" 2024-02-05 2024-02-14 0.05 4 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "33" 2024-02-05 2024-02-14 0.1 5 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "33" 2024-02-05 2024-02-14 0.15 5 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "33" 2024-02-05 2024-02-14 0.2 6 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "33" 2024-02-05 2024-02-14 0.25 6 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "33" 2024-02-05 2024-02-14 0.3 7 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "33" 2024-02-05 2024-02-14 0.35 7 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "33" 2024-02-05 2024-02-14 0.4 7 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "33" 2024-02-05 2024-02-14 0.45 8 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "33" 2024-02-05 2024-02-14 0.5 8 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "33" 2024-02-05 2024-02-14 0.55 9 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "33" 2024-02-05 2024-02-14 0.6 9 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "33" 2024-02-05 2024-02-14 0.65 10 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "33" 2024-02-05 2024-02-14 0.7 11 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "33" 2024-02-05 2024-02-14 0.75 12 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "33" 2024-02-05 2024-02-14 0.8 13 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "33" 2024-02-05 2024-02-14 0.85 13.15 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "33" 2024-02-05 2024-02-14 0.9 16 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "33" 2024-02-05 2024-02-14 0.95 18.05 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "33" 2024-02-05 2024-02-14 0.975 20.525 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "33" 2024-02-05 2024-02-14 0.99 22.01 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "33" 2024-02-05 2024-02-15 0.01 1 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "33" 2024-02-05 2024-02-15 0.025 2 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "33" 2024-02-05 2024-02-15 0.05 2.95 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "33" 2024-02-05 2024-02-15 0.1 3 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "33" 2024-02-05 2024-02-15 0.15 3.85 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "33" 2024-02-05 2024-02-15 0.2 4 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "33" 2024-02-05 2024-02-15 0.25 4 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "33" 2024-02-05 2024-02-15 0.3 5 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "33" 2024-02-05 2024-02-15 0.35 5.65000000000001 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "33" 2024-02-05 2024-02-15 0.4 6 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "33" 2024-02-05 2024-02-15 0.45 6 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "33" 2024-02-05 2024-02-15 0.5 7 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "33" 2024-02-05 2024-02-15 0.55 7 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "33" 2024-02-05 2024-02-15 0.6 8 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "33" 2024-02-05 2024-02-15 0.65 9 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "33" 2024-02-05 2024-02-15 0.7 9 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "33" 2024-02-05 2024-02-15 0.75 10 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "33" 2024-02-05 2024-02-15 0.8 10 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "33" 2024-02-05 2024-02-15 0.85 12 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "33" 2024-02-05 2024-02-15 0.9 13 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "33" 2024-02-05 2024-02-15 0.95 14.05 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "33" 2024-02-05 2024-02-15 0.975 17.05 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "33" 2024-02-05 2024-02-15 0.99 19.03 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "33" 2024-02-05 2024-02-16 0.01 1 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "33" 2024-02-05 2024-02-16 0.025 2.475 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "33" 2024-02-05 2024-02-16 0.05 3 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "33" 2024-02-05 2024-02-16 0.1 4 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "33" 2024-02-05 2024-02-16 0.15 4 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "33" 2024-02-05 2024-02-16 0.2 5 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "33" 2024-02-05 2024-02-16 0.25 5 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "33" 2024-02-05 2024-02-16 0.3 6 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "33" 2024-02-05 2024-02-16 0.35 6 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "33" 2024-02-05 2024-02-16 0.4 6.6 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "33" 2024-02-05 2024-02-16 0.45 7 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "33" 2024-02-05 2024-02-16 0.5 8 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "33" 2024-02-05 2024-02-16 0.55 9 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "33" 2024-02-05 2024-02-16 0.6 9 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "33" 2024-02-05 2024-02-16 0.65 10 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "33" 2024-02-05 2024-02-16 0.7 10.3 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "33" 2024-02-05 2024-02-16 0.75 11 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "33" 2024-02-05 2024-02-16 0.8 12 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "33" 2024-02-05 2024-02-16 0.85 13 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "33" 2024-02-05 2024-02-16 0.9 14.1 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "33" 2024-02-05 2024-02-16 0.95 18 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "33" 2024-02-05 2024-02-16 0.975 18.525 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "33" 2024-02-05 2024-02-16 0.99 20.1000000000001 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "33" 2024-02-05 2024-02-17 0.01 0.99 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "33" 2024-02-05 2024-02-17 0.025 1 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "33" 2024-02-05 2024-02-17 0.05 1 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "33" 2024-02-05 2024-02-17 0.1 2.9 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "33" 2024-02-05 2024-02-17 0.15 3 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "33" 2024-02-05 2024-02-17 0.2 4 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "33" 2024-02-05 2024-02-17 0.25 4 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "33" 2024-02-05 2024-02-17 0.3 5 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "33" 2024-02-05 2024-02-17 0.35 5 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "33" 2024-02-05 2024-02-17 0.4 6 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "33" 2024-02-05 2024-02-17 0.45 6 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "33" 2024-02-05 2024-02-17 0.5 7 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "33" 2024-02-05 2024-02-17 0.55 7 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "33" 2024-02-05 2024-02-17 0.6 7 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "33" 2024-02-05 2024-02-17 0.65 8 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "33" 2024-02-05 2024-02-17 0.7 8 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "33" 2024-02-05 2024-02-17 0.75 9 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "33" 2024-02-05 2024-02-17 0.8 10 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "33" 2024-02-05 2024-02-17 0.85 11 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "33" 2024-02-05 2024-02-17 0.9 12.1 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "33" 2024-02-05 2024-02-17 0.95 14 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "33" 2024-02-05 2024-02-17 0.975 14 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "33" 2024-02-05 2024-02-17 0.99 15.03 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "33" 2024-02-05 2024-02-18 0.01 0 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "33" 2024-02-05 2024-02-18 0.025 1 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "33" 2024-02-05 2024-02-18 0.05 2 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "33" 2024-02-05 2024-02-18 0.1 2.9 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "33" 2024-02-05 2024-02-18 0.15 3 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "33" 2024-02-05 2024-02-18 0.2 4 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "33" 2024-02-05 2024-02-18 0.25 4 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "33" 2024-02-05 2024-02-18 0.3 4.7 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "33" 2024-02-05 2024-02-18 0.35 5 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "33" 2024-02-05 2024-02-18 0.4 5 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "33" 2024-02-05 2024-02-18 0.45 6 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "33" 2024-02-05 2024-02-18 0.5 6 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "33" 2024-02-05 2024-02-18 0.55 6 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "33" 2024-02-05 2024-02-18 0.6 7 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "33" 2024-02-05 2024-02-18 0.65 8 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "33" 2024-02-05 2024-02-18 0.7 8.30000000000001 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "33" 2024-02-05 2024-02-18 0.75 9 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "33" 2024-02-05 2024-02-18 0.8 10 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "33" 2024-02-05 2024-02-18 0.85 10 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "33" 2024-02-05 2024-02-18 0.9 11 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "33" 2024-02-05 2024-02-18 0.95 12.05 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "33" 2024-02-05 2024-02-18 0.975 14.05 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "33" 2024-02-05 2024-02-18 0.99 15.1000000000001 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "33" 2024-02-05 2024-02-19 0.01 1 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "33" 2024-02-05 2024-02-19 0.025 1 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "33" 2024-02-05 2024-02-19 0.05 2 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "33" 2024-02-05 2024-02-19 0.1 2 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "33" 2024-02-05 2024-02-19 0.15 3.85 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "33" 2024-02-05 2024-02-19 0.2 4.8 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "33" 2024-02-05 2024-02-19 0.25 5 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "33" 2024-02-05 2024-02-19 0.3 5 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "33" 2024-02-05 2024-02-19 0.35 6 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "33" 2024-02-05 2024-02-19 0.4 6 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "33" 2024-02-05 2024-02-19 0.45 7 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "33" 2024-02-05 2024-02-19 0.5 7 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "33" 2024-02-05 2024-02-19 0.55 8 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "33" 2024-02-05 2024-02-19 0.6 9 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "33" 2024-02-05 2024-02-19 0.65 9 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "33" 2024-02-05 2024-02-19 0.7 10 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "33" 2024-02-05 2024-02-19 0.75 10 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "33" 2024-02-05 2024-02-19 0.8 11 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "33" 2024-02-05 2024-02-19 0.85 11.15 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "33" 2024-02-05 2024-02-19 0.9 13.2 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "33" 2024-02-05 2024-02-19 0.95 16 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "33" 2024-02-05 2024-02-19 0.975 18.05 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "33" 2024-02-05 2024-02-19 0.99 22.02 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "33" 2024-02-05 2024-02-20 0.01 1 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "33" 2024-02-05 2024-02-20 0.025 1.475 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "33" 2024-02-05 2024-02-20 0.05 2 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "33" 2024-02-05 2024-02-20 0.1 3 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "33" 2024-02-05 2024-02-20 0.15 4 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "33" 2024-02-05 2024-02-20 0.2 5 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "33" 2024-02-05 2024-02-20 0.25 5 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "33" 2024-02-05 2024-02-20 0.3 5.7 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "33" 2024-02-05 2024-02-20 0.35 6 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "33" 2024-02-05 2024-02-20 0.4 7 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "33" 2024-02-05 2024-02-20 0.45 7 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "33" 2024-02-05 2024-02-20 0.5 8 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "33" 2024-02-05 2024-02-20 0.55 8 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "33" 2024-02-05 2024-02-20 0.6 8 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "33" 2024-02-05 2024-02-20 0.65 9 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "33" 2024-02-05 2024-02-20 0.7 9 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "33" 2024-02-05 2024-02-20 0.75 10 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "33" 2024-02-05 2024-02-20 0.8 11 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "33" 2024-02-05 2024-02-20 0.85 12 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "33" 2024-02-05 2024-02-20 0.9 13.1 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "33" 2024-02-05 2024-02-20 0.95 17 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "33" 2024-02-05 2024-02-20 0.975 19.525 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "33" 2024-02-05 2024-02-20 0.99 21.02 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "33" 2024-02-05 2024-02-21 0.01 0.99 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "33" 2024-02-05 2024-02-21 0.025 1.475 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "33" 2024-02-05 2024-02-21 0.05 2 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "33" 2024-02-05 2024-02-21 0.1 3 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "33" 2024-02-05 2024-02-21 0.15 4 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "33" 2024-02-05 2024-02-21 0.2 4 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "33" 2024-02-05 2024-02-21 0.25 5 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "33" 2024-02-05 2024-02-21 0.3 5 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "33" 2024-02-05 2024-02-21 0.35 5.65000000000001 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "33" 2024-02-05 2024-02-21 0.4 6 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "33" 2024-02-05 2024-02-21 0.45 6 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "33" 2024-02-05 2024-02-21 0.5 7 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "33" 2024-02-05 2024-02-21 0.55 8 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "33" 2024-02-05 2024-02-21 0.6 8 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "33" 2024-02-05 2024-02-21 0.65 9 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "33" 2024-02-05 2024-02-21 0.7 10 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "33" 2024-02-05 2024-02-21 0.75 11 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "33" 2024-02-05 2024-02-21 0.8 12 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "33" 2024-02-05 2024-02-21 0.85 12.15 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "33" 2024-02-05 2024-02-21 0.9 14 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "33" 2024-02-05 2024-02-21 0.95 16.1 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "33" 2024-02-05 2024-02-21 0.975 21.1 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "33" 2024-02-05 2024-02-21 0.99 27.05 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "33" 2024-02-05 2024-02-22 0.01 1 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "33" 2024-02-05 2024-02-22 0.025 1.475 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "33" 2024-02-05 2024-02-22 0.05 2 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "33" 2024-02-05 2024-02-22 0.1 3 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "33" 2024-02-05 2024-02-22 0.15 3 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "33" 2024-02-05 2024-02-22 0.2 3.8 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "33" 2024-02-05 2024-02-22 0.25 4 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "33" 2024-02-05 2024-02-22 0.3 5 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "33" 2024-02-05 2024-02-22 0.35 5 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "33" 2024-02-05 2024-02-22 0.4 5 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "33" 2024-02-05 2024-02-22 0.45 6 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "33" 2024-02-05 2024-02-22 0.5 6 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "33" 2024-02-05 2024-02-22 0.55 6.45 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "33" 2024-02-05 2024-02-22 0.6 7 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "33" 2024-02-05 2024-02-22 0.65 8 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "33" 2024-02-05 2024-02-22 0.7 9 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "33" 2024-02-05 2024-02-22 0.75 10 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "33" 2024-02-05 2024-02-22 0.8 11 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "33" 2024-02-05 2024-02-22 0.85 11.15 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "33" 2024-02-05 2024-02-22 0.9 12.1 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "33" 2024-02-05 2024-02-22 0.95 15 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "33" 2024-02-05 2024-02-22 0.975 15 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "33" 2024-02-05 2024-02-22 0.99 16.1500000000001 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "33" 2024-02-05 2024-02-23 0.01 0.99 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "33" 2024-02-05 2024-02-23 0.025 2 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "33" 2024-02-05 2024-02-23 0.05 2 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "33" 2024-02-05 2024-02-23 0.1 3 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "33" 2024-02-05 2024-02-23 0.15 3 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "33" 2024-02-05 2024-02-23 0.2 4 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "33" 2024-02-05 2024-02-23 0.25 4 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "33" 2024-02-05 2024-02-23 0.3 5 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "33" 2024-02-05 2024-02-23 0.35 6 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "33" 2024-02-05 2024-02-23 0.4 6 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "33" 2024-02-05 2024-02-23 0.45 6 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "33" 2024-02-05 2024-02-23 0.5 7 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "33" 2024-02-05 2024-02-23 0.55 7 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "33" 2024-02-05 2024-02-23 0.6 8 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "33" 2024-02-05 2024-02-23 0.65 8.35000000000001 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "33" 2024-02-05 2024-02-23 0.7 9 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "33" 2024-02-05 2024-02-23 0.75 10 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "33" 2024-02-05 2024-02-23 0.8 11 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "33" 2024-02-05 2024-02-23 0.85 12.15 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "33" 2024-02-05 2024-02-23 0.9 14.1 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "33" 2024-02-05 2024-02-23 0.95 17 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "33" 2024-02-05 2024-02-23 0.975 17.525 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "33" 2024-02-05 2024-02-23 0.99 19.08 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "33" 2024-02-05 2024-02-24 0.01 0 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "33" 2024-02-05 2024-02-24 0.025 0.475 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "33" 2024-02-05 2024-02-24 0.05 1 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "33" 2024-02-05 2024-02-24 0.1 1.9 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "33" 2024-02-05 2024-02-24 0.15 2 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "33" 2024-02-05 2024-02-24 0.2 3 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "33" 2024-02-05 2024-02-24 0.25 3 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "33" 2024-02-05 2024-02-24 0.3 4 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "33" 2024-02-05 2024-02-24 0.35 4 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "33" 2024-02-05 2024-02-24 0.4 4 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "33" 2024-02-05 2024-02-24 0.45 5 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "33" 2024-02-05 2024-02-24 0.5 6 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "33" 2024-02-05 2024-02-24 0.55 6 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "33" 2024-02-05 2024-02-24 0.6 7 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "33" 2024-02-05 2024-02-24 0.65 7 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "33" 2024-02-05 2024-02-24 0.7 7.30000000000001 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "33" 2024-02-05 2024-02-24 0.75 8 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "33" 2024-02-05 2024-02-24 0.8 10 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "33" 2024-02-05 2024-02-24 0.85 10.15 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "33" 2024-02-05 2024-02-24 0.9 12.2 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "33" 2024-02-05 2024-02-24 0.95 15.1 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "33" 2024-02-05 2024-02-24 0.975 18.575 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "33" 2024-02-05 2024-02-24 0.99 20.02 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "33" 2024-02-05 2024-02-25 0.01 0 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "33" 2024-02-05 2024-02-25 0.025 1.475 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "33" 2024-02-05 2024-02-25 0.05 2 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "33" 2024-02-05 2024-02-25 0.1 2 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "33" 2024-02-05 2024-02-25 0.15 2 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "33" 2024-02-05 2024-02-25 0.2 3 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "33" 2024-02-05 2024-02-25 0.25 3 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "33" 2024-02-05 2024-02-25 0.3 3 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "33" 2024-02-05 2024-02-25 0.35 4 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "33" 2024-02-05 2024-02-25 0.4 4.6 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "33" 2024-02-05 2024-02-25 0.45 5 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "33" 2024-02-05 2024-02-25 0.5 6 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "33" 2024-02-05 2024-02-25 0.55 6 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "33" 2024-02-05 2024-02-25 0.6 6.40000000000001 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "33" 2024-02-05 2024-02-25 0.65 7 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "33" 2024-02-05 2024-02-25 0.7 7 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "33" 2024-02-05 2024-02-25 0.75 8 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "33" 2024-02-05 2024-02-25 0.8 9 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "33" 2024-02-05 2024-02-25 0.85 10 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "33" 2024-02-05 2024-02-25 0.9 12 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "33" 2024-02-05 2024-02-25 0.95 15.05 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "33" 2024-02-05 2024-02-25 0.975 18.1 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "33" 2024-02-05 2024-02-25 0.99 21.03 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "33" 2024-02-05 2024-02-26 0.01 1.99 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "33" 2024-02-05 2024-02-26 0.025 2 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "33" 2024-02-05 2024-02-26 0.05 2 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "33" 2024-02-05 2024-02-26 0.1 2.9 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "33" 2024-02-05 2024-02-26 0.15 3 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "33" 2024-02-05 2024-02-26 0.2 3.8 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "33" 2024-02-05 2024-02-26 0.25 4 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "33" 2024-02-05 2024-02-26 0.3 5 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "33" 2024-02-05 2024-02-26 0.35 5.65000000000001 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "33" 2024-02-05 2024-02-26 0.4 6 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "33" 2024-02-05 2024-02-26 0.45 6 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "33" 2024-02-05 2024-02-26 0.5 7 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "33" 2024-02-05 2024-02-26 0.55 7 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "33" 2024-02-05 2024-02-26 0.6 8 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "33" 2024-02-05 2024-02-26 0.65 8 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "33" 2024-02-05 2024-02-26 0.7 9 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "33" 2024-02-05 2024-02-26 0.75 10 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "33" 2024-02-05 2024-02-26 0.8 11 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "33" 2024-02-05 2024-02-26 0.85 12 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "33" 2024-02-05 2024-02-26 0.9 13.1 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "33" 2024-02-05 2024-02-26 0.95 16 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "33" 2024-02-05 2024-02-26 0.975 22.525 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "33" 2024-02-05 2024-02-26 0.99 25.06 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "33" 2024-02-05 2024-02-27 0.01 0.99 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "33" 2024-02-05 2024-02-27 0.025 1 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "33" 2024-02-05 2024-02-27 0.05 1.95 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "33" 2024-02-05 2024-02-27 0.1 2 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "33" 2024-02-05 2024-02-27 0.15 3 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "33" 2024-02-05 2024-02-27 0.2 3 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "33" 2024-02-05 2024-02-27 0.25 3 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "33" 2024-02-05 2024-02-27 0.3 4 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "33" 2024-02-05 2024-02-27 0.35 4 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "33" 2024-02-05 2024-02-27 0.4 5 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "33" 2024-02-05 2024-02-27 0.45 5.55 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "33" 2024-02-05 2024-02-27 0.5 6 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "33" 2024-02-05 2024-02-27 0.55 7 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "33" 2024-02-05 2024-02-27 0.6 7 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "33" 2024-02-05 2024-02-27 0.65 7 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "33" 2024-02-05 2024-02-27 0.7 8 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "33" 2024-02-05 2024-02-27 0.75 9 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "33" 2024-02-05 2024-02-27 0.8 10 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "33" 2024-02-05 2024-02-27 0.85 11.15 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "33" 2024-02-05 2024-02-27 0.9 13 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "33" 2024-02-05 2024-02-27 0.95 15 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "33" 2024-02-05 2024-02-27 0.975 16 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "33" 2024-02-05 2024-02-27 0.99 16.1100000000001 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "33" 2024-02-05 2024-02-28 0.01 1 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "33" 2024-02-05 2024-02-28 0.025 2 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "33" 2024-02-05 2024-02-28 0.05 2 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "33" 2024-02-05 2024-02-28 0.1 3 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "33" 2024-02-05 2024-02-28 0.15 3 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "33" 2024-02-05 2024-02-28 0.2 4 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "33" 2024-02-05 2024-02-28 0.25 5 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "33" 2024-02-05 2024-02-28 0.3 5 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "33" 2024-02-05 2024-02-28 0.35 5 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "33" 2024-02-05 2024-02-28 0.4 6 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "33" 2024-02-05 2024-02-28 0.45 6 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "33" 2024-02-05 2024-02-28 0.5 7 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "33" 2024-02-05 2024-02-28 0.55 7 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "33" 2024-02-05 2024-02-28 0.6 8 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "33" 2024-02-05 2024-02-28 0.65 8.35000000000001 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "33" 2024-02-05 2024-02-28 0.7 10 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "33" 2024-02-05 2024-02-28 0.75 10.25 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "33" 2024-02-05 2024-02-28 0.8 11.2 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "33" 2024-02-05 2024-02-28 0.85 14 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "33" 2024-02-05 2024-02-28 0.9 15.1 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "33" 2024-02-05 2024-02-28 0.95 17.1 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "33" 2024-02-05 2024-02-28 0.975 20.525 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "33" 2024-02-05 2024-02-28 0.99 22.2800000000001 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "33" 2024-02-05 2024-02-29 0.01 0.99 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "33" 2024-02-05 2024-02-29 0.025 1 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "33" 2024-02-05 2024-02-29 0.05 1 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "33" 2024-02-05 2024-02-29 0.1 2 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "33" 2024-02-05 2024-02-29 0.15 3 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "33" 2024-02-05 2024-02-29 0.2 3 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "33" 2024-02-05 2024-02-29 0.25 4 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "33" 2024-02-05 2024-02-29 0.3 4 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "33" 2024-02-05 2024-02-29 0.35 5 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "33" 2024-02-05 2024-02-29 0.4 5.6 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "33" 2024-02-05 2024-02-29 0.45 6 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "33" 2024-02-05 2024-02-29 0.5 6 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "33" 2024-02-05 2024-02-29 0.55 6 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "33" 2024-02-05 2024-02-29 0.6 7 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "33" 2024-02-05 2024-02-29 0.65 8 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "33" 2024-02-05 2024-02-29 0.7 8.30000000000001 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "33" 2024-02-05 2024-02-29 0.75 9 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "33" 2024-02-05 2024-02-29 0.8 10 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "33" 2024-02-05 2024-02-29 0.85 12 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "33" 2024-02-05 2024-02-29 0.9 13 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "33" 2024-02-05 2024-02-29 0.95 16.1 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "33" 2024-02-05 2024-02-29 0.975 19.525 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "33" 2024-02-05 2024-02-29 0.99 21 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "33" 2024-02-05 2024-03-01 0.01 0.99 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "33" 2024-02-05 2024-03-01 0.025 1 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "33" 2024-02-05 2024-03-01 0.05 1 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "33" 2024-02-05 2024-03-01 0.1 2 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "33" 2024-02-05 2024-03-01 0.15 2 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "33" 2024-02-05 2024-03-01 0.2 3 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "33" 2024-02-05 2024-03-01 0.25 3 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "33" 2024-02-05 2024-03-01 0.3 4 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "33" 2024-02-05 2024-03-01 0.35 5 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "33" 2024-02-05 2024-03-01 0.4 6 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "33" 2024-02-05 2024-03-01 0.45 7 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "33" 2024-02-05 2024-03-01 0.5 7 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "33" 2024-02-05 2024-03-01 0.55 7 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "33" 2024-02-05 2024-03-01 0.6 7.40000000000001 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "33" 2024-02-05 2024-03-01 0.65 8 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "33" 2024-02-05 2024-03-01 0.7 9 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "33" 2024-02-05 2024-03-01 0.75 9.25000000000001 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "33" 2024-02-05 2024-03-01 0.8 10 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "33" 2024-02-05 2024-03-01 0.85 11 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "33" 2024-02-05 2024-03-01 0.9 13 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "33" 2024-02-05 2024-03-01 0.95 16 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "33" 2024-02-05 2024-03-01 0.975 16.525 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "33" 2024-02-05 2024-03-01 0.99 20.2600000000001 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "33" 2024-02-05 2024-03-02 0.01 0 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "33" 2024-02-05 2024-03-02 0.025 0 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "33" 2024-02-05 2024-03-02 0.05 0.95 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "33" 2024-02-05 2024-03-02 0.1 1 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "33" 2024-02-05 2024-03-02 0.15 2 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "33" 2024-02-05 2024-03-02 0.2 2 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "33" 2024-02-05 2024-03-02 0.25 2 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "33" 2024-02-05 2024-03-02 0.3 3 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "33" 2024-02-05 2024-03-02 0.35 4 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "33" 2024-02-05 2024-03-02 0.4 4 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "33" 2024-02-05 2024-03-02 0.45 4.55 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "33" 2024-02-05 2024-03-02 0.5 5 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "33" 2024-02-05 2024-03-02 0.55 6 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "33" 2024-02-05 2024-03-02 0.6 6 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "33" 2024-02-05 2024-03-02 0.65 6 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "33" 2024-02-05 2024-03-02 0.7 7 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "33" 2024-02-05 2024-03-02 0.75 7.25000000000001 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "33" 2024-02-05 2024-03-02 0.8 8 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "33" 2024-02-05 2024-03-02 0.85 10 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "33" 2024-02-05 2024-03-02 0.9 11.1 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "33" 2024-02-05 2024-03-02 0.95 13.05 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "33" 2024-02-05 2024-03-02 0.975 15.05 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "33" 2024-02-05 2024-03-02 0.99 18.1000000000001 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "33" 2024-02-05 2024-03-03 0.01 0 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "33" 2024-02-05 2024-03-03 0.025 0 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "33" 2024-02-05 2024-03-03 0.05 0.95 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "33" 2024-02-05 2024-03-03 0.1 1 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "33" 2024-02-05 2024-03-03 0.15 2 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "33" 2024-02-05 2024-03-03 0.2 2 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "33" 2024-02-05 2024-03-03 0.25 3 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "33" 2024-02-05 2024-03-03 0.3 3 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "33" 2024-02-05 2024-03-03 0.35 4 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "33" 2024-02-05 2024-03-03 0.4 4 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "33" 2024-02-05 2024-03-03 0.45 4.55 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "33" 2024-02-05 2024-03-03 0.5 5 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "33" 2024-02-05 2024-03-03 0.55 5 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "33" 2024-02-05 2024-03-03 0.6 6 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "33" 2024-02-05 2024-03-03 0.65 6.35000000000001 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "33" 2024-02-05 2024-03-03 0.7 7 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "33" 2024-02-05 2024-03-03 0.75 8 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "33" 2024-02-05 2024-03-03 0.8 8 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "33" 2024-02-05 2024-03-03 0.85 9 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "33" 2024-02-05 2024-03-03 0.9 10.1 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "33" 2024-02-05 2024-03-03 0.95 13.1 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "33" 2024-02-05 2024-03-03 0.975 16 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "33" 2024-02-05 2024-03-03 0.99 17.2700000000001 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "33" 2024-02-05 2024-03-04 0.01 0.99 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "33" 2024-02-05 2024-03-04 0.025 1 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "33" 2024-02-05 2024-03-04 0.05 1.95 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "33" 2024-02-05 2024-03-04 0.1 2 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "33" 2024-02-05 2024-03-04 0.15 3 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "33" 2024-02-05 2024-03-04 0.2 4 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "33" 2024-02-05 2024-03-04 0.25 4 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "33" 2024-02-05 2024-03-04 0.3 5 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "33" 2024-02-05 2024-03-04 0.35 5 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "33" 2024-02-05 2024-03-04 0.4 5 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "33" 2024-02-05 2024-03-04 0.45 6 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "33" 2024-02-05 2024-03-04 0.5 6.5 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "33" 2024-02-05 2024-03-04 0.55 7 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "33" 2024-02-05 2024-03-04 0.6 7 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "33" 2024-02-05 2024-03-04 0.65 7.35000000000001 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "33" 2024-02-05 2024-03-04 0.7 9 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "33" 2024-02-05 2024-03-04 0.75 9 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "33" 2024-02-05 2024-03-04 0.8 10.2 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "33" 2024-02-05 2024-03-04 0.85 12 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "33" 2024-02-05 2024-03-04 0.9 15 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "33" 2024-02-05 2024-03-04 0.95 17 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "33" 2024-02-05 2024-03-04 0.975 20.575 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "33" 2024-02-05 2024-03-04 0.99 25.1800000000001 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "34" 2024-02-05 2024-02-06 0.01 71.96 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "34" 2024-02-05 2024-02-06 0.025 74 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "34" 2024-02-05 2024-02-06 0.05 75 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "34" 2024-02-05 2024-02-06 0.1 80.9 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "34" 2024-02-05 2024-02-06 0.15 82.85 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "34" 2024-02-05 2024-02-06 0.2 85.8 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "34" 2024-02-05 2024-02-06 0.25 89.75 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "34" 2024-02-05 2024-02-06 0.3 93.7 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "34" 2024-02-05 2024-02-06 0.35 97.3 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "34" 2024-02-05 2024-02-06 0.4 99 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "34" 2024-02-05 2024-02-06 0.45 102 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "34" 2024-02-05 2024-02-06 0.5 103 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "34" 2024-02-05 2024-02-06 0.55 106.35 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "34" 2024-02-05 2024-02-06 0.6 110.4 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "34" 2024-02-05 2024-02-06 0.65 117 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "34" 2024-02-05 2024-02-06 0.7 121 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "34" 2024-02-05 2024-02-06 0.75 124.5 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "34" 2024-02-05 2024-02-06 0.8 129.2 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "34" 2024-02-05 2024-02-06 0.85 132.75 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "34" 2024-02-05 2024-02-06 0.9 140 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "34" 2024-02-05 2024-02-06 0.95 149.35 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "34" 2024-02-05 2024-02-06 0.975 169.575 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "34" 2024-02-05 2024-02-06 0.99 188.03 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "34" 2024-02-05 2024-02-07 0.01 60.99 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "34" 2024-02-05 2024-02-07 0.025 64.9 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "34" 2024-02-05 2024-02-07 0.05 67.95 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "34" 2024-02-05 2024-02-07 0.1 79.8 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "34" 2024-02-05 2024-02-07 0.15 84.85 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "34" 2024-02-05 2024-02-07 0.2 88.8 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "34" 2024-02-05 2024-02-07 0.25 93.25 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "34" 2024-02-05 2024-02-07 0.3 94.7 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "34" 2024-02-05 2024-02-07 0.35 97.65 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "34" 2024-02-05 2024-02-07 0.4 100.6 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "34" 2024-02-05 2024-02-07 0.45 103.55 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "34" 2024-02-05 2024-02-07 0.5 107.5 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "34" 2024-02-05 2024-02-07 0.55 108 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "34" 2024-02-05 2024-02-07 0.6 110 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "34" 2024-02-05 2024-02-07 0.65 114.35 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "34" 2024-02-05 2024-02-07 0.7 116.3 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "34" 2024-02-05 2024-02-07 0.75 119.5 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "34" 2024-02-05 2024-02-07 0.8 124.2 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "34" 2024-02-05 2024-02-07 0.85 132.15 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "34" 2024-02-05 2024-02-07 0.9 138.3 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "34" 2024-02-05 2024-02-07 0.95 163.05 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "34" 2024-02-05 2024-02-07 0.975 170 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "34" 2024-02-05 2024-02-07 0.99 179.02 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "34" 2024-02-05 2024-02-08 0.01 57.94 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "34" 2024-02-05 2024-02-08 0.025 60.95 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "34" 2024-02-05 2024-02-08 0.05 67.75 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "34" 2024-02-05 2024-02-08 0.1 71.9 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "34" 2024-02-05 2024-02-08 0.15 77.85 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "34" 2024-02-05 2024-02-08 0.2 81.8 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "34" 2024-02-05 2024-02-08 0.25 85 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "34" 2024-02-05 2024-02-08 0.3 86 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "34" 2024-02-05 2024-02-08 0.35 90.65 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "34" 2024-02-05 2024-02-08 0.4 94 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "34" 2024-02-05 2024-02-08 0.45 97 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "34" 2024-02-05 2024-02-08 0.5 100 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "34" 2024-02-05 2024-02-08 0.55 106.45 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "34" 2024-02-05 2024-02-08 0.6 108.8 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "34" 2024-02-05 2024-02-08 0.65 113.35 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "34" 2024-02-05 2024-02-08 0.7 117.3 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "34" 2024-02-05 2024-02-08 0.75 120 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "34" 2024-02-05 2024-02-08 0.8 123 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "34" 2024-02-05 2024-02-08 0.85 126.15 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "34" 2024-02-05 2024-02-08 0.9 132.3 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "34" 2024-02-05 2024-02-08 0.95 146.1 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "34" 2024-02-05 2024-02-08 0.975 158.875 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "34" 2024-02-05 2024-02-08 0.99 168.14 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "34" 2024-02-05 2024-02-09 0.01 53.95 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "34" 2024-02-05 2024-02-09 0.025 56 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "34" 2024-02-05 2024-02-09 0.05 60.85 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "34" 2024-02-05 2024-02-09 0.1 73 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "34" 2024-02-05 2024-02-09 0.15 75 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "34" 2024-02-05 2024-02-09 0.2 79 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "34" 2024-02-05 2024-02-09 0.25 81.75 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "34" 2024-02-05 2024-02-09 0.3 84 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "34" 2024-02-05 2024-02-09 0.35 86 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "34" 2024-02-05 2024-02-09 0.4 88 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "34" 2024-02-05 2024-02-09 0.45 91 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "34" 2024-02-05 2024-02-09 0.5 94.5 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "34" 2024-02-05 2024-02-09 0.55 96.45 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "34" 2024-02-05 2024-02-09 0.6 99.4 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "34" 2024-02-05 2024-02-09 0.65 101.35 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "34" 2024-02-05 2024-02-09 0.7 105.6 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "34" 2024-02-05 2024-02-09 0.75 109 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "34" 2024-02-05 2024-02-09 0.8 113 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "34" 2024-02-05 2024-02-09 0.85 119.05 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "34" 2024-02-05 2024-02-09 0.9 129 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "34" 2024-02-05 2024-02-09 0.95 140 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "34" 2024-02-05 2024-02-09 0.975 143.15 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "34" 2024-02-05 2024-02-09 0.99 147.2 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "34" 2024-02-05 2024-02-10 0.01 54.92 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "34" 2024-02-05 2024-02-10 0.025 55.475 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "34" 2024-02-05 2024-02-10 0.05 60.95 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "34" 2024-02-05 2024-02-10 0.1 69 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "34" 2024-02-05 2024-02-10 0.15 74 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "34" 2024-02-05 2024-02-10 0.2 75.8 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "34" 2024-02-05 2024-02-10 0.25 78 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "34" 2024-02-05 2024-02-10 0.3 80.7 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "34" 2024-02-05 2024-02-10 0.35 83.65 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "34" 2024-02-05 2024-02-10 0.4 85 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "34" 2024-02-05 2024-02-10 0.45 87 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "34" 2024-02-05 2024-02-10 0.5 90.5 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "34" 2024-02-05 2024-02-10 0.55 92.45 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "34" 2024-02-05 2024-02-10 0.6 96.8 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "34" 2024-02-05 2024-02-10 0.65 100.7 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "34" 2024-02-05 2024-02-10 0.7 106 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "34" 2024-02-05 2024-02-10 0.75 109.5 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "34" 2024-02-05 2024-02-10 0.8 114.2 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "34" 2024-02-05 2024-02-10 0.85 118 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "34" 2024-02-05 2024-02-10 0.9 123.2 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "34" 2024-02-05 2024-02-10 0.95 139.35 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "34" 2024-02-05 2024-02-10 0.975 154 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "34" 2024-02-05 2024-02-10 0.99 160.02 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "34" 2024-02-05 2024-02-11 0.01 43.91 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "34" 2024-02-05 2024-02-11 0.025 52.425 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "34" 2024-02-05 2024-02-11 0.05 57.95 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "34" 2024-02-05 2024-02-11 0.1 61.8 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "34" 2024-02-05 2024-02-11 0.15 65 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "34" 2024-02-05 2024-02-11 0.2 70 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "34" 2024-02-05 2024-02-11 0.25 72 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "34" 2024-02-05 2024-02-11 0.3 75.4 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "34" 2024-02-05 2024-02-11 0.35 77 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "34" 2024-02-05 2024-02-11 0.4 78.6 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "34" 2024-02-05 2024-02-11 0.45 81 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "34" 2024-02-05 2024-02-11 0.5 83 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "34" 2024-02-05 2024-02-11 0.55 85 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "34" 2024-02-05 2024-02-11 0.6 88 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "34" 2024-02-05 2024-02-11 0.65 90 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "34" 2024-02-05 2024-02-11 0.7 97.3 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "34" 2024-02-05 2024-02-11 0.75 101.25 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "34" 2024-02-05 2024-02-11 0.8 106.2 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "34" 2024-02-05 2024-02-11 0.85 111.6 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "34" 2024-02-05 2024-02-11 0.9 123.3 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "34" 2024-02-05 2024-02-11 0.95 140.25 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "34" 2024-02-05 2024-02-11 0.975 155.525 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "34" 2024-02-05 2024-02-11 0.99 166.29 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "34" 2024-02-05 2024-02-12 0.01 55.88 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "34" 2024-02-05 2024-02-12 0.025 60.475 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "34" 2024-02-05 2024-02-12 0.05 67.95 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "34" 2024-02-05 2024-02-12 0.1 72 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "34" 2024-02-05 2024-02-12 0.15 74.85 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "34" 2024-02-05 2024-02-12 0.2 78.8 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "34" 2024-02-05 2024-02-12 0.25 81.75 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "34" 2024-02-05 2024-02-12 0.3 85 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "34" 2024-02-05 2024-02-12 0.35 85.65 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "34" 2024-02-05 2024-02-12 0.4 89.2 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "34" 2024-02-05 2024-02-12 0.45 91 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "34" 2024-02-05 2024-02-12 0.5 93.5 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "34" 2024-02-05 2024-02-12 0.55 98.9 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "34" 2024-02-05 2024-02-12 0.6 101.4 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "34" 2024-02-05 2024-02-12 0.65 106.35 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "34" 2024-02-05 2024-02-12 0.7 112.9 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "34" 2024-02-05 2024-02-12 0.75 119.25 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "34" 2024-02-05 2024-02-12 0.8 122.2 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "34" 2024-02-05 2024-02-12 0.85 131.15 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "34" 2024-02-05 2024-02-12 0.9 136.2 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "34" 2024-02-05 2024-02-12 0.95 149.1 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "34" 2024-02-05 2024-02-12 0.975 170.15 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "34" 2024-02-05 2024-02-12 0.99 179.51 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "34" 2024-02-05 2024-02-13 0.01 50.93 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "34" 2024-02-05 2024-02-13 0.025 59.425 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "34" 2024-02-05 2024-02-13 0.05 64.9 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "34" 2024-02-05 2024-02-13 0.1 71.8 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "34" 2024-02-05 2024-02-13 0.15 76 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "34" 2024-02-05 2024-02-13 0.2 79.8 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "34" 2024-02-05 2024-02-13 0.25 82 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "34" 2024-02-05 2024-02-13 0.3 86 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "34" 2024-02-05 2024-02-13 0.35 87 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "34" 2024-02-05 2024-02-13 0.4 90 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "34" 2024-02-05 2024-02-13 0.45 92 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "34" 2024-02-05 2024-02-13 0.5 96 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "34" 2024-02-05 2024-02-13 0.55 98 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "34" 2024-02-05 2024-02-13 0.6 100.4 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "34" 2024-02-05 2024-02-13 0.65 105.7 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "34" 2024-02-05 2024-02-13 0.7 109.3 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "34" 2024-02-05 2024-02-13 0.75 111 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "34" 2024-02-05 2024-02-13 0.8 117.4 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "34" 2024-02-05 2024-02-13 0.85 128 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "34" 2024-02-05 2024-02-13 0.9 133.2 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "34" 2024-02-05 2024-02-13 0.95 141.4 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "34" 2024-02-05 2024-02-13 0.975 157.15 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "34" 2024-02-05 2024-02-13 0.99 211.03 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "34" 2024-02-05 2024-02-14 0.01 50.97 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "34" 2024-02-05 2024-02-14 0.025 54 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "34" 2024-02-05 2024-02-14 0.05 56.95 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "34" 2024-02-05 2024-02-14 0.1 64.9 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "34" 2024-02-05 2024-02-14 0.15 70.85 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "34" 2024-02-05 2024-02-14 0.2 73 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "34" 2024-02-05 2024-02-14 0.25 77.75 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "34" 2024-02-05 2024-02-14 0.3 81.7 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "34" 2024-02-05 2024-02-14 0.35 84.3 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "34" 2024-02-05 2024-02-14 0.4 88 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "34" 2024-02-05 2024-02-14 0.45 92.1 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "34" 2024-02-05 2024-02-14 0.5 95 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "34" 2024-02-05 2024-02-14 0.55 99 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "34" 2024-02-05 2024-02-14 0.6 106.4 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "34" 2024-02-05 2024-02-14 0.65 110 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "34" 2024-02-05 2024-02-14 0.7 113.3 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "34" 2024-02-05 2024-02-14 0.75 119.5 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "34" 2024-02-05 2024-02-14 0.8 124.8 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "34" 2024-02-05 2024-02-14 0.85 135 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "34" 2024-02-05 2024-02-14 0.9 143.5 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "34" 2024-02-05 2024-02-14 0.95 153.1 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "34" 2024-02-05 2024-02-14 0.975 161.15 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "34" 2024-02-05 2024-02-14 0.99 185.61 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "34" 2024-02-05 2024-02-15 0.01 50.96 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "34" 2024-02-05 2024-02-15 0.025 52.95 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "34" 2024-02-05 2024-02-15 0.05 56 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "34" 2024-02-05 2024-02-15 0.1 58.9 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "34" 2024-02-05 2024-02-15 0.15 62.85 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "34" 2024-02-05 2024-02-15 0.2 69.2 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "34" 2024-02-05 2024-02-15 0.25 71.75 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "34" 2024-02-05 2024-02-15 0.3 76.4 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "34" 2024-02-05 2024-02-15 0.35 79 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "34" 2024-02-05 2024-02-15 0.4 84 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "34" 2024-02-05 2024-02-15 0.45 86.55 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "34" 2024-02-05 2024-02-15 0.5 90 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "34" 2024-02-05 2024-02-15 0.55 93 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "34" 2024-02-05 2024-02-15 0.6 101.4 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "34" 2024-02-05 2024-02-15 0.65 105 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "34" 2024-02-05 2024-02-15 0.7 108.3 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "34" 2024-02-05 2024-02-15 0.75 112 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "34" 2024-02-05 2024-02-15 0.8 120 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "34" 2024-02-05 2024-02-15 0.85 129 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "34" 2024-02-05 2024-02-15 0.9 132 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "34" 2024-02-05 2024-02-15 0.95 148.3 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "34" 2024-02-05 2024-02-15 0.975 158.625 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "34" 2024-02-05 2024-02-15 0.99 189.57 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "34" 2024-02-05 2024-02-16 0.01 41.96 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "34" 2024-02-05 2024-02-16 0.025 43.475 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "34" 2024-02-05 2024-02-16 0.05 53.65 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "34" 2024-02-05 2024-02-16 0.1 58.9 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "34" 2024-02-05 2024-02-16 0.15 61.85 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "34" 2024-02-05 2024-02-16 0.2 64.8 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "34" 2024-02-05 2024-02-16 0.25 68.75 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "34" 2024-02-05 2024-02-16 0.3 72 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "34" 2024-02-05 2024-02-16 0.35 73 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "34" 2024-02-05 2024-02-16 0.4 75.8 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "34" 2024-02-05 2024-02-16 0.45 80.1 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "34" 2024-02-05 2024-02-16 0.5 86.5 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "34" 2024-02-05 2024-02-16 0.55 90.45 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "34" 2024-02-05 2024-02-16 0.6 95 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "34" 2024-02-05 2024-02-16 0.65 101 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "34" 2024-02-05 2024-02-16 0.7 104.3 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "34" 2024-02-05 2024-02-16 0.75 106.25 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "34" 2024-02-05 2024-02-16 0.8 111 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "34" 2024-02-05 2024-02-16 0.85 122 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "34" 2024-02-05 2024-02-16 0.9 127.2 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "34" 2024-02-05 2024-02-16 0.95 137.55 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "34" 2024-02-05 2024-02-16 0.975 164.55 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "34" 2024-02-05 2024-02-16 0.99 199.51 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "34" 2024-02-05 2024-02-17 0.01 38.8 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "34" 2024-02-05 2024-02-17 0.025 40.95 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "34" 2024-02-05 2024-02-17 0.05 43.9 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "34" 2024-02-05 2024-02-17 0.1 51 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "34" 2024-02-05 2024-02-17 0.15 53 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "34" 2024-02-05 2024-02-17 0.2 57.8 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "34" 2024-02-05 2024-02-17 0.25 60 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "34" 2024-02-05 2024-02-17 0.3 64.7 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "34" 2024-02-05 2024-02-17 0.35 67.3 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "34" 2024-02-05 2024-02-17 0.4 69 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "34" 2024-02-05 2024-02-17 0.45 73.1 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "34" 2024-02-05 2024-02-17 0.5 85.5 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "34" 2024-02-05 2024-02-17 0.55 88.45 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "34" 2024-02-05 2024-02-17 0.6 91.4 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "34" 2024-02-05 2024-02-17 0.65 94.35 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "34" 2024-02-05 2024-02-17 0.7 98 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "34" 2024-02-05 2024-02-17 0.75 103.25 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "34" 2024-02-05 2024-02-17 0.8 106.2 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "34" 2024-02-05 2024-02-17 0.85 113.05 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "34" 2024-02-05 2024-02-17 0.9 124.2 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "34" 2024-02-05 2024-02-17 0.95 140.1 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "34" 2024-02-05 2024-02-17 0.975 152.1 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "34" 2024-02-05 2024-02-17 0.99 181.8 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "34" 2024-02-05 2024-02-18 0.01 42.9 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "34" 2024-02-05 2024-02-18 0.025 43.475 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "34" 2024-02-05 2024-02-18 0.05 44.95 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "34" 2024-02-05 2024-02-18 0.1 47.9 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "34" 2024-02-05 2024-02-18 0.15 52 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "34" 2024-02-05 2024-02-18 0.2 54.8 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "34" 2024-02-05 2024-02-18 0.25 59.75 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "34" 2024-02-05 2024-02-18 0.3 63.4 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "34" 2024-02-05 2024-02-18 0.35 69 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "34" 2024-02-05 2024-02-18 0.4 71.6 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "34" 2024-02-05 2024-02-18 0.45 76.55 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "34" 2024-02-05 2024-02-18 0.5 79 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "34" 2024-02-05 2024-02-18 0.55 84 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "34" 2024-02-05 2024-02-18 0.6 86 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "34" 2024-02-05 2024-02-18 0.65 89 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "34" 2024-02-05 2024-02-18 0.7 96 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "34" 2024-02-05 2024-02-18 0.75 102.25 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "34" 2024-02-05 2024-02-18 0.8 108.2 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "34" 2024-02-05 2024-02-18 0.85 119 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "34" 2024-02-05 2024-02-18 0.9 126.1 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "34" 2024-02-05 2024-02-18 0.95 145.1 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "34" 2024-02-05 2024-02-18 0.975 159.675 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "34" 2024-02-05 2024-02-18 0.99 168.45 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "34" 2024-02-05 2024-02-19 0.01 39.83 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "34" 2024-02-05 2024-02-19 0.025 42.9 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "34" 2024-02-05 2024-02-19 0.05 48.85 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "34" 2024-02-05 2024-02-19 0.1 56.9 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "34" 2024-02-05 2024-02-19 0.15 61 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "34" 2024-02-05 2024-02-19 0.2 63 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "34" 2024-02-05 2024-02-19 0.25 66 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "34" 2024-02-05 2024-02-19 0.3 68.7 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "34" 2024-02-05 2024-02-19 0.35 72.65 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "34" 2024-02-05 2024-02-19 0.4 76.6 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "34" 2024-02-05 2024-02-19 0.45 80 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "34" 2024-02-05 2024-02-19 0.5 84 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "34" 2024-02-05 2024-02-19 0.55 88.45 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "34" 2024-02-05 2024-02-19 0.6 93.2 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "34" 2024-02-05 2024-02-19 0.65 105 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "34" 2024-02-05 2024-02-19 0.7 112 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "34" 2024-02-05 2024-02-19 0.75 118.5 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "34" 2024-02-05 2024-02-19 0.8 125.4 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "34" 2024-02-05 2024-02-19 0.85 130 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "34" 2024-02-05 2024-02-19 0.9 142.1 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "34" 2024-02-05 2024-02-19 0.95 149.1 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "34" 2024-02-05 2024-02-19 0.975 164.6 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "34" 2024-02-05 2024-02-19 0.99 219.180000000001 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "34" 2024-02-05 2024-02-20 0.01 36.88 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "34" 2024-02-05 2024-02-20 0.025 45.475 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "34" 2024-02-05 2024-02-20 0.05 51.95 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "34" 2024-02-05 2024-02-20 0.1 59 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "34" 2024-02-05 2024-02-20 0.15 63.85 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "34" 2024-02-05 2024-02-20 0.2 67 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "34" 2024-02-05 2024-02-20 0.25 70 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "34" 2024-02-05 2024-02-20 0.3 74 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "34" 2024-02-05 2024-02-20 0.35 78 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "34" 2024-02-05 2024-02-20 0.4 80.6 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "34" 2024-02-05 2024-02-20 0.45 85 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "34" 2024-02-05 2024-02-20 0.5 89 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "34" 2024-02-05 2024-02-20 0.55 94 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "34" 2024-02-05 2024-02-20 0.6 95 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "34" 2024-02-05 2024-02-20 0.65 99.35 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "34" 2024-02-05 2024-02-20 0.7 108 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "34" 2024-02-05 2024-02-20 0.75 116.5 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "34" 2024-02-05 2024-02-20 0.8 128.6 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "34" 2024-02-05 2024-02-20 0.85 138.3 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "34" 2024-02-05 2024-02-20 0.9 155.3 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "34" 2024-02-05 2024-02-20 0.95 167.5 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "34" 2024-02-05 2024-02-20 0.975 192.2 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "34" 2024-02-05 2024-02-20 0.99 222.42 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "34" 2024-02-05 2024-02-21 0.01 44.79 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "34" 2024-02-05 2024-02-21 0.025 46 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "34" 2024-02-05 2024-02-21 0.05 48.95 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "34" 2024-02-05 2024-02-21 0.1 52 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "34" 2024-02-05 2024-02-21 0.15 58 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "34" 2024-02-05 2024-02-21 0.2 65.8 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "34" 2024-02-05 2024-02-21 0.25 68 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "34" 2024-02-05 2024-02-21 0.3 71 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "34" 2024-02-05 2024-02-21 0.35 74.95 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "34" 2024-02-05 2024-02-21 0.4 82 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "34" 2024-02-05 2024-02-21 0.45 85.55 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "34" 2024-02-05 2024-02-21 0.5 87.5 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "34" 2024-02-05 2024-02-21 0.55 90 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "34" 2024-02-05 2024-02-21 0.6 95 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "34" 2024-02-05 2024-02-21 0.65 105.4 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "34" 2024-02-05 2024-02-21 0.7 117.6 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "34" 2024-02-05 2024-02-21 0.75 126 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "34" 2024-02-05 2024-02-21 0.8 135 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "34" 2024-02-05 2024-02-21 0.85 144 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "34" 2024-02-05 2024-02-21 0.9 153.1 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "34" 2024-02-05 2024-02-21 0.95 172.45 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "34" 2024-02-05 2024-02-21 0.975 189.1 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "34" 2024-02-05 2024-02-21 0.99 210.65 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "34" 2024-02-05 2024-02-22 0.01 36.82 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "34" 2024-02-05 2024-02-22 0.025 37.95 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "34" 2024-02-05 2024-02-22 0.05 41.9 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "34" 2024-02-05 2024-02-22 0.1 48.8 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "34" 2024-02-05 2024-02-22 0.15 52.85 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "34" 2024-02-05 2024-02-22 0.2 58.8 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "34" 2024-02-05 2024-02-22 0.25 61.5 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "34" 2024-02-05 2024-02-22 0.3 66.7 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "34" 2024-02-05 2024-02-22 0.35 71 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "34" 2024-02-05 2024-02-22 0.4 74 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "34" 2024-02-05 2024-02-22 0.45 79 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "34" 2024-02-05 2024-02-22 0.5 82 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "34" 2024-02-05 2024-02-22 0.55 83 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "34" 2024-02-05 2024-02-22 0.6 87.4 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "34" 2024-02-05 2024-02-22 0.65 93 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "34" 2024-02-05 2024-02-22 0.7 96.3 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "34" 2024-02-05 2024-02-22 0.75 101.75 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "34" 2024-02-05 2024-02-22 0.8 111.2 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "34" 2024-02-05 2024-02-22 0.85 122.9 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "34" 2024-02-05 2024-02-22 0.9 136.8 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "34" 2024-02-05 2024-02-22 0.95 156.4 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "34" 2024-02-05 2024-02-22 0.975 166.525 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "34" 2024-02-05 2024-02-22 0.99 177.68 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "34" 2024-02-05 2024-02-23 0.01 33.83 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "34" 2024-02-05 2024-02-23 0.025 37.95 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "34" 2024-02-05 2024-02-23 0.05 41.9 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "34" 2024-02-05 2024-02-23 0.1 44.9 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "34" 2024-02-05 2024-02-23 0.15 47 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "34" 2024-02-05 2024-02-23 0.2 54.8 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "34" 2024-02-05 2024-02-23 0.25 57 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "34" 2024-02-05 2024-02-23 0.3 62.7 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "34" 2024-02-05 2024-02-23 0.35 64 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "34" 2024-02-05 2024-02-23 0.4 67.6 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "34" 2024-02-05 2024-02-23 0.45 72.55 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "34" 2024-02-05 2024-02-23 0.5 76.5 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "34" 2024-02-05 2024-02-23 0.55 81.45 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "34" 2024-02-05 2024-02-23 0.6 84 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "34" 2024-02-05 2024-02-23 0.65 88 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "34" 2024-02-05 2024-02-23 0.7 93.2 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "34" 2024-02-05 2024-02-23 0.75 105.25 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "34" 2024-02-05 2024-02-23 0.8 109.4 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "34" 2024-02-05 2024-02-23 0.85 123.45 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "34" 2024-02-05 2024-02-23 0.9 131.1 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "34" 2024-02-05 2024-02-23 0.95 144.45 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "34" 2024-02-05 2024-02-23 0.975 164.825 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "34" 2024-02-05 2024-02-23 0.99 181.400000000001 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "34" 2024-02-05 2024-02-24 0.01 25.93 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "34" 2024-02-05 2024-02-24 0.025 31.375 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "34" 2024-02-05 2024-02-24 0.05 34 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "34" 2024-02-05 2024-02-24 0.1 42.5 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "34" 2024-02-05 2024-02-24 0.15 48 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "34" 2024-02-05 2024-02-24 0.2 51.8 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "34" 2024-02-05 2024-02-24 0.25 56 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "34" 2024-02-05 2024-02-24 0.3 61 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "34" 2024-02-05 2024-02-24 0.35 65.65 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "34" 2024-02-05 2024-02-24 0.4 67 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "34" 2024-02-05 2024-02-24 0.45 70 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "34" 2024-02-05 2024-02-24 0.5 73.5 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "34" 2024-02-05 2024-02-24 0.55 77 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "34" 2024-02-05 2024-02-24 0.6 81.8 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "34" 2024-02-05 2024-02-24 0.65 92.35 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "34" 2024-02-05 2024-02-24 0.7 96.3 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "34" 2024-02-05 2024-02-24 0.75 100.5 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "34" 2024-02-05 2024-02-24 0.8 105.2 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "34" 2024-02-05 2024-02-24 0.85 118.3 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "34" 2024-02-05 2024-02-24 0.9 126.1 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "34" 2024-02-05 2024-02-24 0.95 154.05 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "34" 2024-02-05 2024-02-24 0.975 160.725 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "34" 2024-02-05 2024-02-24 0.99 168.66 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "34" 2024-02-05 2024-02-25 0.01 22.95 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "34" 2024-02-05 2024-02-25 0.025 25 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "34" 2024-02-05 2024-02-25 0.05 30.8 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "34" 2024-02-05 2024-02-25 0.1 36 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "34" 2024-02-05 2024-02-25 0.15 41.85 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "34" 2024-02-05 2024-02-25 0.2 45.8 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "34" 2024-02-05 2024-02-25 0.25 48 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "34" 2024-02-05 2024-02-25 0.3 55.4 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "34" 2024-02-05 2024-02-25 0.35 60.65 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "34" 2024-02-05 2024-02-25 0.4 64.6 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "34" 2024-02-05 2024-02-25 0.45 68 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "34" 2024-02-05 2024-02-25 0.5 69 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "34" 2024-02-05 2024-02-25 0.55 72.9 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "34" 2024-02-05 2024-02-25 0.6 77.4 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "34" 2024-02-05 2024-02-25 0.65 86 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "34" 2024-02-05 2024-02-25 0.7 90.3 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "34" 2024-02-05 2024-02-25 0.75 98.25 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "34" 2024-02-05 2024-02-25 0.8 106.2 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "34" 2024-02-05 2024-02-25 0.85 115.15 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "34" 2024-02-05 2024-02-25 0.9 127.1 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "34" 2024-02-05 2024-02-25 0.95 158.45 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "34" 2024-02-05 2024-02-25 0.975 169.1 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "34" 2024-02-05 2024-02-25 0.99 175.310000000001 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "34" 2024-02-05 2024-02-26 0.01 20.95 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "34" 2024-02-05 2024-02-26 0.025 29.375 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "34" 2024-02-05 2024-02-26 0.05 36.85 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "34" 2024-02-05 2024-02-26 0.1 45.9 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "34" 2024-02-05 2024-02-26 0.15 48 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "34" 2024-02-05 2024-02-26 0.2 52 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "34" 2024-02-05 2024-02-26 0.25 60 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "34" 2024-02-05 2024-02-26 0.3 64 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "34" 2024-02-05 2024-02-26 0.35 67.65 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "34" 2024-02-05 2024-02-26 0.4 71.6 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "34" 2024-02-05 2024-02-26 0.45 74.1 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "34" 2024-02-05 2024-02-26 0.5 81.5 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "34" 2024-02-05 2024-02-26 0.55 85.45 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "34" 2024-02-05 2024-02-26 0.6 93 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "34" 2024-02-05 2024-02-26 0.65 97.35 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "34" 2024-02-05 2024-02-26 0.7 105.6 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "34" 2024-02-05 2024-02-26 0.75 113 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "34" 2024-02-05 2024-02-26 0.8 119.2 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "34" 2024-02-05 2024-02-26 0.85 126.15 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "34" 2024-02-05 2024-02-26 0.9 147.8 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "34" 2024-02-05 2024-02-26 0.95 178.05 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "34" 2024-02-05 2024-02-26 0.975 195.575 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "34" 2024-02-05 2024-02-26 0.99 204.200000000001 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "34" 2024-02-05 2024-02-27 0.01 25.89 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "34" 2024-02-05 2024-02-27 0.025 34 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "34" 2024-02-05 2024-02-27 0.05 38.9 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "34" 2024-02-05 2024-02-27 0.1 43 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "34" 2024-02-05 2024-02-27 0.15 49 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "34" 2024-02-05 2024-02-27 0.2 52 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "34" 2024-02-05 2024-02-27 0.25 58.75 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "34" 2024-02-05 2024-02-27 0.3 66.4 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "34" 2024-02-05 2024-02-27 0.35 71.65 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "34" 2024-02-05 2024-02-27 0.4 74.6 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "34" 2024-02-05 2024-02-27 0.45 78.55 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "34" 2024-02-05 2024-02-27 0.5 81 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "34" 2024-02-05 2024-02-27 0.55 85 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "34" 2024-02-05 2024-02-27 0.6 91 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "34" 2024-02-05 2024-02-27 0.65 108.75 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "34" 2024-02-05 2024-02-27 0.7 118 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "34" 2024-02-05 2024-02-27 0.75 123.25 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "34" 2024-02-05 2024-02-27 0.8 127.2 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "34" 2024-02-05 2024-02-27 0.85 135.6 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "34" 2024-02-05 2024-02-27 0.9 153.5 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "34" 2024-02-05 2024-02-27 0.95 173.1 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "34" 2024-02-05 2024-02-27 0.975 206.1 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "34" 2024-02-05 2024-02-27 0.99 214.69 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "34" 2024-02-05 2024-02-28 0.01 26.94 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "34" 2024-02-05 2024-02-28 0.025 30.95 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "34" 2024-02-05 2024-02-28 0.05 33 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "34" 2024-02-05 2024-02-28 0.1 40.9 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "34" 2024-02-05 2024-02-28 0.15 44.85 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "34" 2024-02-05 2024-02-28 0.2 47 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "34" 2024-02-05 2024-02-28 0.25 58.5 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "34" 2024-02-05 2024-02-28 0.3 64.7 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "34" 2024-02-05 2024-02-28 0.35 66.65 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "34" 2024-02-05 2024-02-28 0.4 70.6 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "34" 2024-02-05 2024-02-28 0.45 76 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "34" 2024-02-05 2024-02-28 0.5 78 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "34" 2024-02-05 2024-02-28 0.55 80 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "34" 2024-02-05 2024-02-28 0.6 87.4 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "34" 2024-02-05 2024-02-28 0.65 91.4 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "34" 2024-02-05 2024-02-28 0.7 102.6 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "34" 2024-02-05 2024-02-28 0.75 110 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "34" 2024-02-05 2024-02-28 0.8 120.2 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "34" 2024-02-05 2024-02-28 0.85 136.75 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "34" 2024-02-05 2024-02-28 0.9 155.2 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "34" 2024-02-05 2024-02-28 0.95 172.15 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "34" 2024-02-05 2024-02-28 0.975 186.625 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "34" 2024-02-05 2024-02-28 0.99 200.85 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "34" 2024-02-05 2024-02-29 0.01 25.99 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "34" 2024-02-05 2024-02-29 0.025 26.95 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "34" 2024-02-05 2024-02-29 0.05 31.85 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "34" 2024-02-05 2024-02-29 0.1 36 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "34" 2024-02-05 2024-02-29 0.15 42.85 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "34" 2024-02-05 2024-02-29 0.2 45.8 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "34" 2024-02-05 2024-02-29 0.25 50.5 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "34" 2024-02-05 2024-02-29 0.3 53 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "34" 2024-02-05 2024-02-29 0.35 59.95 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "34" 2024-02-05 2024-02-29 0.4 68 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "34" 2024-02-05 2024-02-29 0.45 70.55 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "34" 2024-02-05 2024-02-29 0.5 77 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "34" 2024-02-05 2024-02-29 0.55 83 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "34" 2024-02-05 2024-02-29 0.6 87.4 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "34" 2024-02-05 2024-02-29 0.65 91.05 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "34" 2024-02-05 2024-02-29 0.7 96.3 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "34" 2024-02-05 2024-02-29 0.75 115.25 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "34" 2024-02-05 2024-02-29 0.8 120 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "34" 2024-02-05 2024-02-29 0.85 130.3 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "34" 2024-02-05 2024-02-29 0.9 143 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "34" 2024-02-05 2024-02-29 0.95 171.5 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "34" 2024-02-05 2024-02-29 0.975 205.05 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "34" 2024-02-05 2024-02-29 0.99 212.280000000001 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "34" 2024-02-05 2024-03-01 0.01 21.97 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "34" 2024-02-05 2024-03-01 0.025 22.95 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "34" 2024-02-05 2024-03-01 0.05 27.85 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "34" 2024-02-05 2024-03-01 0.1 36.8 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "34" 2024-02-05 2024-03-01 0.15 43 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "34" 2024-02-05 2024-03-01 0.2 46.8 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "34" 2024-02-05 2024-03-01 0.25 48 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "34" 2024-02-05 2024-03-01 0.3 52.7 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "34" 2024-02-05 2024-03-01 0.35 60 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "34" 2024-02-05 2024-03-01 0.4 62 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "34" 2024-02-05 2024-03-01 0.45 67.65 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "34" 2024-02-05 2024-03-01 0.5 72 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "34" 2024-02-05 2024-03-01 0.55 76 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "34" 2024-02-05 2024-03-01 0.6 82.2 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "34" 2024-02-05 2024-03-01 0.65 87.35 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "34" 2024-02-05 2024-03-01 0.7 95.3 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "34" 2024-02-05 2024-03-01 0.75 100 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "34" 2024-02-05 2024-03-01 0.8 112.6 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "34" 2024-02-05 2024-03-01 0.85 131.75 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "34" 2024-02-05 2024-03-01 0.9 146 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "34" 2024-02-05 2024-03-01 0.95 156.25 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "34" 2024-02-05 2024-03-01 0.975 164.625 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "34" 2024-02-05 2024-03-01 0.99 190.070000000001 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "34" 2024-02-05 2024-03-02 0.01 17.93 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "34" 2024-02-05 2024-03-02 0.025 24.9 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "34" 2024-02-05 2024-03-02 0.05 28 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "34" 2024-02-05 2024-03-02 0.1 34 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "34" 2024-02-05 2024-03-02 0.15 38 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "34" 2024-02-05 2024-03-02 0.2 41.8 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "34" 2024-02-05 2024-03-02 0.25 44 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "34" 2024-02-05 2024-03-02 0.3 51.7 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "34" 2024-02-05 2024-03-02 0.35 55.3 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "34" 2024-02-05 2024-03-02 0.4 59 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "34" 2024-02-05 2024-03-02 0.45 66.55 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "34" 2024-02-05 2024-03-02 0.5 74.5 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "34" 2024-02-05 2024-03-02 0.55 77 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "34" 2024-02-05 2024-03-02 0.6 82.4 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "34" 2024-02-05 2024-03-02 0.65 86 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "34" 2024-02-05 2024-03-02 0.7 90.3 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "34" 2024-02-05 2024-03-02 0.75 99.7500000000001 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "34" 2024-02-05 2024-03-02 0.8 113.4 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "34" 2024-02-05 2024-03-02 0.85 120 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "34" 2024-02-05 2024-03-02 0.9 128.3 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "34" 2024-02-05 2024-03-02 0.95 158.15 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "34" 2024-02-05 2024-03-02 0.975 179.05 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "34" 2024-02-05 2024-03-02 0.99 183.66 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "34" 2024-02-05 2024-03-03 0.01 19.92 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "34" 2024-02-05 2024-03-03 0.025 21.9 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "34" 2024-02-05 2024-03-03 0.05 27 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "34" 2024-02-05 2024-03-03 0.1 32 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "34" 2024-02-05 2024-03-03 0.15 36.85 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "34" 2024-02-05 2024-03-03 0.2 38.8 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "34" 2024-02-05 2024-03-03 0.25 42.75 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "34" 2024-02-05 2024-03-03 0.3 51.7 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "34" 2024-02-05 2024-03-03 0.35 53.65 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "34" 2024-02-05 2024-03-03 0.4 57 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "34" 2024-02-05 2024-03-03 0.45 62.65 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "34" 2024-02-05 2024-03-03 0.5 66 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "34" 2024-02-05 2024-03-03 0.55 69.9 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "34" 2024-02-05 2024-03-03 0.6 74 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "34" 2024-02-05 2024-03-03 0.65 77.7 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "34" 2024-02-05 2024-03-03 0.7 87.6 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "34" 2024-02-05 2024-03-03 0.75 99.5000000000001 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "34" 2024-02-05 2024-03-03 0.8 114.2 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "34" 2024-02-05 2024-03-03 0.85 122.15 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "34" 2024-02-05 2024-03-03 0.9 145.2 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "34" 2024-02-05 2024-03-03 0.95 172.1 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "34" 2024-02-05 2024-03-03 0.975 178.15 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "34" 2024-02-05 2024-03-03 0.99 198.58 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "34" 2024-02-05 2024-03-04 0.01 20.93 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "34" 2024-02-05 2024-03-04 0.025 22.95 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "34" 2024-02-05 2024-03-04 0.05 28.75 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "34" 2024-02-05 2024-03-04 0.1 35.6 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "34" 2024-02-05 2024-03-04 0.15 39.85 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "34" 2024-02-05 2024-03-04 0.2 42.8 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "34" 2024-02-05 2024-03-04 0.25 48.75 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "34" 2024-02-05 2024-03-04 0.3 53 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "34" 2024-02-05 2024-03-04 0.35 56.3 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "34" 2024-02-05 2024-03-04 0.4 62.6 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "34" 2024-02-05 2024-03-04 0.45 69.1 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "34" 2024-02-05 2024-03-04 0.5 75 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "34" 2024-02-05 2024-03-04 0.55 83 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "34" 2024-02-05 2024-03-04 0.6 90.8 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "34" 2024-02-05 2024-03-04 0.65 100.35 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "34" 2024-02-05 2024-03-04 0.7 111 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "34" 2024-02-05 2024-03-04 0.75 117.25 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "34" 2024-02-05 2024-03-04 0.8 121.6 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "34" 2024-02-05 2024-03-04 0.85 130.35 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "34" 2024-02-05 2024-03-04 0.9 153 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "34" 2024-02-05 2024-03-04 0.95 179.15 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "34" 2024-02-05 2024-03-04 0.975 193.675 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "34" 2024-02-05 2024-03-04 0.99 206.560000000001 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "35" 2024-02-05 2024-02-06 0.01 1 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "35" 2024-02-05 2024-02-06 0.025 2 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "35" 2024-02-05 2024-02-06 0.05 2.95 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "35" 2024-02-05 2024-02-06 0.1 3 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "35" 2024-02-05 2024-02-06 0.15 4 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "35" 2024-02-05 2024-02-06 0.2 4 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "35" 2024-02-05 2024-02-06 0.25 5 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "35" 2024-02-05 2024-02-06 0.3 5 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "35" 2024-02-05 2024-02-06 0.35 6 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "35" 2024-02-05 2024-02-06 0.4 6 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "35" 2024-02-05 2024-02-06 0.45 7 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "35" 2024-02-05 2024-02-06 0.5 7 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "35" 2024-02-05 2024-02-06 0.55 8 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "35" 2024-02-05 2024-02-06 0.6 8.40000000000001 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "35" 2024-02-05 2024-02-06 0.65 9 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "35" 2024-02-05 2024-02-06 0.7 10 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "35" 2024-02-05 2024-02-06 0.75 10 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "35" 2024-02-05 2024-02-06 0.8 10 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "35" 2024-02-05 2024-02-06 0.85 11.15 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "35" 2024-02-05 2024-02-06 0.9 12.1 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "35" 2024-02-05 2024-02-06 0.95 14 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "35" 2024-02-05 2024-02-06 0.975 15.05 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "35" 2024-02-05 2024-02-06 0.99 17.02 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "35" 2024-02-05 2024-02-07 0.01 0.99 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "35" 2024-02-05 2024-02-07 0.025 2 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "35" 2024-02-05 2024-02-07 0.05 2 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "35" 2024-02-05 2024-02-07 0.1 3 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "35" 2024-02-05 2024-02-07 0.15 4 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "35" 2024-02-05 2024-02-07 0.2 4.8 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "35" 2024-02-05 2024-02-07 0.25 5 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "35" 2024-02-05 2024-02-07 0.3 5 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "35" 2024-02-05 2024-02-07 0.35 5.65000000000001 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "35" 2024-02-05 2024-02-07 0.4 6 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "35" 2024-02-05 2024-02-07 0.45 6.55 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "35" 2024-02-05 2024-02-07 0.5 7.5 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "35" 2024-02-05 2024-02-07 0.55 8 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "35" 2024-02-05 2024-02-07 0.6 8 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "35" 2024-02-05 2024-02-07 0.65 9 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "35" 2024-02-05 2024-02-07 0.7 10 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "35" 2024-02-05 2024-02-07 0.75 10.25 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "35" 2024-02-05 2024-02-07 0.8 11 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "35" 2024-02-05 2024-02-07 0.85 11 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "35" 2024-02-05 2024-02-07 0.9 12 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "35" 2024-02-05 2024-02-07 0.95 13 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "35" 2024-02-05 2024-02-07 0.975 13.525 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "35" 2024-02-05 2024-02-07 0.99 15.01 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "35" 2024-02-05 2024-02-08 0.01 2 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "35" 2024-02-05 2024-02-08 0.025 2 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "35" 2024-02-05 2024-02-08 0.05 3 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "35" 2024-02-05 2024-02-08 0.1 4 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "35" 2024-02-05 2024-02-08 0.15 4 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "35" 2024-02-05 2024-02-08 0.2 5 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "35" 2024-02-05 2024-02-08 0.25 5 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "35" 2024-02-05 2024-02-08 0.3 6 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "35" 2024-02-05 2024-02-08 0.35 6 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "35" 2024-02-05 2024-02-08 0.4 6.6 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "35" 2024-02-05 2024-02-08 0.45 7 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "35" 2024-02-05 2024-02-08 0.5 7 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "35" 2024-02-05 2024-02-08 0.55 8 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "35" 2024-02-05 2024-02-08 0.6 8 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "35" 2024-02-05 2024-02-08 0.65 8 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "35" 2024-02-05 2024-02-08 0.7 9 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "35" 2024-02-05 2024-02-08 0.75 10 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "35" 2024-02-05 2024-02-08 0.8 10 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "35" 2024-02-05 2024-02-08 0.85 11.15 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "35" 2024-02-05 2024-02-08 0.9 12 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "35" 2024-02-05 2024-02-08 0.95 14.05 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "35" 2024-02-05 2024-02-08 0.975 16.575 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "35" 2024-02-05 2024-02-08 0.99 18.01 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "35" 2024-02-05 2024-02-09 0.01 0.99 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "35" 2024-02-05 2024-02-09 0.025 1 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "35" 2024-02-05 2024-02-09 0.05 1 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "35" 2024-02-05 2024-02-09 0.1 2 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "35" 2024-02-05 2024-02-09 0.15 2.85 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "35" 2024-02-05 2024-02-09 0.2 3 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "35" 2024-02-05 2024-02-09 0.25 3 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "35" 2024-02-05 2024-02-09 0.3 4 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "35" 2024-02-05 2024-02-09 0.35 4.65000000000001 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "35" 2024-02-05 2024-02-09 0.4 5 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "35" 2024-02-05 2024-02-09 0.45 6 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "35" 2024-02-05 2024-02-09 0.5 6 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "35" 2024-02-05 2024-02-09 0.55 6 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "35" 2024-02-05 2024-02-09 0.6 7 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "35" 2024-02-05 2024-02-09 0.65 7 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "35" 2024-02-05 2024-02-09 0.7 8 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "35" 2024-02-05 2024-02-09 0.75 8 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "35" 2024-02-05 2024-02-09 0.8 8 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "35" 2024-02-05 2024-02-09 0.85 9 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "35" 2024-02-05 2024-02-09 0.9 9 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "35" 2024-02-05 2024-02-09 0.95 10.1 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "35" 2024-02-05 2024-02-09 0.975 12.525 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "35" 2024-02-05 2024-02-09 0.99 15.04 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "35" 2024-02-05 2024-02-10 0.01 0 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "35" 2024-02-05 2024-02-10 0.025 0.475 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "35" 2024-02-05 2024-02-10 0.05 1 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "35" 2024-02-05 2024-02-10 0.1 2 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "35" 2024-02-05 2024-02-10 0.15 2 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "35" 2024-02-05 2024-02-10 0.2 3 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "35" 2024-02-05 2024-02-10 0.25 3 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "35" 2024-02-05 2024-02-10 0.3 3 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "35" 2024-02-05 2024-02-10 0.35 4 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "35" 2024-02-05 2024-02-10 0.4 4 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "35" 2024-02-05 2024-02-10 0.45 4.55 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "35" 2024-02-05 2024-02-10 0.5 5 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "35" 2024-02-05 2024-02-10 0.55 6 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "35" 2024-02-05 2024-02-10 0.6 6 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "35" 2024-02-05 2024-02-10 0.65 6 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "35" 2024-02-05 2024-02-10 0.7 7 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "35" 2024-02-05 2024-02-10 0.75 7 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "35" 2024-02-05 2024-02-10 0.8 8 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "35" 2024-02-05 2024-02-10 0.85 9 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "35" 2024-02-05 2024-02-10 0.9 9.10000000000001 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "35" 2024-02-05 2024-02-10 0.95 12 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "35" 2024-02-05 2024-02-10 0.975 12.525 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "35" 2024-02-05 2024-02-10 0.99 15.06 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "35" 2024-02-05 2024-02-11 0.01 1 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "35" 2024-02-05 2024-02-11 0.025 2 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "35" 2024-02-05 2024-02-11 0.05 2 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "35" 2024-02-05 2024-02-11 0.1 3 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "35" 2024-02-05 2024-02-11 0.15 3 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "35" 2024-02-05 2024-02-11 0.2 4 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "35" 2024-02-05 2024-02-11 0.25 4 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "35" 2024-02-05 2024-02-11 0.3 5 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "35" 2024-02-05 2024-02-11 0.35 5 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "35" 2024-02-05 2024-02-11 0.4 5.6 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "35" 2024-02-05 2024-02-11 0.45 6 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "35" 2024-02-05 2024-02-11 0.5 6 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "35" 2024-02-05 2024-02-11 0.55 6 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "35" 2024-02-05 2024-02-11 0.6 7 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "35" 2024-02-05 2024-02-11 0.65 7 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "35" 2024-02-05 2024-02-11 0.7 7 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "35" 2024-02-05 2024-02-11 0.75 8 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "35" 2024-02-05 2024-02-11 0.8 8 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "35" 2024-02-05 2024-02-11 0.85 9 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "35" 2024-02-05 2024-02-11 0.9 9.10000000000001 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "35" 2024-02-05 2024-02-11 0.95 11.05 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "35" 2024-02-05 2024-02-11 0.975 12.525 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "35" 2024-02-05 2024-02-11 0.99 14.04 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "35" 2024-02-05 2024-02-12 0.01 0.99 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "35" 2024-02-05 2024-02-12 0.025 2 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "35" 2024-02-05 2024-02-12 0.05 3 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "35" 2024-02-05 2024-02-12 0.1 3 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "35" 2024-02-05 2024-02-12 0.15 4 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "35" 2024-02-05 2024-02-12 0.2 4 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "35" 2024-02-05 2024-02-12 0.25 4.75 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "35" 2024-02-05 2024-02-12 0.3 5 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "35" 2024-02-05 2024-02-12 0.35 5 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "35" 2024-02-05 2024-02-12 0.4 6 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "35" 2024-02-05 2024-02-12 0.45 6 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "35" 2024-02-05 2024-02-12 0.5 6 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "35" 2024-02-05 2024-02-12 0.55 7 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "35" 2024-02-05 2024-02-12 0.6 7 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "35" 2024-02-05 2024-02-12 0.65 8 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "35" 2024-02-05 2024-02-12 0.7 8 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "35" 2024-02-05 2024-02-12 0.75 9 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "35" 2024-02-05 2024-02-12 0.8 9.2 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "35" 2024-02-05 2024-02-12 0.85 10.15 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "35" 2024-02-05 2024-02-12 0.9 12 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "35" 2024-02-05 2024-02-12 0.95 13.1 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "35" 2024-02-05 2024-02-12 0.975 15.525 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "35" 2024-02-05 2024-02-12 0.99 17.05 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "35" 2024-02-05 2024-02-13 0.01 1 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "35" 2024-02-05 2024-02-13 0.025 2 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "35" 2024-02-05 2024-02-13 0.05 2 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "35" 2024-02-05 2024-02-13 0.1 3 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "35" 2024-02-05 2024-02-13 0.15 3 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "35" 2024-02-05 2024-02-13 0.2 3 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "35" 2024-02-05 2024-02-13 0.25 4 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "35" 2024-02-05 2024-02-13 0.3 4.7 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "35" 2024-02-05 2024-02-13 0.35 5 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "35" 2024-02-05 2024-02-13 0.4 5.6 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "35" 2024-02-05 2024-02-13 0.45 6 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "35" 2024-02-05 2024-02-13 0.5 7 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "35" 2024-02-05 2024-02-13 0.55 7 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "35" 2024-02-05 2024-02-13 0.6 7 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "35" 2024-02-05 2024-02-13 0.65 8 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "35" 2024-02-05 2024-02-13 0.7 8 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "35" 2024-02-05 2024-02-13 0.75 9 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "35" 2024-02-05 2024-02-13 0.8 10 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "35" 2024-02-05 2024-02-13 0.85 10 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "35" 2024-02-05 2024-02-13 0.9 11 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "35" 2024-02-05 2024-02-13 0.95 13 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "35" 2024-02-05 2024-02-13 0.975 14.575 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "35" 2024-02-05 2024-02-13 0.99 16.03 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "35" 2024-02-05 2024-02-14 0.01 1.99 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "35" 2024-02-05 2024-02-14 0.025 2 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "35" 2024-02-05 2024-02-14 0.05 2 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "35" 2024-02-05 2024-02-14 0.1 3 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "35" 2024-02-05 2024-02-14 0.15 3.85 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "35" 2024-02-05 2024-02-14 0.2 4 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "35" 2024-02-05 2024-02-14 0.25 4 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "35" 2024-02-05 2024-02-14 0.3 4 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "35" 2024-02-05 2024-02-14 0.35 5 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "35" 2024-02-05 2024-02-14 0.4 5 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "35" 2024-02-05 2024-02-14 0.45 5 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "35" 2024-02-05 2024-02-14 0.5 6 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "35" 2024-02-05 2024-02-14 0.55 6 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "35" 2024-02-05 2024-02-14 0.6 7 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "35" 2024-02-05 2024-02-14 0.65 7 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "35" 2024-02-05 2024-02-14 0.7 8 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "35" 2024-02-05 2024-02-14 0.75 8 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "35" 2024-02-05 2024-02-14 0.8 9 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "35" 2024-02-05 2024-02-14 0.85 9.15000000000001 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "35" 2024-02-05 2024-02-14 0.9 10 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "35" 2024-02-05 2024-02-14 0.95 12 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "35" 2024-02-05 2024-02-14 0.975 12 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "35" 2024-02-05 2024-02-14 0.99 13.02 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "35" 2024-02-05 2024-02-15 0.01 2 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "35" 2024-02-05 2024-02-15 0.025 2.475 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "35" 2024-02-05 2024-02-15 0.05 3 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "35" 2024-02-05 2024-02-15 0.1 3 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "35" 2024-02-05 2024-02-15 0.15 3.85 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "35" 2024-02-05 2024-02-15 0.2 4 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "35" 2024-02-05 2024-02-15 0.25 4 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "35" 2024-02-05 2024-02-15 0.3 5 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "35" 2024-02-05 2024-02-15 0.35 6 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "35" 2024-02-05 2024-02-15 0.4 6 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "35" 2024-02-05 2024-02-15 0.45 7 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "35" 2024-02-05 2024-02-15 0.5 7 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "35" 2024-02-05 2024-02-15 0.55 7 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "35" 2024-02-05 2024-02-15 0.6 8 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "35" 2024-02-05 2024-02-15 0.65 8 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "35" 2024-02-05 2024-02-15 0.7 9 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "35" 2024-02-05 2024-02-15 0.75 9 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "35" 2024-02-05 2024-02-15 0.8 10 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "35" 2024-02-05 2024-02-15 0.85 10.15 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "35" 2024-02-05 2024-02-15 0.9 12.1 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "35" 2024-02-05 2024-02-15 0.95 14.05 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "35" 2024-02-05 2024-02-15 0.975 17 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "35" 2024-02-05 2024-02-15 0.99 20.02 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "35" 2024-02-05 2024-02-16 0.01 0.99 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "35" 2024-02-05 2024-02-16 0.025 1 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "35" 2024-02-05 2024-02-16 0.05 1.95 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "35" 2024-02-05 2024-02-16 0.1 2 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "35" 2024-02-05 2024-02-16 0.15 3 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "35" 2024-02-05 2024-02-16 0.2 3 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "35" 2024-02-05 2024-02-16 0.25 3 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "35" 2024-02-05 2024-02-16 0.3 4 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "35" 2024-02-05 2024-02-16 0.35 4 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "35" 2024-02-05 2024-02-16 0.4 5 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "35" 2024-02-05 2024-02-16 0.45 5 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "35" 2024-02-05 2024-02-16 0.5 6 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "35" 2024-02-05 2024-02-16 0.55 6 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "35" 2024-02-05 2024-02-16 0.6 7 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "35" 2024-02-05 2024-02-16 0.65 7 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "35" 2024-02-05 2024-02-16 0.7 7 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "35" 2024-02-05 2024-02-16 0.75 8 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "35" 2024-02-05 2024-02-16 0.8 8 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "35" 2024-02-05 2024-02-16 0.85 9 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "35" 2024-02-05 2024-02-16 0.9 9.10000000000001 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "35" 2024-02-05 2024-02-16 0.95 11.1 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "35" 2024-02-05 2024-02-16 0.975 13 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "35" 2024-02-05 2024-02-16 0.99 16.01 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "35" 2024-02-05 2024-02-17 0.01 0.99 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "35" 2024-02-05 2024-02-17 0.025 1 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "35" 2024-02-05 2024-02-17 0.05 1 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "35" 2024-02-05 2024-02-17 0.1 2 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "35" 2024-02-05 2024-02-17 0.15 3 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "35" 2024-02-05 2024-02-17 0.2 3 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "35" 2024-02-05 2024-02-17 0.25 3 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "35" 2024-02-05 2024-02-17 0.3 3 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "35" 2024-02-05 2024-02-17 0.35 4 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "35" 2024-02-05 2024-02-17 0.4 4 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "35" 2024-02-05 2024-02-17 0.45 4.55 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "35" 2024-02-05 2024-02-17 0.5 5 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "35" 2024-02-05 2024-02-17 0.55 5 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "35" 2024-02-05 2024-02-17 0.6 5.40000000000001 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "35" 2024-02-05 2024-02-17 0.65 6 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "35" 2024-02-05 2024-02-17 0.7 6 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "35" 2024-02-05 2024-02-17 0.75 7 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "35" 2024-02-05 2024-02-17 0.8 8 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "35" 2024-02-05 2024-02-17 0.85 9 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "35" 2024-02-05 2024-02-17 0.9 10.1 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "35" 2024-02-05 2024-02-17 0.95 11.05 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "35" 2024-02-05 2024-02-17 0.975 12 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "35" 2024-02-05 2024-02-17 0.99 13.02 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "35" 2024-02-05 2024-02-18 0.01 0.99 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "35" 2024-02-05 2024-02-18 0.025 1 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "35" 2024-02-05 2024-02-18 0.05 1 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "35" 2024-02-05 2024-02-18 0.1 2 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "35" 2024-02-05 2024-02-18 0.15 3 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "35" 2024-02-05 2024-02-18 0.2 3 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "35" 2024-02-05 2024-02-18 0.25 3 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "35" 2024-02-05 2024-02-18 0.3 4 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "35" 2024-02-05 2024-02-18 0.35 4 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "35" 2024-02-05 2024-02-18 0.4 4 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "35" 2024-02-05 2024-02-18 0.45 5 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "35" 2024-02-05 2024-02-18 0.5 5 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "35" 2024-02-05 2024-02-18 0.55 5.45 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "35" 2024-02-05 2024-02-18 0.6 6 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "35" 2024-02-05 2024-02-18 0.65 6.35000000000001 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "35" 2024-02-05 2024-02-18 0.7 7 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "35" 2024-02-05 2024-02-18 0.75 8 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "35" 2024-02-05 2024-02-18 0.8 8 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "35" 2024-02-05 2024-02-18 0.85 10 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "35" 2024-02-05 2024-02-18 0.9 11.1 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "35" 2024-02-05 2024-02-18 0.95 13.15 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "35" 2024-02-05 2024-02-18 0.975 18 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "35" 2024-02-05 2024-02-18 0.99 19.02 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "35" 2024-02-05 2024-02-19 0.01 0.99 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "35" 2024-02-05 2024-02-19 0.025 1 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "35" 2024-02-05 2024-02-19 0.05 1.95 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "35" 2024-02-05 2024-02-19 0.1 2 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "35" 2024-02-05 2024-02-19 0.15 3 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "35" 2024-02-05 2024-02-19 0.2 3 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "35" 2024-02-05 2024-02-19 0.25 3.75 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "35" 2024-02-05 2024-02-19 0.3 4 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "35" 2024-02-05 2024-02-19 0.35 4 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "35" 2024-02-05 2024-02-19 0.4 5 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "35" 2024-02-05 2024-02-19 0.45 5 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "35" 2024-02-05 2024-02-19 0.5 6 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "35" 2024-02-05 2024-02-19 0.55 6 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "35" 2024-02-05 2024-02-19 0.6 6 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "35" 2024-02-05 2024-02-19 0.65 7 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "35" 2024-02-05 2024-02-19 0.7 7 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "35" 2024-02-05 2024-02-19 0.75 8 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "35" 2024-02-05 2024-02-19 0.8 8 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "35" 2024-02-05 2024-02-19 0.85 9.15000000000001 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "35" 2024-02-05 2024-02-19 0.9 10 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "35" 2024-02-05 2024-02-19 0.95 12 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "35" 2024-02-05 2024-02-19 0.975 12.525 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "35" 2024-02-05 2024-02-19 0.99 13.05 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "35" 2024-02-05 2024-02-20 0.01 0 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "35" 2024-02-05 2024-02-20 0.025 1 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "35" 2024-02-05 2024-02-20 0.05 1 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "35" 2024-02-05 2024-02-20 0.1 2 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "35" 2024-02-05 2024-02-20 0.15 3 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "35" 2024-02-05 2024-02-20 0.2 3 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "35" 2024-02-05 2024-02-20 0.25 4 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "35" 2024-02-05 2024-02-20 0.3 4 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "35" 2024-02-05 2024-02-20 0.35 5 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "35" 2024-02-05 2024-02-20 0.4 5 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "35" 2024-02-05 2024-02-20 0.45 5 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "35" 2024-02-05 2024-02-20 0.5 6 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "35" 2024-02-05 2024-02-20 0.55 6 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "35" 2024-02-05 2024-02-20 0.6 6.40000000000001 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "35" 2024-02-05 2024-02-20 0.65 7 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "35" 2024-02-05 2024-02-20 0.7 8 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "35" 2024-02-05 2024-02-20 0.75 8 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "35" 2024-02-05 2024-02-20 0.8 9 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "35" 2024-02-05 2024-02-20 0.85 9.15000000000001 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "35" 2024-02-05 2024-02-20 0.9 11 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "35" 2024-02-05 2024-02-20 0.95 12 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "35" 2024-02-05 2024-02-20 0.975 13 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "35" 2024-02-05 2024-02-20 0.99 13.03 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "35" 2024-02-05 2024-02-21 0.01 0.99 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "35" 2024-02-05 2024-02-21 0.025 1.475 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "35" 2024-02-05 2024-02-21 0.05 2 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "35" 2024-02-05 2024-02-21 0.1 3 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "35" 2024-02-05 2024-02-21 0.15 3 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "35" 2024-02-05 2024-02-21 0.2 4 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "35" 2024-02-05 2024-02-21 0.25 4 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "35" 2024-02-05 2024-02-21 0.3 4 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "35" 2024-02-05 2024-02-21 0.35 5 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "35" 2024-02-05 2024-02-21 0.4 5 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "35" 2024-02-05 2024-02-21 0.45 6 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "35" 2024-02-05 2024-02-21 0.5 6 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "35" 2024-02-05 2024-02-21 0.55 7 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "35" 2024-02-05 2024-02-21 0.6 7 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "35" 2024-02-05 2024-02-21 0.65 8 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "35" 2024-02-05 2024-02-21 0.7 8 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "35" 2024-02-05 2024-02-21 0.75 9 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "35" 2024-02-05 2024-02-21 0.8 9 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "35" 2024-02-05 2024-02-21 0.85 10 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "35" 2024-02-05 2024-02-21 0.9 12 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "35" 2024-02-05 2024-02-21 0.95 13.05 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "35" 2024-02-05 2024-02-21 0.975 14.525 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "35" 2024-02-05 2024-02-21 0.99 18.04 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "35" 2024-02-05 2024-02-22 0.01 0.99 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "35" 2024-02-05 2024-02-22 0.025 1 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "35" 2024-02-05 2024-02-22 0.05 1 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "35" 2024-02-05 2024-02-22 0.1 2 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "35" 2024-02-05 2024-02-22 0.15 3 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "35" 2024-02-05 2024-02-22 0.2 3 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "35" 2024-02-05 2024-02-22 0.25 3.75 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "35" 2024-02-05 2024-02-22 0.3 4 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "35" 2024-02-05 2024-02-22 0.35 4 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "35" 2024-02-05 2024-02-22 0.4 4 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "35" 2024-02-05 2024-02-22 0.45 5 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "35" 2024-02-05 2024-02-22 0.5 5 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "35" 2024-02-05 2024-02-22 0.55 5 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "35" 2024-02-05 2024-02-22 0.6 6 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "35" 2024-02-05 2024-02-22 0.65 6.35000000000001 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "35" 2024-02-05 2024-02-22 0.7 7.30000000000001 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "35" 2024-02-05 2024-02-22 0.75 8 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "35" 2024-02-05 2024-02-22 0.8 9.2 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "35" 2024-02-05 2024-02-22 0.85 10.15 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "35" 2024-02-05 2024-02-22 0.9 11 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "35" 2024-02-05 2024-02-22 0.95 12 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "35" 2024-02-05 2024-02-22 0.975 13 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "35" 2024-02-05 2024-02-22 0.99 13.1800000000001 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "35" 2024-02-05 2024-02-23 0.01 0.99 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "35" 2024-02-05 2024-02-23 0.025 1 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "35" 2024-02-05 2024-02-23 0.05 1 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "35" 2024-02-05 2024-02-23 0.1 1 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "35" 2024-02-05 2024-02-23 0.15 2 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "35" 2024-02-05 2024-02-23 0.2 2 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "35" 2024-02-05 2024-02-23 0.25 3 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "35" 2024-02-05 2024-02-23 0.3 3.7 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "35" 2024-02-05 2024-02-23 0.35 4 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "35" 2024-02-05 2024-02-23 0.4 4 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "35" 2024-02-05 2024-02-23 0.45 4 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "35" 2024-02-05 2024-02-23 0.5 5 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "35" 2024-02-05 2024-02-23 0.55 5 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "35" 2024-02-05 2024-02-23 0.6 6 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "35" 2024-02-05 2024-02-23 0.65 6 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "35" 2024-02-05 2024-02-23 0.7 7 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "35" 2024-02-05 2024-02-23 0.75 7 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "35" 2024-02-05 2024-02-23 0.8 7.2 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "35" 2024-02-05 2024-02-23 0.85 8 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "35" 2024-02-05 2024-02-23 0.9 9.10000000000001 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "35" 2024-02-05 2024-02-23 0.95 11 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "35" 2024-02-05 2024-02-23 0.975 12.525 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "35" 2024-02-05 2024-02-23 0.99 14.03 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "35" 2024-02-05 2024-02-24 0.01 0 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "35" 2024-02-05 2024-02-24 0.025 0 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "35" 2024-02-05 2024-02-24 0.05 1 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "35" 2024-02-05 2024-02-24 0.1 2 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "35" 2024-02-05 2024-02-24 0.15 2 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "35" 2024-02-05 2024-02-24 0.2 2 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "35" 2024-02-05 2024-02-24 0.25 2 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "35" 2024-02-05 2024-02-24 0.3 3 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "35" 2024-02-05 2024-02-24 0.35 3 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "35" 2024-02-05 2024-02-24 0.4 3 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "35" 2024-02-05 2024-02-24 0.45 4 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "35" 2024-02-05 2024-02-24 0.5 4 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "35" 2024-02-05 2024-02-24 0.55 5 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "35" 2024-02-05 2024-02-24 0.6 5 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "35" 2024-02-05 2024-02-24 0.65 6 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "35" 2024-02-05 2024-02-24 0.7 6 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "35" 2024-02-05 2024-02-24 0.75 6 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "35" 2024-02-05 2024-02-24 0.8 7 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "35" 2024-02-05 2024-02-24 0.85 7 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "35" 2024-02-05 2024-02-24 0.9 9 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "35" 2024-02-05 2024-02-24 0.95 11.1 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "35" 2024-02-05 2024-02-24 0.975 13.525 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "35" 2024-02-05 2024-02-24 0.99 15.05 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "35" 2024-02-05 2024-02-25 0.01 1 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "35" 2024-02-05 2024-02-25 0.025 1 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "35" 2024-02-05 2024-02-25 0.05 1 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "35" 2024-02-05 2024-02-25 0.1 2 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "35" 2024-02-05 2024-02-25 0.15 2 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "35" 2024-02-05 2024-02-25 0.2 2.8 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "35" 2024-02-05 2024-02-25 0.25 3 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "35" 2024-02-05 2024-02-25 0.3 3 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "35" 2024-02-05 2024-02-25 0.35 4 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "35" 2024-02-05 2024-02-25 0.4 4 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "35" 2024-02-05 2024-02-25 0.45 4 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "35" 2024-02-05 2024-02-25 0.5 5 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "35" 2024-02-05 2024-02-25 0.55 5 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "35" 2024-02-05 2024-02-25 0.6 5 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "35" 2024-02-05 2024-02-25 0.65 6 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "35" 2024-02-05 2024-02-25 0.7 7 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "35" 2024-02-05 2024-02-25 0.75 8 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "35" 2024-02-05 2024-02-25 0.8 9 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "35" 2024-02-05 2024-02-25 0.85 10 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "35" 2024-02-05 2024-02-25 0.9 11 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "35" 2024-02-05 2024-02-25 0.95 12 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "35" 2024-02-05 2024-02-25 0.975 14.575 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "35" 2024-02-05 2024-02-25 0.99 17.02 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "35" 2024-02-05 2024-02-26 0.01 1 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "35" 2024-02-05 2024-02-26 0.025 2 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "35" 2024-02-05 2024-02-26 0.05 2 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "35" 2024-02-05 2024-02-26 0.1 2.9 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "35" 2024-02-05 2024-02-26 0.15 3 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "35" 2024-02-05 2024-02-26 0.2 3 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "35" 2024-02-05 2024-02-26 0.25 4 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "35" 2024-02-05 2024-02-26 0.3 4 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "35" 2024-02-05 2024-02-26 0.35 5 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "35" 2024-02-05 2024-02-26 0.4 5 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "35" 2024-02-05 2024-02-26 0.45 5 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "35" 2024-02-05 2024-02-26 0.5 6 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "35" 2024-02-05 2024-02-26 0.55 6 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "35" 2024-02-05 2024-02-26 0.6 6 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "35" 2024-02-05 2024-02-26 0.65 6 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "35" 2024-02-05 2024-02-26 0.7 7 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "35" 2024-02-05 2024-02-26 0.75 7.25000000000001 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "35" 2024-02-05 2024-02-26 0.8 8 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "35" 2024-02-05 2024-02-26 0.85 9 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "35" 2024-02-05 2024-02-26 0.9 10 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "35" 2024-02-05 2024-02-26 0.95 11.1 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "35" 2024-02-05 2024-02-26 0.975 13 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "35" 2024-02-05 2024-02-26 0.99 15.03 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "35" 2024-02-05 2024-02-27 0.01 0 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "35" 2024-02-05 2024-02-27 0.025 1 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "35" 2024-02-05 2024-02-27 0.05 1 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "35" 2024-02-05 2024-02-27 0.1 2 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "35" 2024-02-05 2024-02-27 0.15 2 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "35" 2024-02-05 2024-02-27 0.2 3 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "35" 2024-02-05 2024-02-27 0.25 3.75 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "35" 2024-02-05 2024-02-27 0.3 4 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "35" 2024-02-05 2024-02-27 0.35 4 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "35" 2024-02-05 2024-02-27 0.4 5 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "35" 2024-02-05 2024-02-27 0.45 5 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "35" 2024-02-05 2024-02-27 0.5 6 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "35" 2024-02-05 2024-02-27 0.55 6 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "35" 2024-02-05 2024-02-27 0.6 6 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "35" 2024-02-05 2024-02-27 0.65 7 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "35" 2024-02-05 2024-02-27 0.7 7 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "35" 2024-02-05 2024-02-27 0.75 8 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "35" 2024-02-05 2024-02-27 0.8 9 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "35" 2024-02-05 2024-02-27 0.85 10 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "35" 2024-02-05 2024-02-27 0.9 12 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "35" 2024-02-05 2024-02-27 0.95 13 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "35" 2024-02-05 2024-02-27 0.975 14.05 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "35" 2024-02-05 2024-02-27 0.99 16.03 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "35" 2024-02-05 2024-02-28 0.01 0.99 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "35" 2024-02-05 2024-02-28 0.025 1 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "35" 2024-02-05 2024-02-28 0.05 1 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "35" 2024-02-05 2024-02-28 0.1 2 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "35" 2024-02-05 2024-02-28 0.15 2.85 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "35" 2024-02-05 2024-02-28 0.2 3 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "35" 2024-02-05 2024-02-28 0.25 3.75 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "35" 2024-02-05 2024-02-28 0.3 4 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "35" 2024-02-05 2024-02-28 0.35 4 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "35" 2024-02-05 2024-02-28 0.4 5 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "35" 2024-02-05 2024-02-28 0.45 5 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "35" 2024-02-05 2024-02-28 0.5 6 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "35" 2024-02-05 2024-02-28 0.55 7 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "35" 2024-02-05 2024-02-28 0.6 7 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "35" 2024-02-05 2024-02-28 0.65 8 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "35" 2024-02-05 2024-02-28 0.7 8 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "35" 2024-02-05 2024-02-28 0.75 9 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "35" 2024-02-05 2024-02-28 0.8 9 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "35" 2024-02-05 2024-02-28 0.85 10 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "35" 2024-02-05 2024-02-28 0.9 12 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "35" 2024-02-05 2024-02-28 0.95 13 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "35" 2024-02-05 2024-02-28 0.975 15.05 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "35" 2024-02-05 2024-02-28 0.99 19.06 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "35" 2024-02-05 2024-02-29 0.01 0 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "35" 2024-02-05 2024-02-29 0.025 0 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "35" 2024-02-05 2024-02-29 0.05 1 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "35" 2024-02-05 2024-02-29 0.1 2 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "35" 2024-02-05 2024-02-29 0.15 2 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "35" 2024-02-05 2024-02-29 0.2 3 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "35" 2024-02-05 2024-02-29 0.25 4 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "35" 2024-02-05 2024-02-29 0.3 4 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "35" 2024-02-05 2024-02-29 0.35 4.65000000000001 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "35" 2024-02-05 2024-02-29 0.4 5 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "35" 2024-02-05 2024-02-29 0.45 5 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "35" 2024-02-05 2024-02-29 0.5 6 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "35" 2024-02-05 2024-02-29 0.55 6 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "35" 2024-02-05 2024-02-29 0.6 7 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "35" 2024-02-05 2024-02-29 0.65 7 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "35" 2024-02-05 2024-02-29 0.7 8 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "35" 2024-02-05 2024-02-29 0.75 8 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "35" 2024-02-05 2024-02-29 0.8 9.2 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "35" 2024-02-05 2024-02-29 0.85 10.15 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "35" 2024-02-05 2024-02-29 0.9 12 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "35" 2024-02-05 2024-02-29 0.95 13 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "35" 2024-02-05 2024-02-29 0.975 13.525 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "35" 2024-02-05 2024-02-29 0.99 14.05 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "35" 2024-02-05 2024-03-01 0.01 0 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "35" 2024-02-05 2024-03-01 0.025 0 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "35" 2024-02-05 2024-03-01 0.05 1 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "35" 2024-02-05 2024-03-01 0.1 1 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "35" 2024-02-05 2024-03-01 0.15 2 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "35" 2024-02-05 2024-03-01 0.2 2 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "35" 2024-02-05 2024-03-01 0.25 2 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "35" 2024-02-05 2024-03-01 0.3 3 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "35" 2024-02-05 2024-03-01 0.35 3 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "35" 2024-02-05 2024-03-01 0.4 3 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "35" 2024-02-05 2024-03-01 0.45 4 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "35" 2024-02-05 2024-03-01 0.5 4 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "35" 2024-02-05 2024-03-01 0.55 4 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "35" 2024-02-05 2024-03-01 0.6 5 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "35" 2024-02-05 2024-03-01 0.65 5 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "35" 2024-02-05 2024-03-01 0.7 5.30000000000001 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "35" 2024-02-05 2024-03-01 0.75 6 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "35" 2024-02-05 2024-03-01 0.8 6 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "35" 2024-02-05 2024-03-01 0.85 7 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "35" 2024-02-05 2024-03-01 0.9 8.10000000000001 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "35" 2024-02-05 2024-03-01 0.95 11.1 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "35" 2024-02-05 2024-03-01 0.975 13 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "35" 2024-02-05 2024-03-01 0.99 13.04 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "35" 2024-02-05 2024-03-02 0.01 0 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "35" 2024-02-05 2024-03-02 0.025 0 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "35" 2024-02-05 2024-03-02 0.05 0.95 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "35" 2024-02-05 2024-03-02 0.1 1 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "35" 2024-02-05 2024-03-02 0.15 1 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "35" 2024-02-05 2024-03-02 0.2 2 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "35" 2024-02-05 2024-03-02 0.25 2 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "35" 2024-02-05 2024-03-02 0.3 3 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "35" 2024-02-05 2024-03-02 0.35 3 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "35" 2024-02-05 2024-03-02 0.4 4 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "35" 2024-02-05 2024-03-02 0.45 4 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "35" 2024-02-05 2024-03-02 0.5 4 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "35" 2024-02-05 2024-03-02 0.55 5 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "35" 2024-02-05 2024-03-02 0.6 5 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "35" 2024-02-05 2024-03-02 0.65 5.35000000000001 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "35" 2024-02-05 2024-03-02 0.7 6 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "35" 2024-02-05 2024-03-02 0.75 6 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "35" 2024-02-05 2024-03-02 0.8 7 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "35" 2024-02-05 2024-03-02 0.85 7.15000000000001 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "35" 2024-02-05 2024-03-02 0.9 9 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "35" 2024-02-05 2024-03-02 0.95 12.05 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "35" 2024-02-05 2024-03-02 0.975 13 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "35" 2024-02-05 2024-03-02 0.99 15.03 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "35" 2024-02-05 2024-03-03 0.01 1 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "35" 2024-02-05 2024-03-03 0.025 1 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "35" 2024-02-05 2024-03-03 0.05 1 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "35" 2024-02-05 2024-03-03 0.1 1.9 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "35" 2024-02-05 2024-03-03 0.15 2 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "35" 2024-02-05 2024-03-03 0.2 2 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "35" 2024-02-05 2024-03-03 0.25 3 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "35" 2024-02-05 2024-03-03 0.3 3 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "35" 2024-02-05 2024-03-03 0.35 3.65000000000001 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "35" 2024-02-05 2024-03-03 0.4 4 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "35" 2024-02-05 2024-03-03 0.45 4 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "35" 2024-02-05 2024-03-03 0.5 4 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "35" 2024-02-05 2024-03-03 0.55 5 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "35" 2024-02-05 2024-03-03 0.6 5 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "35" 2024-02-05 2024-03-03 0.65 5.35000000000001 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "35" 2024-02-05 2024-03-03 0.7 6 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "35" 2024-02-05 2024-03-03 0.75 7 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "35" 2024-02-05 2024-03-03 0.8 7 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "35" 2024-02-05 2024-03-03 0.85 9 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "35" 2024-02-05 2024-03-03 0.9 9 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "35" 2024-02-05 2024-03-03 0.95 10.05 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "35" 2024-02-05 2024-03-03 0.975 13.525 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "35" 2024-02-05 2024-03-03 0.99 15.01 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "35" 2024-02-05 2024-03-04 0.01 1 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "35" 2024-02-05 2024-03-04 0.025 1 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "35" 2024-02-05 2024-03-04 0.05 1 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "35" 2024-02-05 2024-03-04 0.1 2 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "35" 2024-02-05 2024-03-04 0.15 2 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "35" 2024-02-05 2024-03-04 0.2 3 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "35" 2024-02-05 2024-03-04 0.25 3 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "35" 2024-02-05 2024-03-04 0.3 4 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "35" 2024-02-05 2024-03-04 0.35 4 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "35" 2024-02-05 2024-03-04 0.4 4.6 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "35" 2024-02-05 2024-03-04 0.45 5 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "35" 2024-02-05 2024-03-04 0.5 5 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "35" 2024-02-05 2024-03-04 0.55 6 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "35" 2024-02-05 2024-03-04 0.6 6 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "35" 2024-02-05 2024-03-04 0.65 6 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "35" 2024-02-05 2024-03-04 0.7 6.30000000000001 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "35" 2024-02-05 2024-03-04 0.75 7 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "35" 2024-02-05 2024-03-04 0.8 8 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "35" 2024-02-05 2024-03-04 0.85 8 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "35" 2024-02-05 2024-03-04 0.9 9 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "35" 2024-02-05 2024-03-04 0.95 12 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "35" 2024-02-05 2024-03-04 0.975 12 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "35" 2024-02-05 2024-03-04 0.99 13.01 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "32" 2024-02-05 2024-02-06 0.01 9 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "32" 2024-02-05 2024-02-06 0.025 10.475 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "32" 2024-02-05 2024-02-06 0.05 11 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "32" 2024-02-05 2024-02-06 0.1 14 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "32" 2024-02-05 2024-02-06 0.15 16 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "32" 2024-02-05 2024-02-06 0.2 17 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "32" 2024-02-05 2024-02-06 0.25 17 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "32" 2024-02-05 2024-02-06 0.3 18 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "32" 2024-02-05 2024-02-06 0.35 20 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "32" 2024-02-05 2024-02-06 0.4 21 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "32" 2024-02-05 2024-02-06 0.45 21.55 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "32" 2024-02-05 2024-02-06 0.5 22.5 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "32" 2024-02-05 2024-02-06 0.55 24 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "32" 2024-02-05 2024-02-06 0.6 24 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "32" 2024-02-05 2024-02-06 0.65 25.35 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "32" 2024-02-05 2024-02-06 0.7 26 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "32" 2024-02-05 2024-02-06 0.75 27 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "32" 2024-02-05 2024-02-06 0.8 29 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "32" 2024-02-05 2024-02-06 0.85 29.15 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "32" 2024-02-05 2024-02-06 0.9 31 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "32" 2024-02-05 2024-02-06 0.95 33 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "32" 2024-02-05 2024-02-06 0.975 36.05 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "32" 2024-02-05 2024-02-06 0.99 38.01 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "32" 2024-02-05 2024-02-07 0.01 12 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "32" 2024-02-05 2024-02-07 0.025 12.475 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "32" 2024-02-05 2024-02-07 0.05 13 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "32" 2024-02-05 2024-02-07 0.1 15 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "32" 2024-02-05 2024-02-07 0.15 17 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "32" 2024-02-05 2024-02-07 0.2 18 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "32" 2024-02-05 2024-02-07 0.25 19 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "32" 2024-02-05 2024-02-07 0.3 19 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "32" 2024-02-05 2024-02-07 0.35 20 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "32" 2024-02-05 2024-02-07 0.4 21 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "32" 2024-02-05 2024-02-07 0.45 21.55 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "32" 2024-02-05 2024-02-07 0.5 22 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "32" 2024-02-05 2024-02-07 0.55 23.45 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "32" 2024-02-05 2024-02-07 0.6 24 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "32" 2024-02-05 2024-02-07 0.65 26 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "32" 2024-02-05 2024-02-07 0.7 26.3 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "32" 2024-02-05 2024-02-07 0.75 27 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "32" 2024-02-05 2024-02-07 0.8 28 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "32" 2024-02-05 2024-02-07 0.85 30 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "32" 2024-02-05 2024-02-07 0.9 31 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "32" 2024-02-05 2024-02-07 0.95 32 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "32" 2024-02-05 2024-02-07 0.975 34.05 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "32" 2024-02-05 2024-02-07 0.99 37.06 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "32" 2024-02-05 2024-02-08 0.01 13.97 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "32" 2024-02-05 2024-02-08 0.025 15 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "32" 2024-02-05 2024-02-08 0.05 15.95 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "32" 2024-02-05 2024-02-08 0.1 18 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "32" 2024-02-05 2024-02-08 0.15 19 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "32" 2024-02-05 2024-02-08 0.2 20 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "32" 2024-02-05 2024-02-08 0.25 21 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "32" 2024-02-05 2024-02-08 0.3 21.7 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "32" 2024-02-05 2024-02-08 0.35 22.65 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "32" 2024-02-05 2024-02-08 0.4 23 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "32" 2024-02-05 2024-02-08 0.45 24 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "32" 2024-02-05 2024-02-08 0.5 25 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "32" 2024-02-05 2024-02-08 0.55 25.45 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "32" 2024-02-05 2024-02-08 0.6 26 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "32" 2024-02-05 2024-02-08 0.65 27 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "32" 2024-02-05 2024-02-08 0.7 28 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "32" 2024-02-05 2024-02-08 0.75 28 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "32" 2024-02-05 2024-02-08 0.8 31 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "32" 2024-02-05 2024-02-08 0.85 32 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "32" 2024-02-05 2024-02-08 0.9 33.2 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "32" 2024-02-05 2024-02-08 0.95 38 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "32" 2024-02-05 2024-02-08 0.975 41.05 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "32" 2024-02-05 2024-02-08 0.99 42.1300000000001 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "32" 2024-02-05 2024-02-09 0.01 8.99 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "32" 2024-02-05 2024-02-09 0.025 10.475 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "32" 2024-02-05 2024-02-09 0.05 12 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "32" 2024-02-05 2024-02-09 0.1 14 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "32" 2024-02-05 2024-02-09 0.15 15 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "32" 2024-02-05 2024-02-09 0.2 16 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "32" 2024-02-05 2024-02-09 0.25 16 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "32" 2024-02-05 2024-02-09 0.3 17 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "32" 2024-02-05 2024-02-09 0.35 18 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "32" 2024-02-05 2024-02-09 0.4 19 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "32" 2024-02-05 2024-02-09 0.45 20 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "32" 2024-02-05 2024-02-09 0.5 21 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "32" 2024-02-05 2024-02-09 0.55 22 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "32" 2024-02-05 2024-02-09 0.6 23 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "32" 2024-02-05 2024-02-09 0.65 24 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "32" 2024-02-05 2024-02-09 0.7 25 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "32" 2024-02-05 2024-02-09 0.75 26 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "32" 2024-02-05 2024-02-09 0.8 27 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "32" 2024-02-05 2024-02-09 0.85 27.15 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "32" 2024-02-05 2024-02-09 0.9 28.1 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "32" 2024-02-05 2024-02-09 0.95 32.05 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "32" 2024-02-05 2024-02-09 0.975 33.525 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "32" 2024-02-05 2024-02-09 0.99 34.05 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "32" 2024-02-05 2024-02-10 0.01 9.97 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "32" 2024-02-05 2024-02-10 0.025 11 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "32" 2024-02-05 2024-02-10 0.05 11 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "32" 2024-02-05 2024-02-10 0.1 13 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "32" 2024-02-05 2024-02-10 0.15 14 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "32" 2024-02-05 2024-02-10 0.2 14.8 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "32" 2024-02-05 2024-02-10 0.25 16 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "32" 2024-02-05 2024-02-10 0.3 17 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "32" 2024-02-05 2024-02-10 0.35 17 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "32" 2024-02-05 2024-02-10 0.4 18 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "32" 2024-02-05 2024-02-10 0.45 19 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "32" 2024-02-05 2024-02-10 0.5 20.5 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "32" 2024-02-05 2024-02-10 0.55 21 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "32" 2024-02-05 2024-02-10 0.6 23 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "32" 2024-02-05 2024-02-10 0.65 23 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "32" 2024-02-05 2024-02-10 0.7 24.3 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "32" 2024-02-05 2024-02-10 0.75 26 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "32" 2024-02-05 2024-02-10 0.8 26.2 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "32" 2024-02-05 2024-02-10 0.85 28 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "32" 2024-02-05 2024-02-10 0.9 28.1 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "32" 2024-02-05 2024-02-10 0.95 32 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "32" 2024-02-05 2024-02-10 0.975 32 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "32" 2024-02-05 2024-02-10 0.99 34.05 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "32" 2024-02-05 2024-02-11 0.01 4.99 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "32" 2024-02-05 2024-02-11 0.025 6 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "32" 2024-02-05 2024-02-11 0.05 9.85 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "32" 2024-02-05 2024-02-11 0.1 11.8 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "32" 2024-02-05 2024-02-11 0.15 13.85 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "32" 2024-02-05 2024-02-11 0.2 14 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "32" 2024-02-05 2024-02-11 0.25 15 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "32" 2024-02-05 2024-02-11 0.3 16 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "32" 2024-02-05 2024-02-11 0.35 17 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "32" 2024-02-05 2024-02-11 0.4 18 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "32" 2024-02-05 2024-02-11 0.45 19 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "32" 2024-02-05 2024-02-11 0.5 20 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "32" 2024-02-05 2024-02-11 0.55 21 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "32" 2024-02-05 2024-02-11 0.6 22 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "32" 2024-02-05 2024-02-11 0.65 23 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "32" 2024-02-05 2024-02-11 0.7 24 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "32" 2024-02-05 2024-02-11 0.75 25 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "32" 2024-02-05 2024-02-11 0.8 26 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "32" 2024-02-05 2024-02-11 0.85 27.15 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "32" 2024-02-05 2024-02-11 0.9 28 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "32" 2024-02-05 2024-02-11 0.95 31.05 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "32" 2024-02-05 2024-02-11 0.975 32.525 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "32" 2024-02-05 2024-02-11 0.99 35.07 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "32" 2024-02-05 2024-02-12 0.01 8.97 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "32" 2024-02-05 2024-02-12 0.025 10 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "32" 2024-02-05 2024-02-12 0.05 12 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "32" 2024-02-05 2024-02-12 0.1 14.9 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "32" 2024-02-05 2024-02-12 0.15 15 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "32" 2024-02-05 2024-02-12 0.2 16.8 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "32" 2024-02-05 2024-02-12 0.25 17 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "32" 2024-02-05 2024-02-12 0.3 18 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "32" 2024-02-05 2024-02-12 0.35 19 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "32" 2024-02-05 2024-02-12 0.4 21 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "32" 2024-02-05 2024-02-12 0.45 22 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "32" 2024-02-05 2024-02-12 0.5 22 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "32" 2024-02-05 2024-02-12 0.55 23 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "32" 2024-02-05 2024-02-12 0.6 23 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "32" 2024-02-05 2024-02-12 0.65 24 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "32" 2024-02-05 2024-02-12 0.7 25 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "32" 2024-02-05 2024-02-12 0.75 26 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "32" 2024-02-05 2024-02-12 0.8 26.2 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "32" 2024-02-05 2024-02-12 0.85 28 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "32" 2024-02-05 2024-02-12 0.9 29 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "32" 2024-02-05 2024-02-12 0.95 30.05 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "32" 2024-02-05 2024-02-12 0.975 33.05 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "32" 2024-02-05 2024-02-12 0.99 35 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "32" 2024-02-05 2024-02-13 0.01 9.98 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "32" 2024-02-05 2024-02-13 0.025 10 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "32" 2024-02-05 2024-02-13 0.05 11.95 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "32" 2024-02-05 2024-02-13 0.1 13 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "32" 2024-02-05 2024-02-13 0.15 14 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "32" 2024-02-05 2024-02-13 0.2 15.8 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "32" 2024-02-05 2024-02-13 0.25 17 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "32" 2024-02-05 2024-02-13 0.3 18 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "32" 2024-02-05 2024-02-13 0.35 18 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "32" 2024-02-05 2024-02-13 0.4 19 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "32" 2024-02-05 2024-02-13 0.45 21 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "32" 2024-02-05 2024-02-13 0.5 21.5 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "32" 2024-02-05 2024-02-13 0.55 23 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "32" 2024-02-05 2024-02-13 0.6 24 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "32" 2024-02-05 2024-02-13 0.65 25 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "32" 2024-02-05 2024-02-13 0.7 26 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "32" 2024-02-05 2024-02-13 0.75 27 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "32" 2024-02-05 2024-02-13 0.8 28 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "32" 2024-02-05 2024-02-13 0.85 28.15 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "32" 2024-02-05 2024-02-13 0.9 31 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "32" 2024-02-05 2024-02-13 0.95 35.15 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "32" 2024-02-05 2024-02-13 0.975 39 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "32" 2024-02-05 2024-02-13 0.99 40.02 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "32" 2024-02-05 2024-02-14 0.01 8.97 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "32" 2024-02-05 2024-02-14 0.025 10.475 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "32" 2024-02-05 2024-02-14 0.05 11 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "32" 2024-02-05 2024-02-14 0.1 13 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "32" 2024-02-05 2024-02-14 0.15 15.85 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "32" 2024-02-05 2024-02-14 0.2 17 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "32" 2024-02-05 2024-02-14 0.25 18 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "32" 2024-02-05 2024-02-14 0.3 19 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "32" 2024-02-05 2024-02-14 0.35 20 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "32" 2024-02-05 2024-02-14 0.4 21 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "32" 2024-02-05 2024-02-14 0.45 22 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "32" 2024-02-05 2024-02-14 0.5 22 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "32" 2024-02-05 2024-02-14 0.55 23 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "32" 2024-02-05 2024-02-14 0.6 24 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "32" 2024-02-05 2024-02-14 0.65 25 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "32" 2024-02-05 2024-02-14 0.7 25.3 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "32" 2024-02-05 2024-02-14 0.75 28 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "32" 2024-02-05 2024-02-14 0.8 30 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "32" 2024-02-05 2024-02-14 0.85 31 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "32" 2024-02-05 2024-02-14 0.9 32.1 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "32" 2024-02-05 2024-02-14 0.95 38 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "32" 2024-02-05 2024-02-14 0.975 41 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "32" 2024-02-05 2024-02-14 0.99 44.02 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "32" 2024-02-05 2024-02-15 0.01 7.98 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "32" 2024-02-05 2024-02-15 0.025 9.475 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "32" 2024-02-05 2024-02-15 0.05 11 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "32" 2024-02-05 2024-02-15 0.1 14.8 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "32" 2024-02-05 2024-02-15 0.15 17 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "32" 2024-02-05 2024-02-15 0.2 18.8 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "32" 2024-02-05 2024-02-15 0.25 20 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "32" 2024-02-05 2024-02-15 0.3 21 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "32" 2024-02-05 2024-02-15 0.35 21 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "32" 2024-02-05 2024-02-15 0.4 22 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "32" 2024-02-05 2024-02-15 0.45 23 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "32" 2024-02-05 2024-02-15 0.5 24 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "32" 2024-02-05 2024-02-15 0.55 25 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "32" 2024-02-05 2024-02-15 0.6 26 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "32" 2024-02-05 2024-02-15 0.65 27 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "32" 2024-02-05 2024-02-15 0.7 28 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "32" 2024-02-05 2024-02-15 0.75 28 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "32" 2024-02-05 2024-02-15 0.8 29 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "32" 2024-02-05 2024-02-15 0.85 31 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "32" 2024-02-05 2024-02-15 0.9 32 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "32" 2024-02-05 2024-02-15 0.95 34.05 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "32" 2024-02-05 2024-02-15 0.975 36.525 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "32" 2024-02-05 2024-02-15 0.99 43 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "32" 2024-02-05 2024-02-16 0.01 8.97 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "32" 2024-02-05 2024-02-16 0.025 10.475 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "32" 2024-02-05 2024-02-16 0.05 12.95 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "32" 2024-02-05 2024-02-16 0.1 13 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "32" 2024-02-05 2024-02-16 0.15 14 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "32" 2024-02-05 2024-02-16 0.2 15 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "32" 2024-02-05 2024-02-16 0.25 16 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "32" 2024-02-05 2024-02-16 0.3 17 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "32" 2024-02-05 2024-02-16 0.35 18 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "32" 2024-02-05 2024-02-16 0.4 18 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "32" 2024-02-05 2024-02-16 0.45 19 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "32" 2024-02-05 2024-02-16 0.5 20 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "32" 2024-02-05 2024-02-16 0.55 20.45 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "32" 2024-02-05 2024-02-16 0.6 22 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "32" 2024-02-05 2024-02-16 0.65 22 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "32" 2024-02-05 2024-02-16 0.7 23.3 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "32" 2024-02-05 2024-02-16 0.75 25 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "32" 2024-02-05 2024-02-16 0.8 26 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "32" 2024-02-05 2024-02-16 0.85 28.15 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "32" 2024-02-05 2024-02-16 0.9 30.1 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "32" 2024-02-05 2024-02-16 0.95 34.05 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "32" 2024-02-05 2024-02-16 0.975 37.1 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "32" 2024-02-05 2024-02-16 0.99 41 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "32" 2024-02-05 2024-02-17 0.01 6.97 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "32" 2024-02-05 2024-02-17 0.025 7.475 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "32" 2024-02-05 2024-02-17 0.05 8.95 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "32" 2024-02-05 2024-02-17 0.1 9.9 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "32" 2024-02-05 2024-02-17 0.15 13 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "32" 2024-02-05 2024-02-17 0.2 14.8 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "32" 2024-02-05 2024-02-17 0.25 15 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "32" 2024-02-05 2024-02-17 0.3 16 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "32" 2024-02-05 2024-02-17 0.35 17 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "32" 2024-02-05 2024-02-17 0.4 18.6 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "32" 2024-02-05 2024-02-17 0.45 19 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "32" 2024-02-05 2024-02-17 0.5 20 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "32" 2024-02-05 2024-02-17 0.55 20.45 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "32" 2024-02-05 2024-02-17 0.6 21 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "32" 2024-02-05 2024-02-17 0.65 22 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "32" 2024-02-05 2024-02-17 0.7 23 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "32" 2024-02-05 2024-02-17 0.75 24 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "32" 2024-02-05 2024-02-17 0.8 25 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "32" 2024-02-05 2024-02-17 0.85 26.15 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "32" 2024-02-05 2024-02-17 0.9 29 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "32" 2024-02-05 2024-02-17 0.95 33 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "32" 2024-02-05 2024-02-17 0.975 35.05 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "32" 2024-02-05 2024-02-17 0.99 39 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "32" 2024-02-05 2024-02-18 0.01 6.97 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "32" 2024-02-05 2024-02-18 0.025 8 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "32" 2024-02-05 2024-02-18 0.05 10 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "32" 2024-02-05 2024-02-18 0.1 11.9 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "32" 2024-02-05 2024-02-18 0.15 13 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "32" 2024-02-05 2024-02-18 0.2 14 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "32" 2024-02-05 2024-02-18 0.25 15 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "32" 2024-02-05 2024-02-18 0.3 15 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "32" 2024-02-05 2024-02-18 0.35 16 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "32" 2024-02-05 2024-02-18 0.4 17.6 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "32" 2024-02-05 2024-02-18 0.45 18 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "32" 2024-02-05 2024-02-18 0.5 19 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "32" 2024-02-05 2024-02-18 0.55 19.45 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "32" 2024-02-05 2024-02-18 0.6 21 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "32" 2024-02-05 2024-02-18 0.65 22 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "32" 2024-02-05 2024-02-18 0.7 23 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "32" 2024-02-05 2024-02-18 0.75 24.25 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "32" 2024-02-05 2024-02-18 0.8 25 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "32" 2024-02-05 2024-02-18 0.85 26.15 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "32" 2024-02-05 2024-02-18 0.9 29 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "32" 2024-02-05 2024-02-18 0.95 32 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "32" 2024-02-05 2024-02-18 0.975 33 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "32" 2024-02-05 2024-02-18 0.99 33.05 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "32" 2024-02-05 2024-02-19 0.01 5.99 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "32" 2024-02-05 2024-02-19 0.025 8.95 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "32" 2024-02-05 2024-02-19 0.05 11.95 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "32" 2024-02-05 2024-02-19 0.1 13 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "32" 2024-02-05 2024-02-19 0.15 14 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "32" 2024-02-05 2024-02-19 0.2 15.8 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "32" 2024-02-05 2024-02-19 0.25 16.75 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "32" 2024-02-05 2024-02-19 0.3 18 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "32" 2024-02-05 2024-02-19 0.35 18 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "32" 2024-02-05 2024-02-19 0.4 19 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "32" 2024-02-05 2024-02-19 0.45 19.55 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "32" 2024-02-05 2024-02-19 0.5 20 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "32" 2024-02-05 2024-02-19 0.55 21 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "32" 2024-02-05 2024-02-19 0.6 21.4 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "32" 2024-02-05 2024-02-19 0.65 22.35 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "32" 2024-02-05 2024-02-19 0.7 23.3 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "32" 2024-02-05 2024-02-19 0.75 25 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "32" 2024-02-05 2024-02-19 0.8 26 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "32" 2024-02-05 2024-02-19 0.85 28 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "32" 2024-02-05 2024-02-19 0.9 30 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "32" 2024-02-05 2024-02-19 0.95 33.05 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "32" 2024-02-05 2024-02-19 0.975 34 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "32" 2024-02-05 2024-02-19 0.99 38.01 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "32" 2024-02-05 2024-02-20 0.01 9 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "32" 2024-02-05 2024-02-20 0.025 11 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "32" 2024-02-05 2024-02-20 0.05 11 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "32" 2024-02-05 2024-02-20 0.1 12.9 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "32" 2024-02-05 2024-02-20 0.15 13 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "32" 2024-02-05 2024-02-20 0.2 15 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "32" 2024-02-05 2024-02-20 0.25 16 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "32" 2024-02-05 2024-02-20 0.3 17.7 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "32" 2024-02-05 2024-02-20 0.35 18 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "32" 2024-02-05 2024-02-20 0.4 19 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "32" 2024-02-05 2024-02-20 0.45 20 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "32" 2024-02-05 2024-02-20 0.5 21 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "32" 2024-02-05 2024-02-20 0.55 22 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "32" 2024-02-05 2024-02-20 0.6 23 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "32" 2024-02-05 2024-02-20 0.65 24 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "32" 2024-02-05 2024-02-20 0.7 26 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "32" 2024-02-05 2024-02-20 0.75 28 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "32" 2024-02-05 2024-02-20 0.8 28.2 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "32" 2024-02-05 2024-02-20 0.85 30 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "32" 2024-02-05 2024-02-20 0.9 32 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "32" 2024-02-05 2024-02-20 0.95 36.05 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "32" 2024-02-05 2024-02-20 0.975 40.05 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "32" 2024-02-05 2024-02-20 0.99 42.03 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "32" 2024-02-05 2024-02-21 0.01 8.99 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "32" 2024-02-05 2024-02-21 0.025 10 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "32" 2024-02-05 2024-02-21 0.05 11.9 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "32" 2024-02-05 2024-02-21 0.1 13 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "32" 2024-02-05 2024-02-21 0.15 14 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "32" 2024-02-05 2024-02-21 0.2 15 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "32" 2024-02-05 2024-02-21 0.25 16 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "32" 2024-02-05 2024-02-21 0.3 18 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "32" 2024-02-05 2024-02-21 0.35 18 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "32" 2024-02-05 2024-02-21 0.4 20 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "32" 2024-02-05 2024-02-21 0.45 20 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "32" 2024-02-05 2024-02-21 0.5 21.5 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "32" 2024-02-05 2024-02-21 0.55 22 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "32" 2024-02-05 2024-02-21 0.6 23 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "32" 2024-02-05 2024-02-21 0.65 24 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "32" 2024-02-05 2024-02-21 0.7 25 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "32" 2024-02-05 2024-02-21 0.75 25.25 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "32" 2024-02-05 2024-02-21 0.8 27 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "32" 2024-02-05 2024-02-21 0.85 29.15 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "32" 2024-02-05 2024-02-21 0.9 31 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "32" 2024-02-05 2024-02-21 0.95 33.05 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "32" 2024-02-05 2024-02-21 0.975 36.525 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "32" 2024-02-05 2024-02-21 0.99 40.01 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "32" 2024-02-05 2024-02-22 0.01 5.98 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "32" 2024-02-05 2024-02-22 0.025 8 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "32" 2024-02-05 2024-02-22 0.05 8 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "32" 2024-02-05 2024-02-22 0.1 10.9 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "32" 2024-02-05 2024-02-22 0.15 14 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "32" 2024-02-05 2024-02-22 0.2 15.8 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "32" 2024-02-05 2024-02-22 0.25 17.75 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "32" 2024-02-05 2024-02-22 0.3 19 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "32" 2024-02-05 2024-02-22 0.35 20 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "32" 2024-02-05 2024-02-22 0.4 21 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "32" 2024-02-05 2024-02-22 0.45 21 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "32" 2024-02-05 2024-02-22 0.5 23 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "32" 2024-02-05 2024-02-22 0.55 24 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "32" 2024-02-05 2024-02-22 0.6 25 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "32" 2024-02-05 2024-02-22 0.65 25.35 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "32" 2024-02-05 2024-02-22 0.7 26 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "32" 2024-02-05 2024-02-22 0.75 27 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "32" 2024-02-05 2024-02-22 0.8 28 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "32" 2024-02-05 2024-02-22 0.85 33.15 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "32" 2024-02-05 2024-02-22 0.9 35 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "32" 2024-02-05 2024-02-22 0.95 38.1 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "32" 2024-02-05 2024-02-22 0.975 42.525 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "32" 2024-02-05 2024-02-22 0.99 45.01 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "32" 2024-02-05 2024-02-23 0.01 5.99 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "32" 2024-02-05 2024-02-23 0.025 7.475 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "32" 2024-02-05 2024-02-23 0.05 8.95 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "32" 2024-02-05 2024-02-23 0.1 11 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "32" 2024-02-05 2024-02-23 0.15 13.85 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "32" 2024-02-05 2024-02-23 0.2 15 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "32" 2024-02-05 2024-02-23 0.25 16.75 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "32" 2024-02-05 2024-02-23 0.3 18 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "32" 2024-02-05 2024-02-23 0.35 18 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "32" 2024-02-05 2024-02-23 0.4 20 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "32" 2024-02-05 2024-02-23 0.45 20 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "32" 2024-02-05 2024-02-23 0.5 22 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "32" 2024-02-05 2024-02-23 0.55 22.45 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "32" 2024-02-05 2024-02-23 0.6 23 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "32" 2024-02-05 2024-02-23 0.65 24 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "32" 2024-02-05 2024-02-23 0.7 25 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "32" 2024-02-05 2024-02-23 0.75 26 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "32" 2024-02-05 2024-02-23 0.8 27.2 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "32" 2024-02-05 2024-02-23 0.85 29 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "32" 2024-02-05 2024-02-23 0.9 30 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "32" 2024-02-05 2024-02-23 0.95 33 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "32" 2024-02-05 2024-02-23 0.975 34.525 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "32" 2024-02-05 2024-02-23 0.99 35.05 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "32" 2024-02-05 2024-02-24 0.01 3.99 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "32" 2024-02-05 2024-02-24 0.025 4 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "32" 2024-02-05 2024-02-24 0.05 5.95 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "32" 2024-02-05 2024-02-24 0.1 10.8 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "32" 2024-02-05 2024-02-24 0.15 12 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "32" 2024-02-05 2024-02-24 0.2 13.8 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "32" 2024-02-05 2024-02-24 0.25 14.75 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "32" 2024-02-05 2024-02-24 0.3 15.7 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "32" 2024-02-05 2024-02-24 0.35 16 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "32" 2024-02-05 2024-02-24 0.4 17 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "32" 2024-02-05 2024-02-24 0.45 17 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "32" 2024-02-05 2024-02-24 0.5 18.5 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "32" 2024-02-05 2024-02-24 0.55 20 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "32" 2024-02-05 2024-02-24 0.6 20.4 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "32" 2024-02-05 2024-02-24 0.65 22.35 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "32" 2024-02-05 2024-02-24 0.7 24 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "32" 2024-02-05 2024-02-24 0.75 25 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "32" 2024-02-05 2024-02-24 0.8 26 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "32" 2024-02-05 2024-02-24 0.85 27 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "32" 2024-02-05 2024-02-24 0.9 29 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "32" 2024-02-05 2024-02-24 0.95 32 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "32" 2024-02-05 2024-02-24 0.975 33.05 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "32" 2024-02-05 2024-02-24 0.99 34.07 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "32" 2024-02-05 2024-02-25 0.01 5 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "32" 2024-02-05 2024-02-25 0.025 6.475 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "32" 2024-02-05 2024-02-25 0.05 7.95 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "32" 2024-02-05 2024-02-25 0.1 10.9 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "32" 2024-02-05 2024-02-25 0.15 12 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "32" 2024-02-05 2024-02-25 0.2 13 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "32" 2024-02-05 2024-02-25 0.25 15 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "32" 2024-02-05 2024-02-25 0.3 15.7 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "32" 2024-02-05 2024-02-25 0.35 17 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "32" 2024-02-05 2024-02-25 0.4 18 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "32" 2024-02-05 2024-02-25 0.45 18 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "32" 2024-02-05 2024-02-25 0.5 18 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "32" 2024-02-05 2024-02-25 0.55 19 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "32" 2024-02-05 2024-02-25 0.6 20 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "32" 2024-02-05 2024-02-25 0.65 22 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "32" 2024-02-05 2024-02-25 0.7 23 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "32" 2024-02-05 2024-02-25 0.75 24 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "32" 2024-02-05 2024-02-25 0.8 26 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "32" 2024-02-05 2024-02-25 0.85 28 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "32" 2024-02-05 2024-02-25 0.9 30.1 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "32" 2024-02-05 2024-02-25 0.95 32 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "32" 2024-02-05 2024-02-25 0.975 35.525 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "32" 2024-02-05 2024-02-25 0.99 38 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "32" 2024-02-05 2024-02-26 0.01 4 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "32" 2024-02-05 2024-02-26 0.025 5.475 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "32" 2024-02-05 2024-02-26 0.05 8 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "32" 2024-02-05 2024-02-26 0.1 11.9 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "32" 2024-02-05 2024-02-26 0.15 13 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "32" 2024-02-05 2024-02-26 0.2 13 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "32" 2024-02-05 2024-02-26 0.25 14.75 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "32" 2024-02-05 2024-02-26 0.3 15.7 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "32" 2024-02-05 2024-02-26 0.35 17 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "32" 2024-02-05 2024-02-26 0.4 17 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "32" 2024-02-05 2024-02-26 0.45 18 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "32" 2024-02-05 2024-02-26 0.5 19 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "32" 2024-02-05 2024-02-26 0.55 20 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "32" 2024-02-05 2024-02-26 0.6 21 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "32" 2024-02-05 2024-02-26 0.65 22 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "32" 2024-02-05 2024-02-26 0.7 23.3 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "32" 2024-02-05 2024-02-26 0.75 25 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "32" 2024-02-05 2024-02-26 0.8 27 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "32" 2024-02-05 2024-02-26 0.85 28 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "32" 2024-02-05 2024-02-26 0.9 30 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "32" 2024-02-05 2024-02-26 0.95 33.1 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "32" 2024-02-05 2024-02-26 0.975 37.05 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "32" 2024-02-05 2024-02-26 0.99 40.01 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "32" 2024-02-05 2024-02-27 0.01 3.98 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "32" 2024-02-05 2024-02-27 0.025 6.475 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "32" 2024-02-05 2024-02-27 0.05 9 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "32" 2024-02-05 2024-02-27 0.1 11 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "32" 2024-02-05 2024-02-27 0.15 12 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "32" 2024-02-05 2024-02-27 0.2 13 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "32" 2024-02-05 2024-02-27 0.25 14.75 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "32" 2024-02-05 2024-02-27 0.3 16 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "32" 2024-02-05 2024-02-27 0.35 17 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "32" 2024-02-05 2024-02-27 0.4 18 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "32" 2024-02-05 2024-02-27 0.45 18 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "32" 2024-02-05 2024-02-27 0.5 20 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "32" 2024-02-05 2024-02-27 0.55 20.45 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "32" 2024-02-05 2024-02-27 0.6 21 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "32" 2024-02-05 2024-02-27 0.65 22 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "32" 2024-02-05 2024-02-27 0.7 23 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "32" 2024-02-05 2024-02-27 0.75 24.25 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "32" 2024-02-05 2024-02-27 0.8 26 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "32" 2024-02-05 2024-02-27 0.85 28 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "32" 2024-02-05 2024-02-27 0.9 30 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "32" 2024-02-05 2024-02-27 0.95 32 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "32" 2024-02-05 2024-02-27 0.975 33.525 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "32" 2024-02-05 2024-02-27 0.99 36.02 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "32" 2024-02-05 2024-02-28 0.01 5.98 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "32" 2024-02-05 2024-02-28 0.025 7.475 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "32" 2024-02-05 2024-02-28 0.05 8 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "32" 2024-02-05 2024-02-28 0.1 10 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "32" 2024-02-05 2024-02-28 0.15 12 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "32" 2024-02-05 2024-02-28 0.2 14 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "32" 2024-02-05 2024-02-28 0.25 15.75 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "32" 2024-02-05 2024-02-28 0.3 17 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "32" 2024-02-05 2024-02-28 0.35 18 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "32" 2024-02-05 2024-02-28 0.4 19 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "32" 2024-02-05 2024-02-28 0.45 20 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "32" 2024-02-05 2024-02-28 0.5 21 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "32" 2024-02-05 2024-02-28 0.55 22 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "32" 2024-02-05 2024-02-28 0.6 23.4 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "32" 2024-02-05 2024-02-28 0.65 24 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "32" 2024-02-05 2024-02-28 0.7 26 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "32" 2024-02-05 2024-02-28 0.75 27.25 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "32" 2024-02-05 2024-02-28 0.8 29.2 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "32" 2024-02-05 2024-02-28 0.85 31 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "32" 2024-02-05 2024-02-28 0.9 33 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "32" 2024-02-05 2024-02-28 0.95 36.1 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "32" 2024-02-05 2024-02-28 0.975 38.525 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "32" 2024-02-05 2024-02-28 0.99 40 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "32" 2024-02-05 2024-02-29 0.01 4.98 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "32" 2024-02-05 2024-02-29 0.025 6 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "32" 2024-02-05 2024-02-29 0.05 8 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "32" 2024-02-05 2024-02-29 0.1 11 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "32" 2024-02-05 2024-02-29 0.15 13 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "32" 2024-02-05 2024-02-29 0.2 14 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "32" 2024-02-05 2024-02-29 0.25 16 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "32" 2024-02-05 2024-02-29 0.3 18 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "32" 2024-02-05 2024-02-29 0.35 19 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "32" 2024-02-05 2024-02-29 0.4 20 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "32" 2024-02-05 2024-02-29 0.45 21 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "32" 2024-02-05 2024-02-29 0.5 22 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "32" 2024-02-05 2024-02-29 0.55 23 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "32" 2024-02-05 2024-02-29 0.6 24 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "32" 2024-02-05 2024-02-29 0.65 25 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "32" 2024-02-05 2024-02-29 0.7 27 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "32" 2024-02-05 2024-02-29 0.75 27.25 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "32" 2024-02-05 2024-02-29 0.8 28.2 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "32" 2024-02-05 2024-02-29 0.85 29.3 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "32" 2024-02-05 2024-02-29 0.9 32.1 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "32" 2024-02-05 2024-02-29 0.95 35.2 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "32" 2024-02-05 2024-02-29 0.975 41 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "32" 2024-02-05 2024-02-29 0.99 49.01 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "32" 2024-02-05 2024-03-01 0.01 5.97 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "32" 2024-02-05 2024-03-01 0.025 6 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "32" 2024-02-05 2024-03-01 0.05 8.9 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "32" 2024-02-05 2024-03-01 0.1 9.9 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "32" 2024-02-05 2024-03-01 0.15 10.85 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "32" 2024-02-05 2024-03-01 0.2 12 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "32" 2024-02-05 2024-03-01 0.25 13 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "32" 2024-02-05 2024-03-01 0.3 15 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "32" 2024-02-05 2024-03-01 0.35 16 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "32" 2024-02-05 2024-03-01 0.4 17 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "32" 2024-02-05 2024-03-01 0.45 18 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "32" 2024-02-05 2024-03-01 0.5 18 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "32" 2024-02-05 2024-03-01 0.55 19.45 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "32" 2024-02-05 2024-03-01 0.6 21 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "32" 2024-02-05 2024-03-01 0.65 21.35 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "32" 2024-02-05 2024-03-01 0.7 25 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "32" 2024-02-05 2024-03-01 0.75 26 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "32" 2024-02-05 2024-03-01 0.8 29 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "32" 2024-02-05 2024-03-01 0.85 32 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "32" 2024-02-05 2024-03-01 0.9 34.1 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "32" 2024-02-05 2024-03-01 0.95 37 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "32" 2024-02-05 2024-03-01 0.975 39.525 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "32" 2024-02-05 2024-03-01 0.99 40.09 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "32" 2024-02-05 2024-03-02 0.01 2.98 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "32" 2024-02-05 2024-03-02 0.025 5.475 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "32" 2024-02-05 2024-03-02 0.05 6 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "32" 2024-02-05 2024-03-02 0.1 8 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "32" 2024-02-05 2024-03-02 0.15 9 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "32" 2024-02-05 2024-03-02 0.2 11 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "32" 2024-02-05 2024-03-02 0.25 12 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "32" 2024-02-05 2024-03-02 0.3 13.7 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "32" 2024-02-05 2024-03-02 0.35 15 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "32" 2024-02-05 2024-03-02 0.4 15.6 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "32" 2024-02-05 2024-03-02 0.45 16.55 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "32" 2024-02-05 2024-03-02 0.5 17.5 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "32" 2024-02-05 2024-03-02 0.55 19 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "32" 2024-02-05 2024-03-02 0.6 20 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "32" 2024-02-05 2024-03-02 0.65 21.35 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "32" 2024-02-05 2024-03-02 0.7 22.3 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "32" 2024-02-05 2024-03-02 0.75 23.25 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "32" 2024-02-05 2024-03-02 0.8 25.2 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "32" 2024-02-05 2024-03-02 0.85 27.15 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "32" 2024-02-05 2024-03-02 0.9 29 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "32" 2024-02-05 2024-03-02 0.95 31 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "32" 2024-02-05 2024-03-02 0.975 33.525 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "32" 2024-02-05 2024-03-02 0.99 34.1100000000001 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "32" 2024-02-05 2024-03-03 0.01 3.99 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "32" 2024-02-05 2024-03-03 0.025 4.475 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "32" 2024-02-05 2024-03-03 0.05 5.95 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "32" 2024-02-05 2024-03-03 0.1 7 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "32" 2024-02-05 2024-03-03 0.15 9.85 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "32" 2024-02-05 2024-03-03 0.2 12 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "32" 2024-02-05 2024-03-03 0.25 13.75 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "32" 2024-02-05 2024-03-03 0.3 14.7 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "32" 2024-02-05 2024-03-03 0.35 15.65 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "32" 2024-02-05 2024-03-03 0.4 16 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "32" 2024-02-05 2024-03-03 0.45 17 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "32" 2024-02-05 2024-03-03 0.5 17.5 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "32" 2024-02-05 2024-03-03 0.55 18 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "32" 2024-02-05 2024-03-03 0.6 19 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "32" 2024-02-05 2024-03-03 0.65 20 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "32" 2024-02-05 2024-03-03 0.7 21 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "32" 2024-02-05 2024-03-03 0.75 22.25 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "32" 2024-02-05 2024-03-03 0.8 25.2 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "32" 2024-02-05 2024-03-03 0.85 28.15 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "32" 2024-02-05 2024-03-03 0.9 31 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "32" 2024-02-05 2024-03-03 0.95 33 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "32" 2024-02-05 2024-03-03 0.975 34.525 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "32" 2024-02-05 2024-03-03 0.99 36.04 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "32" 2024-02-05 2024-03-04 0.01 5.97 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "32" 2024-02-05 2024-03-04 0.025 6 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "32" 2024-02-05 2024-03-04 0.05 7 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "32" 2024-02-05 2024-03-04 0.1 8.9 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "32" 2024-02-05 2024-03-04 0.15 11 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "32" 2024-02-05 2024-03-04 0.2 12 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "32" 2024-02-05 2024-03-04 0.25 13.75 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "32" 2024-02-05 2024-03-04 0.3 15 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "32" 2024-02-05 2024-03-04 0.35 17 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "32" 2024-02-05 2024-03-04 0.4 18 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "32" 2024-02-05 2024-03-04 0.45 19 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "32" 2024-02-05 2024-03-04 0.5 20 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "32" 2024-02-05 2024-03-04 0.55 20.45 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "32" 2024-02-05 2024-03-04 0.6 21 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "32" 2024-02-05 2024-03-04 0.65 22 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "32" 2024-02-05 2024-03-04 0.7 23 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "32" 2024-02-05 2024-03-04 0.75 24.25 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "32" 2024-02-05 2024-03-04 0.8 25.4 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "32" 2024-02-05 2024-03-04 0.85 29.15 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "32" 2024-02-05 2024-03-04 0.9 31 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "32" 2024-02-05 2024-03-04 0.95 32.1 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "32" 2024-02-05 2024-03-04 0.975 35.575 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "32" 2024-02-05 2024-03-04 0.99 44.02 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "36" 2024-02-05 2024-02-06 0.01 140 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "36" 2024-02-05 2024-02-06 0.025 141 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "36" 2024-02-05 2024-02-06 0.05 152.75 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "36" 2024-02-05 2024-02-06 0.1 178.1 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "36" 2024-02-05 2024-02-06 0.15 181 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "36" 2024-02-05 2024-02-06 0.2 187 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "36" 2024-02-05 2024-02-06 0.25 196 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "36" 2024-02-05 2024-02-06 0.3 206.4 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "36" 2024-02-05 2024-02-06 0.35 211.95 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "36" 2024-02-05 2024-02-06 0.4 216.6 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "36" 2024-02-05 2024-02-06 0.45 220.55 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "36" 2024-02-05 2024-02-06 0.5 226.5 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "36" 2024-02-05 2024-02-06 0.55 232 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "36" 2024-02-05 2024-02-06 0.6 234 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "36" 2024-02-05 2024-02-06 0.65 240.35 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "36" 2024-02-05 2024-02-06 0.7 247.3 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "36" 2024-02-05 2024-02-06 0.75 252.25 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "36" 2024-02-05 2024-02-06 0.8 260.2 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "36" 2024-02-05 2024-02-06 0.85 273.3 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "36" 2024-02-05 2024-02-06 0.9 280.1 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "36" 2024-02-05 2024-02-06 0.95 287.35 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "36" 2024-02-05 2024-02-06 0.975 309.05 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "36" 2024-02-05 2024-02-06 0.99 329.06 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "36" 2024-02-05 2024-02-07 0.01 136.83 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "36" 2024-02-05 2024-02-07 0.025 138.475 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "36" 2024-02-05 2024-02-07 0.05 144.75 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "36" 2024-02-05 2024-02-07 0.1 164.4 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "36" 2024-02-05 2024-02-07 0.15 172 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "36" 2024-02-05 2024-02-07 0.2 181.8 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "36" 2024-02-05 2024-02-07 0.25 190 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "36" 2024-02-05 2024-02-07 0.3 195 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "36" 2024-02-05 2024-02-07 0.35 197.65 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "36" 2024-02-05 2024-02-07 0.4 200.6 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "36" 2024-02-05 2024-02-07 0.45 203 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "36" 2024-02-05 2024-02-07 0.5 211 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "36" 2024-02-05 2024-02-07 0.55 213 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "36" 2024-02-05 2024-02-07 0.6 221.6 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "36" 2024-02-05 2024-02-07 0.65 227.35 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "36" 2024-02-05 2024-02-07 0.7 236.9 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "36" 2024-02-05 2024-02-07 0.75 243.75 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "36" 2024-02-05 2024-02-07 0.8 252 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "36" 2024-02-05 2024-02-07 0.85 259.6 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "36" 2024-02-05 2024-02-07 0.9 267.7 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "36" 2024-02-05 2024-02-07 0.95 283.4 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "36" 2024-02-05 2024-02-07 0.975 312.25 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "36" 2024-02-05 2024-02-07 0.99 346.15 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "36" 2024-02-05 2024-02-08 0.01 129.92 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "36" 2024-02-05 2024-02-08 0.025 136 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "36" 2024-02-05 2024-02-08 0.05 138.95 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "36" 2024-02-05 2024-02-08 0.1 151.9 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "36" 2024-02-05 2024-02-08 0.15 159.55 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "36" 2024-02-05 2024-02-08 0.2 167.2 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "36" 2024-02-05 2024-02-08 0.25 174.75 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "36" 2024-02-05 2024-02-08 0.3 180.7 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "36" 2024-02-05 2024-02-08 0.35 182 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "36" 2024-02-05 2024-02-08 0.4 190.2 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "36" 2024-02-05 2024-02-08 0.45 195.55 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "36" 2024-02-05 2024-02-08 0.5 200 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "36" 2024-02-05 2024-02-08 0.55 208 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "36" 2024-02-05 2024-02-08 0.6 211 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "36" 2024-02-05 2024-02-08 0.65 216.4 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "36" 2024-02-05 2024-02-08 0.7 224 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "36" 2024-02-05 2024-02-08 0.75 228.25 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "36" 2024-02-05 2024-02-08 0.8 240.6 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "36" 2024-02-05 2024-02-08 0.85 250.45 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "36" 2024-02-05 2024-02-08 0.9 266.4 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "36" 2024-02-05 2024-02-08 0.95 310.05 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "36" 2024-02-05 2024-02-08 0.975 313.575 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "36" 2024-02-05 2024-02-08 0.99 342.3 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "36" 2024-02-05 2024-02-09 0.01 116.88 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "36" 2024-02-05 2024-02-09 0.025 134.95 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "36" 2024-02-05 2024-02-09 0.05 138.95 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "36" 2024-02-05 2024-02-09 0.1 142.9 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "36" 2024-02-05 2024-02-09 0.15 148.85 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "36" 2024-02-05 2024-02-09 0.2 154.8 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "36" 2024-02-05 2024-02-09 0.25 160.5 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "36" 2024-02-05 2024-02-09 0.3 166.1 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "36" 2024-02-05 2024-02-09 0.35 170.65 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "36" 2024-02-05 2024-02-09 0.4 173.6 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "36" 2024-02-05 2024-02-09 0.45 181 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "36" 2024-02-05 2024-02-09 0.5 183.5 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "36" 2024-02-05 2024-02-09 0.55 187.45 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "36" 2024-02-05 2024-02-09 0.6 195.2 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "36" 2024-02-05 2024-02-09 0.65 205.35 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "36" 2024-02-05 2024-02-09 0.7 211.3 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "36" 2024-02-05 2024-02-09 0.75 222.25 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "36" 2024-02-05 2024-02-09 0.8 231 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "36" 2024-02-05 2024-02-09 0.85 245.15 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "36" 2024-02-05 2024-02-09 0.9 257.2 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "36" 2024-02-05 2024-02-09 0.95 304.1 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "36" 2024-02-05 2024-02-09 0.975 319.775 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "36" 2024-02-05 2024-02-09 0.99 328.08 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "36" 2024-02-05 2024-02-10 0.01 90.97 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "36" 2024-02-05 2024-02-10 0.025 99.8 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "36" 2024-02-05 2024-02-10 0.05 109.7 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "36" 2024-02-05 2024-02-10 0.1 118 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "36" 2024-02-05 2024-02-10 0.15 126.7 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "36" 2024-02-05 2024-02-10 0.2 134.8 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "36" 2024-02-05 2024-02-10 0.25 138 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "36" 2024-02-05 2024-02-10 0.3 142 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "36" 2024-02-05 2024-02-10 0.35 145 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "36" 2024-02-05 2024-02-10 0.4 149 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "36" 2024-02-05 2024-02-10 0.45 153.1 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "36" 2024-02-05 2024-02-10 0.5 160 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "36" 2024-02-05 2024-02-10 0.55 167 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "36" 2024-02-05 2024-02-10 0.6 175.4 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "36" 2024-02-05 2024-02-10 0.65 178.35 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "36" 2024-02-05 2024-02-10 0.7 182 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "36" 2024-02-05 2024-02-10 0.75 190.75 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "36" 2024-02-05 2024-02-10 0.8 202.2 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "36" 2024-02-05 2024-02-10 0.85 205.45 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "36" 2024-02-05 2024-02-10 0.9 226 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "36" 2024-02-05 2024-02-10 0.95 250.3 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "36" 2024-02-05 2024-02-10 0.975 266.3 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "36" 2024-02-05 2024-02-10 0.99 277.2 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "36" 2024-02-05 2024-02-11 0.01 113.97 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "36" 2024-02-05 2024-02-11 0.025 115.425 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "36" 2024-02-05 2024-02-11 0.05 118.95 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "36" 2024-02-05 2024-02-11 0.1 126.8 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "36" 2024-02-05 2024-02-11 0.15 132.85 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "36" 2024-02-05 2024-02-11 0.2 139.4 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "36" 2024-02-05 2024-02-11 0.25 152.75 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "36" 2024-02-05 2024-02-11 0.3 157 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "36" 2024-02-05 2024-02-11 0.35 164 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "36" 2024-02-05 2024-02-11 0.4 169.6 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "36" 2024-02-05 2024-02-11 0.45 175.1 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "36" 2024-02-05 2024-02-11 0.5 181 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "36" 2024-02-05 2024-02-11 0.55 187.25 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "36" 2024-02-05 2024-02-11 0.6 195.6 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "36" 2024-02-05 2024-02-11 0.65 205 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "36" 2024-02-05 2024-02-11 0.7 211 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "36" 2024-02-05 2024-02-11 0.75 220.25 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "36" 2024-02-05 2024-02-11 0.8 231 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "36" 2024-02-05 2024-02-11 0.85 241.3 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "36" 2024-02-05 2024-02-11 0.9 256 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "36" 2024-02-05 2024-02-11 0.95 282.05 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "36" 2024-02-05 2024-02-11 0.975 308.125 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "36" 2024-02-05 2024-02-11 0.99 328.05 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "36" 2024-02-05 2024-02-12 0.01 132.97 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "36" 2024-02-05 2024-02-12 0.025 138.95 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "36" 2024-02-05 2024-02-12 0.05 143.8 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "36" 2024-02-05 2024-02-12 0.1 155.6 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "36" 2024-02-05 2024-02-12 0.15 160 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "36" 2024-02-05 2024-02-12 0.2 168 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "36" 2024-02-05 2024-02-12 0.25 171.75 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "36" 2024-02-05 2024-02-12 0.3 174 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "36" 2024-02-05 2024-02-12 0.35 182 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "36" 2024-02-05 2024-02-12 0.4 187.6 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "36" 2024-02-05 2024-02-12 0.45 189.55 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "36" 2024-02-05 2024-02-12 0.5 197.5 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "36" 2024-02-05 2024-02-12 0.55 210.25 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "36" 2024-02-05 2024-02-12 0.6 216.2 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "36" 2024-02-05 2024-02-12 0.65 222.7 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "36" 2024-02-05 2024-02-12 0.7 233 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "36" 2024-02-05 2024-02-12 0.75 245.5 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "36" 2024-02-05 2024-02-12 0.8 257.2 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "36" 2024-02-05 2024-02-12 0.85 272.3 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "36" 2024-02-05 2024-02-12 0.9 280.5 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "36" 2024-02-05 2024-02-12 0.95 299.25 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "36" 2024-02-05 2024-02-12 0.975 314.05 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "36" 2024-02-05 2024-02-12 0.99 335.09 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "36" 2024-02-05 2024-02-13 0.01 116.94 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "36" 2024-02-05 2024-02-13 0.025 129.475 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "36" 2024-02-05 2024-02-13 0.05 133.8 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "36" 2024-02-05 2024-02-13 0.1 140.8 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "36" 2024-02-05 2024-02-13 0.15 148 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "36" 2024-02-05 2024-02-13 0.2 158.4 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "36" 2024-02-05 2024-02-13 0.25 165.5 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "36" 2024-02-05 2024-02-13 0.3 170.7 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "36" 2024-02-05 2024-02-13 0.35 178.3 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "36" 2024-02-05 2024-02-13 0.4 183.8 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "36" 2024-02-05 2024-02-13 0.45 188.55 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "36" 2024-02-05 2024-02-13 0.5 197.5 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "36" 2024-02-05 2024-02-13 0.55 204.45 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "36" 2024-02-05 2024-02-13 0.6 210.4 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "36" 2024-02-05 2024-02-13 0.65 221.05 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "36" 2024-02-05 2024-02-13 0.7 231.9 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "36" 2024-02-05 2024-02-13 0.75 242.25 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "36" 2024-02-05 2024-02-13 0.8 250.2 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "36" 2024-02-05 2024-02-13 0.85 271.15 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "36" 2024-02-05 2024-02-13 0.9 283.2 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "36" 2024-02-05 2024-02-13 0.95 339.8 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "36" 2024-02-05 2024-02-13 0.975 375.6 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "36" 2024-02-05 2024-02-13 0.99 388.08 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "36" 2024-02-05 2024-02-14 0.01 103.92 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "36" 2024-02-05 2024-02-14 0.025 108.425 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "36" 2024-02-05 2024-02-14 0.05 126.5 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "36" 2024-02-05 2024-02-14 0.1 132.9 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "36" 2024-02-05 2024-02-14 0.15 138 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "36" 2024-02-05 2024-02-14 0.2 144.8 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "36" 2024-02-05 2024-02-14 0.25 154.75 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "36" 2024-02-05 2024-02-14 0.3 161.4 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "36" 2024-02-05 2024-02-14 0.35 166.65 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "36" 2024-02-05 2024-02-14 0.4 174 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "36" 2024-02-05 2024-02-14 0.45 180.55 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "36" 2024-02-05 2024-02-14 0.5 186 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "36" 2024-02-05 2024-02-14 0.55 191.45 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "36" 2024-02-05 2024-02-14 0.6 201.4 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "36" 2024-02-05 2024-02-14 0.65 210.35 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "36" 2024-02-05 2024-02-14 0.7 226 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "36" 2024-02-05 2024-02-14 0.75 232.75 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "36" 2024-02-05 2024-02-14 0.8 245.2 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "36" 2024-02-05 2024-02-14 0.85 256.45 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "36" 2024-02-05 2024-02-14 0.9 279.3 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "36" 2024-02-05 2024-02-14 0.95 326.45 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "36" 2024-02-05 2024-02-14 0.975 342.625 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "36" 2024-02-05 2024-02-14 0.99 402.45 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "36" 2024-02-05 2024-02-15 0.01 96.89 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "36" 2024-02-05 2024-02-15 0.025 97.475 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "36" 2024-02-05 2024-02-15 0.05 107.8 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "36" 2024-02-05 2024-02-15 0.1 119 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "36" 2024-02-05 2024-02-15 0.15 129.25 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "36" 2024-02-05 2024-02-15 0.2 140.6 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "36" 2024-02-05 2024-02-15 0.25 145 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "36" 2024-02-05 2024-02-15 0.3 154.8 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "36" 2024-02-05 2024-02-15 0.35 163.65 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "36" 2024-02-05 2024-02-15 0.4 170.2 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "36" 2024-02-05 2024-02-15 0.45 175.55 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "36" 2024-02-05 2024-02-15 0.5 179.5 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "36" 2024-02-05 2024-02-15 0.55 183.9 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "36" 2024-02-05 2024-02-15 0.6 193.4 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "36" 2024-02-05 2024-02-15 0.65 199.35 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "36" 2024-02-05 2024-02-15 0.7 205 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "36" 2024-02-05 2024-02-15 0.75 216.25 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "36" 2024-02-05 2024-02-15 0.8 231.4 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "36" 2024-02-05 2024-02-15 0.85 249.9 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "36" 2024-02-05 2024-02-15 0.9 270.4 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "36" 2024-02-05 2024-02-15 0.95 292.05 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "36" 2024-02-05 2024-02-15 0.975 317.525 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "36" 2024-02-05 2024-02-15 0.99 323.35 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "36" 2024-02-05 2024-02-16 0.01 77.97 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "36" 2024-02-05 2024-02-16 0.025 84.7 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "36" 2024-02-05 2024-02-16 0.05 97.85 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "36" 2024-02-05 2024-02-16 0.1 111.9 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "36" 2024-02-05 2024-02-16 0.15 124.1 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "36" 2024-02-05 2024-02-16 0.2 133 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "36" 2024-02-05 2024-02-16 0.25 136.75 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "36" 2024-02-05 2024-02-16 0.3 141.7 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "36" 2024-02-05 2024-02-16 0.35 147.65 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "36" 2024-02-05 2024-02-16 0.4 153 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "36" 2024-02-05 2024-02-16 0.45 159.55 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "36" 2024-02-05 2024-02-16 0.5 164.5 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "36" 2024-02-05 2024-02-16 0.55 176.45 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "36" 2024-02-05 2024-02-16 0.6 188 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "36" 2024-02-05 2024-02-16 0.65 200.35 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "36" 2024-02-05 2024-02-16 0.7 203 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "36" 2024-02-05 2024-02-16 0.75 212.5 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "36" 2024-02-05 2024-02-16 0.8 222.2 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "36" 2024-02-05 2024-02-16 0.85 227.6 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "36" 2024-02-05 2024-02-16 0.9 240.6 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "36" 2024-02-05 2024-02-16 0.95 296.75 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "36" 2024-02-05 2024-02-16 0.975 337.05 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "36" 2024-02-05 2024-02-16 0.99 338.58 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "36" 2024-02-05 2024-02-17 0.01 78.87 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "36" 2024-02-05 2024-02-17 0.025 82.425 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "36" 2024-02-05 2024-02-17 0.05 86 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "36" 2024-02-05 2024-02-17 0.1 91.8 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "36" 2024-02-05 2024-02-17 0.15 103.8 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "36" 2024-02-05 2024-02-17 0.2 110.6 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "36" 2024-02-05 2024-02-17 0.25 113 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "36" 2024-02-05 2024-02-17 0.3 119.7 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "36" 2024-02-05 2024-02-17 0.35 125.3 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "36" 2024-02-05 2024-02-17 0.4 137 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "36" 2024-02-05 2024-02-17 0.45 146 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "36" 2024-02-05 2024-02-17 0.5 154.5 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "36" 2024-02-05 2024-02-17 0.55 159 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "36" 2024-02-05 2024-02-17 0.6 162 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "36" 2024-02-05 2024-02-17 0.65 171.35 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "36" 2024-02-05 2024-02-17 0.7 179.9 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "36" 2024-02-05 2024-02-17 0.75 194.25 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "36" 2024-02-05 2024-02-17 0.8 208.2 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "36" 2024-02-05 2024-02-17 0.85 224.75 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "36" 2024-02-05 2024-02-17 0.9 243.9 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "36" 2024-02-05 2024-02-17 0.95 281 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "36" 2024-02-05 2024-02-17 0.975 307.775 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "36" 2024-02-05 2024-02-17 0.99 316.14 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "36" 2024-02-05 2024-02-18 0.01 77.9 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "36" 2024-02-05 2024-02-18 0.025 81.9 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "36" 2024-02-05 2024-02-18 0.05 92.8 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "36" 2024-02-05 2024-02-18 0.1 103.5 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "36" 2024-02-05 2024-02-18 0.15 111.85 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "36" 2024-02-05 2024-02-18 0.2 121 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "36" 2024-02-05 2024-02-18 0.25 129.75 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "36" 2024-02-05 2024-02-18 0.3 138 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "36" 2024-02-05 2024-02-18 0.35 144.65 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "36" 2024-02-05 2024-02-18 0.4 146.6 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "36" 2024-02-05 2024-02-18 0.45 150.1 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "36" 2024-02-05 2024-02-18 0.5 163 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "36" 2024-02-05 2024-02-18 0.55 172 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "36" 2024-02-05 2024-02-18 0.6 184.2 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "36" 2024-02-05 2024-02-18 0.65 190.35 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "36" 2024-02-05 2024-02-18 0.7 194.9 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "36" 2024-02-05 2024-02-18 0.75 209.25 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "36" 2024-02-05 2024-02-18 0.8 231.2 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "36" 2024-02-05 2024-02-18 0.85 244.75 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "36" 2024-02-05 2024-02-18 0.9 277.5 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "36" 2024-02-05 2024-02-18 0.95 326.55 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "36" 2024-02-05 2024-02-18 0.975 405.624999999999 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "36" 2024-02-05 2024-02-18 0.99 454.02 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "36" 2024-02-05 2024-02-19 0.01 82.97 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "36" 2024-02-05 2024-02-19 0.025 92 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "36" 2024-02-05 2024-02-19 0.05 101.55 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "36" 2024-02-05 2024-02-19 0.1 116.9 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "36" 2024-02-05 2024-02-19 0.15 121.85 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "36" 2024-02-05 2024-02-19 0.2 132.2 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "36" 2024-02-05 2024-02-19 0.25 143.5 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "36" 2024-02-05 2024-02-19 0.3 151.4 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "36" 2024-02-05 2024-02-19 0.35 160.65 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "36" 2024-02-05 2024-02-19 0.4 169.6 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "36" 2024-02-05 2024-02-19 0.45 173.55 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "36" 2024-02-05 2024-02-19 0.5 179.5 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "36" 2024-02-05 2024-02-19 0.55 191.45 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "36" 2024-02-05 2024-02-19 0.6 204.6 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "36" 2024-02-05 2024-02-19 0.65 220 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "36" 2024-02-05 2024-02-19 0.7 227 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "36" 2024-02-05 2024-02-19 0.75 238.75 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "36" 2024-02-05 2024-02-19 0.8 265.4 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "36" 2024-02-05 2024-02-19 0.85 278.9 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "36" 2024-02-05 2024-02-19 0.9 310.7 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "36" 2024-02-05 2024-02-19 0.95 364.65 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "36" 2024-02-05 2024-02-19 0.975 415 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "36" 2024-02-05 2024-02-19 0.99 419.26 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "36" 2024-02-05 2024-02-20 0.01 71.73 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "36" 2024-02-05 2024-02-20 0.025 76.425 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "36" 2024-02-05 2024-02-20 0.05 93.7 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "36" 2024-02-05 2024-02-20 0.1 106.9 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "36" 2024-02-05 2024-02-20 0.15 115.85 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "36" 2024-02-05 2024-02-20 0.2 124 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "36" 2024-02-05 2024-02-20 0.25 127.75 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "36" 2024-02-05 2024-02-20 0.3 142.2 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "36" 2024-02-05 2024-02-20 0.35 153.3 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "36" 2024-02-05 2024-02-20 0.4 162.6 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "36" 2024-02-05 2024-02-20 0.45 169.55 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "36" 2024-02-05 2024-02-20 0.5 176 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "36" 2024-02-05 2024-02-20 0.55 179.8 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "36" 2024-02-05 2024-02-20 0.6 194.6 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "36" 2024-02-05 2024-02-20 0.65 206.35 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "36" 2024-02-05 2024-02-20 0.7 213.3 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "36" 2024-02-05 2024-02-20 0.75 218 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "36" 2024-02-05 2024-02-20 0.8 240.2 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "36" 2024-02-05 2024-02-20 0.85 262.35 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "36" 2024-02-05 2024-02-20 0.9 300.6 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "36" 2024-02-05 2024-02-20 0.95 369.5 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "36" 2024-02-05 2024-02-20 0.975 446.35 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "36" 2024-02-05 2024-02-20 0.99 480.25 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "36" 2024-02-05 2024-02-21 0.01 57.98 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "36" 2024-02-05 2024-02-21 0.025 69.4 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "36" 2024-02-05 2024-02-21 0.05 91.95 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "36" 2024-02-05 2024-02-21 0.1 107.8 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "36" 2024-02-05 2024-02-21 0.15 109.85 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "36" 2024-02-05 2024-02-21 0.2 122 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "36" 2024-02-05 2024-02-21 0.25 130 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "36" 2024-02-05 2024-02-21 0.3 137.7 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "36" 2024-02-05 2024-02-21 0.35 143 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "36" 2024-02-05 2024-02-21 0.4 148 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "36" 2024-02-05 2024-02-21 0.45 158.1 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "36" 2024-02-05 2024-02-21 0.5 167.5 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "36" 2024-02-05 2024-02-21 0.55 175 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "36" 2024-02-05 2024-02-21 0.6 189.4 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "36" 2024-02-05 2024-02-21 0.65 198.35 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "36" 2024-02-05 2024-02-21 0.7 206.3 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "36" 2024-02-05 2024-02-21 0.75 220.25 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "36" 2024-02-05 2024-02-21 0.8 233.2 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "36" 2024-02-05 2024-02-21 0.85 254.75 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "36" 2024-02-05 2024-02-21 0.9 285.3 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "36" 2024-02-05 2024-02-21 0.95 347.95 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "36" 2024-02-05 2024-02-21 0.975 412.225 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "36" 2024-02-05 2024-02-21 0.99 453.22 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "36" 2024-02-05 2024-02-22 0.01 58.97 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "36" 2024-02-05 2024-02-22 0.025 71.65 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "36" 2024-02-05 2024-02-22 0.05 83.8 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "36" 2024-02-05 2024-02-22 0.1 90.9 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "36" 2024-02-05 2024-02-22 0.15 105.85 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "36" 2024-02-05 2024-02-22 0.2 112.8 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "36" 2024-02-05 2024-02-22 0.25 121.75 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "36" 2024-02-05 2024-02-22 0.3 131 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "36" 2024-02-05 2024-02-22 0.35 139.65 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "36" 2024-02-05 2024-02-22 0.4 145 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "36" 2024-02-05 2024-02-22 0.45 150.1 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "36" 2024-02-05 2024-02-22 0.5 161.5 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "36" 2024-02-05 2024-02-22 0.55 173.8 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "36" 2024-02-05 2024-02-22 0.6 180.4 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "36" 2024-02-05 2024-02-22 0.65 186 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "36" 2024-02-05 2024-02-22 0.7 199.8 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "36" 2024-02-05 2024-02-22 0.75 220.25 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "36" 2024-02-05 2024-02-22 0.8 245.2 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "36" 2024-02-05 2024-02-22 0.85 266.75 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "36" 2024-02-05 2024-02-22 0.9 284.1 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "36" 2024-02-05 2024-02-22 0.95 364.05 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "36" 2024-02-05 2024-02-22 0.975 397.65 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "36" 2024-02-05 2024-02-22 0.99 430.35 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "36" 2024-02-05 2024-02-23 0.01 54.97 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "36" 2024-02-05 2024-02-23 0.025 63.55 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "36" 2024-02-05 2024-02-23 0.05 74.95 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "36" 2024-02-05 2024-02-23 0.1 82.9 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "36" 2024-02-05 2024-02-23 0.15 96.85 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "36" 2024-02-05 2024-02-23 0.2 103 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "36" 2024-02-05 2024-02-23 0.25 113.75 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "36" 2024-02-05 2024-02-23 0.3 129 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "36" 2024-02-05 2024-02-23 0.35 133 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "36" 2024-02-05 2024-02-23 0.4 147 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "36" 2024-02-05 2024-02-23 0.45 149 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "36" 2024-02-05 2024-02-23 0.5 156 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "36" 2024-02-05 2024-02-23 0.55 163 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "36" 2024-02-05 2024-02-23 0.6 170 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "36" 2024-02-05 2024-02-23 0.65 181.35 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "36" 2024-02-05 2024-02-23 0.7 196.9 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "36" 2024-02-05 2024-02-23 0.75 209.25 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "36" 2024-02-05 2024-02-23 0.8 231.6 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "36" 2024-02-05 2024-02-23 0.85 242.15 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "36" 2024-02-05 2024-02-23 0.9 292.6 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "36" 2024-02-05 2024-02-23 0.95 359.4 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "36" 2024-02-05 2024-02-23 0.975 390.7 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "36" 2024-02-05 2024-02-23 0.99 476.08 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "36" 2024-02-05 2024-02-24 0.01 51.89 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "36" 2024-02-05 2024-02-24 0.025 52.95 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "36" 2024-02-05 2024-02-24 0.05 58.9 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "36" 2024-02-05 2024-02-24 0.1 69.7 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "36" 2024-02-05 2024-02-24 0.15 78.7 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "36" 2024-02-05 2024-02-24 0.2 84.8 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "36" 2024-02-05 2024-02-24 0.25 96.75 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "36" 2024-02-05 2024-02-24 0.3 105.1 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "36" 2024-02-05 2024-02-24 0.35 110 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "36" 2024-02-05 2024-02-24 0.4 116.2 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "36" 2024-02-05 2024-02-24 0.45 122 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "36" 2024-02-05 2024-02-24 0.5 127 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "36" 2024-02-05 2024-02-24 0.55 135.45 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "36" 2024-02-05 2024-02-24 0.6 146.4 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "36" 2024-02-05 2024-02-24 0.65 159.35 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "36" 2024-02-05 2024-02-24 0.7 165.8 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "36" 2024-02-05 2024-02-24 0.75 179.5 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "36" 2024-02-05 2024-02-24 0.8 195.2 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "36" 2024-02-05 2024-02-24 0.85 225.05 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "36" 2024-02-05 2024-02-24 0.9 269.4 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "36" 2024-02-05 2024-02-24 0.95 343 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "36" 2024-02-05 2024-02-24 0.975 383.05 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "36" 2024-02-05 2024-02-24 0.99 402.34 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "36" 2024-02-05 2024-02-25 0.01 45.98 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "36" 2024-02-05 2024-02-25 0.025 49.475 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "36" 2024-02-05 2024-02-25 0.05 66.6 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "36" 2024-02-05 2024-02-25 0.1 80.5 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "36" 2024-02-05 2024-02-25 0.15 92 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "36" 2024-02-05 2024-02-25 0.2 97.8 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "36" 2024-02-05 2024-02-25 0.25 107.5 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "36" 2024-02-05 2024-02-25 0.3 113.4 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "36" 2024-02-05 2024-02-25 0.35 126.95 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "36" 2024-02-05 2024-02-25 0.4 137.6 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "36" 2024-02-05 2024-02-25 0.45 150.55 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "36" 2024-02-05 2024-02-25 0.5 157 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "36" 2024-02-05 2024-02-25 0.55 165 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "36" 2024-02-05 2024-02-25 0.6 170 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "36" 2024-02-05 2024-02-25 0.65 177 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "36" 2024-02-05 2024-02-25 0.7 191 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "36" 2024-02-05 2024-02-25 0.75 205 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "36" 2024-02-05 2024-02-25 0.8 228.2 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "36" 2024-02-05 2024-02-25 0.85 263.15 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "36" 2024-02-05 2024-02-25 0.9 292.5 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "36" 2024-02-05 2024-02-25 0.95 364.65 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "36" 2024-02-05 2024-02-25 0.975 415.7 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "36" 2024-02-05 2024-02-25 0.99 444.32 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "36" 2024-02-05 2024-02-26 0.01 51.93 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "36" 2024-02-05 2024-02-26 0.025 64.325 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "36" 2024-02-05 2024-02-26 0.05 71 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "36" 2024-02-05 2024-02-26 0.1 79.8 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "36" 2024-02-05 2024-02-26 0.15 91.95 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "36" 2024-02-05 2024-02-26 0.2 104.8 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "36" 2024-02-05 2024-02-26 0.25 118.5 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "36" 2024-02-05 2024-02-26 0.3 131.1 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "36" 2024-02-05 2024-02-26 0.35 138.3 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "36" 2024-02-05 2024-02-26 0.4 148 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "36" 2024-02-05 2024-02-26 0.45 160.55 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "36" 2024-02-05 2024-02-26 0.5 167.5 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "36" 2024-02-05 2024-02-26 0.55 173.9 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "36" 2024-02-05 2024-02-26 0.6 183.4 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "36" 2024-02-05 2024-02-26 0.65 206.45 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "36" 2024-02-05 2024-02-26 0.7 219.9 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "36" 2024-02-05 2024-02-26 0.75 239 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "36" 2024-02-05 2024-02-26 0.8 280.8 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "36" 2024-02-05 2024-02-26 0.85 300.15 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "36" 2024-02-05 2024-02-26 0.9 376.7 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "36" 2024-02-05 2024-02-26 0.95 471.25 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "36" 2024-02-05 2024-02-26 0.975 515.55 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "36" 2024-02-05 2024-02-26 0.99 584.29 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "36" 2024-02-05 2024-02-27 0.01 46.94 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "36" 2024-02-05 2024-02-27 0.025 52.95 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "36" 2024-02-05 2024-02-27 0.05 67.6 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "36" 2024-02-05 2024-02-27 0.1 77.8 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "36" 2024-02-05 2024-02-27 0.15 100 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "36" 2024-02-05 2024-02-27 0.2 104.6 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "36" 2024-02-05 2024-02-27 0.25 115.5 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "36" 2024-02-05 2024-02-27 0.3 124.1 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "36" 2024-02-05 2024-02-27 0.35 133.65 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "36" 2024-02-05 2024-02-27 0.4 141.6 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "36" 2024-02-05 2024-02-27 0.45 147.65 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "36" 2024-02-05 2024-02-27 0.5 151 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "36" 2024-02-05 2024-02-27 0.55 160.45 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "36" 2024-02-05 2024-02-27 0.6 174.8 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "36" 2024-02-05 2024-02-27 0.65 194.7 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "36" 2024-02-05 2024-02-27 0.7 202.3 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "36" 2024-02-05 2024-02-27 0.75 225.75 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "36" 2024-02-05 2024-02-27 0.8 245.4 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "36" 2024-02-05 2024-02-27 0.85 265.25 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "36" 2024-02-05 2024-02-27 0.9 322.6 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "36" 2024-02-05 2024-02-27 0.95 386.3 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "36" 2024-02-05 2024-02-27 0.975 454.575 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "36" 2024-02-05 2024-02-27 0.99 493.080000000001 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "36" 2024-02-05 2024-02-28 0.01 37 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "36" 2024-02-05 2024-02-28 0.025 49.65 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "36" 2024-02-05 2024-02-28 0.05 61.95 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "36" 2024-02-05 2024-02-28 0.1 72.7 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "36" 2024-02-05 2024-02-28 0.15 81.7 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "36" 2024-02-05 2024-02-28 0.2 94.2 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "36" 2024-02-05 2024-02-28 0.25 105.75 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "36" 2024-02-05 2024-02-28 0.3 113.7 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "36" 2024-02-05 2024-02-28 0.35 130 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "36" 2024-02-05 2024-02-28 0.4 138.6 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "36" 2024-02-05 2024-02-28 0.45 142 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "36" 2024-02-05 2024-02-28 0.5 151.5 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "36" 2024-02-05 2024-02-28 0.55 158.9 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "36" 2024-02-05 2024-02-28 0.6 168.8 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "36" 2024-02-05 2024-02-28 0.65 187.35 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "36" 2024-02-05 2024-02-28 0.7 200.3 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "36" 2024-02-05 2024-02-28 0.75 212.75 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "36" 2024-02-05 2024-02-28 0.8 236.6 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "36" 2024-02-05 2024-02-28 0.85 268.85 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "36" 2024-02-05 2024-02-28 0.9 337.9 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "36" 2024-02-05 2024-02-28 0.95 453.5 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "36" 2024-02-05 2024-02-28 0.975 489.1 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "36" 2024-02-05 2024-02-28 0.99 613.15 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "36" 2024-02-05 2024-02-29 0.01 31 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "36" 2024-02-05 2024-02-29 0.025 42.475 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "36" 2024-02-05 2024-02-29 0.05 53.65 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "36" 2024-02-05 2024-02-29 0.1 66.9 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "36" 2024-02-05 2024-02-29 0.15 81 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "36" 2024-02-05 2024-02-29 0.2 93 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "36" 2024-02-05 2024-02-29 0.25 101.25 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "36" 2024-02-05 2024-02-29 0.3 110.8 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "36" 2024-02-05 2024-02-29 0.35 117.65 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "36" 2024-02-05 2024-02-29 0.4 128 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "36" 2024-02-05 2024-02-29 0.45 133.65 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "36" 2024-02-05 2024-02-29 0.5 148 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "36" 2024-02-05 2024-02-29 0.55 156.45 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "36" 2024-02-05 2024-02-29 0.6 163.2 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "36" 2024-02-05 2024-02-29 0.65 175.7 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "36" 2024-02-05 2024-02-29 0.7 191.7 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "36" 2024-02-05 2024-02-29 0.75 201.75 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "36" 2024-02-05 2024-02-29 0.8 224.4 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "36" 2024-02-05 2024-02-29 0.85 253.4 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "36" 2024-02-05 2024-02-29 0.9 321.8 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "36" 2024-02-05 2024-02-29 0.95 417.45 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "36" 2024-02-05 2024-02-29 0.975 462.4 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "36" 2024-02-05 2024-02-29 0.99 487.73 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "36" 2024-02-05 2024-03-01 0.01 33.96 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "36" 2024-02-05 2024-03-01 0.025 39.95 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "36" 2024-02-05 2024-03-01 0.05 54.5 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "36" 2024-02-05 2024-03-01 0.1 62.9 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "36" 2024-02-05 2024-03-01 0.15 72 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "36" 2024-02-05 2024-03-01 0.2 83.4 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "36" 2024-02-05 2024-03-01 0.25 100.25 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "36" 2024-02-05 2024-03-01 0.3 107.1 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "36" 2024-02-05 2024-03-01 0.35 113.95 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "36" 2024-02-05 2024-03-01 0.4 124 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "36" 2024-02-05 2024-03-01 0.45 131 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "36" 2024-02-05 2024-03-01 0.5 132.5 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "36" 2024-02-05 2024-03-01 0.55 143 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "36" 2024-02-05 2024-03-01 0.6 155 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "36" 2024-02-05 2024-03-01 0.65 167.7 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "36" 2024-02-05 2024-03-01 0.7 186.9 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "36" 2024-02-05 2024-03-01 0.75 198.25 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "36" 2024-02-05 2024-03-01 0.8 224.8 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "36" 2024-02-05 2024-03-01 0.85 244.2 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "36" 2024-02-05 2024-03-01 0.9 288.500000000001 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "36" 2024-02-05 2024-03-01 0.95 454.25 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "36" 2024-02-05 2024-03-01 0.975 546.374999999999 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "36" 2024-02-05 2024-03-01 0.99 610.45 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "36" 2024-02-05 2024-03-02 0.01 28.89 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "36" 2024-02-05 2024-03-02 0.025 32.9 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "36" 2024-02-05 2024-03-02 0.05 39.95 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "36" 2024-02-05 2024-03-02 0.1 49.5 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "36" 2024-02-05 2024-03-02 0.15 65.25 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "36" 2024-02-05 2024-03-02 0.2 75.4 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "36" 2024-02-05 2024-03-02 0.25 84.25 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "36" 2024-02-05 2024-03-02 0.3 94.1 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "36" 2024-02-05 2024-03-02 0.35 100.65 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "36" 2024-02-05 2024-03-02 0.4 105.2 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "36" 2024-02-05 2024-03-02 0.45 113.55 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "36" 2024-02-05 2024-03-02 0.5 120 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "36" 2024-02-05 2024-03-02 0.55 132.25 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "36" 2024-02-05 2024-03-02 0.6 144 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "36" 2024-02-05 2024-03-02 0.65 153.35 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "36" 2024-02-05 2024-03-02 0.7 163.3 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "36" 2024-02-05 2024-03-02 0.75 172 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "36" 2024-02-05 2024-03-02 0.8 206.2 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "36" 2024-02-05 2024-03-02 0.85 240.3 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "36" 2024-02-05 2024-03-02 0.9 295.3 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "36" 2024-02-05 2024-03-02 0.95 376.75 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "36" 2024-02-05 2024-03-02 0.975 484.274999999999 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "36" 2024-02-05 2024-03-02 0.99 530.42 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "36" 2024-02-05 2024-03-03 0.01 20.94 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "36" 2024-02-05 2024-03-03 0.025 38.85 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "36" 2024-02-05 2024-03-03 0.05 46.95 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "36" 2024-02-05 2024-03-03 0.1 56.9 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "36" 2024-02-05 2024-03-03 0.15 61.7 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "36" 2024-02-05 2024-03-03 0.2 71.2 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "36" 2024-02-05 2024-03-03 0.25 91.25 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "36" 2024-02-05 2024-03-03 0.3 105.7 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "36" 2024-02-05 2024-03-03 0.35 112.3 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "36" 2024-02-05 2024-03-03 0.4 120 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "36" 2024-02-05 2024-03-03 0.45 127.1 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "36" 2024-02-05 2024-03-03 0.5 132.5 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "36" 2024-02-05 2024-03-03 0.55 145 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "36" 2024-02-05 2024-03-03 0.6 151.6 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "36" 2024-02-05 2024-03-03 0.65 163.35 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "36" 2024-02-05 2024-03-03 0.7 176.3 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "36" 2024-02-05 2024-03-03 0.75 194.5 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "36" 2024-02-05 2024-03-03 0.8 224.4 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "36" 2024-02-05 2024-03-03 0.85 261.6 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "36" 2024-02-05 2024-03-03 0.9 341.3 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "36" 2024-02-05 2024-03-03 0.95 457.75 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "36" 2024-02-05 2024-03-03 0.975 539.274999999999 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "36" 2024-02-05 2024-03-03 0.99 733.57 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "36" 2024-02-05 2024-03-04 0.01 30.83 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "36" 2024-02-05 2024-03-04 0.025 34.9 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "36" 2024-02-05 2024-03-04 0.05 39.9 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "36" 2024-02-05 2024-03-04 0.1 60.8 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "36" 2024-02-05 2024-03-04 0.15 70.7 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "36" 2024-02-05 2024-03-04 0.2 82.2 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "36" 2024-02-05 2024-03-04 0.25 103.5 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "36" 2024-02-05 2024-03-04 0.3 117 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "36" 2024-02-05 2024-03-04 0.35 122 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "36" 2024-02-05 2024-03-04 0.4 125.8 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "36" 2024-02-05 2024-03-04 0.45 138.2 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "36" 2024-02-05 2024-03-04 0.5 158.5 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "36" 2024-02-05 2024-03-04 0.55 174.35 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "36" 2024-02-05 2024-03-04 0.6 182 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "36" 2024-02-05 2024-03-04 0.65 195.05 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "36" 2024-02-05 2024-03-04 0.7 208 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "36" 2024-02-05 2024-03-04 0.75 231.5 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "36" 2024-02-05 2024-03-04 0.8 250.6 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "36" 2024-02-05 2024-03-04 0.85 320.4 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "36" 2024-02-05 2024-03-04 0.9 443.9 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "36" 2024-02-05 2024-03-04 0.95 569.55 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "36" 2024-02-05 2024-03-04 0.975 636.575 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "36" 2024-02-05 2024-03-04 0.99 691.230000000001 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "39" 2024-02-05 2024-02-06 0.01 65.88 "quantile" "hospital admissions only" +"1 day ahead inc hosp" "39" 2024-02-05 2024-02-06 0.025 66.95 "quantile" "hospital admissions only" +"1 day ahead inc hosp" "39" 2024-02-05 2024-02-06 0.05 70.95 "quantile" "hospital admissions only" +"1 day ahead inc hosp" "39" 2024-02-05 2024-02-06 0.1 77.9 "quantile" "hospital admissions only" +"1 day ahead inc hosp" "39" 2024-02-05 2024-02-06 0.15 82.7 "quantile" "hospital admissions only" +"1 day ahead inc hosp" "39" 2024-02-05 2024-02-06 0.2 87 "quantile" "hospital admissions only" +"1 day ahead inc hosp" "39" 2024-02-05 2024-02-06 0.25 90 "quantile" "hospital admissions only" +"1 day ahead inc hosp" "39" 2024-02-05 2024-02-06 0.3 92 "quantile" "hospital admissions only" +"1 day ahead inc hosp" "39" 2024-02-05 2024-02-06 0.35 94 "quantile" "hospital admissions only" +"1 day ahead inc hosp" "39" 2024-02-05 2024-02-06 0.4 97.6 "quantile" "hospital admissions only" +"1 day ahead inc hosp" "39" 2024-02-05 2024-02-06 0.45 101 "quantile" "hospital admissions only" +"1 day ahead inc hosp" "39" 2024-02-05 2024-02-06 0.5 104.5 "quantile" "hospital admissions only" +"1 day ahead inc hosp" "39" 2024-02-05 2024-02-06 0.55 109 "quantile" "hospital admissions only" +"1 day ahead inc hosp" "39" 2024-02-05 2024-02-06 0.6 113.4 "quantile" "hospital admissions only" +"1 day ahead inc hosp" "39" 2024-02-05 2024-02-06 0.65 115 "quantile" "hospital admissions only" +"1 day ahead inc hosp" "39" 2024-02-05 2024-02-06 0.7 118.9 "quantile" "hospital admissions only" +"1 day ahead inc hosp" "39" 2024-02-05 2024-02-06 0.75 122 "quantile" "hospital admissions only" +"1 day ahead inc hosp" "39" 2024-02-05 2024-02-06 0.8 127.2 "quantile" "hospital admissions only" +"1 day ahead inc hosp" "39" 2024-02-05 2024-02-06 0.85 130.15 "quantile" "hospital admissions only" +"1 day ahead inc hosp" "39" 2024-02-05 2024-02-06 0.9 138.1 "quantile" "hospital admissions only" +"1 day ahead inc hosp" "39" 2024-02-05 2024-02-06 0.95 141.1 "quantile" "hospital admissions only" +"1 day ahead inc hosp" "39" 2024-02-05 2024-02-06 0.975 154.525 "quantile" "hospital admissions only" +"1 day ahead inc hosp" "39" 2024-02-05 2024-02-06 0.99 160.15 "quantile" "hospital admissions only" +"2 day ahead inc hosp" "39" 2024-02-05 2024-02-07 0.01 49 "quantile" "hospital admissions only" +"2 day ahead inc hosp" "39" 2024-02-05 2024-02-07 0.025 64.9 "quantile" "hospital admissions only" +"2 day ahead inc hosp" "39" 2024-02-05 2024-02-07 0.05 69 "quantile" "hospital admissions only" +"2 day ahead inc hosp" "39" 2024-02-05 2024-02-07 0.1 74.9 "quantile" "hospital admissions only" +"2 day ahead inc hosp" "39" 2024-02-05 2024-02-07 0.15 77 "quantile" "hospital admissions only" +"2 day ahead inc hosp" "39" 2024-02-05 2024-02-07 0.2 80 "quantile" "hospital admissions only" +"2 day ahead inc hosp" "39" 2024-02-05 2024-02-07 0.25 82.75 "quantile" "hospital admissions only" +"2 day ahead inc hosp" "39" 2024-02-05 2024-02-07 0.3 84 "quantile" "hospital admissions only" +"2 day ahead inc hosp" "39" 2024-02-05 2024-02-07 0.35 90 "quantile" "hospital admissions only" +"2 day ahead inc hosp" "39" 2024-02-05 2024-02-07 0.4 92.6 "quantile" "hospital admissions only" +"2 day ahead inc hosp" "39" 2024-02-05 2024-02-07 0.45 94 "quantile" "hospital admissions only" +"2 day ahead inc hosp" "39" 2024-02-05 2024-02-07 0.5 99 "quantile" "hospital admissions only" +"2 day ahead inc hosp" "39" 2024-02-05 2024-02-07 0.55 101 "quantile" "hospital admissions only" +"2 day ahead inc hosp" "39" 2024-02-05 2024-02-07 0.6 102.4 "quantile" "hospital admissions only" +"2 day ahead inc hosp" "39" 2024-02-05 2024-02-07 0.65 106 "quantile" "hospital admissions only" +"2 day ahead inc hosp" "39" 2024-02-05 2024-02-07 0.7 109 "quantile" "hospital admissions only" +"2 day ahead inc hosp" "39" 2024-02-05 2024-02-07 0.75 112 "quantile" "hospital admissions only" +"2 day ahead inc hosp" "39" 2024-02-05 2024-02-07 0.8 116 "quantile" "hospital admissions only" +"2 day ahead inc hosp" "39" 2024-02-05 2024-02-07 0.85 121.3 "quantile" "hospital admissions only" +"2 day ahead inc hosp" "39" 2024-02-05 2024-02-07 0.9 128.2 "quantile" "hospital admissions only" +"2 day ahead inc hosp" "39" 2024-02-05 2024-02-07 0.95 136.15 "quantile" "hospital admissions only" +"2 day ahead inc hosp" "39" 2024-02-05 2024-02-07 0.975 141.525 "quantile" "hospital admissions only" +"2 day ahead inc hosp" "39" 2024-02-05 2024-02-07 0.99 145.06 "quantile" "hospital admissions only" +"3 day ahead inc hosp" "39" 2024-02-05 2024-02-08 0.01 50.96 "quantile" "hospital admissions only" +"3 day ahead inc hosp" "39" 2024-02-05 2024-02-08 0.025 54.475 "quantile" "hospital admissions only" +"3 day ahead inc hosp" "39" 2024-02-05 2024-02-08 0.05 69.55 "quantile" "hospital admissions only" +"3 day ahead inc hosp" "39" 2024-02-05 2024-02-08 0.1 74.8 "quantile" "hospital admissions only" +"3 day ahead inc hosp" "39" 2024-02-05 2024-02-08 0.15 77 "quantile" "hospital admissions only" +"3 day ahead inc hosp" "39" 2024-02-05 2024-02-08 0.2 79.8 "quantile" "hospital admissions only" +"3 day ahead inc hosp" "39" 2024-02-05 2024-02-08 0.25 84.75 "quantile" "hospital admissions only" +"3 day ahead inc hosp" "39" 2024-02-05 2024-02-08 0.3 87 "quantile" "hospital admissions only" +"3 day ahead inc hosp" "39" 2024-02-05 2024-02-08 0.35 89 "quantile" "hospital admissions only" +"3 day ahead inc hosp" "39" 2024-02-05 2024-02-08 0.4 91 "quantile" "hospital admissions only" +"3 day ahead inc hosp" "39" 2024-02-05 2024-02-08 0.45 94.55 "quantile" "hospital admissions only" +"3 day ahead inc hosp" "39" 2024-02-05 2024-02-08 0.5 97 "quantile" "hospital admissions only" +"3 day ahead inc hosp" "39" 2024-02-05 2024-02-08 0.55 99 "quantile" "hospital admissions only" +"3 day ahead inc hosp" "39" 2024-02-05 2024-02-08 0.6 100.8 "quantile" "hospital admissions only" +"3 day ahead inc hosp" "39" 2024-02-05 2024-02-08 0.65 103 "quantile" "hospital admissions only" +"3 day ahead inc hosp" "39" 2024-02-05 2024-02-08 0.7 106.3 "quantile" "hospital admissions only" +"3 day ahead inc hosp" "39" 2024-02-05 2024-02-08 0.75 109 "quantile" "hospital admissions only" +"3 day ahead inc hosp" "39" 2024-02-05 2024-02-08 0.8 113 "quantile" "hospital admissions only" +"3 day ahead inc hosp" "39" 2024-02-05 2024-02-08 0.85 117.15 "quantile" "hospital admissions only" +"3 day ahead inc hosp" "39" 2024-02-05 2024-02-08 0.9 125.3 "quantile" "hospital admissions only" +"3 day ahead inc hosp" "39" 2024-02-05 2024-02-08 0.95 135.1 "quantile" "hospital admissions only" +"3 day ahead inc hosp" "39" 2024-02-05 2024-02-08 0.975 140.575 "quantile" "hospital admissions only" +"3 day ahead inc hosp" "39" 2024-02-05 2024-02-08 0.99 151.17 "quantile" "hospital admissions only" +"4 day ahead inc hosp" "39" 2024-02-05 2024-02-09 0.01 55.85 "quantile" "hospital admissions only" +"4 day ahead inc hosp" "39" 2024-02-05 2024-02-09 0.025 57.95 "quantile" "hospital admissions only" +"4 day ahead inc hosp" "39" 2024-02-05 2024-02-09 0.05 59.95 "quantile" "hospital admissions only" +"4 day ahead inc hosp" "39" 2024-02-05 2024-02-09 0.1 64 "quantile" "hospital admissions only" +"4 day ahead inc hosp" "39" 2024-02-05 2024-02-09 0.15 70.85 "quantile" "hospital admissions only" +"4 day ahead inc hosp" "39" 2024-02-05 2024-02-09 0.2 74 "quantile" "hospital admissions only" +"4 day ahead inc hosp" "39" 2024-02-05 2024-02-09 0.25 79.75 "quantile" "hospital admissions only" +"4 day ahead inc hosp" "39" 2024-02-05 2024-02-09 0.3 80 "quantile" "hospital admissions only" +"4 day ahead inc hosp" "39" 2024-02-05 2024-02-09 0.35 84.6 "quantile" "hospital admissions only" +"4 day ahead inc hosp" "39" 2024-02-05 2024-02-09 0.4 87.6 "quantile" "hospital admissions only" +"4 day ahead inc hosp" "39" 2024-02-05 2024-02-09 0.45 90.1 "quantile" "hospital admissions only" +"4 day ahead inc hosp" "39" 2024-02-05 2024-02-09 0.5 93.5 "quantile" "hospital admissions only" +"4 day ahead inc hosp" "39" 2024-02-05 2024-02-09 0.55 95.45 "quantile" "hospital admissions only" +"4 day ahead inc hosp" "39" 2024-02-05 2024-02-09 0.6 97.4 "quantile" "hospital admissions only" +"4 day ahead inc hosp" "39" 2024-02-05 2024-02-09 0.65 98 "quantile" "hospital admissions only" +"4 day ahead inc hosp" "39" 2024-02-05 2024-02-09 0.7 100.6 "quantile" "hospital admissions only" +"4 day ahead inc hosp" "39" 2024-02-05 2024-02-09 0.75 107 "quantile" "hospital admissions only" +"4 day ahead inc hosp" "39" 2024-02-05 2024-02-09 0.8 112.2 "quantile" "hospital admissions only" +"4 day ahead inc hosp" "39" 2024-02-05 2024-02-09 0.85 115.15 "quantile" "hospital admissions only" +"4 day ahead inc hosp" "39" 2024-02-05 2024-02-09 0.9 125.1 "quantile" "hospital admissions only" +"4 day ahead inc hosp" "39" 2024-02-05 2024-02-09 0.95 134.1 "quantile" "hospital admissions only" +"4 day ahead inc hosp" "39" 2024-02-05 2024-02-09 0.975 143.15 "quantile" "hospital admissions only" +"4 day ahead inc hosp" "39" 2024-02-05 2024-02-09 0.99 147.01 "quantile" "hospital admissions only" +"5 day ahead inc hosp" "39" 2024-02-05 2024-02-10 0.01 44.89 "quantile" "hospital admissions only" +"5 day ahead inc hosp" "39" 2024-02-05 2024-02-10 0.025 48.85 "quantile" "hospital admissions only" +"5 day ahead inc hosp" "39" 2024-02-05 2024-02-10 0.05 56.85 "quantile" "hospital admissions only" +"5 day ahead inc hosp" "39" 2024-02-05 2024-02-10 0.1 62 "quantile" "hospital admissions only" +"5 day ahead inc hosp" "39" 2024-02-05 2024-02-10 0.15 66.85 "quantile" "hospital admissions only" +"5 day ahead inc hosp" "39" 2024-02-05 2024-02-10 0.2 70 "quantile" "hospital admissions only" +"5 day ahead inc hosp" "39" 2024-02-05 2024-02-10 0.25 72.75 "quantile" "hospital admissions only" +"5 day ahead inc hosp" "39" 2024-02-05 2024-02-10 0.3 75 "quantile" "hospital admissions only" +"5 day ahead inc hosp" "39" 2024-02-05 2024-02-10 0.35 76 "quantile" "hospital admissions only" +"5 day ahead inc hosp" "39" 2024-02-05 2024-02-10 0.4 79 "quantile" "hospital admissions only" +"5 day ahead inc hosp" "39" 2024-02-05 2024-02-10 0.45 81 "quantile" "hospital admissions only" +"5 day ahead inc hosp" "39" 2024-02-05 2024-02-10 0.5 85.5 "quantile" "hospital admissions only" +"5 day ahead inc hosp" "39" 2024-02-05 2024-02-10 0.55 91.45 "quantile" "hospital admissions only" +"5 day ahead inc hosp" "39" 2024-02-05 2024-02-10 0.6 94 "quantile" "hospital admissions only" +"5 day ahead inc hosp" "39" 2024-02-05 2024-02-10 0.65 97 "quantile" "hospital admissions only" +"5 day ahead inc hosp" "39" 2024-02-05 2024-02-10 0.7 99.6 "quantile" "hospital admissions only" +"5 day ahead inc hosp" "39" 2024-02-05 2024-02-10 0.75 105 "quantile" "hospital admissions only" +"5 day ahead inc hosp" "39" 2024-02-05 2024-02-10 0.8 105 "quantile" "hospital admissions only" +"5 day ahead inc hosp" "39" 2024-02-05 2024-02-10 0.85 112.15 "quantile" "hospital admissions only" +"5 day ahead inc hosp" "39" 2024-02-05 2024-02-10 0.9 116.2 "quantile" "hospital admissions only" +"5 day ahead inc hosp" "39" 2024-02-05 2024-02-10 0.95 131.1 "quantile" "hospital admissions only" +"5 day ahead inc hosp" "39" 2024-02-05 2024-02-10 0.975 138.525 "quantile" "hospital admissions only" +"5 day ahead inc hosp" "39" 2024-02-05 2024-02-10 0.99 141.33 "quantile" "hospital admissions only" +"6 day ahead inc hosp" "39" 2024-02-05 2024-02-11 0.01 43.87 "quantile" "hospital admissions only" +"6 day ahead inc hosp" "39" 2024-02-05 2024-02-11 0.025 46 "quantile" "hospital admissions only" +"6 day ahead inc hosp" "39" 2024-02-05 2024-02-11 0.05 53 "quantile" "hospital admissions only" +"6 day ahead inc hosp" "39" 2024-02-05 2024-02-11 0.1 60.9 "quantile" "hospital admissions only" +"6 day ahead inc hosp" "39" 2024-02-05 2024-02-11 0.15 65.7 "quantile" "hospital admissions only" +"6 day ahead inc hosp" "39" 2024-02-05 2024-02-11 0.2 68.8 "quantile" "hospital admissions only" +"6 day ahead inc hosp" "39" 2024-02-05 2024-02-11 0.25 70 "quantile" "hospital admissions only" +"6 day ahead inc hosp" "39" 2024-02-05 2024-02-11 0.3 74 "quantile" "hospital admissions only" +"6 day ahead inc hosp" "39" 2024-02-05 2024-02-11 0.35 75.65 "quantile" "hospital admissions only" +"6 day ahead inc hosp" "39" 2024-02-05 2024-02-11 0.4 77.8 "quantile" "hospital admissions only" +"6 day ahead inc hosp" "39" 2024-02-05 2024-02-11 0.45 84.55 "quantile" "hospital admissions only" +"6 day ahead inc hosp" "39" 2024-02-05 2024-02-11 0.5 86.5 "quantile" "hospital admissions only" +"6 day ahead inc hosp" "39" 2024-02-05 2024-02-11 0.55 88.45 "quantile" "hospital admissions only" +"6 day ahead inc hosp" "39" 2024-02-05 2024-02-11 0.6 92 "quantile" "hospital admissions only" +"6 day ahead inc hosp" "39" 2024-02-05 2024-02-11 0.65 94 "quantile" "hospital admissions only" +"6 day ahead inc hosp" "39" 2024-02-05 2024-02-11 0.7 99.6 "quantile" "hospital admissions only" +"6 day ahead inc hosp" "39" 2024-02-05 2024-02-11 0.75 105 "quantile" "hospital admissions only" +"6 day ahead inc hosp" "39" 2024-02-05 2024-02-11 0.8 106 "quantile" "hospital admissions only" +"6 day ahead inc hosp" "39" 2024-02-05 2024-02-11 0.85 109.6 "quantile" "hospital admissions only" +"6 day ahead inc hosp" "39" 2024-02-05 2024-02-11 0.9 117.1 "quantile" "hospital admissions only" +"6 day ahead inc hosp" "39" 2024-02-05 2024-02-11 0.95 123.15 "quantile" "hospital admissions only" +"6 day ahead inc hosp" "39" 2024-02-05 2024-02-11 0.975 133.35 "quantile" "hospital admissions only" +"6 day ahead inc hosp" "39" 2024-02-05 2024-02-11 0.99 141.05 "quantile" "hospital admissions only" +"7 day ahead inc hosp" "39" 2024-02-05 2024-02-12 0.01 46.9 "quantile" "hospital admissions only" +"7 day ahead inc hosp" "39" 2024-02-05 2024-02-12 0.025 57.325 "quantile" "hospital admissions only" +"7 day ahead inc hosp" "39" 2024-02-05 2024-02-12 0.05 65 "quantile" "hospital admissions only" +"7 day ahead inc hosp" "39" 2024-02-05 2024-02-12 0.1 68.9 "quantile" "hospital admissions only" +"7 day ahead inc hosp" "39" 2024-02-05 2024-02-12 0.15 75.7 "quantile" "hospital admissions only" +"7 day ahead inc hosp" "39" 2024-02-05 2024-02-12 0.2 77.8 "quantile" "hospital admissions only" +"7 day ahead inc hosp" "39" 2024-02-05 2024-02-12 0.25 80 "quantile" "hospital admissions only" +"7 day ahead inc hosp" "39" 2024-02-05 2024-02-12 0.3 83.7 "quantile" "hospital admissions only" +"7 day ahead inc hosp" "39" 2024-02-05 2024-02-12 0.35 87.65 "quantile" "hospital admissions only" +"7 day ahead inc hosp" "39" 2024-02-05 2024-02-12 0.4 91 "quantile" "hospital admissions only" +"7 day ahead inc hosp" "39" 2024-02-05 2024-02-12 0.45 94 "quantile" "hospital admissions only" +"7 day ahead inc hosp" "39" 2024-02-05 2024-02-12 0.5 97.5 "quantile" "hospital admissions only" +"7 day ahead inc hosp" "39" 2024-02-05 2024-02-12 0.55 100 "quantile" "hospital admissions only" +"7 day ahead inc hosp" "39" 2024-02-05 2024-02-12 0.6 102.8 "quantile" "hospital admissions only" +"7 day ahead inc hosp" "39" 2024-02-05 2024-02-12 0.65 110.35 "quantile" "hospital admissions only" +"7 day ahead inc hosp" "39" 2024-02-05 2024-02-12 0.7 113.6 "quantile" "hospital admissions only" +"7 day ahead inc hosp" "39" 2024-02-05 2024-02-12 0.75 118.5 "quantile" "hospital admissions only" +"7 day ahead inc hosp" "39" 2024-02-05 2024-02-12 0.8 125.6 "quantile" "hospital admissions only" +"7 day ahead inc hosp" "39" 2024-02-05 2024-02-12 0.85 130.3 "quantile" "hospital admissions only" +"7 day ahead inc hosp" "39" 2024-02-05 2024-02-12 0.9 139.1 "quantile" "hospital admissions only" +"7 day ahead inc hosp" "39" 2024-02-05 2024-02-12 0.95 148 "quantile" "hospital admissions only" +"7 day ahead inc hosp" "39" 2024-02-05 2024-02-12 0.975 152.625 "quantile" "hospital admissions only" +"7 day ahead inc hosp" "39" 2024-02-05 2024-02-12 0.99 156.07 "quantile" "hospital admissions only" +"8 day ahead inc hosp" "39" 2024-02-05 2024-02-13 0.01 53.94 "quantile" "hospital admissions only" +"8 day ahead inc hosp" "39" 2024-02-05 2024-02-13 0.025 57.375 "quantile" "hospital admissions only" +"8 day ahead inc hosp" "39" 2024-02-05 2024-02-13 0.05 60.95 "quantile" "hospital admissions only" +"8 day ahead inc hosp" "39" 2024-02-05 2024-02-13 0.1 66.9 "quantile" "hospital admissions only" +"8 day ahead inc hosp" "39" 2024-02-05 2024-02-13 0.15 71.85 "quantile" "hospital admissions only" +"8 day ahead inc hosp" "39" 2024-02-05 2024-02-13 0.2 74 "quantile" "hospital admissions only" +"8 day ahead inc hosp" "39" 2024-02-05 2024-02-13 0.25 79 "quantile" "hospital admissions only" +"8 day ahead inc hosp" "39" 2024-02-05 2024-02-13 0.3 81 "quantile" "hospital admissions only" +"8 day ahead inc hosp" "39" 2024-02-05 2024-02-13 0.35 83.65 "quantile" "hospital admissions only" +"8 day ahead inc hosp" "39" 2024-02-05 2024-02-13 0.4 87 "quantile" "hospital admissions only" +"8 day ahead inc hosp" "39" 2024-02-05 2024-02-13 0.45 89 "quantile" "hospital admissions only" +"8 day ahead inc hosp" "39" 2024-02-05 2024-02-13 0.5 95 "quantile" "hospital admissions only" +"8 day ahead inc hosp" "39" 2024-02-05 2024-02-13 0.55 98.45 "quantile" "hospital admissions only" +"8 day ahead inc hosp" "39" 2024-02-05 2024-02-13 0.6 103.8 "quantile" "hospital admissions only" +"8 day ahead inc hosp" "39" 2024-02-05 2024-02-13 0.65 106.35 "quantile" "hospital admissions only" +"8 day ahead inc hosp" "39" 2024-02-05 2024-02-13 0.7 111.3 "quantile" "hospital admissions only" +"8 day ahead inc hosp" "39" 2024-02-05 2024-02-13 0.75 120.25 "quantile" "hospital admissions only" +"8 day ahead inc hosp" "39" 2024-02-05 2024-02-13 0.8 122.4 "quantile" "hospital admissions only" +"8 day ahead inc hosp" "39" 2024-02-05 2024-02-13 0.85 131.45 "quantile" "hospital admissions only" +"8 day ahead inc hosp" "39" 2024-02-05 2024-02-13 0.9 137.1 "quantile" "hospital admissions only" +"8 day ahead inc hosp" "39" 2024-02-05 2024-02-13 0.95 148.05 "quantile" "hospital admissions only" +"8 day ahead inc hosp" "39" 2024-02-05 2024-02-13 0.975 156.525 "quantile" "hospital admissions only" +"8 day ahead inc hosp" "39" 2024-02-05 2024-02-13 0.99 161.19 "quantile" "hospital admissions only" +"9 day ahead inc hosp" "39" 2024-02-05 2024-02-14 0.01 47.99 "quantile" "hospital admissions only" +"9 day ahead inc hosp" "39" 2024-02-05 2024-02-14 0.025 51.475 "quantile" "hospital admissions only" +"9 day ahead inc hosp" "39" 2024-02-05 2024-02-14 0.05 53.95 "quantile" "hospital admissions only" +"9 day ahead inc hosp" "39" 2024-02-05 2024-02-14 0.1 58.9 "quantile" "hospital admissions only" +"9 day ahead inc hosp" "39" 2024-02-05 2024-02-14 0.15 64.85 "quantile" "hospital admissions only" +"9 day ahead inc hosp" "39" 2024-02-05 2024-02-14 0.2 66.8 "quantile" "hospital admissions only" +"9 day ahead inc hosp" "39" 2024-02-05 2024-02-14 0.25 70 "quantile" "hospital admissions only" +"9 day ahead inc hosp" "39" 2024-02-05 2024-02-14 0.3 75.4 "quantile" "hospital admissions only" +"9 day ahead inc hosp" "39" 2024-02-05 2024-02-14 0.35 79.65 "quantile" "hospital admissions only" +"9 day ahead inc hosp" "39" 2024-02-05 2024-02-14 0.4 84.2 "quantile" "hospital admissions only" +"9 day ahead inc hosp" "39" 2024-02-05 2024-02-14 0.45 87.55 "quantile" "hospital admissions only" +"9 day ahead inc hosp" "39" 2024-02-05 2024-02-14 0.5 91 "quantile" "hospital admissions only" +"9 day ahead inc hosp" "39" 2024-02-05 2024-02-14 0.55 92.45 "quantile" "hospital admissions only" +"9 day ahead inc hosp" "39" 2024-02-05 2024-02-14 0.6 97.4 "quantile" "hospital admissions only" +"9 day ahead inc hosp" "39" 2024-02-05 2024-02-14 0.65 100 "quantile" "hospital admissions only" +"9 day ahead inc hosp" "39" 2024-02-05 2024-02-14 0.7 106 "quantile" "hospital admissions only" +"9 day ahead inc hosp" "39" 2024-02-05 2024-02-14 0.75 111 "quantile" "hospital admissions only" +"9 day ahead inc hosp" "39" 2024-02-05 2024-02-14 0.8 115 "quantile" "hospital admissions only" +"9 day ahead inc hosp" "39" 2024-02-05 2024-02-14 0.85 119.15 "quantile" "hospital admissions only" +"9 day ahead inc hosp" "39" 2024-02-05 2024-02-14 0.9 124.2 "quantile" "hospital admissions only" +"9 day ahead inc hosp" "39" 2024-02-05 2024-02-14 0.95 135.35 "quantile" "hospital admissions only" +"9 day ahead inc hosp" "39" 2024-02-05 2024-02-14 0.975 150.625 "quantile" "hospital admissions only" +"9 day ahead inc hosp" "39" 2024-02-05 2024-02-14 0.99 155.08 "quantile" "hospital admissions only" +"10 day ahead inc hosp" "39" 2024-02-05 2024-02-15 0.01 38.99 "quantile" "hospital admissions only" +"10 day ahead inc hosp" "39" 2024-02-05 2024-02-15 0.025 42.325 "quantile" "hospital admissions only" +"10 day ahead inc hosp" "39" 2024-02-05 2024-02-15 0.05 47.9 "quantile" "hospital admissions only" +"10 day ahead inc hosp" "39" 2024-02-05 2024-02-15 0.1 58.7 "quantile" "hospital admissions only" +"10 day ahead inc hosp" "39" 2024-02-05 2024-02-15 0.15 63.85 "quantile" "hospital admissions only" +"10 day ahead inc hosp" "39" 2024-02-05 2024-02-15 0.2 70 "quantile" "hospital admissions only" +"10 day ahead inc hosp" "39" 2024-02-05 2024-02-15 0.25 72 "quantile" "hospital admissions only" +"10 day ahead inc hosp" "39" 2024-02-05 2024-02-15 0.3 78.4 "quantile" "hospital admissions only" +"10 day ahead inc hosp" "39" 2024-02-05 2024-02-15 0.35 82 "quantile" "hospital admissions only" +"10 day ahead inc hosp" "39" 2024-02-05 2024-02-15 0.4 86.2 "quantile" "hospital admissions only" +"10 day ahead inc hosp" "39" 2024-02-05 2024-02-15 0.45 89 "quantile" "hospital admissions only" +"10 day ahead inc hosp" "39" 2024-02-05 2024-02-15 0.5 93.5 "quantile" "hospital admissions only" +"10 day ahead inc hosp" "39" 2024-02-05 2024-02-15 0.55 95.45 "quantile" "hospital admissions only" +"10 day ahead inc hosp" "39" 2024-02-05 2024-02-15 0.6 101 "quantile" "hospital admissions only" +"10 day ahead inc hosp" "39" 2024-02-05 2024-02-15 0.65 102.7 "quantile" "hospital admissions only" +"10 day ahead inc hosp" "39" 2024-02-05 2024-02-15 0.7 106.3 "quantile" "hospital admissions only" +"10 day ahead inc hosp" "39" 2024-02-05 2024-02-15 0.75 109.5 "quantile" "hospital admissions only" +"10 day ahead inc hosp" "39" 2024-02-05 2024-02-15 0.8 120 "quantile" "hospital admissions only" +"10 day ahead inc hosp" "39" 2024-02-05 2024-02-15 0.85 125 "quantile" "hospital admissions only" +"10 day ahead inc hosp" "39" 2024-02-05 2024-02-15 0.9 130.5 "quantile" "hospital admissions only" +"10 day ahead inc hosp" "39" 2024-02-05 2024-02-15 0.95 139 "quantile" "hospital admissions only" +"10 day ahead inc hosp" "39" 2024-02-05 2024-02-15 0.975 139.525 "quantile" "hospital admissions only" +"10 day ahead inc hosp" "39" 2024-02-05 2024-02-15 0.99 141.17 "quantile" "hospital admissions only" +"11 day ahead inc hosp" "39" 2024-02-05 2024-02-16 0.01 35.98 "quantile" "hospital admissions only" +"11 day ahead inc hosp" "39" 2024-02-05 2024-02-16 0.025 39.95 "quantile" "hospital admissions only" +"11 day ahead inc hosp" "39" 2024-02-05 2024-02-16 0.05 47.75 "quantile" "hospital admissions only" +"11 day ahead inc hosp" "39" 2024-02-05 2024-02-16 0.1 58.9 "quantile" "hospital admissions only" +"11 day ahead inc hosp" "39" 2024-02-05 2024-02-16 0.15 62 "quantile" "hospital admissions only" +"11 day ahead inc hosp" "39" 2024-02-05 2024-02-16 0.2 65 "quantile" "hospital admissions only" +"11 day ahead inc hosp" "39" 2024-02-05 2024-02-16 0.25 71 "quantile" "hospital admissions only" +"11 day ahead inc hosp" "39" 2024-02-05 2024-02-16 0.3 74.4 "quantile" "hospital admissions only" +"11 day ahead inc hosp" "39" 2024-02-05 2024-02-16 0.35 77.65 "quantile" "hospital admissions only" +"11 day ahead inc hosp" "39" 2024-02-05 2024-02-16 0.4 81.6 "quantile" "hospital admissions only" +"11 day ahead inc hosp" "39" 2024-02-05 2024-02-16 0.45 85.55 "quantile" "hospital admissions only" +"11 day ahead inc hosp" "39" 2024-02-05 2024-02-16 0.5 89 "quantile" "hospital admissions only" +"11 day ahead inc hosp" "39" 2024-02-05 2024-02-16 0.55 92.35 "quantile" "hospital admissions only" +"11 day ahead inc hosp" "39" 2024-02-05 2024-02-16 0.6 96 "quantile" "hospital admissions only" +"11 day ahead inc hosp" "39" 2024-02-05 2024-02-16 0.65 99.35 "quantile" "hospital admissions only" +"11 day ahead inc hosp" "39" 2024-02-05 2024-02-16 0.7 103.3 "quantile" "hospital admissions only" +"11 day ahead inc hosp" "39" 2024-02-05 2024-02-16 0.75 109 "quantile" "hospital admissions only" +"11 day ahead inc hosp" "39" 2024-02-05 2024-02-16 0.8 115.4 "quantile" "hospital admissions only" +"11 day ahead inc hosp" "39" 2024-02-05 2024-02-16 0.85 120.9 "quantile" "hospital admissions only" +"11 day ahead inc hosp" "39" 2024-02-05 2024-02-16 0.9 130.2 "quantile" "hospital admissions only" +"11 day ahead inc hosp" "39" 2024-02-05 2024-02-16 0.95 140.05 "quantile" "hospital admissions only" +"11 day ahead inc hosp" "39" 2024-02-05 2024-02-16 0.975 148.575 "quantile" "hospital admissions only" +"11 day ahead inc hosp" "39" 2024-02-05 2024-02-16 0.99 157.04 "quantile" "hospital admissions only" +"12 day ahead inc hosp" "39" 2024-02-05 2024-02-17 0.01 33.92 "quantile" "hospital admissions only" +"12 day ahead inc hosp" "39" 2024-02-05 2024-02-17 0.025 39.475 "quantile" "hospital admissions only" +"12 day ahead inc hosp" "39" 2024-02-05 2024-02-17 0.05 45 "quantile" "hospital admissions only" +"12 day ahead inc hosp" "39" 2024-02-05 2024-02-17 0.1 50.9 "quantile" "hospital admissions only" +"12 day ahead inc hosp" "39" 2024-02-05 2024-02-17 0.15 55.85 "quantile" "hospital admissions only" +"12 day ahead inc hosp" "39" 2024-02-05 2024-02-17 0.2 62 "quantile" "hospital admissions only" +"12 day ahead inc hosp" "39" 2024-02-05 2024-02-17 0.25 64.75 "quantile" "hospital admissions only" +"12 day ahead inc hosp" "39" 2024-02-05 2024-02-17 0.3 68 "quantile" "hospital admissions only" +"12 day ahead inc hosp" "39" 2024-02-05 2024-02-17 0.35 69 "quantile" "hospital admissions only" +"12 day ahead inc hosp" "39" 2024-02-05 2024-02-17 0.4 74 "quantile" "hospital admissions only" +"12 day ahead inc hosp" "39" 2024-02-05 2024-02-17 0.45 76 "quantile" "hospital admissions only" +"12 day ahead inc hosp" "39" 2024-02-05 2024-02-17 0.5 79.5 "quantile" "hospital admissions only" +"12 day ahead inc hosp" "39" 2024-02-05 2024-02-17 0.55 82.45 "quantile" "hospital admissions only" +"12 day ahead inc hosp" "39" 2024-02-05 2024-02-17 0.6 85.4 "quantile" "hospital admissions only" +"12 day ahead inc hosp" "39" 2024-02-05 2024-02-17 0.65 88 "quantile" "hospital admissions only" +"12 day ahead inc hosp" "39" 2024-02-05 2024-02-17 0.7 92.3 "quantile" "hospital admissions only" +"12 day ahead inc hosp" "39" 2024-02-05 2024-02-17 0.75 99 "quantile" "hospital admissions only" +"12 day ahead inc hosp" "39" 2024-02-05 2024-02-17 0.8 103 "quantile" "hospital admissions only" +"12 day ahead inc hosp" "39" 2024-02-05 2024-02-17 0.85 106.15 "quantile" "hospital admissions only" +"12 day ahead inc hosp" "39" 2024-02-05 2024-02-17 0.9 113.4 "quantile" "hospital admissions only" +"12 day ahead inc hosp" "39" 2024-02-05 2024-02-17 0.95 142.35 "quantile" "hospital admissions only" +"12 day ahead inc hosp" "39" 2024-02-05 2024-02-17 0.975 149.525 "quantile" "hospital admissions only" +"12 day ahead inc hosp" "39" 2024-02-05 2024-02-17 0.99 157.01 "quantile" "hospital admissions only" +"13 day ahead inc hosp" "39" 2024-02-05 2024-02-18 0.01 36.87 "quantile" "hospital admissions only" +"13 day ahead inc hosp" "39" 2024-02-05 2024-02-18 0.025 38.475 "quantile" "hospital admissions only" +"13 day ahead inc hosp" "39" 2024-02-05 2024-02-18 0.05 44.9 "quantile" "hospital admissions only" +"13 day ahead inc hosp" "39" 2024-02-05 2024-02-18 0.1 49.9 "quantile" "hospital admissions only" +"13 day ahead inc hosp" "39" 2024-02-05 2024-02-18 0.15 55 "quantile" "hospital admissions only" +"13 day ahead inc hosp" "39" 2024-02-05 2024-02-18 0.2 59.8 "quantile" "hospital admissions only" +"13 day ahead inc hosp" "39" 2024-02-05 2024-02-18 0.25 62 "quantile" "hospital admissions only" +"13 day ahead inc hosp" "39" 2024-02-05 2024-02-18 0.3 64 "quantile" "hospital admissions only" +"13 day ahead inc hosp" "39" 2024-02-05 2024-02-18 0.35 66.65 "quantile" "hospital admissions only" +"13 day ahead inc hosp" "39" 2024-02-05 2024-02-18 0.4 69.2 "quantile" "hospital admissions only" +"13 day ahead inc hosp" "39" 2024-02-05 2024-02-18 0.45 78 "quantile" "hospital admissions only" +"13 day ahead inc hosp" "39" 2024-02-05 2024-02-18 0.5 82 "quantile" "hospital admissions only" +"13 day ahead inc hosp" "39" 2024-02-05 2024-02-18 0.55 85 "quantile" "hospital admissions only" +"13 day ahead inc hosp" "39" 2024-02-05 2024-02-18 0.6 87 "quantile" "hospital admissions only" +"13 day ahead inc hosp" "39" 2024-02-05 2024-02-18 0.65 90.35 "quantile" "hospital admissions only" +"13 day ahead inc hosp" "39" 2024-02-05 2024-02-18 0.7 93.3 "quantile" "hospital admissions only" +"13 day ahead inc hosp" "39" 2024-02-05 2024-02-18 0.75 95.75 "quantile" "hospital admissions only" +"13 day ahead inc hosp" "39" 2024-02-05 2024-02-18 0.8 101.6 "quantile" "hospital admissions only" +"13 day ahead inc hosp" "39" 2024-02-05 2024-02-18 0.85 110.3 "quantile" "hospital admissions only" +"13 day ahead inc hosp" "39" 2024-02-05 2024-02-18 0.9 116.3 "quantile" "hospital admissions only" +"13 day ahead inc hosp" "39" 2024-02-05 2024-02-18 0.95 132.25 "quantile" "hospital admissions only" +"13 day ahead inc hosp" "39" 2024-02-05 2024-02-18 0.975 140.625 "quantile" "hospital admissions only" +"13 day ahead inc hosp" "39" 2024-02-05 2024-02-18 0.99 144.07 "quantile" "hospital admissions only" +"14 day ahead inc hosp" "39" 2024-02-05 2024-02-19 0.01 36.92 "quantile" "hospital admissions only" +"14 day ahead inc hosp" "39" 2024-02-05 2024-02-19 0.025 43.425 "quantile" "hospital admissions only" +"14 day ahead inc hosp" "39" 2024-02-05 2024-02-19 0.05 46.9 "quantile" "hospital admissions only" +"14 day ahead inc hosp" "39" 2024-02-05 2024-02-19 0.1 57 "quantile" "hospital admissions only" +"14 day ahead inc hosp" "39" 2024-02-05 2024-02-19 0.15 65 "quantile" "hospital admissions only" +"14 day ahead inc hosp" "39" 2024-02-05 2024-02-19 0.2 69 "quantile" "hospital admissions only" +"14 day ahead inc hosp" "39" 2024-02-05 2024-02-19 0.25 73.75 "quantile" "hospital admissions only" +"14 day ahead inc hosp" "39" 2024-02-05 2024-02-19 0.3 76.7 "quantile" "hospital admissions only" +"14 day ahead inc hosp" "39" 2024-02-05 2024-02-19 0.35 82 "quantile" "hospital admissions only" +"14 day ahead inc hosp" "39" 2024-02-05 2024-02-19 0.4 86.6 "quantile" "hospital admissions only" +"14 day ahead inc hosp" "39" 2024-02-05 2024-02-19 0.45 88 "quantile" "hospital admissions only" +"14 day ahead inc hosp" "39" 2024-02-05 2024-02-19 0.5 92.5 "quantile" "hospital admissions only" +"14 day ahead inc hosp" "39" 2024-02-05 2024-02-19 0.55 96 "quantile" "hospital admissions only" +"14 day ahead inc hosp" "39" 2024-02-05 2024-02-19 0.6 98.4 "quantile" "hospital admissions only" +"14 day ahead inc hosp" "39" 2024-02-05 2024-02-19 0.65 101 "quantile" "hospital admissions only" +"14 day ahead inc hosp" "39" 2024-02-05 2024-02-19 0.7 105 "quantile" "hospital admissions only" +"14 day ahead inc hosp" "39" 2024-02-05 2024-02-19 0.75 110 "quantile" "hospital admissions only" +"14 day ahead inc hosp" "39" 2024-02-05 2024-02-19 0.8 123.2 "quantile" "hospital admissions only" +"14 day ahead inc hosp" "39" 2024-02-05 2024-02-19 0.85 127.45 "quantile" "hospital admissions only" +"14 day ahead inc hosp" "39" 2024-02-05 2024-02-19 0.9 135.3 "quantile" "hospital admissions only" +"14 day ahead inc hosp" "39" 2024-02-05 2024-02-19 0.95 149.6 "quantile" "hospital admissions only" +"14 day ahead inc hosp" "39" 2024-02-05 2024-02-19 0.975 163.05 "quantile" "hospital admissions only" +"14 day ahead inc hosp" "39" 2024-02-05 2024-02-19 0.99 173.18 "quantile" "hospital admissions only" +"15 day ahead inc hosp" "39" 2024-02-05 2024-02-20 0.01 42.86 "quantile" "hospital admissions only" +"15 day ahead inc hosp" "39" 2024-02-05 2024-02-20 0.025 43.475 "quantile" "hospital admissions only" +"15 day ahead inc hosp" "39" 2024-02-05 2024-02-20 0.05 45.95 "quantile" "hospital admissions only" +"15 day ahead inc hosp" "39" 2024-02-05 2024-02-20 0.1 56.8 "quantile" "hospital admissions only" +"15 day ahead inc hosp" "39" 2024-02-05 2024-02-20 0.15 67.85 "quantile" "hospital admissions only" +"15 day ahead inc hosp" "39" 2024-02-05 2024-02-20 0.2 70 "quantile" "hospital admissions only" +"15 day ahead inc hosp" "39" 2024-02-05 2024-02-20 0.25 73 "quantile" "hospital admissions only" +"15 day ahead inc hosp" "39" 2024-02-05 2024-02-20 0.3 74.7 "quantile" "hospital admissions only" +"15 day ahead inc hosp" "39" 2024-02-05 2024-02-20 0.35 79.65 "quantile" "hospital admissions only" +"15 day ahead inc hosp" "39" 2024-02-05 2024-02-20 0.4 82 "quantile" "hospital admissions only" +"15 day ahead inc hosp" "39" 2024-02-05 2024-02-20 0.45 84.55 "quantile" "hospital admissions only" +"15 day ahead inc hosp" "39" 2024-02-05 2024-02-20 0.5 89.5 "quantile" "hospital admissions only" +"15 day ahead inc hosp" "39" 2024-02-05 2024-02-20 0.55 95 "quantile" "hospital admissions only" +"15 day ahead inc hosp" "39" 2024-02-05 2024-02-20 0.6 102.4 "quantile" "hospital admissions only" +"15 day ahead inc hosp" "39" 2024-02-05 2024-02-20 0.65 107.7 "quantile" "hospital admissions only" +"15 day ahead inc hosp" "39" 2024-02-05 2024-02-20 0.7 111.3 "quantile" "hospital admissions only" +"15 day ahead inc hosp" "39" 2024-02-05 2024-02-20 0.75 118 "quantile" "hospital admissions only" +"15 day ahead inc hosp" "39" 2024-02-05 2024-02-20 0.8 126.8 "quantile" "hospital admissions only" +"15 day ahead inc hosp" "39" 2024-02-05 2024-02-20 0.85 134 "quantile" "hospital admissions only" +"15 day ahead inc hosp" "39" 2024-02-05 2024-02-20 0.9 143.1 "quantile" "hospital admissions only" +"15 day ahead inc hosp" "39" 2024-02-05 2024-02-20 0.95 157.1 "quantile" "hospital admissions only" +"15 day ahead inc hosp" "39" 2024-02-05 2024-02-20 0.975 161.525 "quantile" "hospital admissions only" +"15 day ahead inc hosp" "39" 2024-02-05 2024-02-20 0.99 188.16 "quantile" "hospital admissions only" +"16 day ahead inc hosp" "39" 2024-02-05 2024-02-21 0.01 27.93 "quantile" "hospital admissions only" +"16 day ahead inc hosp" "39" 2024-02-05 2024-02-21 0.025 37.85 "quantile" "hospital admissions only" +"16 day ahead inc hosp" "39" 2024-02-05 2024-02-21 0.05 43 "quantile" "hospital admissions only" +"16 day ahead inc hosp" "39" 2024-02-05 2024-02-21 0.1 49.9 "quantile" "hospital admissions only" +"16 day ahead inc hosp" "39" 2024-02-05 2024-02-21 0.15 57.55 "quantile" "hospital admissions only" +"16 day ahead inc hosp" "39" 2024-02-05 2024-02-21 0.2 62 "quantile" "hospital admissions only" +"16 day ahead inc hosp" "39" 2024-02-05 2024-02-21 0.25 64.75 "quantile" "hospital admissions only" +"16 day ahead inc hosp" "39" 2024-02-05 2024-02-21 0.3 69 "quantile" "hospital admissions only" +"16 day ahead inc hosp" "39" 2024-02-05 2024-02-21 0.35 72 "quantile" "hospital admissions only" +"16 day ahead inc hosp" "39" 2024-02-05 2024-02-21 0.4 74 "quantile" "hospital admissions only" +"16 day ahead inc hosp" "39" 2024-02-05 2024-02-21 0.45 77.55 "quantile" "hospital admissions only" +"16 day ahead inc hosp" "39" 2024-02-05 2024-02-21 0.5 82 "quantile" "hospital admissions only" +"16 day ahead inc hosp" "39" 2024-02-05 2024-02-21 0.55 88.45 "quantile" "hospital admissions only" +"16 day ahead inc hosp" "39" 2024-02-05 2024-02-21 0.6 93 "quantile" "hospital admissions only" +"16 day ahead inc hosp" "39" 2024-02-05 2024-02-21 0.65 94.4 "quantile" "hospital admissions only" +"16 day ahead inc hosp" "39" 2024-02-05 2024-02-21 0.7 101.3 "quantile" "hospital admissions only" +"16 day ahead inc hosp" "39" 2024-02-05 2024-02-21 0.75 106.25 "quantile" "hospital admissions only" +"16 day ahead inc hosp" "39" 2024-02-05 2024-02-21 0.8 116 "quantile" "hospital admissions only" +"16 day ahead inc hosp" "39" 2024-02-05 2024-02-21 0.85 127.15 "quantile" "hospital admissions only" +"16 day ahead inc hosp" "39" 2024-02-05 2024-02-21 0.9 134 "quantile" "hospital admissions only" +"16 day ahead inc hosp" "39" 2024-02-05 2024-02-21 0.95 142.65 "quantile" "hospital admissions only" +"16 day ahead inc hosp" "39" 2024-02-05 2024-02-21 0.975 157.525 "quantile" "hospital admissions only" +"16 day ahead inc hosp" "39" 2024-02-05 2024-02-21 0.99 183.16 "quantile" "hospital admissions only" +"17 day ahead inc hosp" "39" 2024-02-05 2024-02-22 0.01 32.94 "quantile" "hospital admissions only" +"17 day ahead inc hosp" "39" 2024-02-05 2024-02-22 0.025 35.475 "quantile" "hospital admissions only" +"17 day ahead inc hosp" "39" 2024-02-05 2024-02-22 0.05 40 "quantile" "hospital admissions only" +"17 day ahead inc hosp" "39" 2024-02-05 2024-02-22 0.1 45.6 "quantile" "hospital admissions only" +"17 day ahead inc hosp" "39" 2024-02-05 2024-02-22 0.15 53 "quantile" "hospital admissions only" +"17 day ahead inc hosp" "39" 2024-02-05 2024-02-22 0.2 56.6 "quantile" "hospital admissions only" +"17 day ahead inc hosp" "39" 2024-02-05 2024-02-22 0.25 62 "quantile" "hospital admissions only" +"17 day ahead inc hosp" "39" 2024-02-05 2024-02-22 0.3 67.4 "quantile" "hospital admissions only" +"17 day ahead inc hosp" "39" 2024-02-05 2024-02-22 0.35 72 "quantile" "hospital admissions only" +"17 day ahead inc hosp" "39" 2024-02-05 2024-02-22 0.4 80.4 "quantile" "hospital admissions only" +"17 day ahead inc hosp" "39" 2024-02-05 2024-02-22 0.45 84.55 "quantile" "hospital admissions only" +"17 day ahead inc hosp" "39" 2024-02-05 2024-02-22 0.5 87.5 "quantile" "hospital admissions only" +"17 day ahead inc hosp" "39" 2024-02-05 2024-02-22 0.55 90.45 "quantile" "hospital admissions only" +"17 day ahead inc hosp" "39" 2024-02-05 2024-02-22 0.6 92 "quantile" "hospital admissions only" +"17 day ahead inc hosp" "39" 2024-02-05 2024-02-22 0.65 99 "quantile" "hospital admissions only" +"17 day ahead inc hosp" "39" 2024-02-05 2024-02-22 0.7 102.3 "quantile" "hospital admissions only" +"17 day ahead inc hosp" "39" 2024-02-05 2024-02-22 0.75 113 "quantile" "hospital admissions only" +"17 day ahead inc hosp" "39" 2024-02-05 2024-02-22 0.8 121 "quantile" "hospital admissions only" +"17 day ahead inc hosp" "39" 2024-02-05 2024-02-22 0.85 132.45 "quantile" "hospital admissions only" +"17 day ahead inc hosp" "39" 2024-02-05 2024-02-22 0.9 144.3 "quantile" "hospital admissions only" +"17 day ahead inc hosp" "39" 2024-02-05 2024-02-22 0.95 153 "quantile" "hospital admissions only" +"17 day ahead inc hosp" "39" 2024-02-05 2024-02-22 0.975 157.625 "quantile" "hospital admissions only" +"17 day ahead inc hosp" "39" 2024-02-05 2024-02-22 0.99 162.63 "quantile" "hospital admissions only" +"18 day ahead inc hosp" "39" 2024-02-05 2024-02-23 0.01 33.98 "quantile" "hospital admissions only" +"18 day ahead inc hosp" "39" 2024-02-05 2024-02-23 0.025 35.95 "quantile" "hospital admissions only" +"18 day ahead inc hosp" "39" 2024-02-05 2024-02-23 0.05 42 "quantile" "hospital admissions only" +"18 day ahead inc hosp" "39" 2024-02-05 2024-02-23 0.1 49 "quantile" "hospital admissions only" +"18 day ahead inc hosp" "39" 2024-02-05 2024-02-23 0.15 54 "quantile" "hospital admissions only" +"18 day ahead inc hosp" "39" 2024-02-05 2024-02-23 0.2 62.6 "quantile" "hospital admissions only" +"18 day ahead inc hosp" "39" 2024-02-05 2024-02-23 0.25 65 "quantile" "hospital admissions only" +"18 day ahead inc hosp" "39" 2024-02-05 2024-02-23 0.3 66 "quantile" "hospital admissions only" +"18 day ahead inc hosp" "39" 2024-02-05 2024-02-23 0.35 71 "quantile" "hospital admissions only" +"18 day ahead inc hosp" "39" 2024-02-05 2024-02-23 0.4 72 "quantile" "hospital admissions only" +"18 day ahead inc hosp" "39" 2024-02-05 2024-02-23 0.45 77 "quantile" "hospital admissions only" +"18 day ahead inc hosp" "39" 2024-02-05 2024-02-23 0.5 82.5 "quantile" "hospital admissions only" +"18 day ahead inc hosp" "39" 2024-02-05 2024-02-23 0.55 85.45 "quantile" "hospital admissions only" +"18 day ahead inc hosp" "39" 2024-02-05 2024-02-23 0.6 91.4 "quantile" "hospital admissions only" +"18 day ahead inc hosp" "39" 2024-02-05 2024-02-23 0.65 97.35 "quantile" "hospital admissions only" +"18 day ahead inc hosp" "39" 2024-02-05 2024-02-23 0.7 103 "quantile" "hospital admissions only" +"18 day ahead inc hosp" "39" 2024-02-05 2024-02-23 0.75 106 "quantile" "hospital admissions only" +"18 day ahead inc hosp" "39" 2024-02-05 2024-02-23 0.8 108.2 "quantile" "hospital admissions only" +"18 day ahead inc hosp" "39" 2024-02-05 2024-02-23 0.85 120.15 "quantile" "hospital admissions only" +"18 day ahead inc hosp" "39" 2024-02-05 2024-02-23 0.9 126 "quantile" "hospital admissions only" +"18 day ahead inc hosp" "39" 2024-02-05 2024-02-23 0.95 142.2 "quantile" "hospital admissions only" +"18 day ahead inc hosp" "39" 2024-02-05 2024-02-23 0.975 157.525 "quantile" "hospital admissions only" +"18 day ahead inc hosp" "39" 2024-02-05 2024-02-23 0.99 186.14 "quantile" "hospital admissions only" +"19 day ahead inc hosp" "39" 2024-02-05 2024-02-24 0.01 24 "quantile" "hospital admissions only" +"19 day ahead inc hosp" "39" 2024-02-05 2024-02-24 0.025 28.95 "quantile" "hospital admissions only" +"19 day ahead inc hosp" "39" 2024-02-05 2024-02-24 0.05 32.85 "quantile" "hospital admissions only" +"19 day ahead inc hosp" "39" 2024-02-05 2024-02-24 0.1 42.9 "quantile" "hospital admissions only" +"19 day ahead inc hosp" "39" 2024-02-05 2024-02-24 0.15 48.7 "quantile" "hospital admissions only" +"19 day ahead inc hosp" "39" 2024-02-05 2024-02-24 0.2 51.8 "quantile" "hospital admissions only" +"19 day ahead inc hosp" "39" 2024-02-05 2024-02-24 0.25 56.75 "quantile" "hospital admissions only" +"19 day ahead inc hosp" "39" 2024-02-05 2024-02-24 0.3 61 "quantile" "hospital admissions only" +"19 day ahead inc hosp" "39" 2024-02-05 2024-02-24 0.35 64 "quantile" "hospital admissions only" +"19 day ahead inc hosp" "39" 2024-02-05 2024-02-24 0.4 66.6 "quantile" "hospital admissions only" +"19 day ahead inc hosp" "39" 2024-02-05 2024-02-24 0.45 68 "quantile" "hospital admissions only" +"19 day ahead inc hosp" "39" 2024-02-05 2024-02-24 0.5 70.5 "quantile" "hospital admissions only" +"19 day ahead inc hosp" "39" 2024-02-05 2024-02-24 0.55 75.45 "quantile" "hospital admissions only" +"19 day ahead inc hosp" "39" 2024-02-05 2024-02-24 0.6 80 "quantile" "hospital admissions only" +"19 day ahead inc hosp" "39" 2024-02-05 2024-02-24 0.65 85.05 "quantile" "hospital admissions only" +"19 day ahead inc hosp" "39" 2024-02-05 2024-02-24 0.7 87.3 "quantile" "hospital admissions only" +"19 day ahead inc hosp" "39" 2024-02-05 2024-02-24 0.75 93.75 "quantile" "hospital admissions only" +"19 day ahead inc hosp" "39" 2024-02-05 2024-02-24 0.8 101.8 "quantile" "hospital admissions only" +"19 day ahead inc hosp" "39" 2024-02-05 2024-02-24 0.85 114.9 "quantile" "hospital admissions only" +"19 day ahead inc hosp" "39" 2024-02-05 2024-02-24 0.9 127 "quantile" "hospital admissions only" +"19 day ahead inc hosp" "39" 2024-02-05 2024-02-24 0.95 150.05 "quantile" "hospital admissions only" +"19 day ahead inc hosp" "39" 2024-02-05 2024-02-24 0.975 158.2 "quantile" "hospital admissions only" +"19 day ahead inc hosp" "39" 2024-02-05 2024-02-24 0.99 169.21 "quantile" "hospital admissions only" +"20 day ahead inc hosp" "39" 2024-02-05 2024-02-25 0.01 23.94 "quantile" "hospital admissions only" +"20 day ahead inc hosp" "39" 2024-02-05 2024-02-25 0.025 30.425 "quantile" "hospital admissions only" +"20 day ahead inc hosp" "39" 2024-02-05 2024-02-25 0.05 36 "quantile" "hospital admissions only" +"20 day ahead inc hosp" "39" 2024-02-05 2024-02-25 0.1 42 "quantile" "hospital admissions only" +"20 day ahead inc hosp" "39" 2024-02-05 2024-02-25 0.15 47.55 "quantile" "hospital admissions only" +"20 day ahead inc hosp" "39" 2024-02-05 2024-02-25 0.2 52.8 "quantile" "hospital admissions only" +"20 day ahead inc hosp" "39" 2024-02-05 2024-02-25 0.25 56.75 "quantile" "hospital admissions only" +"20 day ahead inc hosp" "39" 2024-02-05 2024-02-25 0.3 58.7 "quantile" "hospital admissions only" +"20 day ahead inc hosp" "39" 2024-02-05 2024-02-25 0.35 61.65 "quantile" "hospital admissions only" +"20 day ahead inc hosp" "39" 2024-02-05 2024-02-25 0.4 64.2 "quantile" "hospital admissions only" +"20 day ahead inc hosp" "39" 2024-02-05 2024-02-25 0.45 69.55 "quantile" "hospital admissions only" +"20 day ahead inc hosp" "39" 2024-02-05 2024-02-25 0.5 74.5 "quantile" "hospital admissions only" +"20 day ahead inc hosp" "39" 2024-02-05 2024-02-25 0.55 76.45 "quantile" "hospital admissions only" +"20 day ahead inc hosp" "39" 2024-02-05 2024-02-25 0.6 79.8 "quantile" "hospital admissions only" +"20 day ahead inc hosp" "39" 2024-02-05 2024-02-25 0.65 87.05 "quantile" "hospital admissions only" +"20 day ahead inc hosp" "39" 2024-02-05 2024-02-25 0.7 92.3 "quantile" "hospital admissions only" +"20 day ahead inc hosp" "39" 2024-02-05 2024-02-25 0.75 96.0000000000001 "quantile" "hospital admissions only" +"20 day ahead inc hosp" "39" 2024-02-05 2024-02-25 0.8 112 "quantile" "hospital admissions only" +"20 day ahead inc hosp" "39" 2024-02-05 2024-02-25 0.85 117.3 "quantile" "hospital admissions only" +"20 day ahead inc hosp" "39" 2024-02-05 2024-02-25 0.9 128.3 "quantile" "hospital admissions only" +"20 day ahead inc hosp" "39" 2024-02-05 2024-02-25 0.95 154.1 "quantile" "hospital admissions only" +"20 day ahead inc hosp" "39" 2024-02-05 2024-02-25 0.975 163.05 "quantile" "hospital admissions only" +"20 day ahead inc hosp" "39" 2024-02-05 2024-02-25 0.99 175.1 "quantile" "hospital admissions only" +"21 day ahead inc hosp" "39" 2024-02-05 2024-02-26 0.01 25.97 "quantile" "hospital admissions only" +"21 day ahead inc hosp" "39" 2024-02-05 2024-02-26 0.025 31.95 "quantile" "hospital admissions only" +"21 day ahead inc hosp" "39" 2024-02-05 2024-02-26 0.05 39.75 "quantile" "hospital admissions only" +"21 day ahead inc hosp" "39" 2024-02-05 2024-02-26 0.1 50 "quantile" "hospital admissions only" +"21 day ahead inc hosp" "39" 2024-02-05 2024-02-26 0.15 57.55 "quantile" "hospital admissions only" +"21 day ahead inc hosp" "39" 2024-02-05 2024-02-26 0.2 59.8 "quantile" "hospital admissions only" +"21 day ahead inc hosp" "39" 2024-02-05 2024-02-26 0.25 66.5 "quantile" "hospital admissions only" +"21 day ahead inc hosp" "39" 2024-02-05 2024-02-26 0.3 70 "quantile" "hospital admissions only" +"21 day ahead inc hosp" "39" 2024-02-05 2024-02-26 0.35 74 "quantile" "hospital admissions only" +"21 day ahead inc hosp" "39" 2024-02-05 2024-02-26 0.4 77 "quantile" "hospital admissions only" +"21 day ahead inc hosp" "39" 2024-02-05 2024-02-26 0.45 82.55 "quantile" "hospital admissions only" +"21 day ahead inc hosp" "39" 2024-02-05 2024-02-26 0.5 88.5 "quantile" "hospital admissions only" +"21 day ahead inc hosp" "39" 2024-02-05 2024-02-26 0.55 91.9 "quantile" "hospital admissions only" +"21 day ahead inc hosp" "39" 2024-02-05 2024-02-26 0.6 95.4 "quantile" "hospital admissions only" +"21 day ahead inc hosp" "39" 2024-02-05 2024-02-26 0.65 100.7 "quantile" "hospital admissions only" +"21 day ahead inc hosp" "39" 2024-02-05 2024-02-26 0.7 109.3 "quantile" "hospital admissions only" +"21 day ahead inc hosp" "39" 2024-02-05 2024-02-26 0.75 115.5 "quantile" "hospital admissions only" +"21 day ahead inc hosp" "39" 2024-02-05 2024-02-26 0.8 122 "quantile" "hospital admissions only" +"21 day ahead inc hosp" "39" 2024-02-05 2024-02-26 0.85 127.45 "quantile" "hospital admissions only" +"21 day ahead inc hosp" "39" 2024-02-05 2024-02-26 0.9 148.3 "quantile" "hospital admissions only" +"21 day ahead inc hosp" "39" 2024-02-05 2024-02-26 0.95 175.05 "quantile" "hospital admissions only" +"21 day ahead inc hosp" "39" 2024-02-05 2024-02-26 0.975 189 "quantile" "hospital admissions only" +"21 day ahead inc hosp" "39" 2024-02-05 2024-02-26 0.99 190.46 "quantile" "hospital admissions only" +"22 day ahead inc hosp" "39" 2024-02-05 2024-02-27 0.01 28.91 "quantile" "hospital admissions only" +"22 day ahead inc hosp" "39" 2024-02-05 2024-02-27 0.025 34.475 "quantile" "hospital admissions only" +"22 day ahead inc hosp" "39" 2024-02-05 2024-02-27 0.05 37 "quantile" "hospital admissions only" +"22 day ahead inc hosp" "39" 2024-02-05 2024-02-27 0.1 44.9 "quantile" "hospital admissions only" +"22 day ahead inc hosp" "39" 2024-02-05 2024-02-27 0.15 48 "quantile" "hospital admissions only" +"22 day ahead inc hosp" "39" 2024-02-05 2024-02-27 0.2 54 "quantile" "hospital admissions only" +"22 day ahead inc hosp" "39" 2024-02-05 2024-02-27 0.25 59.75 "quantile" "hospital admissions only" +"22 day ahead inc hosp" "39" 2024-02-05 2024-02-27 0.3 69.7 "quantile" "hospital admissions only" +"22 day ahead inc hosp" "39" 2024-02-05 2024-02-27 0.35 71 "quantile" "hospital admissions only" +"22 day ahead inc hosp" "39" 2024-02-05 2024-02-27 0.4 76.2 "quantile" "hospital admissions only" +"22 day ahead inc hosp" "39" 2024-02-05 2024-02-27 0.45 80 "quantile" "hospital admissions only" +"22 day ahead inc hosp" "39" 2024-02-05 2024-02-27 0.5 87.5 "quantile" "hospital admissions only" +"22 day ahead inc hosp" "39" 2024-02-05 2024-02-27 0.55 92 "quantile" "hospital admissions only" +"22 day ahead inc hosp" "39" 2024-02-05 2024-02-27 0.6 96.4 "quantile" "hospital admissions only" +"22 day ahead inc hosp" "39" 2024-02-05 2024-02-27 0.65 103.7 "quantile" "hospital admissions only" +"22 day ahead inc hosp" "39" 2024-02-05 2024-02-27 0.7 107.3 "quantile" "hospital admissions only" +"22 day ahead inc hosp" "39" 2024-02-05 2024-02-27 0.75 115.5 "quantile" "hospital admissions only" +"22 day ahead inc hosp" "39" 2024-02-05 2024-02-27 0.8 123.2 "quantile" "hospital admissions only" +"22 day ahead inc hosp" "39" 2024-02-05 2024-02-27 0.85 139.6 "quantile" "hospital admissions only" +"22 day ahead inc hosp" "39" 2024-02-05 2024-02-27 0.9 150.4 "quantile" "hospital admissions only" +"22 day ahead inc hosp" "39" 2024-02-05 2024-02-27 0.95 174.2 "quantile" "hospital admissions only" +"22 day ahead inc hosp" "39" 2024-02-05 2024-02-27 0.975 185.725 "quantile" "hospital admissions only" +"22 day ahead inc hosp" "39" 2024-02-05 2024-02-27 0.99 232.4 "quantile" "hospital admissions only" +"23 day ahead inc hosp" "39" 2024-02-05 2024-02-28 0.01 26.98 "quantile" "hospital admissions only" +"23 day ahead inc hosp" "39" 2024-02-05 2024-02-28 0.025 28.475 "quantile" "hospital admissions only" +"23 day ahead inc hosp" "39" 2024-02-05 2024-02-28 0.05 31.85 "quantile" "hospital admissions only" +"23 day ahead inc hosp" "39" 2024-02-05 2024-02-28 0.1 41.8 "quantile" "hospital admissions only" +"23 day ahead inc hosp" "39" 2024-02-05 2024-02-28 0.15 47.85 "quantile" "hospital admissions only" +"23 day ahead inc hosp" "39" 2024-02-05 2024-02-28 0.2 53.2 "quantile" "hospital admissions only" +"23 day ahead inc hosp" "39" 2024-02-05 2024-02-28 0.25 58.75 "quantile" "hospital admissions only" +"23 day ahead inc hosp" "39" 2024-02-05 2024-02-28 0.3 61.7 "quantile" "hospital admissions only" +"23 day ahead inc hosp" "39" 2024-02-05 2024-02-28 0.35 66 "quantile" "hospital admissions only" +"23 day ahead inc hosp" "39" 2024-02-05 2024-02-28 0.4 71.6 "quantile" "hospital admissions only" +"23 day ahead inc hosp" "39" 2024-02-05 2024-02-28 0.45 75 "quantile" "hospital admissions only" +"23 day ahead inc hosp" "39" 2024-02-05 2024-02-28 0.5 78.5 "quantile" "hospital admissions only" +"23 day ahead inc hosp" "39" 2024-02-05 2024-02-28 0.55 82.45 "quantile" "hospital admissions only" +"23 day ahead inc hosp" "39" 2024-02-05 2024-02-28 0.6 87.8 "quantile" "hospital admissions only" +"23 day ahead inc hosp" "39" 2024-02-05 2024-02-28 0.65 91.7 "quantile" "hospital admissions only" +"23 day ahead inc hosp" "39" 2024-02-05 2024-02-28 0.7 99 "quantile" "hospital admissions only" +"23 day ahead inc hosp" "39" 2024-02-05 2024-02-28 0.75 106 "quantile" "hospital admissions only" +"23 day ahead inc hosp" "39" 2024-02-05 2024-02-28 0.8 118.4 "quantile" "hospital admissions only" +"23 day ahead inc hosp" "39" 2024-02-05 2024-02-28 0.85 128 "quantile" "hospital admissions only" +"23 day ahead inc hosp" "39" 2024-02-05 2024-02-28 0.9 136.5 "quantile" "hospital admissions only" +"23 day ahead inc hosp" "39" 2024-02-05 2024-02-28 0.95 162.05 "quantile" "hospital admissions only" +"23 day ahead inc hosp" "39" 2024-02-05 2024-02-28 0.975 177.175 "quantile" "hospital admissions only" +"23 day ahead inc hosp" "39" 2024-02-05 2024-02-28 0.99 191.17 "quantile" "hospital admissions only" +"24 day ahead inc hosp" "39" 2024-02-05 2024-02-29 0.01 20.99 "quantile" "hospital admissions only" +"24 day ahead inc hosp" "39" 2024-02-05 2024-02-29 0.025 24.425 "quantile" "hospital admissions only" +"24 day ahead inc hosp" "39" 2024-02-05 2024-02-29 0.05 26 "quantile" "hospital admissions only" +"24 day ahead inc hosp" "39" 2024-02-05 2024-02-29 0.1 34.7 "quantile" "hospital admissions only" +"24 day ahead inc hosp" "39" 2024-02-05 2024-02-29 0.15 43.7 "quantile" "hospital admissions only" +"24 day ahead inc hosp" "39" 2024-02-05 2024-02-29 0.2 48.6 "quantile" "hospital admissions only" +"24 day ahead inc hosp" "39" 2024-02-05 2024-02-29 0.25 55.75 "quantile" "hospital admissions only" +"24 day ahead inc hosp" "39" 2024-02-05 2024-02-29 0.3 58 "quantile" "hospital admissions only" +"24 day ahead inc hosp" "39" 2024-02-05 2024-02-29 0.35 63 "quantile" "hospital admissions only" +"24 day ahead inc hosp" "39" 2024-02-05 2024-02-29 0.4 68.6 "quantile" "hospital admissions only" +"24 day ahead inc hosp" "39" 2024-02-05 2024-02-29 0.45 73.55 "quantile" "hospital admissions only" +"24 day ahead inc hosp" "39" 2024-02-05 2024-02-29 0.5 78 "quantile" "hospital admissions only" +"24 day ahead inc hosp" "39" 2024-02-05 2024-02-29 0.55 81.9 "quantile" "hospital admissions only" +"24 day ahead inc hosp" "39" 2024-02-05 2024-02-29 0.6 88 "quantile" "hospital admissions only" +"24 day ahead inc hosp" "39" 2024-02-05 2024-02-29 0.65 90.35 "quantile" "hospital admissions only" +"24 day ahead inc hosp" "39" 2024-02-05 2024-02-29 0.7 98.6 "quantile" "hospital admissions only" +"24 day ahead inc hosp" "39" 2024-02-05 2024-02-29 0.75 114 "quantile" "hospital admissions only" +"24 day ahead inc hosp" "39" 2024-02-05 2024-02-29 0.8 129.2 "quantile" "hospital admissions only" +"24 day ahead inc hosp" "39" 2024-02-05 2024-02-29 0.85 131.15 "quantile" "hospital admissions only" +"24 day ahead inc hosp" "39" 2024-02-05 2024-02-29 0.9 143 "quantile" "hospital admissions only" +"24 day ahead inc hosp" "39" 2024-02-05 2024-02-29 0.95 157.7 "quantile" "hospital admissions only" +"24 day ahead inc hosp" "39" 2024-02-05 2024-02-29 0.975 174.625 "quantile" "hospital admissions only" +"24 day ahead inc hosp" "39" 2024-02-05 2024-02-29 0.99 218.36 "quantile" "hospital admissions only" +"25 day ahead inc hosp" "39" 2024-02-05 2024-03-01 0.01 22.95 "quantile" "hospital admissions only" +"25 day ahead inc hosp" "39" 2024-02-05 2024-03-01 0.025 25.475 "quantile" "hospital admissions only" +"25 day ahead inc hosp" "39" 2024-02-05 2024-03-01 0.05 28 "quantile" "hospital admissions only" +"25 day ahead inc hosp" "39" 2024-02-05 2024-03-01 0.1 35.9 "quantile" "hospital admissions only" +"25 day ahead inc hosp" "39" 2024-02-05 2024-03-01 0.15 41.25 "quantile" "hospital admissions only" +"25 day ahead inc hosp" "39" 2024-02-05 2024-03-01 0.2 47.8 "quantile" "hospital admissions only" +"25 day ahead inc hosp" "39" 2024-02-05 2024-03-01 0.25 57 "quantile" "hospital admissions only" +"25 day ahead inc hosp" "39" 2024-02-05 2024-03-01 0.3 62.4 "quantile" "hospital admissions only" +"25 day ahead inc hosp" "39" 2024-02-05 2024-03-01 0.35 65 "quantile" "hospital admissions only" +"25 day ahead inc hosp" "39" 2024-02-05 2024-03-01 0.4 67.6 "quantile" "hospital admissions only" +"25 day ahead inc hosp" "39" 2024-02-05 2024-03-01 0.45 71.55 "quantile" "hospital admissions only" +"25 day ahead inc hosp" "39" 2024-02-05 2024-03-01 0.5 73 "quantile" "hospital admissions only" +"25 day ahead inc hosp" "39" 2024-02-05 2024-03-01 0.55 82.8 "quantile" "hospital admissions only" +"25 day ahead inc hosp" "39" 2024-02-05 2024-03-01 0.6 88 "quantile" "hospital admissions only" +"25 day ahead inc hosp" "39" 2024-02-05 2024-03-01 0.65 91.7 "quantile" "hospital admissions only" +"25 day ahead inc hosp" "39" 2024-02-05 2024-03-01 0.7 98.3 "quantile" "hospital admissions only" +"25 day ahead inc hosp" "39" 2024-02-05 2024-03-01 0.75 104.25 "quantile" "hospital admissions only" +"25 day ahead inc hosp" "39" 2024-02-05 2024-03-01 0.8 113.4 "quantile" "hospital admissions only" +"25 day ahead inc hosp" "39" 2024-02-05 2024-03-01 0.85 128 "quantile" "hospital admissions only" +"25 day ahead inc hosp" "39" 2024-02-05 2024-03-01 0.9 143.8 "quantile" "hospital admissions only" +"25 day ahead inc hosp" "39" 2024-02-05 2024-03-01 0.95 162.1 "quantile" "hospital admissions only" +"25 day ahead inc hosp" "39" 2024-02-05 2024-03-01 0.975 173.25 "quantile" "hospital admissions only" +"25 day ahead inc hosp" "39" 2024-02-05 2024-03-01 0.99 250.13 "quantile" "hospital admissions only" +"26 day ahead inc hosp" "39" 2024-02-05 2024-03-02 0.01 20.99 "quantile" "hospital admissions only" +"26 day ahead inc hosp" "39" 2024-02-05 2024-03-02 0.025 23 "quantile" "hospital admissions only" +"26 day ahead inc hosp" "39" 2024-02-05 2024-03-02 0.05 25 "quantile" "hospital admissions only" +"26 day ahead inc hosp" "39" 2024-02-05 2024-03-02 0.1 32.8 "quantile" "hospital admissions only" +"26 day ahead inc hosp" "39" 2024-02-05 2024-03-02 0.15 34.85 "quantile" "hospital admissions only" +"26 day ahead inc hosp" "39" 2024-02-05 2024-03-02 0.2 40 "quantile" "hospital admissions only" +"26 day ahead inc hosp" "39" 2024-02-05 2024-03-02 0.25 50.75 "quantile" "hospital admissions only" +"26 day ahead inc hosp" "39" 2024-02-05 2024-03-02 0.3 54.4 "quantile" "hospital admissions only" +"26 day ahead inc hosp" "39" 2024-02-05 2024-03-02 0.35 58 "quantile" "hospital admissions only" +"26 day ahead inc hosp" "39" 2024-02-05 2024-03-02 0.4 66 "quantile" "hospital admissions only" +"26 day ahead inc hosp" "39" 2024-02-05 2024-03-02 0.45 67 "quantile" "hospital admissions only" +"26 day ahead inc hosp" "39" 2024-02-05 2024-03-02 0.5 73 "quantile" "hospital admissions only" +"26 day ahead inc hosp" "39" 2024-02-05 2024-03-02 0.55 78.45 "quantile" "hospital admissions only" +"26 day ahead inc hosp" "39" 2024-02-05 2024-03-02 0.6 83 "quantile" "hospital admissions only" +"26 day ahead inc hosp" "39" 2024-02-05 2024-03-02 0.65 86.7 "quantile" "hospital admissions only" +"26 day ahead inc hosp" "39" 2024-02-05 2024-03-02 0.7 92.9 "quantile" "hospital admissions only" +"26 day ahead inc hosp" "39" 2024-02-05 2024-03-02 0.75 101.5 "quantile" "hospital admissions only" +"26 day ahead inc hosp" "39" 2024-02-05 2024-03-02 0.8 115.2 "quantile" "hospital admissions only" +"26 day ahead inc hosp" "39" 2024-02-05 2024-03-02 0.85 120.45 "quantile" "hospital admissions only" +"26 day ahead inc hosp" "39" 2024-02-05 2024-03-02 0.9 136.1 "quantile" "hospital admissions only" +"26 day ahead inc hosp" "39" 2024-02-05 2024-03-02 0.95 156.3 "quantile" "hospital admissions only" +"26 day ahead inc hosp" "39" 2024-02-05 2024-03-02 0.975 193.675 "quantile" "hospital admissions only" +"26 day ahead inc hosp" "39" 2024-02-05 2024-03-02 0.99 212.2 "quantile" "hospital admissions only" +"27 day ahead inc hosp" "39" 2024-02-05 2024-03-03 0.01 19.98 "quantile" "hospital admissions only" +"27 day ahead inc hosp" "39" 2024-02-05 2024-03-03 0.025 23 "quantile" "hospital admissions only" +"27 day ahead inc hosp" "39" 2024-02-05 2024-03-03 0.05 24 "quantile" "hospital admissions only" +"27 day ahead inc hosp" "39" 2024-02-05 2024-03-03 0.1 33.8 "quantile" "hospital admissions only" +"27 day ahead inc hosp" "39" 2024-02-05 2024-03-03 0.15 38.85 "quantile" "hospital admissions only" +"27 day ahead inc hosp" "39" 2024-02-05 2024-03-03 0.2 43.8 "quantile" "hospital admissions only" +"27 day ahead inc hosp" "39" 2024-02-05 2024-03-03 0.25 49.75 "quantile" "hospital admissions only" +"27 day ahead inc hosp" "39" 2024-02-05 2024-03-03 0.3 52.7 "quantile" "hospital admissions only" +"27 day ahead inc hosp" "39" 2024-02-05 2024-03-03 0.35 60.3 "quantile" "hospital admissions only" +"27 day ahead inc hosp" "39" 2024-02-05 2024-03-03 0.4 64 "quantile" "hospital admissions only" +"27 day ahead inc hosp" "39" 2024-02-05 2024-03-03 0.45 66.55 "quantile" "hospital admissions only" +"27 day ahead inc hosp" "39" 2024-02-05 2024-03-03 0.5 69 "quantile" "hospital admissions only" +"27 day ahead inc hosp" "39" 2024-02-05 2024-03-03 0.55 76 "quantile" "hospital admissions only" +"27 day ahead inc hosp" "39" 2024-02-05 2024-03-03 0.6 82.8 "quantile" "hospital admissions only" +"27 day ahead inc hosp" "39" 2024-02-05 2024-03-03 0.65 90 "quantile" "hospital admissions only" +"27 day ahead inc hosp" "39" 2024-02-05 2024-03-03 0.7 94.6 "quantile" "hospital admissions only" +"27 day ahead inc hosp" "39" 2024-02-05 2024-03-03 0.75 99.5 "quantile" "hospital admissions only" +"27 day ahead inc hosp" "39" 2024-02-05 2024-03-03 0.8 107 "quantile" "hospital admissions only" +"27 day ahead inc hosp" "39" 2024-02-05 2024-03-03 0.85 118.15 "quantile" "hospital admissions only" +"27 day ahead inc hosp" "39" 2024-02-05 2024-03-03 0.9 138.4 "quantile" "hospital admissions only" +"27 day ahead inc hosp" "39" 2024-02-05 2024-03-03 0.95 157.35 "quantile" "hospital admissions only" +"27 day ahead inc hosp" "39" 2024-02-05 2024-03-03 0.975 177.125 "quantile" "hospital admissions only" +"27 day ahead inc hosp" "39" 2024-02-05 2024-03-03 0.99 244.16 "quantile" "hospital admissions only" +"28 day ahead inc hosp" "39" 2024-02-05 2024-03-04 0.01 18.93 "quantile" "hospital admissions only" +"28 day ahead inc hosp" "39" 2024-02-05 2024-03-04 0.025 24.475 "quantile" "hospital admissions only" +"28 day ahead inc hosp" "39" 2024-02-05 2024-03-04 0.05 27 "quantile" "hospital admissions only" +"28 day ahead inc hosp" "39" 2024-02-05 2024-03-04 0.1 33.8 "quantile" "hospital admissions only" +"28 day ahead inc hosp" "39" 2024-02-05 2024-03-04 0.15 41.55 "quantile" "hospital admissions only" +"28 day ahead inc hosp" "39" 2024-02-05 2024-03-04 0.2 52 "quantile" "hospital admissions only" +"28 day ahead inc hosp" "39" 2024-02-05 2024-03-04 0.25 58.75 "quantile" "hospital admissions only" +"28 day ahead inc hosp" "39" 2024-02-05 2024-03-04 0.3 62 "quantile" "hospital admissions only" +"28 day ahead inc hosp" "39" 2024-02-05 2024-03-04 0.35 65.65 "quantile" "hospital admissions only" +"28 day ahead inc hosp" "39" 2024-02-05 2024-03-04 0.4 71.2 "quantile" "hospital admissions only" +"28 day ahead inc hosp" "39" 2024-02-05 2024-03-04 0.45 74.55 "quantile" "hospital admissions only" +"28 day ahead inc hosp" "39" 2024-02-05 2024-03-04 0.5 80.5 "quantile" "hospital admissions only" +"28 day ahead inc hosp" "39" 2024-02-05 2024-03-04 0.55 85.9 "quantile" "hospital admissions only" +"28 day ahead inc hosp" "39" 2024-02-05 2024-03-04 0.6 95.4 "quantile" "hospital admissions only" +"28 day ahead inc hosp" "39" 2024-02-05 2024-03-04 0.65 102.35 "quantile" "hospital admissions only" +"28 day ahead inc hosp" "39" 2024-02-05 2024-03-04 0.7 107.3 "quantile" "hospital admissions only" +"28 day ahead inc hosp" "39" 2024-02-05 2024-03-04 0.75 120.75 "quantile" "hospital admissions only" +"28 day ahead inc hosp" "39" 2024-02-05 2024-03-04 0.8 129 "quantile" "hospital admissions only" +"28 day ahead inc hosp" "39" 2024-02-05 2024-03-04 0.85 138 "quantile" "hospital admissions only" +"28 day ahead inc hosp" "39" 2024-02-05 2024-03-04 0.9 151.4 "quantile" "hospital admissions only" +"28 day ahead inc hosp" "39" 2024-02-05 2024-03-04 0.95 183 "quantile" "hospital admissions only" +"28 day ahead inc hosp" "39" 2024-02-05 2024-03-04 0.975 195.875 "quantile" "hospital admissions only" +"28 day ahead inc hosp" "39" 2024-02-05 2024-03-04 0.99 273.01 "quantile" "hospital admissions only" +"1 day ahead inc hosp" "40" 2024-02-05 2024-02-06 0.01 16.94 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "40" 2024-02-05 2024-02-06 0.025 18.475 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "40" 2024-02-05 2024-02-06 0.05 19 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "40" 2024-02-05 2024-02-06 0.1 20 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "40" 2024-02-05 2024-02-06 0.15 22 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "40" 2024-02-05 2024-02-06 0.2 23 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "40" 2024-02-05 2024-02-06 0.25 24 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "40" 2024-02-05 2024-02-06 0.3 25 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "40" 2024-02-05 2024-02-06 0.35 25 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "40" 2024-02-05 2024-02-06 0.4 26 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "40" 2024-02-05 2024-02-06 0.45 28 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "40" 2024-02-05 2024-02-06 0.5 29 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "40" 2024-02-05 2024-02-06 0.55 29 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "40" 2024-02-05 2024-02-06 0.6 30.4 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "40" 2024-02-05 2024-02-06 0.65 32 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "40" 2024-02-05 2024-02-06 0.7 32.3 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "40" 2024-02-05 2024-02-06 0.75 34 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "40" 2024-02-05 2024-02-06 0.8 36 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "40" 2024-02-05 2024-02-06 0.85 39.15 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "40" 2024-02-05 2024-02-06 0.9 40.1 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "40" 2024-02-05 2024-02-06 0.95 44.05 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "40" 2024-02-05 2024-02-06 0.975 45.525 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "40" 2024-02-05 2024-02-06 0.99 46 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "40" 2024-02-05 2024-02-07 0.01 14 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "40" 2024-02-05 2024-02-07 0.025 15.475 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "40" 2024-02-05 2024-02-07 0.05 17.95 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "40" 2024-02-05 2024-02-07 0.1 20 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "40" 2024-02-05 2024-02-07 0.15 21 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "40" 2024-02-05 2024-02-07 0.2 22 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "40" 2024-02-05 2024-02-07 0.25 23 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "40" 2024-02-05 2024-02-07 0.3 25 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "40" 2024-02-05 2024-02-07 0.35 26 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "40" 2024-02-05 2024-02-07 0.4 27 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "40" 2024-02-05 2024-02-07 0.45 28 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "40" 2024-02-05 2024-02-07 0.5 29 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "40" 2024-02-05 2024-02-07 0.55 30 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "40" 2024-02-05 2024-02-07 0.6 30.4 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "40" 2024-02-05 2024-02-07 0.65 32.35 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "40" 2024-02-05 2024-02-07 0.7 33 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "40" 2024-02-05 2024-02-07 0.75 35 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "40" 2024-02-05 2024-02-07 0.8 35.2 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "40" 2024-02-05 2024-02-07 0.85 38 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "40" 2024-02-05 2024-02-07 0.9 39.1 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "40" 2024-02-05 2024-02-07 0.95 44.05 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "40" 2024-02-05 2024-02-07 0.975 46.575 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "40" 2024-02-05 2024-02-07 0.99 51.01 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "40" 2024-02-05 2024-02-08 0.01 13.95 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "40" 2024-02-05 2024-02-08 0.025 15.475 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "40" 2024-02-05 2024-02-08 0.05 17 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "40" 2024-02-05 2024-02-08 0.1 19.9 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "40" 2024-02-05 2024-02-08 0.15 20 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "40" 2024-02-05 2024-02-08 0.2 22 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "40" 2024-02-05 2024-02-08 0.25 23 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "40" 2024-02-05 2024-02-08 0.3 24.7 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "40" 2024-02-05 2024-02-08 0.35 26 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "40" 2024-02-05 2024-02-08 0.4 26 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "40" 2024-02-05 2024-02-08 0.45 27 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "40" 2024-02-05 2024-02-08 0.5 27 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "40" 2024-02-05 2024-02-08 0.55 28 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "40" 2024-02-05 2024-02-08 0.6 28 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "40" 2024-02-05 2024-02-08 0.65 29.35 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "40" 2024-02-05 2024-02-08 0.7 31 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "40" 2024-02-05 2024-02-08 0.75 32 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "40" 2024-02-05 2024-02-08 0.8 34 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "40" 2024-02-05 2024-02-08 0.85 35.15 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "40" 2024-02-05 2024-02-08 0.9 37.1 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "40" 2024-02-05 2024-02-08 0.95 42 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "40" 2024-02-05 2024-02-08 0.975 42.525 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "40" 2024-02-05 2024-02-08 0.99 44.05 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "40" 2024-02-05 2024-02-09 0.01 12.99 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "40" 2024-02-05 2024-02-09 0.025 17 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "40" 2024-02-05 2024-02-09 0.05 18 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "40" 2024-02-05 2024-02-09 0.1 19.9 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "40" 2024-02-05 2024-02-09 0.15 21 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "40" 2024-02-05 2024-02-09 0.2 22 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "40" 2024-02-05 2024-02-09 0.25 24 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "40" 2024-02-05 2024-02-09 0.3 25 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "40" 2024-02-05 2024-02-09 0.35 25.65 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "40" 2024-02-05 2024-02-09 0.4 26.6 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "40" 2024-02-05 2024-02-09 0.45 27 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "40" 2024-02-05 2024-02-09 0.5 27.5 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "40" 2024-02-05 2024-02-09 0.55 28 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "40" 2024-02-05 2024-02-09 0.6 29 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "40" 2024-02-05 2024-02-09 0.65 30 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "40" 2024-02-05 2024-02-09 0.7 32 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "40" 2024-02-05 2024-02-09 0.75 33.25 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "40" 2024-02-05 2024-02-09 0.8 35 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "40" 2024-02-05 2024-02-09 0.85 36.3 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "40" 2024-02-05 2024-02-09 0.9 40 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "40" 2024-02-05 2024-02-09 0.95 42.15 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "40" 2024-02-05 2024-02-09 0.975 45 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "40" 2024-02-05 2024-02-09 0.99 49.08 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "40" 2024-02-05 2024-02-10 0.01 10.99 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "40" 2024-02-05 2024-02-10 0.025 11.95 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "40" 2024-02-05 2024-02-10 0.05 14 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "40" 2024-02-05 2024-02-10 0.1 15 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "40" 2024-02-05 2024-02-10 0.15 16 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "40" 2024-02-05 2024-02-10 0.2 17 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "40" 2024-02-05 2024-02-10 0.25 18 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "40" 2024-02-05 2024-02-10 0.3 19 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "40" 2024-02-05 2024-02-10 0.35 20 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "40" 2024-02-05 2024-02-10 0.4 21 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "40" 2024-02-05 2024-02-10 0.45 22 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "40" 2024-02-05 2024-02-10 0.5 22 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "40" 2024-02-05 2024-02-10 0.55 24 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "40" 2024-02-05 2024-02-10 0.6 25 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "40" 2024-02-05 2024-02-10 0.65 25 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "40" 2024-02-05 2024-02-10 0.7 26 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "40" 2024-02-05 2024-02-10 0.75 28 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "40" 2024-02-05 2024-02-10 0.8 28.2 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "40" 2024-02-05 2024-02-10 0.85 29.15 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "40" 2024-02-05 2024-02-10 0.9 34 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "40" 2024-02-05 2024-02-10 0.95 39 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "40" 2024-02-05 2024-02-10 0.975 40 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "40" 2024-02-05 2024-02-10 0.99 40.09 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "40" 2024-02-05 2024-02-11 0.01 10.95 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "40" 2024-02-05 2024-02-11 0.025 11.475 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "40" 2024-02-05 2024-02-11 0.05 12 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "40" 2024-02-05 2024-02-11 0.1 14 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "40" 2024-02-05 2024-02-11 0.15 15 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "40" 2024-02-05 2024-02-11 0.2 16.8 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "40" 2024-02-05 2024-02-11 0.25 18 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "40" 2024-02-05 2024-02-11 0.3 20 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "40" 2024-02-05 2024-02-11 0.35 21 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "40" 2024-02-05 2024-02-11 0.4 22 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "40" 2024-02-05 2024-02-11 0.45 23 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "40" 2024-02-05 2024-02-11 0.5 24 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "40" 2024-02-05 2024-02-11 0.55 26 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "40" 2024-02-05 2024-02-11 0.6 27 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "40" 2024-02-05 2024-02-11 0.65 28 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "40" 2024-02-05 2024-02-11 0.7 30 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "40" 2024-02-05 2024-02-11 0.75 31 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "40" 2024-02-05 2024-02-11 0.8 32 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "40" 2024-02-05 2024-02-11 0.85 33 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "40" 2024-02-05 2024-02-11 0.9 36.1 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "40" 2024-02-05 2024-02-11 0.95 40.05 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "40" 2024-02-05 2024-02-11 0.975 43.1 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "40" 2024-02-05 2024-02-11 0.99 45.01 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "40" 2024-02-05 2024-02-12 0.01 10.99 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "40" 2024-02-05 2024-02-12 0.025 11 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "40" 2024-02-05 2024-02-12 0.05 13.95 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "40" 2024-02-05 2024-02-12 0.1 16 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "40" 2024-02-05 2024-02-12 0.15 18 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "40" 2024-02-05 2024-02-12 0.2 20.8 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "40" 2024-02-05 2024-02-12 0.25 22 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "40" 2024-02-05 2024-02-12 0.3 22 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "40" 2024-02-05 2024-02-12 0.35 23.65 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "40" 2024-02-05 2024-02-12 0.4 24 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "40" 2024-02-05 2024-02-12 0.45 25 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "40" 2024-02-05 2024-02-12 0.5 26 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "40" 2024-02-05 2024-02-12 0.55 28 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "40" 2024-02-05 2024-02-12 0.6 29 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "40" 2024-02-05 2024-02-12 0.65 29 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "40" 2024-02-05 2024-02-12 0.7 31 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "40" 2024-02-05 2024-02-12 0.75 32.25 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "40" 2024-02-05 2024-02-12 0.8 34 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "40" 2024-02-05 2024-02-12 0.85 38 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "40" 2024-02-05 2024-02-12 0.9 39.1 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "40" 2024-02-05 2024-02-12 0.95 41.1 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "40" 2024-02-05 2024-02-12 0.975 44.525 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "40" 2024-02-05 2024-02-12 0.99 50.02 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "40" 2024-02-05 2024-02-13 0.01 11.99 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "40" 2024-02-05 2024-02-13 0.025 12.475 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "40" 2024-02-05 2024-02-13 0.05 14 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "40" 2024-02-05 2024-02-13 0.1 16.9 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "40" 2024-02-05 2024-02-13 0.15 18 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "40" 2024-02-05 2024-02-13 0.2 19 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "40" 2024-02-05 2024-02-13 0.25 20 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "40" 2024-02-05 2024-02-13 0.3 21.7 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "40" 2024-02-05 2024-02-13 0.35 22.65 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "40" 2024-02-05 2024-02-13 0.4 23 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "40" 2024-02-05 2024-02-13 0.45 24.55 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "40" 2024-02-05 2024-02-13 0.5 26 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "40" 2024-02-05 2024-02-13 0.55 27 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "40" 2024-02-05 2024-02-13 0.6 28.4 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "40" 2024-02-05 2024-02-13 0.65 30 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "40" 2024-02-05 2024-02-13 0.7 30.3 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "40" 2024-02-05 2024-02-13 0.75 33 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "40" 2024-02-05 2024-02-13 0.8 36 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "40" 2024-02-05 2024-02-13 0.85 38.15 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "40" 2024-02-05 2024-02-13 0.9 39.1 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "40" 2024-02-05 2024-02-13 0.95 42.15 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "40" 2024-02-05 2024-02-13 0.975 46.05 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "40" 2024-02-05 2024-02-13 0.99 54.05 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "40" 2024-02-05 2024-02-14 0.01 7.99 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "40" 2024-02-05 2024-02-14 0.025 11 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "40" 2024-02-05 2024-02-14 0.05 14.9 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "40" 2024-02-05 2024-02-14 0.1 15.9 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "40" 2024-02-05 2024-02-14 0.15 17.85 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "40" 2024-02-05 2024-02-14 0.2 19 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "40" 2024-02-05 2024-02-14 0.25 20 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "40" 2024-02-05 2024-02-14 0.3 21.7 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "40" 2024-02-05 2024-02-14 0.35 22.65 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "40" 2024-02-05 2024-02-14 0.4 24 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "40" 2024-02-05 2024-02-14 0.45 26 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "40" 2024-02-05 2024-02-14 0.5 26 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "40" 2024-02-05 2024-02-14 0.55 27 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "40" 2024-02-05 2024-02-14 0.6 28 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "40" 2024-02-05 2024-02-14 0.65 29 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "40" 2024-02-05 2024-02-14 0.7 30 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "40" 2024-02-05 2024-02-14 0.75 32 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "40" 2024-02-05 2024-02-14 0.8 34 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "40" 2024-02-05 2024-02-14 0.85 36 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "40" 2024-02-05 2024-02-14 0.9 39.1 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "40" 2024-02-05 2024-02-14 0.95 43.05 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "40" 2024-02-05 2024-02-14 0.975 47.1499999999999 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "40" 2024-02-05 2024-02-14 0.99 51.03 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "40" 2024-02-05 2024-02-15 0.01 12.99 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "40" 2024-02-05 2024-02-15 0.025 14 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "40" 2024-02-05 2024-02-15 0.05 15 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "40" 2024-02-05 2024-02-15 0.1 17.8 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "40" 2024-02-05 2024-02-15 0.15 19 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "40" 2024-02-05 2024-02-15 0.2 20 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "40" 2024-02-05 2024-02-15 0.25 21 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "40" 2024-02-05 2024-02-15 0.3 21 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "40" 2024-02-05 2024-02-15 0.35 22 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "40" 2024-02-05 2024-02-15 0.4 24 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "40" 2024-02-05 2024-02-15 0.45 24.55 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "40" 2024-02-05 2024-02-15 0.5 26 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "40" 2024-02-05 2024-02-15 0.55 27 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "40" 2024-02-05 2024-02-15 0.6 28.4 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "40" 2024-02-05 2024-02-15 0.65 30 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "40" 2024-02-05 2024-02-15 0.7 31 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "40" 2024-02-05 2024-02-15 0.75 32 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "40" 2024-02-05 2024-02-15 0.8 33 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "40" 2024-02-05 2024-02-15 0.85 36 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "40" 2024-02-05 2024-02-15 0.9 37 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "40" 2024-02-05 2024-02-15 0.95 42 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "40" 2024-02-05 2024-02-15 0.975 43 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "40" 2024-02-05 2024-02-15 0.99 46.09 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "40" 2024-02-05 2024-02-16 0.01 11.96 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "40" 2024-02-05 2024-02-16 0.025 12 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "40" 2024-02-05 2024-02-16 0.05 13 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "40" 2024-02-05 2024-02-16 0.1 14.9 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "40" 2024-02-05 2024-02-16 0.15 16 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "40" 2024-02-05 2024-02-16 0.2 17.6 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "40" 2024-02-05 2024-02-16 0.25 18 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "40" 2024-02-05 2024-02-16 0.3 19 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "40" 2024-02-05 2024-02-16 0.35 20 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "40" 2024-02-05 2024-02-16 0.4 20.6 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "40" 2024-02-05 2024-02-16 0.45 22 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "40" 2024-02-05 2024-02-16 0.5 23 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "40" 2024-02-05 2024-02-16 0.55 25 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "40" 2024-02-05 2024-02-16 0.6 25 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "40" 2024-02-05 2024-02-16 0.65 26.35 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "40" 2024-02-05 2024-02-16 0.7 29 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "40" 2024-02-05 2024-02-16 0.75 31 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "40" 2024-02-05 2024-02-16 0.8 32.2 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "40" 2024-02-05 2024-02-16 0.85 37 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "40" 2024-02-05 2024-02-16 0.9 39.1 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "40" 2024-02-05 2024-02-16 0.95 46.05 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "40" 2024-02-05 2024-02-16 0.975 48.05 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "40" 2024-02-05 2024-02-16 0.99 57.03 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "40" 2024-02-05 2024-02-17 0.01 6.98 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "40" 2024-02-05 2024-02-17 0.025 8.475 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "40" 2024-02-05 2024-02-17 0.05 9 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "40" 2024-02-05 2024-02-17 0.1 11 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "40" 2024-02-05 2024-02-17 0.15 12.85 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "40" 2024-02-05 2024-02-17 0.2 14 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "40" 2024-02-05 2024-02-17 0.25 15 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "40" 2024-02-05 2024-02-17 0.3 16.7 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "40" 2024-02-05 2024-02-17 0.35 19 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "40" 2024-02-05 2024-02-17 0.4 19.6 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "40" 2024-02-05 2024-02-17 0.45 21 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "40" 2024-02-05 2024-02-17 0.5 21 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "40" 2024-02-05 2024-02-17 0.55 23 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "40" 2024-02-05 2024-02-17 0.6 24 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "40" 2024-02-05 2024-02-17 0.65 25 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "40" 2024-02-05 2024-02-17 0.7 26.3 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "40" 2024-02-05 2024-02-17 0.75 27 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "40" 2024-02-05 2024-02-17 0.8 29 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "40" 2024-02-05 2024-02-17 0.85 31 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "40" 2024-02-05 2024-02-17 0.9 33 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "40" 2024-02-05 2024-02-17 0.95 36.1 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "40" 2024-02-05 2024-02-17 0.975 38.525 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "40" 2024-02-05 2024-02-17 0.99 42.05 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "40" 2024-02-05 2024-02-18 0.01 9.99 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "40" 2024-02-05 2024-02-18 0.025 10 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "40" 2024-02-05 2024-02-18 0.05 10 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "40" 2024-02-05 2024-02-18 0.1 12 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "40" 2024-02-05 2024-02-18 0.15 14.85 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "40" 2024-02-05 2024-02-18 0.2 15 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "40" 2024-02-05 2024-02-18 0.25 16 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "40" 2024-02-05 2024-02-18 0.3 17 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "40" 2024-02-05 2024-02-18 0.35 17.65 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "40" 2024-02-05 2024-02-18 0.4 20 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "40" 2024-02-05 2024-02-18 0.45 20 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "40" 2024-02-05 2024-02-18 0.5 21 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "40" 2024-02-05 2024-02-18 0.55 21.45 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "40" 2024-02-05 2024-02-18 0.6 23 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "40" 2024-02-05 2024-02-18 0.65 24.35 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "40" 2024-02-05 2024-02-18 0.7 26 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "40" 2024-02-05 2024-02-18 0.75 27 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "40" 2024-02-05 2024-02-18 0.8 29.2 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "40" 2024-02-05 2024-02-18 0.85 30.15 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "40" 2024-02-05 2024-02-18 0.9 33.1 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "40" 2024-02-05 2024-02-18 0.95 38.1 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "40" 2024-02-05 2024-02-18 0.975 42.625 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "40" 2024-02-05 2024-02-18 0.99 45.01 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "40" 2024-02-05 2024-02-19 0.01 8.97 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "40" 2024-02-05 2024-02-19 0.025 10 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "40" 2024-02-05 2024-02-19 0.05 10 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "40" 2024-02-05 2024-02-19 0.1 12.9 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "40" 2024-02-05 2024-02-19 0.15 14 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "40" 2024-02-05 2024-02-19 0.2 15.8 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "40" 2024-02-05 2024-02-19 0.25 17 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "40" 2024-02-05 2024-02-19 0.3 18 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "40" 2024-02-05 2024-02-19 0.35 19 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "40" 2024-02-05 2024-02-19 0.4 20 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "40" 2024-02-05 2024-02-19 0.45 22 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "40" 2024-02-05 2024-02-19 0.5 23 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "40" 2024-02-05 2024-02-19 0.55 25 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "40" 2024-02-05 2024-02-19 0.6 27.4 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "40" 2024-02-05 2024-02-19 0.65 29.35 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "40" 2024-02-05 2024-02-19 0.7 31 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "40" 2024-02-05 2024-02-19 0.75 33 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "40" 2024-02-05 2024-02-19 0.8 36 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "40" 2024-02-05 2024-02-19 0.85 37.15 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "40" 2024-02-05 2024-02-19 0.9 39.1 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "40" 2024-02-05 2024-02-19 0.95 44.05 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "40" 2024-02-05 2024-02-19 0.975 49.525 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "40" 2024-02-05 2024-02-19 0.99 52.1200000000001 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "40" 2024-02-05 2024-02-20 0.01 8.96 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "40" 2024-02-05 2024-02-20 0.025 9 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "40" 2024-02-05 2024-02-20 0.05 11.9 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "40" 2024-02-05 2024-02-20 0.1 13.9 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "40" 2024-02-05 2024-02-20 0.15 15 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "40" 2024-02-05 2024-02-20 0.2 17 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "40" 2024-02-05 2024-02-20 0.25 18.75 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "40" 2024-02-05 2024-02-20 0.3 19 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "40" 2024-02-05 2024-02-20 0.35 20 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "40" 2024-02-05 2024-02-20 0.4 22 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "40" 2024-02-05 2024-02-20 0.45 22 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "40" 2024-02-05 2024-02-20 0.5 23 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "40" 2024-02-05 2024-02-20 0.55 25.45 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "40" 2024-02-05 2024-02-20 0.6 28 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "40" 2024-02-05 2024-02-20 0.65 29 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "40" 2024-02-05 2024-02-20 0.7 30 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "40" 2024-02-05 2024-02-20 0.75 31 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "40" 2024-02-05 2024-02-20 0.8 34.2 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "40" 2024-02-05 2024-02-20 0.85 37 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "40" 2024-02-05 2024-02-20 0.9 38.1 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "40" 2024-02-05 2024-02-20 0.95 42.05 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "40" 2024-02-05 2024-02-20 0.975 45.525 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "40" 2024-02-05 2024-02-20 0.99 48.01 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "40" 2024-02-05 2024-02-21 0.01 7 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "40" 2024-02-05 2024-02-21 0.025 8.475 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "40" 2024-02-05 2024-02-21 0.05 11 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "40" 2024-02-05 2024-02-21 0.1 13 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "40" 2024-02-05 2024-02-21 0.15 14 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "40" 2024-02-05 2024-02-21 0.2 15 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "40" 2024-02-05 2024-02-21 0.25 17 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "40" 2024-02-05 2024-02-21 0.3 18 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "40" 2024-02-05 2024-02-21 0.35 18.65 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "40" 2024-02-05 2024-02-21 0.4 19 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "40" 2024-02-05 2024-02-21 0.45 21 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "40" 2024-02-05 2024-02-21 0.5 22 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "40" 2024-02-05 2024-02-21 0.55 23 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "40" 2024-02-05 2024-02-21 0.6 25.4 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "40" 2024-02-05 2024-02-21 0.65 27.35 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "40" 2024-02-05 2024-02-21 0.7 28.3 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "40" 2024-02-05 2024-02-21 0.75 31 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "40" 2024-02-05 2024-02-21 0.8 31 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "40" 2024-02-05 2024-02-21 0.85 36 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "40" 2024-02-05 2024-02-21 0.9 38.1 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "40" 2024-02-05 2024-02-21 0.95 44.05 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "40" 2024-02-05 2024-02-21 0.975 47.05 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "40" 2024-02-05 2024-02-21 0.99 55.1100000000001 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "40" 2024-02-05 2024-02-22 0.01 7.97 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "40" 2024-02-05 2024-02-22 0.025 11 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "40" 2024-02-05 2024-02-22 0.05 11 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "40" 2024-02-05 2024-02-22 0.1 13 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "40" 2024-02-05 2024-02-22 0.15 14 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "40" 2024-02-05 2024-02-22 0.2 15 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "40" 2024-02-05 2024-02-22 0.25 16 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "40" 2024-02-05 2024-02-22 0.3 16.7 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "40" 2024-02-05 2024-02-22 0.35 18 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "40" 2024-02-05 2024-02-22 0.4 20 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "40" 2024-02-05 2024-02-22 0.45 21 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "40" 2024-02-05 2024-02-22 0.5 22.5 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "40" 2024-02-05 2024-02-22 0.55 23.45 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "40" 2024-02-05 2024-02-22 0.6 24.4 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "40" 2024-02-05 2024-02-22 0.65 26 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "40" 2024-02-05 2024-02-22 0.7 27 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "40" 2024-02-05 2024-02-22 0.75 29 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "40" 2024-02-05 2024-02-22 0.8 32 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "40" 2024-02-05 2024-02-22 0.85 35.15 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "40" 2024-02-05 2024-02-22 0.9 37.1 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "40" 2024-02-05 2024-02-22 0.95 43 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "40" 2024-02-05 2024-02-22 0.975 48.05 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "40" 2024-02-05 2024-02-22 0.99 55 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "40" 2024-02-05 2024-02-23 0.01 5.97 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "40" 2024-02-05 2024-02-23 0.025 7.475 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "40" 2024-02-05 2024-02-23 0.05 9 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "40" 2024-02-05 2024-02-23 0.1 12.9 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "40" 2024-02-05 2024-02-23 0.15 14 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "40" 2024-02-05 2024-02-23 0.2 15 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "40" 2024-02-05 2024-02-23 0.25 16 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "40" 2024-02-05 2024-02-23 0.3 17 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "40" 2024-02-05 2024-02-23 0.35 19 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "40" 2024-02-05 2024-02-23 0.4 20 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "40" 2024-02-05 2024-02-23 0.45 21.55 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "40" 2024-02-05 2024-02-23 0.5 22 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "40" 2024-02-05 2024-02-23 0.55 23 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "40" 2024-02-05 2024-02-23 0.6 24 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "40" 2024-02-05 2024-02-23 0.65 26 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "40" 2024-02-05 2024-02-23 0.7 27 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "40" 2024-02-05 2024-02-23 0.75 29.25 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "40" 2024-02-05 2024-02-23 0.8 32 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "40" 2024-02-05 2024-02-23 0.85 34 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "40" 2024-02-05 2024-02-23 0.9 40.1 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "40" 2024-02-05 2024-02-23 0.95 47.05 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "40" 2024-02-05 2024-02-23 0.975 54.1499999999999 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "40" 2024-02-05 2024-02-23 0.99 59.1200000000001 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "40" 2024-02-05 2024-02-24 0.01 3 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "40" 2024-02-05 2024-02-24 0.025 4 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "40" 2024-02-05 2024-02-24 0.05 5 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "40" 2024-02-05 2024-02-24 0.1 7 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "40" 2024-02-05 2024-02-24 0.15 9.85 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "40" 2024-02-05 2024-02-24 0.2 11 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "40" 2024-02-05 2024-02-24 0.25 13 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "40" 2024-02-05 2024-02-24 0.3 14.7 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "40" 2024-02-05 2024-02-24 0.35 17 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "40" 2024-02-05 2024-02-24 0.4 18.6 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "40" 2024-02-05 2024-02-24 0.45 20 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "40" 2024-02-05 2024-02-24 0.5 21 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "40" 2024-02-05 2024-02-24 0.55 22 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "40" 2024-02-05 2024-02-24 0.6 23 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "40" 2024-02-05 2024-02-24 0.65 24 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "40" 2024-02-05 2024-02-24 0.7 26 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "40" 2024-02-05 2024-02-24 0.75 27 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "40" 2024-02-05 2024-02-24 0.8 28 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "40" 2024-02-05 2024-02-24 0.85 30 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "40" 2024-02-05 2024-02-24 0.9 33.1 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "40" 2024-02-05 2024-02-24 0.95 40.2 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "40" 2024-02-05 2024-02-24 0.975 48.525 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "40" 2024-02-05 2024-02-24 0.99 52.01 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "40" 2024-02-05 2024-02-25 0.01 4.99 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "40" 2024-02-05 2024-02-25 0.025 7.475 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "40" 2024-02-05 2024-02-25 0.05 8 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "40" 2024-02-05 2024-02-25 0.1 9 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "40" 2024-02-05 2024-02-25 0.15 10 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "40" 2024-02-05 2024-02-25 0.2 10 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "40" 2024-02-05 2024-02-25 0.25 13 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "40" 2024-02-05 2024-02-25 0.3 14 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "40" 2024-02-05 2024-02-25 0.35 15 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "40" 2024-02-05 2024-02-25 0.4 16 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "40" 2024-02-05 2024-02-25 0.45 17 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "40" 2024-02-05 2024-02-25 0.5 18 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "40" 2024-02-05 2024-02-25 0.55 20 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "40" 2024-02-05 2024-02-25 0.6 21 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "40" 2024-02-05 2024-02-25 0.65 22 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "40" 2024-02-05 2024-02-25 0.7 25 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "40" 2024-02-05 2024-02-25 0.75 26 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "40" 2024-02-05 2024-02-25 0.8 28.2 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "40" 2024-02-05 2024-02-25 0.85 30.15 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "40" 2024-02-05 2024-02-25 0.9 34.1 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "40" 2024-02-05 2024-02-25 0.95 42.1 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "40" 2024-02-05 2024-02-25 0.975 46.05 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "40" 2024-02-05 2024-02-25 0.99 53.09 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "40" 2024-02-05 2024-02-26 0.01 5.99 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "40" 2024-02-05 2024-02-26 0.025 7 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "40" 2024-02-05 2024-02-26 0.05 8.95 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "40" 2024-02-05 2024-02-26 0.1 9 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "40" 2024-02-05 2024-02-26 0.15 11 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "40" 2024-02-05 2024-02-26 0.2 13 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "40" 2024-02-05 2024-02-26 0.25 15.75 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "40" 2024-02-05 2024-02-26 0.3 16 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "40" 2024-02-05 2024-02-26 0.35 17 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "40" 2024-02-05 2024-02-26 0.4 17.6 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "40" 2024-02-05 2024-02-26 0.45 19 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "40" 2024-02-05 2024-02-26 0.5 20 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "40" 2024-02-05 2024-02-26 0.55 21.45 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "40" 2024-02-05 2024-02-26 0.6 23.4 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "40" 2024-02-05 2024-02-26 0.65 26 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "40" 2024-02-05 2024-02-26 0.7 27 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "40" 2024-02-05 2024-02-26 0.75 30.25 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "40" 2024-02-05 2024-02-26 0.8 37 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "40" 2024-02-05 2024-02-26 0.85 38 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "40" 2024-02-05 2024-02-26 0.9 40.1 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "40" 2024-02-05 2024-02-26 0.95 53.1 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "40" 2024-02-05 2024-02-26 0.975 56 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "40" 2024-02-05 2024-02-26 0.99 57.02 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "40" 2024-02-05 2024-02-27 0.01 7.99 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "40" 2024-02-05 2024-02-27 0.025 9 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "40" 2024-02-05 2024-02-27 0.05 9.95 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "40" 2024-02-05 2024-02-27 0.1 11 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "40" 2024-02-05 2024-02-27 0.15 12 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "40" 2024-02-05 2024-02-27 0.2 12.8 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "40" 2024-02-05 2024-02-27 0.25 14 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "40" 2024-02-05 2024-02-27 0.3 15.7 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "40" 2024-02-05 2024-02-27 0.35 18 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "40" 2024-02-05 2024-02-27 0.4 18 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "40" 2024-02-05 2024-02-27 0.45 19 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "40" 2024-02-05 2024-02-27 0.5 20.5 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "40" 2024-02-05 2024-02-27 0.55 22.45 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "40" 2024-02-05 2024-02-27 0.6 24 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "40" 2024-02-05 2024-02-27 0.65 24.35 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "40" 2024-02-05 2024-02-27 0.7 25.3 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "40" 2024-02-05 2024-02-27 0.75 28 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "40" 2024-02-05 2024-02-27 0.8 30.2 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "40" 2024-02-05 2024-02-27 0.85 32 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "40" 2024-02-05 2024-02-27 0.9 37.1 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "40" 2024-02-05 2024-02-27 0.95 41.4 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "40" 2024-02-05 2024-02-27 0.975 58.1999999999999 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "40" 2024-02-05 2024-02-27 0.99 64 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "40" 2024-02-05 2024-02-28 0.01 5 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "40" 2024-02-05 2024-02-28 0.025 6.475 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "40" 2024-02-05 2024-02-28 0.05 7 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "40" 2024-02-05 2024-02-28 0.1 9 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "40" 2024-02-05 2024-02-28 0.15 10.85 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "40" 2024-02-05 2024-02-28 0.2 12 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "40" 2024-02-05 2024-02-28 0.25 13.75 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "40" 2024-02-05 2024-02-28 0.3 15 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "40" 2024-02-05 2024-02-28 0.35 17 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "40" 2024-02-05 2024-02-28 0.4 18 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "40" 2024-02-05 2024-02-28 0.45 19.55 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "40" 2024-02-05 2024-02-28 0.5 20.5 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "40" 2024-02-05 2024-02-28 0.55 23 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "40" 2024-02-05 2024-02-28 0.6 24.4 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "40" 2024-02-05 2024-02-28 0.65 26 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "40" 2024-02-05 2024-02-28 0.7 28.3 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "40" 2024-02-05 2024-02-28 0.75 29.25 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "40" 2024-02-05 2024-02-28 0.8 33.2 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "40" 2024-02-05 2024-02-28 0.85 36.3 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "40" 2024-02-05 2024-02-28 0.9 40.1 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "40" 2024-02-05 2024-02-28 0.95 46.05 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "40" 2024-02-05 2024-02-28 0.975 50.1499999999999 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "40" 2024-02-05 2024-02-28 0.99 63 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "40" 2024-02-05 2024-02-29 0.01 5.97 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "40" 2024-02-05 2024-02-29 0.025 7 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "40" 2024-02-05 2024-02-29 0.05 8 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "40" 2024-02-05 2024-02-29 0.1 9.9 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "40" 2024-02-05 2024-02-29 0.15 11 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "40" 2024-02-05 2024-02-29 0.2 12 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "40" 2024-02-05 2024-02-29 0.25 13.75 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "40" 2024-02-05 2024-02-29 0.3 15 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "40" 2024-02-05 2024-02-29 0.35 17 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "40" 2024-02-05 2024-02-29 0.4 19 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "40" 2024-02-05 2024-02-29 0.45 19.55 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "40" 2024-02-05 2024-02-29 0.5 21 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "40" 2024-02-05 2024-02-29 0.55 22 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "40" 2024-02-05 2024-02-29 0.6 23.4 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "40" 2024-02-05 2024-02-29 0.65 24.7 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "40" 2024-02-05 2024-02-29 0.7 26 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "40" 2024-02-05 2024-02-29 0.75 28 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "40" 2024-02-05 2024-02-29 0.8 29.4 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "40" 2024-02-05 2024-02-29 0.85 34.15 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "40" 2024-02-05 2024-02-29 0.9 38.1 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "40" 2024-02-05 2024-02-29 0.95 45.05 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "40" 2024-02-05 2024-02-29 0.975 52.7249999999999 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "40" 2024-02-05 2024-02-29 0.99 58.1500000000001 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "40" 2024-02-05 2024-03-01 0.01 6 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "40" 2024-02-05 2024-03-01 0.025 6 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "40" 2024-02-05 2024-03-01 0.05 6 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "40" 2024-02-05 2024-03-01 0.1 8 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "40" 2024-02-05 2024-03-01 0.15 9 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "40" 2024-02-05 2024-03-01 0.2 10 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "40" 2024-02-05 2024-03-01 0.25 13 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "40" 2024-02-05 2024-03-01 0.3 14 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "40" 2024-02-05 2024-03-01 0.35 15.65 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "40" 2024-02-05 2024-03-01 0.4 17 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "40" 2024-02-05 2024-03-01 0.45 18 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "40" 2024-02-05 2024-03-01 0.5 19 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "40" 2024-02-05 2024-03-01 0.55 22 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "40" 2024-02-05 2024-03-01 0.6 25 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "40" 2024-02-05 2024-03-01 0.65 27.35 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "40" 2024-02-05 2024-03-01 0.7 30 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "40" 2024-02-05 2024-03-01 0.75 30.25 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "40" 2024-02-05 2024-03-01 0.8 32.4 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "40" 2024-02-05 2024-03-01 0.85 37 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "40" 2024-02-05 2024-03-01 0.9 42.1 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "40" 2024-02-05 2024-03-01 0.95 55.05 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "40" 2024-02-05 2024-03-01 0.975 59.525 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "40" 2024-02-05 2024-03-01 0.99 61.03 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "40" 2024-02-05 2024-03-02 0.01 2.98 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "40" 2024-02-05 2024-03-02 0.025 3 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "40" 2024-02-05 2024-03-02 0.05 4.9 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "40" 2024-02-05 2024-03-02 0.1 6.9 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "40" 2024-02-05 2024-03-02 0.15 7.85 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "40" 2024-02-05 2024-03-02 0.2 9 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "40" 2024-02-05 2024-03-02 0.25 10.5 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "40" 2024-02-05 2024-03-02 0.3 12 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "40" 2024-02-05 2024-03-02 0.35 14 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "40" 2024-02-05 2024-03-02 0.4 16 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "40" 2024-02-05 2024-03-02 0.45 16.55 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "40" 2024-02-05 2024-03-02 0.5 18 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "40" 2024-02-05 2024-03-02 0.55 19.45 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "40" 2024-02-05 2024-03-02 0.6 21 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "40" 2024-02-05 2024-03-02 0.65 22 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "40" 2024-02-05 2024-03-02 0.7 23 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "40" 2024-02-05 2024-03-02 0.75 25 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "40" 2024-02-05 2024-03-02 0.8 26.2 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "40" 2024-02-05 2024-03-02 0.85 29 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "40" 2024-02-05 2024-03-02 0.9 32 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "40" 2024-02-05 2024-03-02 0.95 39 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "40" 2024-02-05 2024-03-02 0.975 44.525 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "40" 2024-02-05 2024-03-02 0.99 47.1100000000001 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "40" 2024-02-05 2024-03-03 0.01 4 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "40" 2024-02-05 2024-03-03 0.025 5.95 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "40" 2024-02-05 2024-03-03 0.05 7 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "40" 2024-02-05 2024-03-03 0.1 9 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "40" 2024-02-05 2024-03-03 0.15 10 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "40" 2024-02-05 2024-03-03 0.2 11 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "40" 2024-02-05 2024-03-03 0.25 11 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "40" 2024-02-05 2024-03-03 0.3 13 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "40" 2024-02-05 2024-03-03 0.35 14 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "40" 2024-02-05 2024-03-03 0.4 15.6 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "40" 2024-02-05 2024-03-03 0.45 17.55 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "40" 2024-02-05 2024-03-03 0.5 20 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "40" 2024-02-05 2024-03-03 0.55 21.45 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "40" 2024-02-05 2024-03-03 0.6 23 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "40" 2024-02-05 2024-03-03 0.65 25 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "40" 2024-02-05 2024-03-03 0.7 27 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "40" 2024-02-05 2024-03-03 0.75 27.25 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "40" 2024-02-05 2024-03-03 0.8 31 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "40" 2024-02-05 2024-03-03 0.85 34 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "40" 2024-02-05 2024-03-03 0.9 38.1 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "40" 2024-02-05 2024-03-03 0.95 43.2 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "40" 2024-02-05 2024-03-03 0.975 48 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "40" 2024-02-05 2024-03-03 0.99 56.03 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "40" 2024-02-05 2024-03-04 0.01 2.99 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "40" 2024-02-05 2024-03-04 0.025 5 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "40" 2024-02-05 2024-03-04 0.05 5 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "40" 2024-02-05 2024-03-04 0.1 7 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "40" 2024-02-05 2024-03-04 0.15 8.85 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "40" 2024-02-05 2024-03-04 0.2 10 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "40" 2024-02-05 2024-03-04 0.25 12 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "40" 2024-02-05 2024-03-04 0.3 13 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "40" 2024-02-05 2024-03-04 0.35 14 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "40" 2024-02-05 2024-03-04 0.4 18 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "40" 2024-02-05 2024-03-04 0.45 19 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "40" 2024-02-05 2024-03-04 0.5 19.5 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "40" 2024-02-05 2024-03-04 0.55 23 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "40" 2024-02-05 2024-03-04 0.6 24.4 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "40" 2024-02-05 2024-03-04 0.65 26 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "40" 2024-02-05 2024-03-04 0.7 28 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "40" 2024-02-05 2024-03-04 0.75 30.25 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "40" 2024-02-05 2024-03-04 0.8 31.2 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "40" 2024-02-05 2024-03-04 0.85 35.15 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "40" 2024-02-05 2024-03-04 0.9 40.3 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "40" 2024-02-05 2024-03-04 0.95 52 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "40" 2024-02-05 2024-03-04 0.975 54.1 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "40" 2024-02-05 2024-03-04 0.99 56 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "41" 2024-02-05 2024-02-06 0.01 12.99 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "41" 2024-02-05 2024-02-06 0.025 14 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "41" 2024-02-05 2024-02-06 0.05 14.95 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "41" 2024-02-05 2024-02-06 0.1 17 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "41" 2024-02-05 2024-02-06 0.15 18 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "41" 2024-02-05 2024-02-06 0.2 19 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "41" 2024-02-05 2024-02-06 0.25 21.75 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "41" 2024-02-05 2024-02-06 0.3 23 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "41" 2024-02-05 2024-02-06 0.35 23.65 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "41" 2024-02-05 2024-02-06 0.4 24.6 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "41" 2024-02-05 2024-02-06 0.45 25 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "41" 2024-02-05 2024-02-06 0.5 26 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "41" 2024-02-05 2024-02-06 0.55 27 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "41" 2024-02-05 2024-02-06 0.6 28 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "41" 2024-02-05 2024-02-06 0.65 29 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "41" 2024-02-05 2024-02-06 0.7 29 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "41" 2024-02-05 2024-02-06 0.75 30 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "41" 2024-02-05 2024-02-06 0.8 31.2 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "41" 2024-02-05 2024-02-06 0.85 34 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "41" 2024-02-05 2024-02-06 0.9 36 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "41" 2024-02-05 2024-02-06 0.95 41 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "41" 2024-02-05 2024-02-06 0.975 43 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "41" 2024-02-05 2024-02-06 0.99 45.03 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "41" 2024-02-05 2024-02-07 0.01 11.99 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "41" 2024-02-05 2024-02-07 0.025 14.475 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "41" 2024-02-05 2024-02-07 0.05 16 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "41" 2024-02-05 2024-02-07 0.1 19 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "41" 2024-02-05 2024-02-07 0.15 22.85 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "41" 2024-02-05 2024-02-07 0.2 23.8 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "41" 2024-02-05 2024-02-07 0.25 25 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "41" 2024-02-05 2024-02-07 0.3 26 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "41" 2024-02-05 2024-02-07 0.35 26 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "41" 2024-02-05 2024-02-07 0.4 27 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "41" 2024-02-05 2024-02-07 0.45 28 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "41" 2024-02-05 2024-02-07 0.5 28 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "41" 2024-02-05 2024-02-07 0.55 29 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "41" 2024-02-05 2024-02-07 0.6 30 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "41" 2024-02-05 2024-02-07 0.65 30 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "41" 2024-02-05 2024-02-07 0.7 31 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "41" 2024-02-05 2024-02-07 0.75 32 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "41" 2024-02-05 2024-02-07 0.8 34 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "41" 2024-02-05 2024-02-07 0.85 35.15 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "41" 2024-02-05 2024-02-07 0.9 38.1 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "41" 2024-02-05 2024-02-07 0.95 40.1 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "41" 2024-02-05 2024-02-07 0.975 46.1499999999999 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "41" 2024-02-05 2024-02-07 0.99 52.07 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "41" 2024-02-05 2024-02-08 0.01 12.97 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "41" 2024-02-05 2024-02-08 0.025 13 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "41" 2024-02-05 2024-02-08 0.05 14 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "41" 2024-02-05 2024-02-08 0.1 16 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "41" 2024-02-05 2024-02-08 0.15 16.85 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "41" 2024-02-05 2024-02-08 0.2 17 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "41" 2024-02-05 2024-02-08 0.25 18.75 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "41" 2024-02-05 2024-02-08 0.3 19.7 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "41" 2024-02-05 2024-02-08 0.35 21 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "41" 2024-02-05 2024-02-08 0.4 21 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "41" 2024-02-05 2024-02-08 0.45 22 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "41" 2024-02-05 2024-02-08 0.5 24 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "41" 2024-02-05 2024-02-08 0.55 24.45 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "41" 2024-02-05 2024-02-08 0.6 25 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "41" 2024-02-05 2024-02-08 0.65 26 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "41" 2024-02-05 2024-02-08 0.7 28 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "41" 2024-02-05 2024-02-08 0.75 29 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "41" 2024-02-05 2024-02-08 0.8 30.2 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "41" 2024-02-05 2024-02-08 0.85 32 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "41" 2024-02-05 2024-02-08 0.9 35 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "41" 2024-02-05 2024-02-08 0.95 36.15 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "41" 2024-02-05 2024-02-08 0.975 42.1 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "41" 2024-02-05 2024-02-08 0.99 46.02 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "41" 2024-02-05 2024-02-09 0.01 12.99 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "41" 2024-02-05 2024-02-09 0.025 14.475 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "41" 2024-02-05 2024-02-09 0.05 15.95 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "41" 2024-02-05 2024-02-09 0.1 18 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "41" 2024-02-05 2024-02-09 0.15 19 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "41" 2024-02-05 2024-02-09 0.2 19.8 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "41" 2024-02-05 2024-02-09 0.25 21 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "41" 2024-02-05 2024-02-09 0.3 21 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "41" 2024-02-05 2024-02-09 0.35 22 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "41" 2024-02-05 2024-02-09 0.4 23 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "41" 2024-02-05 2024-02-09 0.45 24 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "41" 2024-02-05 2024-02-09 0.5 25 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "41" 2024-02-05 2024-02-09 0.55 25.45 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "41" 2024-02-05 2024-02-09 0.6 26 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "41" 2024-02-05 2024-02-09 0.65 27 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "41" 2024-02-05 2024-02-09 0.7 28 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "41" 2024-02-05 2024-02-09 0.75 30 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "41" 2024-02-05 2024-02-09 0.8 30.2 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "41" 2024-02-05 2024-02-09 0.85 31.15 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "41" 2024-02-05 2024-02-09 0.9 33 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "41" 2024-02-05 2024-02-09 0.95 35.1 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "41" 2024-02-05 2024-02-09 0.975 40.05 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "41" 2024-02-05 2024-02-09 0.99 41.07 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "41" 2024-02-05 2024-02-10 0.01 11.99 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "41" 2024-02-05 2024-02-10 0.025 12 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "41" 2024-02-05 2024-02-10 0.05 13.95 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "41" 2024-02-05 2024-02-10 0.1 16.9 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "41" 2024-02-05 2024-02-10 0.15 18 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "41" 2024-02-05 2024-02-10 0.2 20 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "41" 2024-02-05 2024-02-10 0.25 20 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "41" 2024-02-05 2024-02-10 0.3 21 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "41" 2024-02-05 2024-02-10 0.35 22 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "41" 2024-02-05 2024-02-10 0.4 23 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "41" 2024-02-05 2024-02-10 0.45 25 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "41" 2024-02-05 2024-02-10 0.5 25 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "41" 2024-02-05 2024-02-10 0.55 26 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "41" 2024-02-05 2024-02-10 0.6 27 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "41" 2024-02-05 2024-02-10 0.65 28 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "41" 2024-02-05 2024-02-10 0.7 29 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "41" 2024-02-05 2024-02-10 0.75 29.25 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "41" 2024-02-05 2024-02-10 0.8 31 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "41" 2024-02-05 2024-02-10 0.85 32 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "41" 2024-02-05 2024-02-10 0.9 34 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "41" 2024-02-05 2024-02-10 0.95 39 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "41" 2024-02-05 2024-02-10 0.975 39.525 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "41" 2024-02-05 2024-02-10 0.99 41.05 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "41" 2024-02-05 2024-02-11 0.01 9 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "41" 2024-02-05 2024-02-11 0.025 11 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "41" 2024-02-05 2024-02-11 0.05 12 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "41" 2024-02-05 2024-02-11 0.1 14.9 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "41" 2024-02-05 2024-02-11 0.15 16 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "41" 2024-02-05 2024-02-11 0.2 17 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "41" 2024-02-05 2024-02-11 0.25 18 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "41" 2024-02-05 2024-02-11 0.3 19 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "41" 2024-02-05 2024-02-11 0.35 20 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "41" 2024-02-05 2024-02-11 0.4 20.6 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "41" 2024-02-05 2024-02-11 0.45 21 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "41" 2024-02-05 2024-02-11 0.5 22 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "41" 2024-02-05 2024-02-11 0.55 23 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "41" 2024-02-05 2024-02-11 0.6 25 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "41" 2024-02-05 2024-02-11 0.65 25 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "41" 2024-02-05 2024-02-11 0.7 26 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "41" 2024-02-05 2024-02-11 0.75 27 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "41" 2024-02-05 2024-02-11 0.8 29.2 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "41" 2024-02-05 2024-02-11 0.85 31 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "41" 2024-02-05 2024-02-11 0.9 33 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "41" 2024-02-05 2024-02-11 0.95 34.15 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "41" 2024-02-05 2024-02-11 0.975 40.575 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "41" 2024-02-05 2024-02-11 0.99 42.03 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "41" 2024-02-05 2024-02-12 0.01 7.99 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "41" 2024-02-05 2024-02-12 0.025 12.475 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "41" 2024-02-05 2024-02-12 0.05 14.9 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "41" 2024-02-05 2024-02-12 0.1 16 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "41" 2024-02-05 2024-02-12 0.15 18 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "41" 2024-02-05 2024-02-12 0.2 20 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "41" 2024-02-05 2024-02-12 0.25 21 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "41" 2024-02-05 2024-02-12 0.3 22 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "41" 2024-02-05 2024-02-12 0.35 23 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "41" 2024-02-05 2024-02-12 0.4 23.6 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "41" 2024-02-05 2024-02-12 0.45 25 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "41" 2024-02-05 2024-02-12 0.5 26 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "41" 2024-02-05 2024-02-12 0.55 28 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "41" 2024-02-05 2024-02-12 0.6 29 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "41" 2024-02-05 2024-02-12 0.65 29 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "41" 2024-02-05 2024-02-12 0.7 30 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "41" 2024-02-05 2024-02-12 0.75 31 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "41" 2024-02-05 2024-02-12 0.8 31.2 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "41" 2024-02-05 2024-02-12 0.85 33 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "41" 2024-02-05 2024-02-12 0.9 35.1 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "41" 2024-02-05 2024-02-12 0.95 38 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "41" 2024-02-05 2024-02-12 0.975 39 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "41" 2024-02-05 2024-02-12 0.99 48.1300000000001 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "41" 2024-02-05 2024-02-13 0.01 9.97 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "41" 2024-02-05 2024-02-13 0.025 10 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "41" 2024-02-05 2024-02-13 0.05 12.85 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "41" 2024-02-05 2024-02-13 0.1 15 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "41" 2024-02-05 2024-02-13 0.15 17.85 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "41" 2024-02-05 2024-02-13 0.2 18.8 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "41" 2024-02-05 2024-02-13 0.25 19 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "41" 2024-02-05 2024-02-13 0.3 20 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "41" 2024-02-05 2024-02-13 0.35 21 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "41" 2024-02-05 2024-02-13 0.4 22 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "41" 2024-02-05 2024-02-13 0.45 23 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "41" 2024-02-05 2024-02-13 0.5 24.5 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "41" 2024-02-05 2024-02-13 0.55 25 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "41" 2024-02-05 2024-02-13 0.6 26 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "41" 2024-02-05 2024-02-13 0.65 27 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "41" 2024-02-05 2024-02-13 0.7 28 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "41" 2024-02-05 2024-02-13 0.75 29 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "41" 2024-02-05 2024-02-13 0.8 31 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "41" 2024-02-05 2024-02-13 0.85 33 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "41" 2024-02-05 2024-02-13 0.9 36.1 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "41" 2024-02-05 2024-02-13 0.95 40.05 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "41" 2024-02-05 2024-02-13 0.975 41.525 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "41" 2024-02-05 2024-02-13 0.99 42.07 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "41" 2024-02-05 2024-02-14 0.01 11.93 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "41" 2024-02-05 2024-02-14 0.025 12 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "41" 2024-02-05 2024-02-14 0.05 12.95 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "41" 2024-02-05 2024-02-14 0.1 15 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "41" 2024-02-05 2024-02-14 0.15 17 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "41" 2024-02-05 2024-02-14 0.2 19 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "41" 2024-02-05 2024-02-14 0.25 20 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "41" 2024-02-05 2024-02-14 0.3 21 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "41" 2024-02-05 2024-02-14 0.35 22 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "41" 2024-02-05 2024-02-14 0.4 23.6 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "41" 2024-02-05 2024-02-14 0.45 25 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "41" 2024-02-05 2024-02-14 0.5 26.5 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "41" 2024-02-05 2024-02-14 0.55 27.45 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "41" 2024-02-05 2024-02-14 0.6 30 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "41" 2024-02-05 2024-02-14 0.65 31 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "41" 2024-02-05 2024-02-14 0.7 32 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "41" 2024-02-05 2024-02-14 0.75 32.25 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "41" 2024-02-05 2024-02-14 0.8 34 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "41" 2024-02-05 2024-02-14 0.85 34 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "41" 2024-02-05 2024-02-14 0.9 39 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "41" 2024-02-05 2024-02-14 0.95 40.15 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "41" 2024-02-05 2024-02-14 0.975 45.575 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "41" 2024-02-05 2024-02-14 0.99 47.04 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "41" 2024-02-05 2024-02-15 0.01 8 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "41" 2024-02-05 2024-02-15 0.025 9.95 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "41" 2024-02-05 2024-02-15 0.05 13 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "41" 2024-02-05 2024-02-15 0.1 16 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "41" 2024-02-05 2024-02-15 0.15 17.85 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "41" 2024-02-05 2024-02-15 0.2 18.8 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "41" 2024-02-05 2024-02-15 0.25 20 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "41" 2024-02-05 2024-02-15 0.3 21 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "41" 2024-02-05 2024-02-15 0.35 21 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "41" 2024-02-05 2024-02-15 0.4 22 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "41" 2024-02-05 2024-02-15 0.45 22.55 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "41" 2024-02-05 2024-02-15 0.5 23.5 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "41" 2024-02-05 2024-02-15 0.55 25 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "41" 2024-02-05 2024-02-15 0.6 25 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "41" 2024-02-05 2024-02-15 0.65 27.35 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "41" 2024-02-05 2024-02-15 0.7 29 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "41" 2024-02-05 2024-02-15 0.75 30 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "41" 2024-02-05 2024-02-15 0.8 31.2 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "41" 2024-02-05 2024-02-15 0.85 32.3 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "41" 2024-02-05 2024-02-15 0.9 36.1 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "41" 2024-02-05 2024-02-15 0.95 40 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "41" 2024-02-05 2024-02-15 0.975 41 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "41" 2024-02-05 2024-02-15 0.99 42.05 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "41" 2024-02-05 2024-02-16 0.01 7 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "41" 2024-02-05 2024-02-16 0.025 8 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "41" 2024-02-05 2024-02-16 0.05 11 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "41" 2024-02-05 2024-02-16 0.1 12.9 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "41" 2024-02-05 2024-02-16 0.15 14 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "41" 2024-02-05 2024-02-16 0.2 16 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "41" 2024-02-05 2024-02-16 0.25 18 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "41" 2024-02-05 2024-02-16 0.3 18.7 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "41" 2024-02-05 2024-02-16 0.35 20 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "41" 2024-02-05 2024-02-16 0.4 21 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "41" 2024-02-05 2024-02-16 0.45 22 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "41" 2024-02-05 2024-02-16 0.5 23 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "41" 2024-02-05 2024-02-16 0.55 24 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "41" 2024-02-05 2024-02-16 0.6 25 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "41" 2024-02-05 2024-02-16 0.65 26 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "41" 2024-02-05 2024-02-16 0.7 27.3 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "41" 2024-02-05 2024-02-16 0.75 29 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "41" 2024-02-05 2024-02-16 0.8 32 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "41" 2024-02-05 2024-02-16 0.85 33 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "41" 2024-02-05 2024-02-16 0.9 37 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "41" 2024-02-05 2024-02-16 0.95 39.1 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "41" 2024-02-05 2024-02-16 0.975 44.05 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "41" 2024-02-05 2024-02-16 0.99 45.05 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "41" 2024-02-05 2024-02-17 0.01 5.99 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "41" 2024-02-05 2024-02-17 0.025 8.475 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "41" 2024-02-05 2024-02-17 0.05 9.95 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "41" 2024-02-05 2024-02-17 0.1 12.9 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "41" 2024-02-05 2024-02-17 0.15 15 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "41" 2024-02-05 2024-02-17 0.2 17 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "41" 2024-02-05 2024-02-17 0.25 18 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "41" 2024-02-05 2024-02-17 0.3 19 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "41" 2024-02-05 2024-02-17 0.35 20 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "41" 2024-02-05 2024-02-17 0.4 20 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "41" 2024-02-05 2024-02-17 0.45 22.55 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "41" 2024-02-05 2024-02-17 0.5 24.5 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "41" 2024-02-05 2024-02-17 0.55 25 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "41" 2024-02-05 2024-02-17 0.6 25.4 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "41" 2024-02-05 2024-02-17 0.65 26 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "41" 2024-02-05 2024-02-17 0.7 28 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "41" 2024-02-05 2024-02-17 0.75 30 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "41" 2024-02-05 2024-02-17 0.8 30.2 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "41" 2024-02-05 2024-02-17 0.85 33.15 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "41" 2024-02-05 2024-02-17 0.9 35.1 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "41" 2024-02-05 2024-02-17 0.95 40.05 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "41" 2024-02-05 2024-02-17 0.975 41 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "41" 2024-02-05 2024-02-17 0.99 43.08 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "41" 2024-02-05 2024-02-18 0.01 5.95 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "41" 2024-02-05 2024-02-18 0.025 10.475 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "41" 2024-02-05 2024-02-18 0.05 12 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "41" 2024-02-05 2024-02-18 0.1 13 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "41" 2024-02-05 2024-02-18 0.15 15 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "41" 2024-02-05 2024-02-18 0.2 16 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "41" 2024-02-05 2024-02-18 0.25 17 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "41" 2024-02-05 2024-02-18 0.3 18 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "41" 2024-02-05 2024-02-18 0.35 19 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "41" 2024-02-05 2024-02-18 0.4 21 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "41" 2024-02-05 2024-02-18 0.45 22 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "41" 2024-02-05 2024-02-18 0.5 22.5 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "41" 2024-02-05 2024-02-18 0.55 24.45 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "41" 2024-02-05 2024-02-18 0.6 26 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "41" 2024-02-05 2024-02-18 0.65 27.35 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "41" 2024-02-05 2024-02-18 0.7 29.3 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "41" 2024-02-05 2024-02-18 0.75 31 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "41" 2024-02-05 2024-02-18 0.8 32 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "41" 2024-02-05 2024-02-18 0.85 33 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "41" 2024-02-05 2024-02-18 0.9 35.1 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "41" 2024-02-05 2024-02-18 0.95 37.25 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "41" 2024-02-05 2024-02-18 0.975 42 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "41" 2024-02-05 2024-02-18 0.99 44.03 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "41" 2024-02-05 2024-02-19 0.01 9.96 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "41" 2024-02-05 2024-02-19 0.025 11.475 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "41" 2024-02-05 2024-02-19 0.05 12.95 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "41" 2024-02-05 2024-02-19 0.1 14.9 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "41" 2024-02-05 2024-02-19 0.15 17 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "41" 2024-02-05 2024-02-19 0.2 17.8 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "41" 2024-02-05 2024-02-19 0.25 18.75 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "41" 2024-02-05 2024-02-19 0.3 21 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "41" 2024-02-05 2024-02-19 0.35 22 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "41" 2024-02-05 2024-02-19 0.4 23 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "41" 2024-02-05 2024-02-19 0.45 24 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "41" 2024-02-05 2024-02-19 0.5 25 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "41" 2024-02-05 2024-02-19 0.55 26 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "41" 2024-02-05 2024-02-19 0.6 27 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "41" 2024-02-05 2024-02-19 0.65 28 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "41" 2024-02-05 2024-02-19 0.7 29.3 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "41" 2024-02-05 2024-02-19 0.75 31 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "41" 2024-02-05 2024-02-19 0.8 32 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "41" 2024-02-05 2024-02-19 0.85 34.15 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "41" 2024-02-05 2024-02-19 0.9 38 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "41" 2024-02-05 2024-02-19 0.95 41.05 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "41" 2024-02-05 2024-02-19 0.975 44.05 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "41" 2024-02-05 2024-02-19 0.99 47.01 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "41" 2024-02-05 2024-02-20 0.01 6.99 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "41" 2024-02-05 2024-02-20 0.025 10.475 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "41" 2024-02-05 2024-02-20 0.05 11.95 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "41" 2024-02-05 2024-02-20 0.1 13 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "41" 2024-02-05 2024-02-20 0.15 15 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "41" 2024-02-05 2024-02-20 0.2 16 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "41" 2024-02-05 2024-02-20 0.25 17 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "41" 2024-02-05 2024-02-20 0.3 18 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "41" 2024-02-05 2024-02-20 0.35 19 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "41" 2024-02-05 2024-02-20 0.4 20 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "41" 2024-02-05 2024-02-20 0.45 21 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "41" 2024-02-05 2024-02-20 0.5 22 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "41" 2024-02-05 2024-02-20 0.55 23.45 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "41" 2024-02-05 2024-02-20 0.6 26.4 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "41" 2024-02-05 2024-02-20 0.65 28.35 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "41" 2024-02-05 2024-02-20 0.7 29.3 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "41" 2024-02-05 2024-02-20 0.75 30.5 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "41" 2024-02-05 2024-02-20 0.8 33 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "41" 2024-02-05 2024-02-20 0.85 34 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "41" 2024-02-05 2024-02-20 0.9 37 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "41" 2024-02-05 2024-02-20 0.95 38 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "41" 2024-02-05 2024-02-20 0.975 39.575 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "41" 2024-02-05 2024-02-20 0.99 41.03 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "41" 2024-02-05 2024-02-21 0.01 8 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "41" 2024-02-05 2024-02-21 0.025 9 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "41" 2024-02-05 2024-02-21 0.05 10.95 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "41" 2024-02-05 2024-02-21 0.1 14.9 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "41" 2024-02-05 2024-02-21 0.15 15 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "41" 2024-02-05 2024-02-21 0.2 17 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "41" 2024-02-05 2024-02-21 0.25 18.75 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "41" 2024-02-05 2024-02-21 0.3 20 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "41" 2024-02-05 2024-02-21 0.35 21 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "41" 2024-02-05 2024-02-21 0.4 23 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "41" 2024-02-05 2024-02-21 0.45 24 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "41" 2024-02-05 2024-02-21 0.5 26 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "41" 2024-02-05 2024-02-21 0.55 27 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "41" 2024-02-05 2024-02-21 0.6 28.4 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "41" 2024-02-05 2024-02-21 0.65 29 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "41" 2024-02-05 2024-02-21 0.7 31.3 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "41" 2024-02-05 2024-02-21 0.75 33 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "41" 2024-02-05 2024-02-21 0.8 36.2 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "41" 2024-02-05 2024-02-21 0.85 38.15 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "41" 2024-02-05 2024-02-21 0.9 42 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "41" 2024-02-05 2024-02-21 0.95 46 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "41" 2024-02-05 2024-02-21 0.975 47 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "41" 2024-02-05 2024-02-21 0.99 48.06 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "41" 2024-02-05 2024-02-22 0.01 7.99 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "41" 2024-02-05 2024-02-22 0.025 10 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "41" 2024-02-05 2024-02-22 0.05 12 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "41" 2024-02-05 2024-02-22 0.1 14 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "41" 2024-02-05 2024-02-22 0.15 15 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "41" 2024-02-05 2024-02-22 0.2 16 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "41" 2024-02-05 2024-02-22 0.25 17 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "41" 2024-02-05 2024-02-22 0.3 18.7 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "41" 2024-02-05 2024-02-22 0.35 19.65 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "41" 2024-02-05 2024-02-22 0.4 21.6 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "41" 2024-02-05 2024-02-22 0.45 23 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "41" 2024-02-05 2024-02-22 0.5 24 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "41" 2024-02-05 2024-02-22 0.55 25 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "41" 2024-02-05 2024-02-22 0.6 26.4 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "41" 2024-02-05 2024-02-22 0.65 29 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "41" 2024-02-05 2024-02-22 0.7 30 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "41" 2024-02-05 2024-02-22 0.75 33 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "41" 2024-02-05 2024-02-22 0.8 34 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "41" 2024-02-05 2024-02-22 0.85 35 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "41" 2024-02-05 2024-02-22 0.9 37.1 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "41" 2024-02-05 2024-02-22 0.95 39.1 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "41" 2024-02-05 2024-02-22 0.975 42.525 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "41" 2024-02-05 2024-02-22 0.99 46.05 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "41" 2024-02-05 2024-02-23 0.01 6.99 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "41" 2024-02-05 2024-02-23 0.025 7.475 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "41" 2024-02-05 2024-02-23 0.05 9 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "41" 2024-02-05 2024-02-23 0.1 10.9 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "41" 2024-02-05 2024-02-23 0.15 14.55 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "41" 2024-02-05 2024-02-23 0.2 17 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "41" 2024-02-05 2024-02-23 0.25 17.75 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "41" 2024-02-05 2024-02-23 0.3 19 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "41" 2024-02-05 2024-02-23 0.35 20 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "41" 2024-02-05 2024-02-23 0.4 21 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "41" 2024-02-05 2024-02-23 0.45 22 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "41" 2024-02-05 2024-02-23 0.5 23 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "41" 2024-02-05 2024-02-23 0.55 23.45 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "41" 2024-02-05 2024-02-23 0.6 25 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "41" 2024-02-05 2024-02-23 0.65 26 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "41" 2024-02-05 2024-02-23 0.7 27 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "41" 2024-02-05 2024-02-23 0.75 28.25 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "41" 2024-02-05 2024-02-23 0.8 31.2 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "41" 2024-02-05 2024-02-23 0.85 33 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "41" 2024-02-05 2024-02-23 0.9 34.1 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "41" 2024-02-05 2024-02-23 0.95 38.1 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "41" 2024-02-05 2024-02-23 0.975 41.575 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "41" 2024-02-05 2024-02-23 0.99 47.01 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "41" 2024-02-05 2024-02-24 0.01 6.95 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "41" 2024-02-05 2024-02-24 0.025 7 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "41" 2024-02-05 2024-02-24 0.05 8 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "41" 2024-02-05 2024-02-24 0.1 10 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "41" 2024-02-05 2024-02-24 0.15 11 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "41" 2024-02-05 2024-02-24 0.2 14.8 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "41" 2024-02-05 2024-02-24 0.25 16 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "41" 2024-02-05 2024-02-24 0.3 17 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "41" 2024-02-05 2024-02-24 0.35 18 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "41" 2024-02-05 2024-02-24 0.4 19.6 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "41" 2024-02-05 2024-02-24 0.45 20 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "41" 2024-02-05 2024-02-24 0.5 21.5 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "41" 2024-02-05 2024-02-24 0.55 22.9 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "41" 2024-02-05 2024-02-24 0.6 25 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "41" 2024-02-05 2024-02-24 0.65 27 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "41" 2024-02-05 2024-02-24 0.7 28 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "41" 2024-02-05 2024-02-24 0.75 29.25 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "41" 2024-02-05 2024-02-24 0.8 31 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "41" 2024-02-05 2024-02-24 0.85 33 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "41" 2024-02-05 2024-02-24 0.9 34 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "41" 2024-02-05 2024-02-24 0.95 38.05 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "41" 2024-02-05 2024-02-24 0.975 41.575 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "41" 2024-02-05 2024-02-24 0.99 45.05 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "41" 2024-02-05 2024-02-25 0.01 6 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "41" 2024-02-05 2024-02-25 0.025 7 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "41" 2024-02-05 2024-02-25 0.05 9.9 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "41" 2024-02-05 2024-02-25 0.1 11 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "41" 2024-02-05 2024-02-25 0.15 13 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "41" 2024-02-05 2024-02-25 0.2 14.8 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "41" 2024-02-05 2024-02-25 0.25 15 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "41" 2024-02-05 2024-02-25 0.3 18 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "41" 2024-02-05 2024-02-25 0.35 19 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "41" 2024-02-05 2024-02-25 0.4 20.6 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "41" 2024-02-05 2024-02-25 0.45 22 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "41" 2024-02-05 2024-02-25 0.5 22 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "41" 2024-02-05 2024-02-25 0.55 23 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "41" 2024-02-05 2024-02-25 0.6 23.4 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "41" 2024-02-05 2024-02-25 0.65 25.35 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "41" 2024-02-05 2024-02-25 0.7 27 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "41" 2024-02-05 2024-02-25 0.75 29 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "41" 2024-02-05 2024-02-25 0.8 30.2 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "41" 2024-02-05 2024-02-25 0.85 32.15 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "41" 2024-02-05 2024-02-25 0.9 34.2 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "41" 2024-02-05 2024-02-25 0.95 42.05 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "41" 2024-02-05 2024-02-25 0.975 43.525 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "41" 2024-02-05 2024-02-25 0.99 46.05 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "41" 2024-02-05 2024-02-26 0.01 5 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "41" 2024-02-05 2024-02-26 0.025 6.425 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "41" 2024-02-05 2024-02-26 0.05 8.95 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "41" 2024-02-05 2024-02-26 0.1 11.9 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "41" 2024-02-05 2024-02-26 0.15 14.7 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "41" 2024-02-05 2024-02-26 0.2 17 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "41" 2024-02-05 2024-02-26 0.25 18 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "41" 2024-02-05 2024-02-26 0.3 19.7 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "41" 2024-02-05 2024-02-26 0.35 20.65 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "41" 2024-02-05 2024-02-26 0.4 22 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "41" 2024-02-05 2024-02-26 0.45 23 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "41" 2024-02-05 2024-02-26 0.5 24 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "41" 2024-02-05 2024-02-26 0.55 26 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "41" 2024-02-05 2024-02-26 0.6 27 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "41" 2024-02-05 2024-02-26 0.65 28 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "41" 2024-02-05 2024-02-26 0.7 29.3 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "41" 2024-02-05 2024-02-26 0.75 33 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "41" 2024-02-05 2024-02-26 0.8 35 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "41" 2024-02-05 2024-02-26 0.85 37 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "41" 2024-02-05 2024-02-26 0.9 37.1 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "41" 2024-02-05 2024-02-26 0.95 39.15 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "41" 2024-02-05 2024-02-26 0.975 42.525 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "41" 2024-02-05 2024-02-26 0.99 43.1300000000001 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "41" 2024-02-05 2024-02-27 0.01 5 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "41" 2024-02-05 2024-02-27 0.025 7.475 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "41" 2024-02-05 2024-02-27 0.05 9.9 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "41" 2024-02-05 2024-02-27 0.1 12 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "41" 2024-02-05 2024-02-27 0.15 13.85 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "41" 2024-02-05 2024-02-27 0.2 15 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "41" 2024-02-05 2024-02-27 0.25 16.75 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "41" 2024-02-05 2024-02-27 0.3 17.7 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "41" 2024-02-05 2024-02-27 0.35 20 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "41" 2024-02-05 2024-02-27 0.4 21 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "41" 2024-02-05 2024-02-27 0.45 21 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "41" 2024-02-05 2024-02-27 0.5 22 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "41" 2024-02-05 2024-02-27 0.55 23 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "41" 2024-02-05 2024-02-27 0.6 25 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "41" 2024-02-05 2024-02-27 0.65 26 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "41" 2024-02-05 2024-02-27 0.7 27 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "41" 2024-02-05 2024-02-27 0.75 30.25 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "41" 2024-02-05 2024-02-27 0.8 33 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "41" 2024-02-05 2024-02-27 0.85 33.15 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "41" 2024-02-05 2024-02-27 0.9 35.1 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "41" 2024-02-05 2024-02-27 0.95 37 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "41" 2024-02-05 2024-02-27 0.975 42.6749999999999 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "41" 2024-02-05 2024-02-27 0.99 50.05 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "41" 2024-02-05 2024-02-28 0.01 3.99 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "41" 2024-02-05 2024-02-28 0.025 6.475 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "41" 2024-02-05 2024-02-28 0.05 7.95 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "41" 2024-02-05 2024-02-28 0.1 11.8 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "41" 2024-02-05 2024-02-28 0.15 14 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "41" 2024-02-05 2024-02-28 0.2 15.8 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "41" 2024-02-05 2024-02-28 0.25 17 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "41" 2024-02-05 2024-02-28 0.3 18.7 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "41" 2024-02-05 2024-02-28 0.35 20 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "41" 2024-02-05 2024-02-28 0.4 21 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "41" 2024-02-05 2024-02-28 0.45 22 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "41" 2024-02-05 2024-02-28 0.5 23 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "41" 2024-02-05 2024-02-28 0.55 24.45 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "41" 2024-02-05 2024-02-28 0.6 26 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "41" 2024-02-05 2024-02-28 0.65 27 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "41" 2024-02-05 2024-02-28 0.7 28.3 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "41" 2024-02-05 2024-02-28 0.75 31.25 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "41" 2024-02-05 2024-02-28 0.8 34.2 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "41" 2024-02-05 2024-02-28 0.85 37 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "41" 2024-02-05 2024-02-28 0.9 41 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "41" 2024-02-05 2024-02-28 0.95 45 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "41" 2024-02-05 2024-02-28 0.975 46 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "41" 2024-02-05 2024-02-28 0.99 54.1000000000001 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "41" 2024-02-05 2024-02-29 0.01 7.98 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "41" 2024-02-05 2024-02-29 0.025 8.475 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "41" 2024-02-05 2024-02-29 0.05 9 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "41" 2024-02-05 2024-02-29 0.1 11.9 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "41" 2024-02-05 2024-02-29 0.15 13.85 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "41" 2024-02-05 2024-02-29 0.2 15.8 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "41" 2024-02-05 2024-02-29 0.25 17 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "41" 2024-02-05 2024-02-29 0.3 18 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "41" 2024-02-05 2024-02-29 0.35 19 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "41" 2024-02-05 2024-02-29 0.4 20 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "41" 2024-02-05 2024-02-29 0.45 21 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "41" 2024-02-05 2024-02-29 0.5 22 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "41" 2024-02-05 2024-02-29 0.55 23 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "41" 2024-02-05 2024-02-29 0.6 24 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "41" 2024-02-05 2024-02-29 0.65 25 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "41" 2024-02-05 2024-02-29 0.7 26.3 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "41" 2024-02-05 2024-02-29 0.75 30 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "41" 2024-02-05 2024-02-29 0.8 32 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "41" 2024-02-05 2024-02-29 0.85 35 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "41" 2024-02-05 2024-02-29 0.9 39 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "41" 2024-02-05 2024-02-29 0.95 44 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "41" 2024-02-05 2024-02-29 0.975 48.1499999999999 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "41" 2024-02-05 2024-02-29 0.99 60.01 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "41" 2024-02-05 2024-03-01 0.01 5 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "41" 2024-02-05 2024-03-01 0.025 6.475 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "41" 2024-02-05 2024-03-01 0.05 7.95 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "41" 2024-02-05 2024-03-01 0.1 9.9 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "41" 2024-02-05 2024-03-01 0.15 12 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "41" 2024-02-05 2024-03-01 0.2 14 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "41" 2024-02-05 2024-03-01 0.25 15 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "41" 2024-02-05 2024-03-01 0.3 16 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "41" 2024-02-05 2024-03-01 0.35 17 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "41" 2024-02-05 2024-03-01 0.4 19.6 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "41" 2024-02-05 2024-03-01 0.45 22 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "41" 2024-02-05 2024-03-01 0.5 22 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "41" 2024-02-05 2024-03-01 0.55 23 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "41" 2024-02-05 2024-03-01 0.6 24 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "41" 2024-02-05 2024-03-01 0.65 25 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "41" 2024-02-05 2024-03-01 0.7 27 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "41" 2024-02-05 2024-03-01 0.75 29 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "41" 2024-02-05 2024-03-01 0.8 31 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "41" 2024-02-05 2024-03-01 0.85 33 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "41" 2024-02-05 2024-03-01 0.9 38 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "41" 2024-02-05 2024-03-01 0.95 40.05 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "41" 2024-02-05 2024-03-01 0.975 43 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "41" 2024-02-05 2024-03-01 0.99 44.1000000000001 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "41" 2024-02-05 2024-03-02 0.01 3.98 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "41" 2024-02-05 2024-03-02 0.025 5.475 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "41" 2024-02-05 2024-03-02 0.05 7 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "41" 2024-02-05 2024-03-02 0.1 9.9 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "41" 2024-02-05 2024-03-02 0.15 12.7 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "41" 2024-02-05 2024-03-02 0.2 15.8 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "41" 2024-02-05 2024-03-02 0.25 16 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "41" 2024-02-05 2024-03-02 0.3 17.7 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "41" 2024-02-05 2024-03-02 0.35 18.65 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "41" 2024-02-05 2024-03-02 0.4 20 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "41" 2024-02-05 2024-03-02 0.45 21 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "41" 2024-02-05 2024-03-02 0.5 22 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "41" 2024-02-05 2024-03-02 0.55 23 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "41" 2024-02-05 2024-03-02 0.6 24 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "41" 2024-02-05 2024-03-02 0.65 26 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "41" 2024-02-05 2024-03-02 0.7 27.3 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "41" 2024-02-05 2024-03-02 0.75 28.25 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "41" 2024-02-05 2024-03-02 0.8 30 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "41" 2024-02-05 2024-03-02 0.85 33.15 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "41" 2024-02-05 2024-03-02 0.9 36 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "41" 2024-02-05 2024-03-02 0.95 40.05 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "41" 2024-02-05 2024-03-02 0.975 42 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "41" 2024-02-05 2024-03-02 0.99 46.04 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "41" 2024-02-05 2024-03-03 0.01 3.98 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "41" 2024-02-05 2024-03-03 0.025 4.475 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "41" 2024-02-05 2024-03-03 0.05 5.95 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "41" 2024-02-05 2024-03-03 0.1 8.9 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "41" 2024-02-05 2024-03-03 0.15 10.85 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "41" 2024-02-05 2024-03-03 0.2 13.8 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "41" 2024-02-05 2024-03-03 0.25 15 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "41" 2024-02-05 2024-03-03 0.3 16 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "41" 2024-02-05 2024-03-03 0.35 17 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "41" 2024-02-05 2024-03-03 0.4 18 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "41" 2024-02-05 2024-03-03 0.45 20 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "41" 2024-02-05 2024-03-03 0.5 21.5 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "41" 2024-02-05 2024-03-03 0.55 22.45 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "41" 2024-02-05 2024-03-03 0.6 24 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "41" 2024-02-05 2024-03-03 0.65 26 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "41" 2024-02-05 2024-03-03 0.7 27 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "41" 2024-02-05 2024-03-03 0.75 29 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "41" 2024-02-05 2024-03-03 0.8 31 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "41" 2024-02-05 2024-03-03 0.85 32.15 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "41" 2024-02-05 2024-03-03 0.9 37 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "41" 2024-02-05 2024-03-03 0.95 44.15 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "41" 2024-02-05 2024-03-03 0.975 51 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "41" 2024-02-05 2024-03-03 0.99 52.08 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "41" 2024-02-05 2024-03-04 0.01 5 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "41" 2024-02-05 2024-03-04 0.025 5.95 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "41" 2024-02-05 2024-03-04 0.05 7.95 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "41" 2024-02-05 2024-03-04 0.1 10 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "41" 2024-02-05 2024-03-04 0.15 11.85 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "41" 2024-02-05 2024-03-04 0.2 14 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "41" 2024-02-05 2024-03-04 0.25 15.75 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "41" 2024-02-05 2024-03-04 0.3 18 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "41" 2024-02-05 2024-03-04 0.35 19 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "41" 2024-02-05 2024-03-04 0.4 20 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "41" 2024-02-05 2024-03-04 0.45 22 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "41" 2024-02-05 2024-03-04 0.5 24.5 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "41" 2024-02-05 2024-03-04 0.55 26 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "41" 2024-02-05 2024-03-04 0.6 27 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "41" 2024-02-05 2024-03-04 0.65 28.35 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "41" 2024-02-05 2024-03-04 0.7 30 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "41" 2024-02-05 2024-03-04 0.75 32 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "41" 2024-02-05 2024-03-04 0.8 33 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "41" 2024-02-05 2024-03-04 0.85 36 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "41" 2024-02-05 2024-03-04 0.9 39.4 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "41" 2024-02-05 2024-03-04 0.95 48 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "41" 2024-02-05 2024-03-04 0.975 50 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "41" 2024-02-05 2024-03-04 0.99 60.02 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "42" 2024-02-05 2024-02-06 0.01 65.89 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "42" 2024-02-05 2024-02-06 0.025 68.425 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "42" 2024-02-05 2024-02-06 0.05 72.95 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "42" 2024-02-05 2024-02-06 0.1 75 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "42" 2024-02-05 2024-02-06 0.15 76 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "42" 2024-02-05 2024-02-06 0.2 78.8 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "42" 2024-02-05 2024-02-06 0.25 83.75 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "42" 2024-02-05 2024-02-06 0.3 85 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "42" 2024-02-05 2024-02-06 0.35 88.3 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "42" 2024-02-05 2024-02-06 0.4 91.6 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "42" 2024-02-05 2024-02-06 0.45 94 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "42" 2024-02-05 2024-02-06 0.5 96 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "42" 2024-02-05 2024-02-06 0.55 99 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "42" 2024-02-05 2024-02-06 0.6 100.4 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "42" 2024-02-05 2024-02-06 0.65 102.35 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "42" 2024-02-05 2024-02-06 0.7 106 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "42" 2024-02-05 2024-02-06 0.75 108 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "42" 2024-02-05 2024-02-06 0.8 113.2 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "42" 2024-02-05 2024-02-06 0.85 123.3 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "42" 2024-02-05 2024-02-06 0.9 133.1 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "42" 2024-02-05 2024-02-06 0.95 139.55 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "42" 2024-02-05 2024-02-06 0.975 163.625 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "42" 2024-02-05 2024-02-06 0.99 199.1 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "42" 2024-02-05 2024-02-07 0.01 53.97 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "42" 2024-02-05 2024-02-07 0.025 57.95 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "42" 2024-02-05 2024-02-07 0.05 60.95 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "42" 2024-02-05 2024-02-07 0.1 64.9 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "42" 2024-02-05 2024-02-07 0.15 71.85 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "42" 2024-02-05 2024-02-07 0.2 74.8 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "42" 2024-02-05 2024-02-07 0.25 77 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "42" 2024-02-05 2024-02-07 0.3 80 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "42" 2024-02-05 2024-02-07 0.35 86.3 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "42" 2024-02-05 2024-02-07 0.4 87 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "42" 2024-02-05 2024-02-07 0.45 90 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "42" 2024-02-05 2024-02-07 0.5 91 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "42" 2024-02-05 2024-02-07 0.55 94 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "42" 2024-02-05 2024-02-07 0.6 95.4 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "42" 2024-02-05 2024-02-07 0.65 99.35 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "42" 2024-02-05 2024-02-07 0.7 104.3 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "42" 2024-02-05 2024-02-07 0.75 109.5 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "42" 2024-02-05 2024-02-07 0.8 114 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "42" 2024-02-05 2024-02-07 0.85 119.15 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "42" 2024-02-05 2024-02-07 0.9 126 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "42" 2024-02-05 2024-02-07 0.95 130.25 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "42" 2024-02-05 2024-02-07 0.975 151.675 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "42" 2024-02-05 2024-02-07 0.99 172.28 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "42" 2024-02-05 2024-02-08 0.01 48.9 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "42" 2024-02-05 2024-02-08 0.025 50.95 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "42" 2024-02-05 2024-02-08 0.05 59.95 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "42" 2024-02-05 2024-02-08 0.1 63.8 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "42" 2024-02-05 2024-02-08 0.15 68 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "42" 2024-02-05 2024-02-08 0.2 70.6 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "42" 2024-02-05 2024-02-08 0.25 74.75 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "42" 2024-02-05 2024-02-08 0.3 79 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "42" 2024-02-05 2024-02-08 0.35 84 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "42" 2024-02-05 2024-02-08 0.4 88 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "42" 2024-02-05 2024-02-08 0.45 89.1 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "42" 2024-02-05 2024-02-08 0.5 93 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "42" 2024-02-05 2024-02-08 0.55 96 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "42" 2024-02-05 2024-02-08 0.6 97 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "42" 2024-02-05 2024-02-08 0.65 100.35 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "42" 2024-02-05 2024-02-08 0.7 107.3 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "42" 2024-02-05 2024-02-08 0.75 111 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "42" 2024-02-05 2024-02-08 0.8 112.2 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "42" 2024-02-05 2024-02-08 0.85 119 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "42" 2024-02-05 2024-02-08 0.9 127.3 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "42" 2024-02-05 2024-02-08 0.95 141.25 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "42" 2024-02-05 2024-02-08 0.975 154.825 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "42" 2024-02-05 2024-02-08 0.99 166.11 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "42" 2024-02-05 2024-02-09 0.01 46.93 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "42" 2024-02-05 2024-02-09 0.025 48.475 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "42" 2024-02-05 2024-02-09 0.05 51.85 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "42" 2024-02-05 2024-02-09 0.1 63.8 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "42" 2024-02-05 2024-02-09 0.15 65.85 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "42" 2024-02-05 2024-02-09 0.2 68.8 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "42" 2024-02-05 2024-02-09 0.25 72 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "42" 2024-02-05 2024-02-09 0.3 73.7 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "42" 2024-02-05 2024-02-09 0.35 75 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "42" 2024-02-05 2024-02-09 0.4 77 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "42" 2024-02-05 2024-02-09 0.45 79.55 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "42" 2024-02-05 2024-02-09 0.5 82.5 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "42" 2024-02-05 2024-02-09 0.55 87 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "42" 2024-02-05 2024-02-09 0.6 91 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "42" 2024-02-05 2024-02-09 0.65 92 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "42" 2024-02-05 2024-02-09 0.7 98 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "42" 2024-02-05 2024-02-09 0.75 103.25 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "42" 2024-02-05 2024-02-09 0.8 105.8 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "42" 2024-02-05 2024-02-09 0.85 113.3 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "42" 2024-02-05 2024-02-09 0.9 118.2 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "42" 2024-02-05 2024-02-09 0.95 126.45 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "42" 2024-02-05 2024-02-09 0.975 144.45 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "42" 2024-02-05 2024-02-09 0.99 176.21 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "42" 2024-02-05 2024-02-10 0.01 32 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "42" 2024-02-05 2024-02-10 0.025 40.475 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "42" 2024-02-05 2024-02-10 0.05 42.95 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "42" 2024-02-05 2024-02-10 0.1 46 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "42" 2024-02-05 2024-02-10 0.15 51 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "42" 2024-02-05 2024-02-10 0.2 55.8 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "42" 2024-02-05 2024-02-10 0.25 58 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "42" 2024-02-05 2024-02-10 0.3 61.4 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "42" 2024-02-05 2024-02-10 0.35 64.65 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "42" 2024-02-05 2024-02-10 0.4 66.6 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "42" 2024-02-05 2024-02-10 0.45 69.55 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "42" 2024-02-05 2024-02-10 0.5 71.5 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "42" 2024-02-05 2024-02-10 0.55 73 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "42" 2024-02-05 2024-02-10 0.6 75 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "42" 2024-02-05 2024-02-10 0.65 78 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "42" 2024-02-05 2024-02-10 0.7 82 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "42" 2024-02-05 2024-02-10 0.75 90.25 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "42" 2024-02-05 2024-02-10 0.8 94.6 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "42" 2024-02-05 2024-02-10 0.85 100.15 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "42" 2024-02-05 2024-02-10 0.9 102.1 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "42" 2024-02-05 2024-02-10 0.95 109.05 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "42" 2024-02-05 2024-02-10 0.975 125.175 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "42" 2024-02-05 2024-02-10 0.99 140 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "42" 2024-02-05 2024-02-11 0.01 37.94 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "42" 2024-02-05 2024-02-11 0.025 40.475 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "42" 2024-02-05 2024-02-11 0.05 42 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "42" 2024-02-05 2024-02-11 0.1 47 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "42" 2024-02-05 2024-02-11 0.15 48 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "42" 2024-02-05 2024-02-11 0.2 52.4 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "42" 2024-02-05 2024-02-11 0.25 55 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "42" 2024-02-05 2024-02-11 0.3 57 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "42" 2024-02-05 2024-02-11 0.35 59.65 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "42" 2024-02-05 2024-02-11 0.4 65.6 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "42" 2024-02-05 2024-02-11 0.45 68 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "42" 2024-02-05 2024-02-11 0.5 70.5 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "42" 2024-02-05 2024-02-11 0.55 75 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "42" 2024-02-05 2024-02-11 0.6 78 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "42" 2024-02-05 2024-02-11 0.65 80.7 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "42" 2024-02-05 2024-02-11 0.7 83.3 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "42" 2024-02-05 2024-02-11 0.75 86.25 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "42" 2024-02-05 2024-02-11 0.8 95.2 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "42" 2024-02-05 2024-02-11 0.85 97.15 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "42" 2024-02-05 2024-02-11 0.9 102.1 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "42" 2024-02-05 2024-02-11 0.95 122.05 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "42" 2024-02-05 2024-02-11 0.975 132.575 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "42" 2024-02-05 2024-02-11 0.99 140.02 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "42" 2024-02-05 2024-02-12 0.01 36.94 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "42" 2024-02-05 2024-02-12 0.025 38.425 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "42" 2024-02-05 2024-02-12 0.05 43 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "42" 2024-02-05 2024-02-12 0.1 49 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "42" 2024-02-05 2024-02-12 0.15 53 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "42" 2024-02-05 2024-02-12 0.2 59 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "42" 2024-02-05 2024-02-12 0.25 61 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "42" 2024-02-05 2024-02-12 0.3 66.7 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "42" 2024-02-05 2024-02-12 0.35 69 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "42" 2024-02-05 2024-02-12 0.4 74 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "42" 2024-02-05 2024-02-12 0.45 76.55 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "42" 2024-02-05 2024-02-12 0.5 79.5 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "42" 2024-02-05 2024-02-12 0.55 84 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "42" 2024-02-05 2024-02-12 0.6 89.4 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "42" 2024-02-05 2024-02-12 0.65 91 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "42" 2024-02-05 2024-02-12 0.7 95 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "42" 2024-02-05 2024-02-12 0.75 99.25 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "42" 2024-02-05 2024-02-12 0.8 103 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "42" 2024-02-05 2024-02-12 0.85 109.05 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "42" 2024-02-05 2024-02-12 0.9 123.1 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "42" 2024-02-05 2024-02-12 0.95 137.1 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "42" 2024-02-05 2024-02-12 0.975 150.575 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "42" 2024-02-05 2024-02-12 0.99 161.32 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "42" 2024-02-05 2024-02-13 0.01 39.96 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "42" 2024-02-05 2024-02-13 0.025 42.9 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "42" 2024-02-05 2024-02-13 0.05 47 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "42" 2024-02-05 2024-02-13 0.1 50.8 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "42" 2024-02-05 2024-02-13 0.15 56 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "42" 2024-02-05 2024-02-13 0.2 59 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "42" 2024-02-05 2024-02-13 0.25 62.75 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "42" 2024-02-05 2024-02-13 0.3 65.7 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "42" 2024-02-05 2024-02-13 0.35 69 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "42" 2024-02-05 2024-02-13 0.4 74.6 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "42" 2024-02-05 2024-02-13 0.45 78.55 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "42" 2024-02-05 2024-02-13 0.5 83.5 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "42" 2024-02-05 2024-02-13 0.55 88.45 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "42" 2024-02-05 2024-02-13 0.6 91 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "42" 2024-02-05 2024-02-13 0.65 94.35 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "42" 2024-02-05 2024-02-13 0.7 99 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "42" 2024-02-05 2024-02-13 0.75 104 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "42" 2024-02-05 2024-02-13 0.8 110 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "42" 2024-02-05 2024-02-13 0.85 116.75 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "42" 2024-02-05 2024-02-13 0.9 130.5 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "42" 2024-02-05 2024-02-13 0.95 144.05 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "42" 2024-02-05 2024-02-13 0.975 154.725 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "42" 2024-02-05 2024-02-13 0.99 163.23 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "42" 2024-02-05 2024-02-14 0.01 31.95 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "42" 2024-02-05 2024-02-14 0.025 36.95 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "42" 2024-02-05 2024-02-14 0.05 39.95 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "42" 2024-02-05 2024-02-14 0.1 48.9 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "42" 2024-02-05 2024-02-14 0.15 52.7 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "42" 2024-02-05 2024-02-14 0.2 54 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "42" 2024-02-05 2024-02-14 0.25 57.75 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "42" 2024-02-05 2024-02-14 0.3 59.7 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "42" 2024-02-05 2024-02-14 0.35 62.65 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "42" 2024-02-05 2024-02-14 0.4 68.6 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "42" 2024-02-05 2024-02-14 0.45 71.55 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "42" 2024-02-05 2024-02-14 0.5 74.5 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "42" 2024-02-05 2024-02-14 0.55 81.9 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "42" 2024-02-05 2024-02-14 0.6 85 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "42" 2024-02-05 2024-02-14 0.65 89 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "42" 2024-02-05 2024-02-14 0.7 94.3 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "42" 2024-02-05 2024-02-14 0.75 100 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "42" 2024-02-05 2024-02-14 0.8 104.4 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "42" 2024-02-05 2024-02-14 0.85 112.15 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "42" 2024-02-05 2024-02-14 0.9 120 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "42" 2024-02-05 2024-02-14 0.95 144 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "42" 2024-02-05 2024-02-14 0.975 153.925 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "42" 2024-02-05 2024-02-14 0.99 164.42 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "42" 2024-02-05 2024-02-15 0.01 33.98 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "42" 2024-02-05 2024-02-15 0.025 35.475 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "42" 2024-02-05 2024-02-15 0.05 39.8 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "42" 2024-02-05 2024-02-15 0.1 43.9 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "42" 2024-02-05 2024-02-15 0.15 46.7 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "42" 2024-02-05 2024-02-15 0.2 52 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "42" 2024-02-05 2024-02-15 0.25 55.75 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "42" 2024-02-05 2024-02-15 0.3 59 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "42" 2024-02-05 2024-02-15 0.35 63.95 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "42" 2024-02-05 2024-02-15 0.4 69 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "42" 2024-02-05 2024-02-15 0.45 71 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "42" 2024-02-05 2024-02-15 0.5 74 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "42" 2024-02-05 2024-02-15 0.55 80.45 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "42" 2024-02-05 2024-02-15 0.6 83 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "42" 2024-02-05 2024-02-15 0.65 86.05 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "42" 2024-02-05 2024-02-15 0.7 91.3 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "42" 2024-02-05 2024-02-15 0.75 98.25 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "42" 2024-02-05 2024-02-15 0.8 102 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "42" 2024-02-05 2024-02-15 0.85 111 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "42" 2024-02-05 2024-02-15 0.9 116.1 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "42" 2024-02-05 2024-02-15 0.95 125.55 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "42" 2024-02-05 2024-02-15 0.975 152.6 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "42" 2024-02-05 2024-02-15 0.99 178.68 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "42" 2024-02-05 2024-02-16 0.01 29.93 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "42" 2024-02-05 2024-02-16 0.025 32 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "42" 2024-02-05 2024-02-16 0.05 33.95 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "42" 2024-02-05 2024-02-16 0.1 39 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "42" 2024-02-05 2024-02-16 0.15 41.85 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "42" 2024-02-05 2024-02-16 0.2 44 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "42" 2024-02-05 2024-02-16 0.25 47.75 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "42" 2024-02-05 2024-02-16 0.3 50.7 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "42" 2024-02-05 2024-02-16 0.35 55.65 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "42" 2024-02-05 2024-02-16 0.4 58 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "42" 2024-02-05 2024-02-16 0.45 63.55 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "42" 2024-02-05 2024-02-16 0.5 67.5 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "42" 2024-02-05 2024-02-16 0.55 72.35 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "42" 2024-02-05 2024-02-16 0.6 78 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "42" 2024-02-05 2024-02-16 0.65 81 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "42" 2024-02-05 2024-02-16 0.7 84.3 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "42" 2024-02-05 2024-02-16 0.75 87.5 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "42" 2024-02-05 2024-02-16 0.8 97 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "42" 2024-02-05 2024-02-16 0.85 103.45 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "42" 2024-02-05 2024-02-16 0.9 110.3 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "42" 2024-02-05 2024-02-16 0.95 125.2 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "42" 2024-02-05 2024-02-16 0.975 147.1 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "42" 2024-02-05 2024-02-16 0.99 169.13 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "42" 2024-02-05 2024-02-17 0.01 22.99 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "42" 2024-02-05 2024-02-17 0.025 25.95 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "42" 2024-02-05 2024-02-17 0.05 32.9 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "42" 2024-02-05 2024-02-17 0.1 37.8 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "42" 2024-02-05 2024-02-17 0.15 39 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "42" 2024-02-05 2024-02-17 0.2 42.6 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "42" 2024-02-05 2024-02-17 0.25 46.75 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "42" 2024-02-05 2024-02-17 0.3 49.7 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "42" 2024-02-05 2024-02-17 0.35 52 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "42" 2024-02-05 2024-02-17 0.4 54 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "42" 2024-02-05 2024-02-17 0.45 57 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "42" 2024-02-05 2024-02-17 0.5 60 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "42" 2024-02-05 2024-02-17 0.55 61.45 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "42" 2024-02-05 2024-02-17 0.6 64 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "42" 2024-02-05 2024-02-17 0.65 67 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "42" 2024-02-05 2024-02-17 0.7 72 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "42" 2024-02-05 2024-02-17 0.75 76.25 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "42" 2024-02-05 2024-02-17 0.8 80 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "42" 2024-02-05 2024-02-17 0.85 88.45 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "42" 2024-02-05 2024-02-17 0.9 106.4 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "42" 2024-02-05 2024-02-17 0.95 124.05 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "42" 2024-02-05 2024-02-17 0.975 133.05 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "42" 2024-02-05 2024-02-17 0.99 142.17 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "42" 2024-02-05 2024-02-18 0.01 19.99 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "42" 2024-02-05 2024-02-18 0.025 25.475 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "42" 2024-02-05 2024-02-18 0.05 27.95 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "42" 2024-02-05 2024-02-18 0.1 31.9 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "42" 2024-02-05 2024-02-18 0.15 35.7 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "42" 2024-02-05 2024-02-18 0.2 40 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "42" 2024-02-05 2024-02-18 0.25 42.75 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "42" 2024-02-05 2024-02-18 0.3 46 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "42" 2024-02-05 2024-02-18 0.35 50 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "42" 2024-02-05 2024-02-18 0.4 54 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "42" 2024-02-05 2024-02-18 0.45 58.55 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "42" 2024-02-05 2024-02-18 0.5 61 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "42" 2024-02-05 2024-02-18 0.55 63 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "42" 2024-02-05 2024-02-18 0.6 66 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "42" 2024-02-05 2024-02-18 0.65 71.35 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "42" 2024-02-05 2024-02-18 0.7 75.6 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "42" 2024-02-05 2024-02-18 0.75 78.25 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "42" 2024-02-05 2024-02-18 0.8 84 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "42" 2024-02-05 2024-02-18 0.85 91 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "42" 2024-02-05 2024-02-18 0.9 95.5 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "42" 2024-02-05 2024-02-18 0.95 107.15 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "42" 2024-02-05 2024-02-18 0.975 124.775 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "42" 2024-02-05 2024-02-18 0.99 170.15 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "42" 2024-02-05 2024-02-19 0.01 21.98 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "42" 2024-02-05 2024-02-19 0.025 23 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "42" 2024-02-05 2024-02-19 0.05 28.9 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "42" 2024-02-05 2024-02-19 0.1 34.9 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "42" 2024-02-05 2024-02-19 0.15 38.85 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "42" 2024-02-05 2024-02-19 0.2 42 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "42" 2024-02-05 2024-02-19 0.25 46.5 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "42" 2024-02-05 2024-02-19 0.3 48 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "42" 2024-02-05 2024-02-19 0.35 51 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "42" 2024-02-05 2024-02-19 0.4 53 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "42" 2024-02-05 2024-02-19 0.45 57 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "42" 2024-02-05 2024-02-19 0.5 63 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "42" 2024-02-05 2024-02-19 0.55 64.45 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "42" 2024-02-05 2024-02-19 0.6 71.8 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "42" 2024-02-05 2024-02-19 0.65 79.7 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "42" 2024-02-05 2024-02-19 0.7 85.6 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "42" 2024-02-05 2024-02-19 0.75 89.25 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "42" 2024-02-05 2024-02-19 0.8 95 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "42" 2024-02-05 2024-02-19 0.85 100.3 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "42" 2024-02-05 2024-02-19 0.9 108.2 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "42" 2024-02-05 2024-02-19 0.95 140.15 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "42" 2024-02-05 2024-02-19 0.975 171.85 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "42" 2024-02-05 2024-02-19 0.99 199.38 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "42" 2024-02-05 2024-02-20 0.01 23.99 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "42" 2024-02-05 2024-02-20 0.025 25.475 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "42" 2024-02-05 2024-02-20 0.05 30.85 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "42" 2024-02-05 2024-02-20 0.1 36.8 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "42" 2024-02-05 2024-02-20 0.15 40.85 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "42" 2024-02-05 2024-02-20 0.2 44.8 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "42" 2024-02-05 2024-02-20 0.25 47.75 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "42" 2024-02-05 2024-02-20 0.3 53.4 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "42" 2024-02-05 2024-02-20 0.35 55.65 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "42" 2024-02-05 2024-02-20 0.4 59 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "42" 2024-02-05 2024-02-20 0.45 64.1 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "42" 2024-02-05 2024-02-20 0.5 70 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "42" 2024-02-05 2024-02-20 0.55 75.45 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "42" 2024-02-05 2024-02-20 0.6 83 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "42" 2024-02-05 2024-02-20 0.65 86 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "42" 2024-02-05 2024-02-20 0.7 89.5000000000001 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "42" 2024-02-05 2024-02-20 0.75 97.25 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "42" 2024-02-05 2024-02-20 0.8 99.4 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "42" 2024-02-05 2024-02-20 0.85 106.05 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "42" 2024-02-05 2024-02-20 0.9 119 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "42" 2024-02-05 2024-02-20 0.95 131.05 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "42" 2024-02-05 2024-02-20 0.975 137.675 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "42" 2024-02-05 2024-02-20 0.99 162.56 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "42" 2024-02-05 2024-02-21 0.01 17.98 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "42" 2024-02-05 2024-02-21 0.025 22.475 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "42" 2024-02-05 2024-02-21 0.05 26.95 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "42" 2024-02-05 2024-02-21 0.1 31 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "42" 2024-02-05 2024-02-21 0.15 35.85 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "42" 2024-02-05 2024-02-21 0.2 38 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "42" 2024-02-05 2024-02-21 0.25 42.75 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "42" 2024-02-05 2024-02-21 0.3 47 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "42" 2024-02-05 2024-02-21 0.35 50.65 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "42" 2024-02-05 2024-02-21 0.4 55 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "42" 2024-02-05 2024-02-21 0.45 60.2 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "42" 2024-02-05 2024-02-21 0.5 63 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "42" 2024-02-05 2024-02-21 0.55 67.45 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "42" 2024-02-05 2024-02-21 0.6 72 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "42" 2024-02-05 2024-02-21 0.65 79 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "42" 2024-02-05 2024-02-21 0.7 81.6 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "42" 2024-02-05 2024-02-21 0.75 87.5 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "42" 2024-02-05 2024-02-21 0.8 98.6 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "42" 2024-02-05 2024-02-21 0.85 110 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "42" 2024-02-05 2024-02-21 0.9 122.1 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "42" 2024-02-05 2024-02-21 0.95 135.05 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "42" 2024-02-05 2024-02-21 0.975 171.45 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "42" 2024-02-05 2024-02-21 0.99 200.18 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "42" 2024-02-05 2024-02-22 0.01 19 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "42" 2024-02-05 2024-02-22 0.025 20 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "42" 2024-02-05 2024-02-22 0.05 25 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "42" 2024-02-05 2024-02-22 0.1 28.9 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "42" 2024-02-05 2024-02-22 0.15 32.85 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "42" 2024-02-05 2024-02-22 0.2 42 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "42" 2024-02-05 2024-02-22 0.25 44.75 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "42" 2024-02-05 2024-02-22 0.3 48.7 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "42" 2024-02-05 2024-02-22 0.35 51.65 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "42" 2024-02-05 2024-02-22 0.4 53 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "42" 2024-02-05 2024-02-22 0.45 57.55 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "42" 2024-02-05 2024-02-22 0.5 60.5 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "42" 2024-02-05 2024-02-22 0.55 65.45 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "42" 2024-02-05 2024-02-22 0.6 69 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "42" 2024-02-05 2024-02-22 0.65 75 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "42" 2024-02-05 2024-02-22 0.7 80.6 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "42" 2024-02-05 2024-02-22 0.75 88.5 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "42" 2024-02-05 2024-02-22 0.8 95.2 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "42" 2024-02-05 2024-02-22 0.85 105.3 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "42" 2024-02-05 2024-02-22 0.9 119.5 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "42" 2024-02-05 2024-02-22 0.95 136.05 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "42" 2024-02-05 2024-02-22 0.975 141.1 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "42" 2024-02-05 2024-02-22 0.99 149.6 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "42" 2024-02-05 2024-02-23 0.01 18.93 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "42" 2024-02-05 2024-02-23 0.025 20.475 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "42" 2024-02-05 2024-02-23 0.05 22 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "42" 2024-02-05 2024-02-23 0.1 25.9 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "42" 2024-02-05 2024-02-23 0.15 30.85 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "42" 2024-02-05 2024-02-23 0.2 35 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "42" 2024-02-05 2024-02-23 0.25 40 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "42" 2024-02-05 2024-02-23 0.3 43 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "42" 2024-02-05 2024-02-23 0.35 47.65 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "42" 2024-02-05 2024-02-23 0.4 51.6 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "42" 2024-02-05 2024-02-23 0.45 54 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "42" 2024-02-05 2024-02-23 0.5 59.5 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "42" 2024-02-05 2024-02-23 0.55 64 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "42" 2024-02-05 2024-02-23 0.6 75 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "42" 2024-02-05 2024-02-23 0.65 77.05 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "42" 2024-02-05 2024-02-23 0.7 81 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "42" 2024-02-05 2024-02-23 0.75 86.0000000000001 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "42" 2024-02-05 2024-02-23 0.8 90.2 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "42" 2024-02-05 2024-02-23 0.85 98.3 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "42" 2024-02-05 2024-02-23 0.9 104.2 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "42" 2024-02-05 2024-02-23 0.95 122.15 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "42" 2024-02-05 2024-02-23 0.975 149.475 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "42" 2024-02-05 2024-02-23 0.99 183.06 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "42" 2024-02-05 2024-02-24 0.01 8.98 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "42" 2024-02-05 2024-02-24 0.025 11.375 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "42" 2024-02-05 2024-02-24 0.05 14.95 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "42" 2024-02-05 2024-02-24 0.1 20 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "42" 2024-02-05 2024-02-24 0.15 26.85 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "42" 2024-02-05 2024-02-24 0.2 30 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "42" 2024-02-05 2024-02-24 0.25 31.75 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "42" 2024-02-05 2024-02-24 0.3 33.7 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "42" 2024-02-05 2024-02-24 0.35 38.65 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "42" 2024-02-05 2024-02-24 0.4 42 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "42" 2024-02-05 2024-02-24 0.45 46.55 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "42" 2024-02-05 2024-02-24 0.5 49 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "42" 2024-02-05 2024-02-24 0.55 53.45 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "42" 2024-02-05 2024-02-24 0.6 60.4 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "42" 2024-02-05 2024-02-24 0.65 63 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "42" 2024-02-05 2024-02-24 0.7 68 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "42" 2024-02-05 2024-02-24 0.75 72 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "42" 2024-02-05 2024-02-24 0.8 75.4 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "42" 2024-02-05 2024-02-24 0.85 84.45 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "42" 2024-02-05 2024-02-24 0.9 101 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "42" 2024-02-05 2024-02-24 0.95 107.1 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "42" 2024-02-05 2024-02-24 0.975 118.05 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "42" 2024-02-05 2024-02-24 0.99 209.01 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "42" 2024-02-05 2024-02-25 0.01 11.94 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "42" 2024-02-05 2024-02-25 0.025 13.95 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "42" 2024-02-05 2024-02-25 0.05 17.95 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "42" 2024-02-05 2024-02-25 0.1 21 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "42" 2024-02-05 2024-02-25 0.15 24.85 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "42" 2024-02-05 2024-02-25 0.2 26 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "42" 2024-02-05 2024-02-25 0.25 28.75 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "42" 2024-02-05 2024-02-25 0.3 35.4 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "42" 2024-02-05 2024-02-25 0.35 38 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "42" 2024-02-05 2024-02-25 0.4 41.6 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "42" 2024-02-05 2024-02-25 0.45 49 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "42" 2024-02-05 2024-02-25 0.5 52 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "42" 2024-02-05 2024-02-25 0.55 55 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "42" 2024-02-05 2024-02-25 0.6 57.4 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "42" 2024-02-05 2024-02-25 0.65 61 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "42" 2024-02-05 2024-02-25 0.7 63 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "42" 2024-02-05 2024-02-25 0.75 71.5 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "42" 2024-02-05 2024-02-25 0.8 81.8 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "42" 2024-02-05 2024-02-25 0.85 94.3 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "42" 2024-02-05 2024-02-25 0.9 104.2 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "42" 2024-02-05 2024-02-25 0.95 139 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "42" 2024-02-05 2024-02-25 0.975 148.4 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "42" 2024-02-05 2024-02-25 0.99 163.3 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "42" 2024-02-05 2024-02-26 0.01 9 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "42" 2024-02-05 2024-02-26 0.025 16.475 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "42" 2024-02-05 2024-02-26 0.05 18 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "42" 2024-02-05 2024-02-26 0.1 25 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "42" 2024-02-05 2024-02-26 0.15 27 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "42" 2024-02-05 2024-02-26 0.2 29 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "42" 2024-02-05 2024-02-26 0.25 32.75 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "42" 2024-02-05 2024-02-26 0.3 35 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "42" 2024-02-05 2024-02-26 0.35 36.65 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "42" 2024-02-05 2024-02-26 0.4 41.2 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "42" 2024-02-05 2024-02-26 0.45 51 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "42" 2024-02-05 2024-02-26 0.5 53.5 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "42" 2024-02-05 2024-02-26 0.55 57.45 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "42" 2024-02-05 2024-02-26 0.6 66 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "42" 2024-02-05 2024-02-26 0.65 69.4 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "42" 2024-02-05 2024-02-26 0.7 75.6 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "42" 2024-02-05 2024-02-26 0.75 82.0000000000001 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "42" 2024-02-05 2024-02-26 0.8 88.2 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "42" 2024-02-05 2024-02-26 0.85 92.9 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "42" 2024-02-05 2024-02-26 0.9 120.5 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "42" 2024-02-05 2024-02-26 0.95 133.55 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "42" 2024-02-05 2024-02-26 0.975 163.925 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "42" 2024-02-05 2024-02-26 0.99 232.39 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "42" 2024-02-05 2024-02-27 0.01 15.93 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "42" 2024-02-05 2024-02-27 0.025 18.475 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "42" 2024-02-05 2024-02-27 0.05 19.95 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "42" 2024-02-05 2024-02-27 0.1 23.9 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "42" 2024-02-05 2024-02-27 0.15 26 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "42" 2024-02-05 2024-02-27 0.2 31.8 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "42" 2024-02-05 2024-02-27 0.25 33.75 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "42" 2024-02-05 2024-02-27 0.3 37.7 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "42" 2024-02-05 2024-02-27 0.35 43.3 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "42" 2024-02-05 2024-02-27 0.4 48 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "42" 2024-02-05 2024-02-27 0.45 53.55 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "42" 2024-02-05 2024-02-27 0.5 58 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "42" 2024-02-05 2024-02-27 0.55 61 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "42" 2024-02-05 2024-02-27 0.6 66.2 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "42" 2024-02-05 2024-02-27 0.65 70 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "42" 2024-02-05 2024-02-27 0.7 75.3 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "42" 2024-02-05 2024-02-27 0.75 86.2500000000001 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "42" 2024-02-05 2024-02-27 0.8 103.4 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "42" 2024-02-05 2024-02-27 0.85 114.05 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "42" 2024-02-05 2024-02-27 0.9 130.1 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "42" 2024-02-05 2024-02-27 0.95 154 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "42" 2024-02-05 2024-02-27 0.975 171.825 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "42" 2024-02-05 2024-02-27 0.99 194.94 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "42" 2024-02-05 2024-02-28 0.01 15.99 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "42" 2024-02-05 2024-02-28 0.025 17.475 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "42" 2024-02-05 2024-02-28 0.05 18.95 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "42" 2024-02-05 2024-02-28 0.1 22.9 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "42" 2024-02-05 2024-02-28 0.15 25 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "42" 2024-02-05 2024-02-28 0.2 28.8 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "42" 2024-02-05 2024-02-28 0.25 32 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "42" 2024-02-05 2024-02-28 0.3 34 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "42" 2024-02-05 2024-02-28 0.35 35.65 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "42" 2024-02-05 2024-02-28 0.4 45 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "42" 2024-02-05 2024-02-28 0.45 50.55 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "42" 2024-02-05 2024-02-28 0.5 56.5 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "42" 2024-02-05 2024-02-28 0.55 61 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "42" 2024-02-05 2024-02-28 0.6 65.4 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "42" 2024-02-05 2024-02-28 0.65 69.35 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "42" 2024-02-05 2024-02-28 0.7 79.6 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "42" 2024-02-05 2024-02-28 0.75 84.25 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "42" 2024-02-05 2024-02-28 0.8 95 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "42" 2024-02-05 2024-02-28 0.85 105.3 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "42" 2024-02-05 2024-02-28 0.9 117.2 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "42" 2024-02-05 2024-02-28 0.95 140.1 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "42" 2024-02-05 2024-02-28 0.975 165.7 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "42" 2024-02-05 2024-02-28 0.99 217.4 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "42" 2024-02-05 2024-02-29 0.01 8 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "42" 2024-02-05 2024-02-29 0.025 10 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "42" 2024-02-05 2024-02-29 0.05 14 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "42" 2024-02-05 2024-02-29 0.1 18.8 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "42" 2024-02-05 2024-02-29 0.15 20 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "42" 2024-02-05 2024-02-29 0.2 25.6 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "42" 2024-02-05 2024-02-29 0.25 29 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "42" 2024-02-05 2024-02-29 0.3 32 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "42" 2024-02-05 2024-02-29 0.35 34.3 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "42" 2024-02-05 2024-02-29 0.4 38 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "42" 2024-02-05 2024-02-29 0.45 41.55 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "42" 2024-02-05 2024-02-29 0.5 48 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "42" 2024-02-05 2024-02-29 0.55 54 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "42" 2024-02-05 2024-02-29 0.6 61.4 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "42" 2024-02-05 2024-02-29 0.65 66.35 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "42" 2024-02-05 2024-02-29 0.7 71.6 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "42" 2024-02-05 2024-02-29 0.75 84.25 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "42" 2024-02-05 2024-02-29 0.8 90.2 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "42" 2024-02-05 2024-02-29 0.85 102.15 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "42" 2024-02-05 2024-02-29 0.9 112.5 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "42" 2024-02-05 2024-02-29 0.95 138.65 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "42" 2024-02-05 2024-02-29 0.975 162.825 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "42" 2024-02-05 2024-02-29 0.99 221.25 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "42" 2024-02-05 2024-03-01 0.01 10.99 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "42" 2024-02-05 2024-03-01 0.025 12.475 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "42" 2024-02-05 2024-03-01 0.05 13.95 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "42" 2024-02-05 2024-03-01 0.1 16.9 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "42" 2024-02-05 2024-03-01 0.15 20 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "42" 2024-02-05 2024-03-01 0.2 22 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "42" 2024-02-05 2024-03-01 0.25 24.75 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "42" 2024-02-05 2024-03-01 0.3 31.7 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "42" 2024-02-05 2024-03-01 0.35 37.3 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "42" 2024-02-05 2024-03-01 0.4 40.6 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "42" 2024-02-05 2024-03-01 0.45 42.55 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "42" 2024-02-05 2024-03-01 0.5 50.5 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "42" 2024-02-05 2024-03-01 0.55 55.45 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "42" 2024-02-05 2024-03-01 0.6 61.4 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "42" 2024-02-05 2024-03-01 0.65 67.7 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "42" 2024-02-05 2024-03-01 0.7 70.3 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "42" 2024-02-05 2024-03-01 0.75 72.75 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "42" 2024-02-05 2024-03-01 0.8 88.2 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "42" 2024-02-05 2024-03-01 0.85 98.15 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "42" 2024-02-05 2024-03-01 0.9 111.3 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "42" 2024-02-05 2024-03-01 0.95 127.1 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "42" 2024-02-05 2024-03-01 0.975 156.85 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "42" 2024-02-05 2024-03-01 0.99 182.56 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "42" 2024-02-05 2024-03-02 0.01 6.98 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "42" 2024-02-05 2024-03-02 0.025 7 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "42" 2024-02-05 2024-03-02 0.05 8.95 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "42" 2024-02-05 2024-03-02 0.1 11 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "42" 2024-02-05 2024-03-02 0.15 16 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "42" 2024-02-05 2024-03-02 0.2 18.8 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "42" 2024-02-05 2024-03-02 0.25 24 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "42" 2024-02-05 2024-03-02 0.3 25 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "42" 2024-02-05 2024-03-02 0.35 31.65 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "42" 2024-02-05 2024-03-02 0.4 35 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "42" 2024-02-05 2024-03-02 0.45 37.55 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "42" 2024-02-05 2024-03-02 0.5 41.5 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "42" 2024-02-05 2024-03-02 0.55 45.45 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "42" 2024-02-05 2024-03-02 0.6 49.4 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "42" 2024-02-05 2024-03-02 0.65 51.35 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "42" 2024-02-05 2024-03-02 0.7 54.3 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "42" 2024-02-05 2024-03-02 0.75 69.5 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "42" 2024-02-05 2024-03-02 0.8 79.4 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "42" 2024-02-05 2024-03-02 0.85 83.45 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "42" 2024-02-05 2024-03-02 0.9 102.4 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "42" 2024-02-05 2024-03-02 0.95 125.1 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "42" 2024-02-05 2024-03-02 0.975 133.725 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "42" 2024-02-05 2024-03-02 0.99 180.16 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "42" 2024-02-05 2024-03-03 0.01 4.99 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "42" 2024-02-05 2024-03-03 0.025 7 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "42" 2024-02-05 2024-03-03 0.05 7.95 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "42" 2024-02-05 2024-03-03 0.1 12 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "42" 2024-02-05 2024-03-03 0.15 14 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "42" 2024-02-05 2024-03-03 0.2 18.8 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "42" 2024-02-05 2024-03-03 0.25 21 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "42" 2024-02-05 2024-03-03 0.3 23 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "42" 2024-02-05 2024-03-03 0.35 29.3 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "42" 2024-02-05 2024-03-03 0.4 31.6 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "42" 2024-02-05 2024-03-03 0.45 36 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "42" 2024-02-05 2024-03-03 0.5 42 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "42" 2024-02-05 2024-03-03 0.55 50.45 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "42" 2024-02-05 2024-03-03 0.6 54.8 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "42" 2024-02-05 2024-03-03 0.65 63 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "42" 2024-02-05 2024-03-03 0.7 66.6 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "42" 2024-02-05 2024-03-03 0.75 72 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "42" 2024-02-05 2024-03-03 0.8 76.2 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "42" 2024-02-05 2024-03-03 0.85 87.3 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "42" 2024-02-05 2024-03-03 0.9 100.2 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "42" 2024-02-05 2024-03-03 0.95 121.3 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "42" 2024-02-05 2024-03-03 0.975 130.1 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "42" 2024-02-05 2024-03-03 0.99 137.41 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "42" 2024-02-05 2024-03-04 0.01 5.96 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "42" 2024-02-05 2024-03-04 0.025 7 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "42" 2024-02-05 2024-03-04 0.05 9 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "42" 2024-02-05 2024-03-04 0.1 15.9 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "42" 2024-02-05 2024-03-04 0.15 18 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "42" 2024-02-05 2024-03-04 0.2 19.8 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "42" 2024-02-05 2024-03-04 0.25 22 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "42" 2024-02-05 2024-03-04 0.3 27.7 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "42" 2024-02-05 2024-03-04 0.35 33.65 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "42" 2024-02-05 2024-03-04 0.4 36 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "42" 2024-02-05 2024-03-04 0.45 41 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "42" 2024-02-05 2024-03-04 0.5 47 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "42" 2024-02-05 2024-03-04 0.55 55 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "42" 2024-02-05 2024-03-04 0.6 58 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "42" 2024-02-05 2024-03-04 0.65 64.05 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "42" 2024-02-05 2024-03-04 0.7 74.3 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "42" 2024-02-05 2024-03-04 0.75 80 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "42" 2024-02-05 2024-03-04 0.8 91.2 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "42" 2024-02-05 2024-03-04 0.85 96 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "42" 2024-02-05 2024-03-04 0.9 105.1 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "42" 2024-02-05 2024-03-04 0.95 142.05 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "42" 2024-02-05 2024-03-04 0.975 154.775 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "42" 2024-02-05 2024-03-04 0.99 191.39 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "72" 2024-02-05 2024-02-06 0.01 21.97 "quantile" "hospital admissions only" +"1 day ahead inc hosp" "72" 2024-02-05 2024-02-06 0.025 22.95 "quantile" "hospital admissions only" +"1 day ahead inc hosp" "72" 2024-02-05 2024-02-06 0.05 26 "quantile" "hospital admissions only" +"1 day ahead inc hosp" "72" 2024-02-05 2024-02-06 0.1 28.9 "quantile" "hospital admissions only" +"1 day ahead inc hosp" "72" 2024-02-05 2024-02-06 0.15 30.85 "quantile" "hospital admissions only" +"1 day ahead inc hosp" "72" 2024-02-05 2024-02-06 0.2 31.8 "quantile" "hospital admissions only" +"1 day ahead inc hosp" "72" 2024-02-05 2024-02-06 0.25 33.75 "quantile" "hospital admissions only" +"1 day ahead inc hosp" "72" 2024-02-05 2024-02-06 0.3 35 "quantile" "hospital admissions only" +"1 day ahead inc hosp" "72" 2024-02-05 2024-02-06 0.35 36 "quantile" "hospital admissions only" +"1 day ahead inc hosp" "72" 2024-02-05 2024-02-06 0.4 38.6 "quantile" "hospital admissions only" +"1 day ahead inc hosp" "72" 2024-02-05 2024-02-06 0.45 40 "quantile" "hospital admissions only" +"1 day ahead inc hosp" "72" 2024-02-05 2024-02-06 0.5 41 "quantile" "hospital admissions only" +"1 day ahead inc hosp" "72" 2024-02-05 2024-02-06 0.55 43.9 "quantile" "hospital admissions only" +"1 day ahead inc hosp" "72" 2024-02-05 2024-02-06 0.6 46 "quantile" "hospital admissions only" +"1 day ahead inc hosp" "72" 2024-02-05 2024-02-06 0.65 47 "quantile" "hospital admissions only" +"1 day ahead inc hosp" "72" 2024-02-05 2024-02-06 0.7 49.3 "quantile" "hospital admissions only" +"1 day ahead inc hosp" "72" 2024-02-05 2024-02-06 0.75 51 "quantile" "hospital admissions only" +"1 day ahead inc hosp" "72" 2024-02-05 2024-02-06 0.8 53 "quantile" "hospital admissions only" +"1 day ahead inc hosp" "72" 2024-02-05 2024-02-06 0.85 53.15 "quantile" "hospital admissions only" +"1 day ahead inc hosp" "72" 2024-02-05 2024-02-06 0.9 57 "quantile" "hospital admissions only" +"1 day ahead inc hosp" "72" 2024-02-05 2024-02-06 0.95 60.15 "quantile" "hospital admissions only" +"1 day ahead inc hosp" "72" 2024-02-05 2024-02-06 0.975 64 "quantile" "hospital admissions only" +"1 day ahead inc hosp" "72" 2024-02-05 2024-02-06 0.99 66.02 "quantile" "hospital admissions only" +"2 day ahead inc hosp" "72" 2024-02-05 2024-02-07 0.01 17 "quantile" "hospital admissions only" +"2 day ahead inc hosp" "72" 2024-02-05 2024-02-07 0.025 20 "quantile" "hospital admissions only" +"2 day ahead inc hosp" "72" 2024-02-05 2024-02-07 0.05 23.9 "quantile" "hospital admissions only" +"2 day ahead inc hosp" "72" 2024-02-05 2024-02-07 0.1 26 "quantile" "hospital admissions only" +"2 day ahead inc hosp" "72" 2024-02-05 2024-02-07 0.15 28 "quantile" "hospital admissions only" +"2 day ahead inc hosp" "72" 2024-02-05 2024-02-07 0.2 30.6 "quantile" "hospital admissions only" +"2 day ahead inc hosp" "72" 2024-02-05 2024-02-07 0.25 32 "quantile" "hospital admissions only" +"2 day ahead inc hosp" "72" 2024-02-05 2024-02-07 0.3 34 "quantile" "hospital admissions only" +"2 day ahead inc hosp" "72" 2024-02-05 2024-02-07 0.35 35 "quantile" "hospital admissions only" +"2 day ahead inc hosp" "72" 2024-02-05 2024-02-07 0.4 36 "quantile" "hospital admissions only" +"2 day ahead inc hosp" "72" 2024-02-05 2024-02-07 0.45 36 "quantile" "hospital admissions only" +"2 day ahead inc hosp" "72" 2024-02-05 2024-02-07 0.5 37 "quantile" "hospital admissions only" +"2 day ahead inc hosp" "72" 2024-02-05 2024-02-07 0.55 38 "quantile" "hospital admissions only" +"2 day ahead inc hosp" "72" 2024-02-05 2024-02-07 0.6 39 "quantile" "hospital admissions only" +"2 day ahead inc hosp" "72" 2024-02-05 2024-02-07 0.65 40.35 "quantile" "hospital admissions only" +"2 day ahead inc hosp" "72" 2024-02-05 2024-02-07 0.7 42 "quantile" "hospital admissions only" +"2 day ahead inc hosp" "72" 2024-02-05 2024-02-07 0.75 46 "quantile" "hospital admissions only" +"2 day ahead inc hosp" "72" 2024-02-05 2024-02-07 0.8 47 "quantile" "hospital admissions only" +"2 day ahead inc hosp" "72" 2024-02-05 2024-02-07 0.85 50.3 "quantile" "hospital admissions only" +"2 day ahead inc hosp" "72" 2024-02-05 2024-02-07 0.9 53.1 "quantile" "hospital admissions only" +"2 day ahead inc hosp" "72" 2024-02-05 2024-02-07 0.95 56.1 "quantile" "hospital admissions only" +"2 day ahead inc hosp" "72" 2024-02-05 2024-02-07 0.975 65.525 "quantile" "hospital admissions only" +"2 day ahead inc hosp" "72" 2024-02-05 2024-02-07 0.99 70.06 "quantile" "hospital admissions only" +"3 day ahead inc hosp" "72" 2024-02-05 2024-02-08 0.01 19.95 "quantile" "hospital admissions only" +"3 day ahead inc hosp" "72" 2024-02-05 2024-02-08 0.025 21.475 "quantile" "hospital admissions only" +"3 day ahead inc hosp" "72" 2024-02-05 2024-02-08 0.05 24 "quantile" "hospital admissions only" +"3 day ahead inc hosp" "72" 2024-02-05 2024-02-08 0.1 26.8 "quantile" "hospital admissions only" +"3 day ahead inc hosp" "72" 2024-02-05 2024-02-08 0.15 30.55 "quantile" "hospital admissions only" +"3 day ahead inc hosp" "72" 2024-02-05 2024-02-08 0.2 31.8 "quantile" "hospital admissions only" +"3 day ahead inc hosp" "72" 2024-02-05 2024-02-08 0.25 33 "quantile" "hospital admissions only" +"3 day ahead inc hosp" "72" 2024-02-05 2024-02-08 0.3 34 "quantile" "hospital admissions only" +"3 day ahead inc hosp" "72" 2024-02-05 2024-02-08 0.35 35.65 "quantile" "hospital admissions only" +"3 day ahead inc hosp" "72" 2024-02-05 2024-02-08 0.4 36 "quantile" "hospital admissions only" +"3 day ahead inc hosp" "72" 2024-02-05 2024-02-08 0.45 37.55 "quantile" "hospital admissions only" +"3 day ahead inc hosp" "72" 2024-02-05 2024-02-08 0.5 39 "quantile" "hospital admissions only" +"3 day ahead inc hosp" "72" 2024-02-05 2024-02-08 0.55 40 "quantile" "hospital admissions only" +"3 day ahead inc hosp" "72" 2024-02-05 2024-02-08 0.6 41.4 "quantile" "hospital admissions only" +"3 day ahead inc hosp" "72" 2024-02-05 2024-02-08 0.65 44 "quantile" "hospital admissions only" +"3 day ahead inc hosp" "72" 2024-02-05 2024-02-08 0.7 45 "quantile" "hospital admissions only" +"3 day ahead inc hosp" "72" 2024-02-05 2024-02-08 0.75 46 "quantile" "hospital admissions only" +"3 day ahead inc hosp" "72" 2024-02-05 2024-02-08 0.8 48 "quantile" "hospital admissions only" +"3 day ahead inc hosp" "72" 2024-02-05 2024-02-08 0.85 52 "quantile" "hospital admissions only" +"3 day ahead inc hosp" "72" 2024-02-05 2024-02-08 0.9 55.1 "quantile" "hospital admissions only" +"3 day ahead inc hosp" "72" 2024-02-05 2024-02-08 0.95 59.05 "quantile" "hospital admissions only" +"3 day ahead inc hosp" "72" 2024-02-05 2024-02-08 0.975 62.05 "quantile" "hospital admissions only" +"3 day ahead inc hosp" "72" 2024-02-05 2024-02-08 0.99 63.07 "quantile" "hospital admissions only" +"4 day ahead inc hosp" "72" 2024-02-05 2024-02-09 0.01 16.92 "quantile" "hospital admissions only" +"4 day ahead inc hosp" "72" 2024-02-05 2024-02-09 0.025 20 "quantile" "hospital admissions only" +"4 day ahead inc hosp" "72" 2024-02-05 2024-02-09 0.05 21.95 "quantile" "hospital admissions only" +"4 day ahead inc hosp" "72" 2024-02-05 2024-02-09 0.1 25.7 "quantile" "hospital admissions only" +"4 day ahead inc hosp" "72" 2024-02-05 2024-02-09 0.15 28 "quantile" "hospital admissions only" +"4 day ahead inc hosp" "72" 2024-02-05 2024-02-09 0.2 30 "quantile" "hospital admissions only" +"4 day ahead inc hosp" "72" 2024-02-05 2024-02-09 0.25 32 "quantile" "hospital admissions only" +"4 day ahead inc hosp" "72" 2024-02-05 2024-02-09 0.3 34 "quantile" "hospital admissions only" +"4 day ahead inc hosp" "72" 2024-02-05 2024-02-09 0.35 35 "quantile" "hospital admissions only" +"4 day ahead inc hosp" "72" 2024-02-05 2024-02-09 0.4 36 "quantile" "hospital admissions only" +"4 day ahead inc hosp" "72" 2024-02-05 2024-02-09 0.45 37 "quantile" "hospital admissions only" +"4 day ahead inc hosp" "72" 2024-02-05 2024-02-09 0.5 38.5 "quantile" "hospital admissions only" +"4 day ahead inc hosp" "72" 2024-02-05 2024-02-09 0.55 39.45 "quantile" "hospital admissions only" +"4 day ahead inc hosp" "72" 2024-02-05 2024-02-09 0.6 41 "quantile" "hospital admissions only" +"4 day ahead inc hosp" "72" 2024-02-05 2024-02-09 0.65 42.35 "quantile" "hospital admissions only" +"4 day ahead inc hosp" "72" 2024-02-05 2024-02-09 0.7 44 "quantile" "hospital admissions only" +"4 day ahead inc hosp" "72" 2024-02-05 2024-02-09 0.75 45.25 "quantile" "hospital admissions only" +"4 day ahead inc hosp" "72" 2024-02-05 2024-02-09 0.8 47 "quantile" "hospital admissions only" +"4 day ahead inc hosp" "72" 2024-02-05 2024-02-09 0.85 50 "quantile" "hospital admissions only" +"4 day ahead inc hosp" "72" 2024-02-05 2024-02-09 0.9 54.1 "quantile" "hospital admissions only" +"4 day ahead inc hosp" "72" 2024-02-05 2024-02-09 0.95 58.1 "quantile" "hospital admissions only" +"4 day ahead inc hosp" "72" 2024-02-05 2024-02-09 0.975 60.525 "quantile" "hospital admissions only" +"4 day ahead inc hosp" "72" 2024-02-05 2024-02-09 0.99 64 "quantile" "hospital admissions only" +"5 day ahead inc hosp" "72" 2024-02-05 2024-02-10 0.01 17.91 "quantile" "hospital admissions only" +"5 day ahead inc hosp" "72" 2024-02-05 2024-02-10 0.025 18 "quantile" "hospital admissions only" +"5 day ahead inc hosp" "72" 2024-02-05 2024-02-10 0.05 19.95 "quantile" "hospital admissions only" +"5 day ahead inc hosp" "72" 2024-02-05 2024-02-10 0.1 20.9 "quantile" "hospital admissions only" +"5 day ahead inc hosp" "72" 2024-02-05 2024-02-10 0.15 23 "quantile" "hospital admissions only" +"5 day ahead inc hosp" "72" 2024-02-05 2024-02-10 0.2 24.8 "quantile" "hospital admissions only" +"5 day ahead inc hosp" "72" 2024-02-05 2024-02-10 0.25 26 "quantile" "hospital admissions only" +"5 day ahead inc hosp" "72" 2024-02-05 2024-02-10 0.3 27.7 "quantile" "hospital admissions only" +"5 day ahead inc hosp" "72" 2024-02-05 2024-02-10 0.35 29 "quantile" "hospital admissions only" +"5 day ahead inc hosp" "72" 2024-02-05 2024-02-10 0.4 30 "quantile" "hospital admissions only" +"5 day ahead inc hosp" "72" 2024-02-05 2024-02-10 0.45 30 "quantile" "hospital admissions only" +"5 day ahead inc hosp" "72" 2024-02-05 2024-02-10 0.5 31 "quantile" "hospital admissions only" +"5 day ahead inc hosp" "72" 2024-02-05 2024-02-10 0.55 33 "quantile" "hospital admissions only" +"5 day ahead inc hosp" "72" 2024-02-05 2024-02-10 0.6 34 "quantile" "hospital admissions only" +"5 day ahead inc hosp" "72" 2024-02-05 2024-02-10 0.65 36 "quantile" "hospital admissions only" +"5 day ahead inc hosp" "72" 2024-02-05 2024-02-10 0.7 38.3 "quantile" "hospital admissions only" +"5 day ahead inc hosp" "72" 2024-02-05 2024-02-10 0.75 39.25 "quantile" "hospital admissions only" +"5 day ahead inc hosp" "72" 2024-02-05 2024-02-10 0.8 41.2 "quantile" "hospital admissions only" +"5 day ahead inc hosp" "72" 2024-02-05 2024-02-10 0.85 44 "quantile" "hospital admissions only" +"5 day ahead inc hosp" "72" 2024-02-05 2024-02-10 0.9 45.1 "quantile" "hospital admissions only" +"5 day ahead inc hosp" "72" 2024-02-05 2024-02-10 0.95 49.05 "quantile" "hospital admissions only" +"5 day ahead inc hosp" "72" 2024-02-05 2024-02-10 0.975 51.05 "quantile" "hospital admissions only" +"5 day ahead inc hosp" "72" 2024-02-05 2024-02-10 0.99 56.05 "quantile" "hospital admissions only" +"6 day ahead inc hosp" "72" 2024-02-05 2024-02-11 0.01 12.97 "quantile" "hospital admissions only" +"6 day ahead inc hosp" "72" 2024-02-05 2024-02-11 0.025 13.475 "quantile" "hospital admissions only" +"6 day ahead inc hosp" "72" 2024-02-05 2024-02-11 0.05 14 "quantile" "hospital admissions only" +"6 day ahead inc hosp" "72" 2024-02-05 2024-02-11 0.1 17.9 "quantile" "hospital admissions only" +"6 day ahead inc hosp" "72" 2024-02-05 2024-02-11 0.15 19 "quantile" "hospital admissions only" +"6 day ahead inc hosp" "72" 2024-02-05 2024-02-11 0.2 21 "quantile" "hospital admissions only" +"6 day ahead inc hosp" "72" 2024-02-05 2024-02-11 0.25 23 "quantile" "hospital admissions only" +"6 day ahead inc hosp" "72" 2024-02-05 2024-02-11 0.3 23.7 "quantile" "hospital admissions only" +"6 day ahead inc hosp" "72" 2024-02-05 2024-02-11 0.35 25.65 "quantile" "hospital admissions only" +"6 day ahead inc hosp" "72" 2024-02-05 2024-02-11 0.4 27 "quantile" "hospital admissions only" +"6 day ahead inc hosp" "72" 2024-02-05 2024-02-11 0.45 27 "quantile" "hospital admissions only" +"6 day ahead inc hosp" "72" 2024-02-05 2024-02-11 0.5 28.5 "quantile" "hospital admissions only" +"6 day ahead inc hosp" "72" 2024-02-05 2024-02-11 0.55 29.45 "quantile" "hospital admissions only" +"6 day ahead inc hosp" "72" 2024-02-05 2024-02-11 0.6 30 "quantile" "hospital admissions only" +"6 day ahead inc hosp" "72" 2024-02-05 2024-02-11 0.65 31 "quantile" "hospital admissions only" +"6 day ahead inc hosp" "72" 2024-02-05 2024-02-11 0.7 33 "quantile" "hospital admissions only" +"6 day ahead inc hosp" "72" 2024-02-05 2024-02-11 0.75 35 "quantile" "hospital admissions only" +"6 day ahead inc hosp" "72" 2024-02-05 2024-02-11 0.8 36 "quantile" "hospital admissions only" +"6 day ahead inc hosp" "72" 2024-02-05 2024-02-11 0.85 36 "quantile" "hospital admissions only" +"6 day ahead inc hosp" "72" 2024-02-05 2024-02-11 0.9 40 "quantile" "hospital admissions only" +"6 day ahead inc hosp" "72" 2024-02-05 2024-02-11 0.95 45 "quantile" "hospital admissions only" +"6 day ahead inc hosp" "72" 2024-02-05 2024-02-11 0.975 46 "quantile" "hospital admissions only" +"6 day ahead inc hosp" "72" 2024-02-05 2024-02-11 0.99 47.06 "quantile" "hospital admissions only" +"7 day ahead inc hosp" "72" 2024-02-05 2024-02-12 0.01 18.96 "quantile" "hospital admissions only" +"7 day ahead inc hosp" "72" 2024-02-05 2024-02-12 0.025 20.425 "quantile" "hospital admissions only" +"7 day ahead inc hosp" "72" 2024-02-05 2024-02-12 0.05 23.95 "quantile" "hospital admissions only" +"7 day ahead inc hosp" "72" 2024-02-05 2024-02-12 0.1 27.9 "quantile" "hospital admissions only" +"7 day ahead inc hosp" "72" 2024-02-05 2024-02-12 0.15 30 "quantile" "hospital admissions only" +"7 day ahead inc hosp" "72" 2024-02-05 2024-02-12 0.2 31 "quantile" "hospital admissions only" +"7 day ahead inc hosp" "72" 2024-02-05 2024-02-12 0.25 33 "quantile" "hospital admissions only" +"7 day ahead inc hosp" "72" 2024-02-05 2024-02-12 0.3 34.7 "quantile" "hospital admissions only" +"7 day ahead inc hosp" "72" 2024-02-05 2024-02-12 0.35 37 "quantile" "hospital admissions only" +"7 day ahead inc hosp" "72" 2024-02-05 2024-02-12 0.4 37.6 "quantile" "hospital admissions only" +"7 day ahead inc hosp" "72" 2024-02-05 2024-02-12 0.45 39 "quantile" "hospital admissions only" +"7 day ahead inc hosp" "72" 2024-02-05 2024-02-12 0.5 40.5 "quantile" "hospital admissions only" +"7 day ahead inc hosp" "72" 2024-02-05 2024-02-12 0.55 42 "quantile" "hospital admissions only" +"7 day ahead inc hosp" "72" 2024-02-05 2024-02-12 0.6 44 "quantile" "hospital admissions only" +"7 day ahead inc hosp" "72" 2024-02-05 2024-02-12 0.65 46 "quantile" "hospital admissions only" +"7 day ahead inc hosp" "72" 2024-02-05 2024-02-12 0.7 48.3 "quantile" "hospital admissions only" +"7 day ahead inc hosp" "72" 2024-02-05 2024-02-12 0.75 51 "quantile" "hospital admissions only" +"7 day ahead inc hosp" "72" 2024-02-05 2024-02-12 0.8 54 "quantile" "hospital admissions only" +"7 day ahead inc hosp" "72" 2024-02-05 2024-02-12 0.85 58.15 "quantile" "hospital admissions only" +"7 day ahead inc hosp" "72" 2024-02-05 2024-02-12 0.9 63.3 "quantile" "hospital admissions only" +"7 day ahead inc hosp" "72" 2024-02-05 2024-02-12 0.95 72.05 "quantile" "hospital admissions only" +"7 day ahead inc hosp" "72" 2024-02-05 2024-02-12 0.975 75 "quantile" "hospital admissions only" +"7 day ahead inc hosp" "72" 2024-02-05 2024-02-12 0.99 81.01 "quantile" "hospital admissions only" +"8 day ahead inc hosp" "72" 2024-02-05 2024-02-13 0.01 16.98 "quantile" "hospital admissions only" +"8 day ahead inc hosp" "72" 2024-02-05 2024-02-13 0.025 21.425 "quantile" "hospital admissions only" +"8 day ahead inc hosp" "72" 2024-02-05 2024-02-13 0.05 24.95 "quantile" "hospital admissions only" +"8 day ahead inc hosp" "72" 2024-02-05 2024-02-13 0.1 27.9 "quantile" "hospital admissions only" +"8 day ahead inc hosp" "72" 2024-02-05 2024-02-13 0.15 30.7 "quantile" "hospital admissions only" +"8 day ahead inc hosp" "72" 2024-02-05 2024-02-13 0.2 33.8 "quantile" "hospital admissions only" +"8 day ahead inc hosp" "72" 2024-02-05 2024-02-13 0.25 35.75 "quantile" "hospital admissions only" +"8 day ahead inc hosp" "72" 2024-02-05 2024-02-13 0.3 37.7 "quantile" "hospital admissions only" +"8 day ahead inc hosp" "72" 2024-02-05 2024-02-13 0.35 39.65 "quantile" "hospital admissions only" +"8 day ahead inc hosp" "72" 2024-02-05 2024-02-13 0.4 41 "quantile" "hospital admissions only" +"8 day ahead inc hosp" "72" 2024-02-05 2024-02-13 0.45 42 "quantile" "hospital admissions only" +"8 day ahead inc hosp" "72" 2024-02-05 2024-02-13 0.5 45.5 "quantile" "hospital admissions only" +"8 day ahead inc hosp" "72" 2024-02-05 2024-02-13 0.55 47 "quantile" "hospital admissions only" +"8 day ahead inc hosp" "72" 2024-02-05 2024-02-13 0.6 48 "quantile" "hospital admissions only" +"8 day ahead inc hosp" "72" 2024-02-05 2024-02-13 0.65 50 "quantile" "hospital admissions only" +"8 day ahead inc hosp" "72" 2024-02-05 2024-02-13 0.7 52 "quantile" "hospital admissions only" +"8 day ahead inc hosp" "72" 2024-02-05 2024-02-13 0.75 53 "quantile" "hospital admissions only" +"8 day ahead inc hosp" "72" 2024-02-05 2024-02-13 0.8 56.2 "quantile" "hospital admissions only" +"8 day ahead inc hosp" "72" 2024-02-05 2024-02-13 0.85 58 "quantile" "hospital admissions only" +"8 day ahead inc hosp" "72" 2024-02-05 2024-02-13 0.9 64.1 "quantile" "hospital admissions only" +"8 day ahead inc hosp" "72" 2024-02-05 2024-02-13 0.95 67.1 "quantile" "hospital admissions only" +"8 day ahead inc hosp" "72" 2024-02-05 2024-02-13 0.975 74.7749999999999 "quantile" "hospital admissions only" +"8 day ahead inc hosp" "72" 2024-02-05 2024-02-13 0.99 86.1500000000001 "quantile" "hospital admissions only" +"9 day ahead inc hosp" "72" 2024-02-05 2024-02-14 0.01 17.94 "quantile" "hospital admissions only" +"9 day ahead inc hosp" "72" 2024-02-05 2024-02-14 0.025 20 "quantile" "hospital admissions only" +"9 day ahead inc hosp" "72" 2024-02-05 2024-02-14 0.05 21 "quantile" "hospital admissions only" +"9 day ahead inc hosp" "72" 2024-02-05 2024-02-14 0.1 24.8 "quantile" "hospital admissions only" +"9 day ahead inc hosp" "72" 2024-02-05 2024-02-14 0.15 27 "quantile" "hospital admissions only" +"9 day ahead inc hosp" "72" 2024-02-05 2024-02-14 0.2 29 "quantile" "hospital admissions only" +"9 day ahead inc hosp" "72" 2024-02-05 2024-02-14 0.25 30 "quantile" "hospital admissions only" +"9 day ahead inc hosp" "72" 2024-02-05 2024-02-14 0.3 32 "quantile" "hospital admissions only" +"9 day ahead inc hosp" "72" 2024-02-05 2024-02-14 0.35 33 "quantile" "hospital admissions only" +"9 day ahead inc hosp" "72" 2024-02-05 2024-02-14 0.4 34.6 "quantile" "hospital admissions only" +"9 day ahead inc hosp" "72" 2024-02-05 2024-02-14 0.45 36 "quantile" "hospital admissions only" +"9 day ahead inc hosp" "72" 2024-02-05 2024-02-14 0.5 38 "quantile" "hospital admissions only" +"9 day ahead inc hosp" "72" 2024-02-05 2024-02-14 0.55 39.45 "quantile" "hospital admissions only" +"9 day ahead inc hosp" "72" 2024-02-05 2024-02-14 0.6 41 "quantile" "hospital admissions only" +"9 day ahead inc hosp" "72" 2024-02-05 2024-02-14 0.65 43 "quantile" "hospital admissions only" +"9 day ahead inc hosp" "72" 2024-02-05 2024-02-14 0.7 43.3 "quantile" "hospital admissions only" +"9 day ahead inc hosp" "72" 2024-02-05 2024-02-14 0.75 45 "quantile" "hospital admissions only" +"9 day ahead inc hosp" "72" 2024-02-05 2024-02-14 0.8 46.4 "quantile" "hospital admissions only" +"9 day ahead inc hosp" "72" 2024-02-05 2024-02-14 0.85 49.3 "quantile" "hospital admissions only" +"9 day ahead inc hosp" "72" 2024-02-05 2024-02-14 0.9 53.1 "quantile" "hospital admissions only" +"9 day ahead inc hosp" "72" 2024-02-05 2024-02-14 0.95 57.05 "quantile" "hospital admissions only" +"9 day ahead inc hosp" "72" 2024-02-05 2024-02-14 0.975 60.1 "quantile" "hospital admissions only" +"9 day ahead inc hosp" "72" 2024-02-05 2024-02-14 0.99 63.05 "quantile" "hospital admissions only" +"10 day ahead inc hosp" "72" 2024-02-05 2024-02-15 0.01 18.93 "quantile" "hospital admissions only" +"10 day ahead inc hosp" "72" 2024-02-05 2024-02-15 0.025 20.475 "quantile" "hospital admissions only" +"10 day ahead inc hosp" "72" 2024-02-05 2024-02-15 0.05 22 "quantile" "hospital admissions only" +"10 day ahead inc hosp" "72" 2024-02-05 2024-02-15 0.1 29 "quantile" "hospital admissions only" +"10 day ahead inc hosp" "72" 2024-02-05 2024-02-15 0.15 30.85 "quantile" "hospital admissions only" +"10 day ahead inc hosp" "72" 2024-02-05 2024-02-15 0.2 34 "quantile" "hospital admissions only" +"10 day ahead inc hosp" "72" 2024-02-05 2024-02-15 0.25 37 "quantile" "hospital admissions only" +"10 day ahead inc hosp" "72" 2024-02-05 2024-02-15 0.3 40 "quantile" "hospital admissions only" +"10 day ahead inc hosp" "72" 2024-02-05 2024-02-15 0.35 40 "quantile" "hospital admissions only" +"10 day ahead inc hosp" "72" 2024-02-05 2024-02-15 0.4 42 "quantile" "hospital admissions only" +"10 day ahead inc hosp" "72" 2024-02-05 2024-02-15 0.45 44 "quantile" "hospital admissions only" +"10 day ahead inc hosp" "72" 2024-02-05 2024-02-15 0.5 44 "quantile" "hospital admissions only" +"10 day ahead inc hosp" "72" 2024-02-05 2024-02-15 0.55 45 "quantile" "hospital admissions only" +"10 day ahead inc hosp" "72" 2024-02-05 2024-02-15 0.6 47 "quantile" "hospital admissions only" +"10 day ahead inc hosp" "72" 2024-02-05 2024-02-15 0.65 49 "quantile" "hospital admissions only" +"10 day ahead inc hosp" "72" 2024-02-05 2024-02-15 0.7 51 "quantile" "hospital admissions only" +"10 day ahead inc hosp" "72" 2024-02-05 2024-02-15 0.75 52.25 "quantile" "hospital admissions only" +"10 day ahead inc hosp" "72" 2024-02-05 2024-02-15 0.8 55 "quantile" "hospital admissions only" +"10 day ahead inc hosp" "72" 2024-02-05 2024-02-15 0.85 56.15 "quantile" "hospital admissions only" +"10 day ahead inc hosp" "72" 2024-02-05 2024-02-15 0.9 59.1 "quantile" "hospital admissions only" +"10 day ahead inc hosp" "72" 2024-02-05 2024-02-15 0.95 67.05 "quantile" "hospital admissions only" +"10 day ahead inc hosp" "72" 2024-02-05 2024-02-15 0.975 71.575 "quantile" "hospital admissions only" +"10 day ahead inc hosp" "72" 2024-02-05 2024-02-15 0.99 74.02 "quantile" "hospital admissions only" +"11 day ahead inc hosp" "72" 2024-02-05 2024-02-16 0.01 19 "quantile" "hospital admissions only" +"11 day ahead inc hosp" "72" 2024-02-05 2024-02-16 0.025 19.95 "quantile" "hospital admissions only" +"11 day ahead inc hosp" "72" 2024-02-05 2024-02-16 0.05 22 "quantile" "hospital admissions only" +"11 day ahead inc hosp" "72" 2024-02-05 2024-02-16 0.1 24 "quantile" "hospital admissions only" +"11 day ahead inc hosp" "72" 2024-02-05 2024-02-16 0.15 28.85 "quantile" "hospital admissions only" +"11 day ahead inc hosp" "72" 2024-02-05 2024-02-16 0.2 29.8 "quantile" "hospital admissions only" +"11 day ahead inc hosp" "72" 2024-02-05 2024-02-16 0.25 31 "quantile" "hospital admissions only" +"11 day ahead inc hosp" "72" 2024-02-05 2024-02-16 0.3 32 "quantile" "hospital admissions only" +"11 day ahead inc hosp" "72" 2024-02-05 2024-02-16 0.35 34 "quantile" "hospital admissions only" +"11 day ahead inc hosp" "72" 2024-02-05 2024-02-16 0.4 34.6 "quantile" "hospital admissions only" +"11 day ahead inc hosp" "72" 2024-02-05 2024-02-16 0.45 35 "quantile" "hospital admissions only" +"11 day ahead inc hosp" "72" 2024-02-05 2024-02-16 0.5 37.5 "quantile" "hospital admissions only" +"11 day ahead inc hosp" "72" 2024-02-05 2024-02-16 0.55 38.45 "quantile" "hospital admissions only" +"11 day ahead inc hosp" "72" 2024-02-05 2024-02-16 0.6 40 "quantile" "hospital admissions only" +"11 day ahead inc hosp" "72" 2024-02-05 2024-02-16 0.65 42 "quantile" "hospital admissions only" +"11 day ahead inc hosp" "72" 2024-02-05 2024-02-16 0.7 43.3 "quantile" "hospital admissions only" +"11 day ahead inc hosp" "72" 2024-02-05 2024-02-16 0.75 48.25 "quantile" "hospital admissions only" +"11 day ahead inc hosp" "72" 2024-02-05 2024-02-16 0.8 51.2 "quantile" "hospital admissions only" +"11 day ahead inc hosp" "72" 2024-02-05 2024-02-16 0.85 54.15 "quantile" "hospital admissions only" +"11 day ahead inc hosp" "72" 2024-02-05 2024-02-16 0.9 56.1 "quantile" "hospital admissions only" +"11 day ahead inc hosp" "72" 2024-02-05 2024-02-16 0.95 59.1 "quantile" "hospital admissions only" +"11 day ahead inc hosp" "72" 2024-02-05 2024-02-16 0.975 64.525 "quantile" "hospital admissions only" +"11 day ahead inc hosp" "72" 2024-02-05 2024-02-16 0.99 69.08 "quantile" "hospital admissions only" +"12 day ahead inc hosp" "72" 2024-02-05 2024-02-17 0.01 12.99 "quantile" "hospital admissions only" +"12 day ahead inc hosp" "72" 2024-02-05 2024-02-17 0.025 18 "quantile" "hospital admissions only" +"12 day ahead inc hosp" "72" 2024-02-05 2024-02-17 0.05 21 "quantile" "hospital admissions only" +"12 day ahead inc hosp" "72" 2024-02-05 2024-02-17 0.1 23.9 "quantile" "hospital admissions only" +"12 day ahead inc hosp" "72" 2024-02-05 2024-02-17 0.15 26 "quantile" "hospital admissions only" +"12 day ahead inc hosp" "72" 2024-02-05 2024-02-17 0.2 27 "quantile" "hospital admissions only" +"12 day ahead inc hosp" "72" 2024-02-05 2024-02-17 0.25 28 "quantile" "hospital admissions only" +"12 day ahead inc hosp" "72" 2024-02-05 2024-02-17 0.3 29 "quantile" "hospital admissions only" +"12 day ahead inc hosp" "72" 2024-02-05 2024-02-17 0.35 31 "quantile" "hospital admissions only" +"12 day ahead inc hosp" "72" 2024-02-05 2024-02-17 0.4 32 "quantile" "hospital admissions only" +"12 day ahead inc hosp" "72" 2024-02-05 2024-02-17 0.45 34 "quantile" "hospital admissions only" +"12 day ahead inc hosp" "72" 2024-02-05 2024-02-17 0.5 35 "quantile" "hospital admissions only" +"12 day ahead inc hosp" "72" 2024-02-05 2024-02-17 0.55 36.45 "quantile" "hospital admissions only" +"12 day ahead inc hosp" "72" 2024-02-05 2024-02-17 0.6 38 "quantile" "hospital admissions only" +"12 day ahead inc hosp" "72" 2024-02-05 2024-02-17 0.65 39.35 "quantile" "hospital admissions only" +"12 day ahead inc hosp" "72" 2024-02-05 2024-02-17 0.7 43 "quantile" "hospital admissions only" +"12 day ahead inc hosp" "72" 2024-02-05 2024-02-17 0.75 44 "quantile" "hospital admissions only" +"12 day ahead inc hosp" "72" 2024-02-05 2024-02-17 0.8 46.2 "quantile" "hospital admissions only" +"12 day ahead inc hosp" "72" 2024-02-05 2024-02-17 0.85 48 "quantile" "hospital admissions only" +"12 day ahead inc hosp" "72" 2024-02-05 2024-02-17 0.9 50 "quantile" "hospital admissions only" +"12 day ahead inc hosp" "72" 2024-02-05 2024-02-17 0.95 58.1 "quantile" "hospital admissions only" +"12 day ahead inc hosp" "72" 2024-02-05 2024-02-17 0.975 61.525 "quantile" "hospital admissions only" +"12 day ahead inc hosp" "72" 2024-02-05 2024-02-17 0.99 64.01 "quantile" "hospital admissions only" +"13 day ahead inc hosp" "72" 2024-02-05 2024-02-18 0.01 12 "quantile" "hospital admissions only" +"13 day ahead inc hosp" "72" 2024-02-05 2024-02-18 0.025 12.95 "quantile" "hospital admissions only" +"13 day ahead inc hosp" "72" 2024-02-05 2024-02-18 0.05 14 "quantile" "hospital admissions only" +"13 day ahead inc hosp" "72" 2024-02-05 2024-02-18 0.1 16 "quantile" "hospital admissions only" +"13 day ahead inc hosp" "72" 2024-02-05 2024-02-18 0.15 18 "quantile" "hospital admissions only" +"13 day ahead inc hosp" "72" 2024-02-05 2024-02-18 0.2 21 "quantile" "hospital admissions only" +"13 day ahead inc hosp" "72" 2024-02-05 2024-02-18 0.25 21.75 "quantile" "hospital admissions only" +"13 day ahead inc hosp" "72" 2024-02-05 2024-02-18 0.3 23 "quantile" "hospital admissions only" +"13 day ahead inc hosp" "72" 2024-02-05 2024-02-18 0.35 25 "quantile" "hospital admissions only" +"13 day ahead inc hosp" "72" 2024-02-05 2024-02-18 0.4 26 "quantile" "hospital admissions only" +"13 day ahead inc hosp" "72" 2024-02-05 2024-02-18 0.45 28 "quantile" "hospital admissions only" +"13 day ahead inc hosp" "72" 2024-02-05 2024-02-18 0.5 29 "quantile" "hospital admissions only" +"13 day ahead inc hosp" "72" 2024-02-05 2024-02-18 0.55 30 "quantile" "hospital admissions only" +"13 day ahead inc hosp" "72" 2024-02-05 2024-02-18 0.6 30 "quantile" "hospital admissions only" +"13 day ahead inc hosp" "72" 2024-02-05 2024-02-18 0.65 32 "quantile" "hospital admissions only" +"13 day ahead inc hosp" "72" 2024-02-05 2024-02-18 0.7 33 "quantile" "hospital admissions only" +"13 day ahead inc hosp" "72" 2024-02-05 2024-02-18 0.75 34 "quantile" "hospital admissions only" +"13 day ahead inc hosp" "72" 2024-02-05 2024-02-18 0.8 36 "quantile" "hospital admissions only" +"13 day ahead inc hosp" "72" 2024-02-05 2024-02-18 0.85 37 "quantile" "hospital admissions only" +"13 day ahead inc hosp" "72" 2024-02-05 2024-02-18 0.9 39 "quantile" "hospital admissions only" +"13 day ahead inc hosp" "72" 2024-02-05 2024-02-18 0.95 47.1 "quantile" "hospital admissions only" +"13 day ahead inc hosp" "72" 2024-02-05 2024-02-18 0.975 49.525 "quantile" "hospital admissions only" +"13 day ahead inc hosp" "72" 2024-02-05 2024-02-18 0.99 50.1900000000001 "quantile" "hospital admissions only" +"14 day ahead inc hosp" "72" 2024-02-05 2024-02-19 0.01 19.99 "quantile" "hospital admissions only" +"14 day ahead inc hosp" "72" 2024-02-05 2024-02-19 0.025 21.95 "quantile" "hospital admissions only" +"14 day ahead inc hosp" "72" 2024-02-05 2024-02-19 0.05 23.95 "quantile" "hospital admissions only" +"14 day ahead inc hosp" "72" 2024-02-05 2024-02-19 0.1 26.9 "quantile" "hospital admissions only" +"14 day ahead inc hosp" "72" 2024-02-05 2024-02-19 0.15 30.85 "quantile" "hospital admissions only" +"14 day ahead inc hosp" "72" 2024-02-05 2024-02-19 0.2 31.8 "quantile" "hospital admissions only" +"14 day ahead inc hosp" "72" 2024-02-05 2024-02-19 0.25 33 "quantile" "hospital admissions only" +"14 day ahead inc hosp" "72" 2024-02-05 2024-02-19 0.3 33.7 "quantile" "hospital admissions only" +"14 day ahead inc hosp" "72" 2024-02-05 2024-02-19 0.35 37 "quantile" "hospital admissions only" +"14 day ahead inc hosp" "72" 2024-02-05 2024-02-19 0.4 39 "quantile" "hospital admissions only" +"14 day ahead inc hosp" "72" 2024-02-05 2024-02-19 0.45 41.55 "quantile" "hospital admissions only" +"14 day ahead inc hosp" "72" 2024-02-05 2024-02-19 0.5 43 "quantile" "hospital admissions only" +"14 day ahead inc hosp" "72" 2024-02-05 2024-02-19 0.55 46 "quantile" "hospital admissions only" +"14 day ahead inc hosp" "72" 2024-02-05 2024-02-19 0.6 47.4 "quantile" "hospital admissions only" +"14 day ahead inc hosp" "72" 2024-02-05 2024-02-19 0.65 49 "quantile" "hospital admissions only" +"14 day ahead inc hosp" "72" 2024-02-05 2024-02-19 0.7 50 "quantile" "hospital admissions only" +"14 day ahead inc hosp" "72" 2024-02-05 2024-02-19 0.75 52.25 "quantile" "hospital admissions only" +"14 day ahead inc hosp" "72" 2024-02-05 2024-02-19 0.8 55.4 "quantile" "hospital admissions only" +"14 day ahead inc hosp" "72" 2024-02-05 2024-02-19 0.85 57.15 "quantile" "hospital admissions only" +"14 day ahead inc hosp" "72" 2024-02-05 2024-02-19 0.9 62.1 "quantile" "hospital admissions only" +"14 day ahead inc hosp" "72" 2024-02-05 2024-02-19 0.95 66.05 "quantile" "hospital admissions only" +"14 day ahead inc hosp" "72" 2024-02-05 2024-02-19 0.975 69.525 "quantile" "hospital admissions only" +"14 day ahead inc hosp" "72" 2024-02-05 2024-02-19 0.99 90.05 "quantile" "hospital admissions only" +"15 day ahead inc hosp" "72" 2024-02-05 2024-02-20 0.01 16.98 "quantile" "hospital admissions only" +"15 day ahead inc hosp" "72" 2024-02-05 2024-02-20 0.025 23.325 "quantile" "hospital admissions only" +"15 day ahead inc hosp" "72" 2024-02-05 2024-02-20 0.05 27 "quantile" "hospital admissions only" +"15 day ahead inc hosp" "72" 2024-02-05 2024-02-20 0.1 30 "quantile" "hospital admissions only" +"15 day ahead inc hosp" "72" 2024-02-05 2024-02-20 0.15 31 "quantile" "hospital admissions only" +"15 day ahead inc hosp" "72" 2024-02-05 2024-02-20 0.2 34 "quantile" "hospital admissions only" +"15 day ahead inc hosp" "72" 2024-02-05 2024-02-20 0.25 37.75 "quantile" "hospital admissions only" +"15 day ahead inc hosp" "72" 2024-02-05 2024-02-20 0.3 40 "quantile" "hospital admissions only" +"15 day ahead inc hosp" "72" 2024-02-05 2024-02-20 0.35 42 "quantile" "hospital admissions only" +"15 day ahead inc hosp" "72" 2024-02-05 2024-02-20 0.4 44 "quantile" "hospital admissions only" +"15 day ahead inc hosp" "72" 2024-02-05 2024-02-20 0.45 45 "quantile" "hospital admissions only" +"15 day ahead inc hosp" "72" 2024-02-05 2024-02-20 0.5 47 "quantile" "hospital admissions only" +"15 day ahead inc hosp" "72" 2024-02-05 2024-02-20 0.55 49 "quantile" "hospital admissions only" +"15 day ahead inc hosp" "72" 2024-02-05 2024-02-20 0.6 51 "quantile" "hospital admissions only" +"15 day ahead inc hosp" "72" 2024-02-05 2024-02-20 0.65 52 "quantile" "hospital admissions only" +"15 day ahead inc hosp" "72" 2024-02-05 2024-02-20 0.7 53.3 "quantile" "hospital admissions only" +"15 day ahead inc hosp" "72" 2024-02-05 2024-02-20 0.75 55 "quantile" "hospital admissions only" +"15 day ahead inc hosp" "72" 2024-02-05 2024-02-20 0.8 57.2 "quantile" "hospital admissions only" +"15 day ahead inc hosp" "72" 2024-02-05 2024-02-20 0.85 59 "quantile" "hospital admissions only" +"15 day ahead inc hosp" "72" 2024-02-05 2024-02-20 0.9 60.2 "quantile" "hospital admissions only" +"15 day ahead inc hosp" "72" 2024-02-05 2024-02-20 0.95 67.05 "quantile" "hospital admissions only" +"15 day ahead inc hosp" "72" 2024-02-05 2024-02-20 0.975 72.575 "quantile" "hospital admissions only" +"15 day ahead inc hosp" "72" 2024-02-05 2024-02-20 0.99 85.03 "quantile" "hospital admissions only" +"16 day ahead inc hosp" "72" 2024-02-05 2024-02-21 0.01 15.98 "quantile" "hospital admissions only" +"16 day ahead inc hosp" "72" 2024-02-05 2024-02-21 0.025 17.475 "quantile" "hospital admissions only" +"16 day ahead inc hosp" "72" 2024-02-05 2024-02-21 0.05 18.95 "quantile" "hospital admissions only" +"16 day ahead inc hosp" "72" 2024-02-05 2024-02-21 0.1 23.8 "quantile" "hospital admissions only" +"16 day ahead inc hosp" "72" 2024-02-05 2024-02-21 0.15 27 "quantile" "hospital admissions only" +"16 day ahead inc hosp" "72" 2024-02-05 2024-02-21 0.2 28 "quantile" "hospital admissions only" +"16 day ahead inc hosp" "72" 2024-02-05 2024-02-21 0.25 31.75 "quantile" "hospital admissions only" +"16 day ahead inc hosp" "72" 2024-02-05 2024-02-21 0.3 33.7 "quantile" "hospital admissions only" +"16 day ahead inc hosp" "72" 2024-02-05 2024-02-21 0.35 36 "quantile" "hospital admissions only" +"16 day ahead inc hosp" "72" 2024-02-05 2024-02-21 0.4 37 "quantile" "hospital admissions only" +"16 day ahead inc hosp" "72" 2024-02-05 2024-02-21 0.45 38.55 "quantile" "hospital admissions only" +"16 day ahead inc hosp" "72" 2024-02-05 2024-02-21 0.5 40 "quantile" "hospital admissions only" +"16 day ahead inc hosp" "72" 2024-02-05 2024-02-21 0.55 41 "quantile" "hospital admissions only" +"16 day ahead inc hosp" "72" 2024-02-05 2024-02-21 0.6 42 "quantile" "hospital admissions only" +"16 day ahead inc hosp" "72" 2024-02-05 2024-02-21 0.65 43 "quantile" "hospital admissions only" +"16 day ahead inc hosp" "72" 2024-02-05 2024-02-21 0.7 44 "quantile" "hospital admissions only" +"16 day ahead inc hosp" "72" 2024-02-05 2024-02-21 0.75 46.25 "quantile" "hospital admissions only" +"16 day ahead inc hosp" "72" 2024-02-05 2024-02-21 0.8 49 "quantile" "hospital admissions only" +"16 day ahead inc hosp" "72" 2024-02-05 2024-02-21 0.85 50 "quantile" "hospital admissions only" +"16 day ahead inc hosp" "72" 2024-02-05 2024-02-21 0.9 54.1 "quantile" "hospital admissions only" +"16 day ahead inc hosp" "72" 2024-02-05 2024-02-21 0.95 62.05 "quantile" "hospital admissions only" +"16 day ahead inc hosp" "72" 2024-02-05 2024-02-21 0.975 68.05 "quantile" "hospital admissions only" +"16 day ahead inc hosp" "72" 2024-02-05 2024-02-21 0.99 75.02 "quantile" "hospital admissions only" +"17 day ahead inc hosp" "72" 2024-02-05 2024-02-22 0.01 17.92 "quantile" "hospital admissions only" +"17 day ahead inc hosp" "72" 2024-02-05 2024-02-22 0.025 18.475 "quantile" "hospital admissions only" +"17 day ahead inc hosp" "72" 2024-02-05 2024-02-22 0.05 20 "quantile" "hospital admissions only" +"17 day ahead inc hosp" "72" 2024-02-05 2024-02-22 0.1 25.9 "quantile" "hospital admissions only" +"17 day ahead inc hosp" "72" 2024-02-05 2024-02-22 0.15 29 "quantile" "hospital admissions only" +"17 day ahead inc hosp" "72" 2024-02-05 2024-02-22 0.2 30 "quantile" "hospital admissions only" +"17 day ahead inc hosp" "72" 2024-02-05 2024-02-22 0.25 31 "quantile" "hospital admissions only" +"17 day ahead inc hosp" "72" 2024-02-05 2024-02-22 0.3 33 "quantile" "hospital admissions only" +"17 day ahead inc hosp" "72" 2024-02-05 2024-02-22 0.35 36.65 "quantile" "hospital admissions only" +"17 day ahead inc hosp" "72" 2024-02-05 2024-02-22 0.4 39 "quantile" "hospital admissions only" +"17 day ahead inc hosp" "72" 2024-02-05 2024-02-22 0.45 41 "quantile" "hospital admissions only" +"17 day ahead inc hosp" "72" 2024-02-05 2024-02-22 0.5 42.5 "quantile" "hospital admissions only" +"17 day ahead inc hosp" "72" 2024-02-05 2024-02-22 0.55 44.45 "quantile" "hospital admissions only" +"17 day ahead inc hosp" "72" 2024-02-05 2024-02-22 0.6 47 "quantile" "hospital admissions only" +"17 day ahead inc hosp" "72" 2024-02-05 2024-02-22 0.65 50.35 "quantile" "hospital admissions only" +"17 day ahead inc hosp" "72" 2024-02-05 2024-02-22 0.7 53 "quantile" "hospital admissions only" +"17 day ahead inc hosp" "72" 2024-02-05 2024-02-22 0.75 53.25 "quantile" "hospital admissions only" +"17 day ahead inc hosp" "72" 2024-02-05 2024-02-22 0.8 56 "quantile" "hospital admissions only" +"17 day ahead inc hosp" "72" 2024-02-05 2024-02-22 0.85 57.15 "quantile" "hospital admissions only" +"17 day ahead inc hosp" "72" 2024-02-05 2024-02-22 0.9 61.1 "quantile" "hospital admissions only" +"17 day ahead inc hosp" "72" 2024-02-05 2024-02-22 0.95 68.1 "quantile" "hospital admissions only" +"17 day ahead inc hosp" "72" 2024-02-05 2024-02-22 0.975 78 "quantile" "hospital admissions only" +"17 day ahead inc hosp" "72" 2024-02-05 2024-02-22 0.99 89.09 "quantile" "hospital admissions only" +"18 day ahead inc hosp" "72" 2024-02-05 2024-02-23 0.01 16 "quantile" "hospital admissions only" +"18 day ahead inc hosp" "72" 2024-02-05 2024-02-23 0.025 18.95 "quantile" "hospital admissions only" +"18 day ahead inc hosp" "72" 2024-02-05 2024-02-23 0.05 21 "quantile" "hospital admissions only" +"18 day ahead inc hosp" "72" 2024-02-05 2024-02-23 0.1 24.9 "quantile" "hospital admissions only" +"18 day ahead inc hosp" "72" 2024-02-05 2024-02-23 0.15 27.85 "quantile" "hospital admissions only" +"18 day ahead inc hosp" "72" 2024-02-05 2024-02-23 0.2 29.8 "quantile" "hospital admissions only" +"18 day ahead inc hosp" "72" 2024-02-05 2024-02-23 0.25 30.75 "quantile" "hospital admissions only" +"18 day ahead inc hosp" "72" 2024-02-05 2024-02-23 0.3 33.7 "quantile" "hospital admissions only" +"18 day ahead inc hosp" "72" 2024-02-05 2024-02-23 0.35 36 "quantile" "hospital admissions only" +"18 day ahead inc hosp" "72" 2024-02-05 2024-02-23 0.4 36 "quantile" "hospital admissions only" +"18 day ahead inc hosp" "72" 2024-02-05 2024-02-23 0.45 38 "quantile" "hospital admissions only" +"18 day ahead inc hosp" "72" 2024-02-05 2024-02-23 0.5 40.5 "quantile" "hospital admissions only" +"18 day ahead inc hosp" "72" 2024-02-05 2024-02-23 0.55 42 "quantile" "hospital admissions only" +"18 day ahead inc hosp" "72" 2024-02-05 2024-02-23 0.6 43 "quantile" "hospital admissions only" +"18 day ahead inc hosp" "72" 2024-02-05 2024-02-23 0.65 45 "quantile" "hospital admissions only" +"18 day ahead inc hosp" "72" 2024-02-05 2024-02-23 0.7 46.6 "quantile" "hospital admissions only" +"18 day ahead inc hosp" "72" 2024-02-05 2024-02-23 0.75 48 "quantile" "hospital admissions only" +"18 day ahead inc hosp" "72" 2024-02-05 2024-02-23 0.8 50.4 "quantile" "hospital admissions only" +"18 day ahead inc hosp" "72" 2024-02-05 2024-02-23 0.85 54.15 "quantile" "hospital admissions only" +"18 day ahead inc hosp" "72" 2024-02-05 2024-02-23 0.9 60 "quantile" "hospital admissions only" +"18 day ahead inc hosp" "72" 2024-02-05 2024-02-23 0.95 68.1 "quantile" "hospital admissions only" +"18 day ahead inc hosp" "72" 2024-02-05 2024-02-23 0.975 73 "quantile" "hospital admissions only" +"18 day ahead inc hosp" "72" 2024-02-05 2024-02-23 0.99 77.02 "quantile" "hospital admissions only" +"19 day ahead inc hosp" "72" 2024-02-05 2024-02-24 0.01 12.97 "quantile" "hospital admissions only" +"19 day ahead inc hosp" "72" 2024-02-05 2024-02-24 0.025 15.475 "quantile" "hospital admissions only" +"19 day ahead inc hosp" "72" 2024-02-05 2024-02-24 0.05 17 "quantile" "hospital admissions only" +"19 day ahead inc hosp" "72" 2024-02-05 2024-02-24 0.1 20 "quantile" "hospital admissions only" +"19 day ahead inc hosp" "72" 2024-02-05 2024-02-24 0.15 22 "quantile" "hospital admissions only" +"19 day ahead inc hosp" "72" 2024-02-05 2024-02-24 0.2 25 "quantile" "hospital admissions only" +"19 day ahead inc hosp" "72" 2024-02-05 2024-02-24 0.25 26.75 "quantile" "hospital admissions only" +"19 day ahead inc hosp" "72" 2024-02-05 2024-02-24 0.3 29 "quantile" "hospital admissions only" +"19 day ahead inc hosp" "72" 2024-02-05 2024-02-24 0.35 32 "quantile" "hospital admissions only" +"19 day ahead inc hosp" "72" 2024-02-05 2024-02-24 0.4 33 "quantile" "hospital admissions only" +"19 day ahead inc hosp" "72" 2024-02-05 2024-02-24 0.45 34 "quantile" "hospital admissions only" +"19 day ahead inc hosp" "72" 2024-02-05 2024-02-24 0.5 35 "quantile" "hospital admissions only" +"19 day ahead inc hosp" "72" 2024-02-05 2024-02-24 0.55 36 "quantile" "hospital admissions only" +"19 day ahead inc hosp" "72" 2024-02-05 2024-02-24 0.6 37 "quantile" "hospital admissions only" +"19 day ahead inc hosp" "72" 2024-02-05 2024-02-24 0.65 38 "quantile" "hospital admissions only" +"19 day ahead inc hosp" "72" 2024-02-05 2024-02-24 0.7 40 "quantile" "hospital admissions only" +"19 day ahead inc hosp" "72" 2024-02-05 2024-02-24 0.75 43 "quantile" "hospital admissions only" +"19 day ahead inc hosp" "72" 2024-02-05 2024-02-24 0.8 46.2 "quantile" "hospital admissions only" +"19 day ahead inc hosp" "72" 2024-02-05 2024-02-24 0.85 49.3 "quantile" "hospital admissions only" +"19 day ahead inc hosp" "72" 2024-02-05 2024-02-24 0.9 54 "quantile" "hospital admissions only" +"19 day ahead inc hosp" "72" 2024-02-05 2024-02-24 0.95 58.05 "quantile" "hospital admissions only" +"19 day ahead inc hosp" "72" 2024-02-05 2024-02-24 0.975 60 "quantile" "hospital admissions only" +"19 day ahead inc hosp" "72" 2024-02-05 2024-02-24 0.99 67.03 "quantile" "hospital admissions only" +"20 day ahead inc hosp" "72" 2024-02-05 2024-02-25 0.01 9.99 "quantile" "hospital admissions only" +"20 day ahead inc hosp" "72" 2024-02-05 2024-02-25 0.025 12.475 "quantile" "hospital admissions only" +"20 day ahead inc hosp" "72" 2024-02-05 2024-02-25 0.05 13.95 "quantile" "hospital admissions only" +"20 day ahead inc hosp" "72" 2024-02-05 2024-02-25 0.1 16 "quantile" "hospital admissions only" +"20 day ahead inc hosp" "72" 2024-02-05 2024-02-25 0.15 19 "quantile" "hospital admissions only" +"20 day ahead inc hosp" "72" 2024-02-05 2024-02-25 0.2 21 "quantile" "hospital admissions only" +"20 day ahead inc hosp" "72" 2024-02-05 2024-02-25 0.25 23 "quantile" "hospital admissions only" +"20 day ahead inc hosp" "72" 2024-02-05 2024-02-25 0.3 24.7 "quantile" "hospital admissions only" +"20 day ahead inc hosp" "72" 2024-02-05 2024-02-25 0.35 26 "quantile" "hospital admissions only" +"20 day ahead inc hosp" "72" 2024-02-05 2024-02-25 0.4 27 "quantile" "hospital admissions only" +"20 day ahead inc hosp" "72" 2024-02-05 2024-02-25 0.45 28 "quantile" "hospital admissions only" +"20 day ahead inc hosp" "72" 2024-02-05 2024-02-25 0.5 29 "quantile" "hospital admissions only" +"20 day ahead inc hosp" "72" 2024-02-05 2024-02-25 0.55 30 "quantile" "hospital admissions only" +"20 day ahead inc hosp" "72" 2024-02-05 2024-02-25 0.6 31.4 "quantile" "hospital admissions only" +"20 day ahead inc hosp" "72" 2024-02-05 2024-02-25 0.65 32 "quantile" "hospital admissions only" +"20 day ahead inc hosp" "72" 2024-02-05 2024-02-25 0.7 34.3 "quantile" "hospital admissions only" +"20 day ahead inc hosp" "72" 2024-02-05 2024-02-25 0.75 36 "quantile" "hospital admissions only" +"20 day ahead inc hosp" "72" 2024-02-05 2024-02-25 0.8 37 "quantile" "hospital admissions only" +"20 day ahead inc hosp" "72" 2024-02-05 2024-02-25 0.85 38.15 "quantile" "hospital admissions only" +"20 day ahead inc hosp" "72" 2024-02-05 2024-02-25 0.9 41 "quantile" "hospital admissions only" +"20 day ahead inc hosp" "72" 2024-02-05 2024-02-25 0.95 50.05 "quantile" "hospital admissions only" +"20 day ahead inc hosp" "72" 2024-02-05 2024-02-25 0.975 51.525 "quantile" "hospital admissions only" +"20 day ahead inc hosp" "72" 2024-02-05 2024-02-25 0.99 56.06 "quantile" "hospital admissions only" +"21 day ahead inc hosp" "72" 2024-02-05 2024-02-26 0.01 14.94 "quantile" "hospital admissions only" +"21 day ahead inc hosp" "72" 2024-02-05 2024-02-26 0.025 18.85 "quantile" "hospital admissions only" +"21 day ahead inc hosp" "72" 2024-02-05 2024-02-26 0.05 22 "quantile" "hospital admissions only" +"21 day ahead inc hosp" "72" 2024-02-05 2024-02-26 0.1 26 "quantile" "hospital admissions only" +"21 day ahead inc hosp" "72" 2024-02-05 2024-02-26 0.15 27 "quantile" "hospital admissions only" +"21 day ahead inc hosp" "72" 2024-02-05 2024-02-26 0.2 29.8 "quantile" "hospital admissions only" +"21 day ahead inc hosp" "72" 2024-02-05 2024-02-26 0.25 32 "quantile" "hospital admissions only" +"21 day ahead inc hosp" "72" 2024-02-05 2024-02-26 0.3 34.7 "quantile" "hospital admissions only" +"21 day ahead inc hosp" "72" 2024-02-05 2024-02-26 0.35 37 "quantile" "hospital admissions only" +"21 day ahead inc hosp" "72" 2024-02-05 2024-02-26 0.4 39 "quantile" "hospital admissions only" +"21 day ahead inc hosp" "72" 2024-02-05 2024-02-26 0.45 40 "quantile" "hospital admissions only" +"21 day ahead inc hosp" "72" 2024-02-05 2024-02-26 0.5 43 "quantile" "hospital admissions only" +"21 day ahead inc hosp" "72" 2024-02-05 2024-02-26 0.55 45 "quantile" "hospital admissions only" +"21 day ahead inc hosp" "72" 2024-02-05 2024-02-26 0.6 47 "quantile" "hospital admissions only" +"21 day ahead inc hosp" "72" 2024-02-05 2024-02-26 0.65 49 "quantile" "hospital admissions only" +"21 day ahead inc hosp" "72" 2024-02-05 2024-02-26 0.7 50 "quantile" "hospital admissions only" +"21 day ahead inc hosp" "72" 2024-02-05 2024-02-26 0.75 52 "quantile" "hospital admissions only" +"21 day ahead inc hosp" "72" 2024-02-05 2024-02-26 0.8 55.2 "quantile" "hospital admissions only" +"21 day ahead inc hosp" "72" 2024-02-05 2024-02-26 0.85 59 "quantile" "hospital admissions only" +"21 day ahead inc hosp" "72" 2024-02-05 2024-02-26 0.9 60.1 "quantile" "hospital admissions only" +"21 day ahead inc hosp" "72" 2024-02-05 2024-02-26 0.95 71 "quantile" "hospital admissions only" +"21 day ahead inc hosp" "72" 2024-02-05 2024-02-26 0.975 73.525 "quantile" "hospital admissions only" +"21 day ahead inc hosp" "72" 2024-02-05 2024-02-26 0.99 87.2800000000001 "quantile" "hospital admissions only" +"22 day ahead inc hosp" "72" 2024-02-05 2024-02-27 0.01 17.92 "quantile" "hospital admissions only" +"22 day ahead inc hosp" "72" 2024-02-05 2024-02-27 0.025 19.475 "quantile" "hospital admissions only" +"22 day ahead inc hosp" "72" 2024-02-05 2024-02-27 0.05 21.9 "quantile" "hospital admissions only" +"22 day ahead inc hosp" "72" 2024-02-05 2024-02-27 0.1 25.9 "quantile" "hospital admissions only" +"22 day ahead inc hosp" "72" 2024-02-05 2024-02-27 0.15 30.85 "quantile" "hospital admissions only" +"22 day ahead inc hosp" "72" 2024-02-05 2024-02-27 0.2 33 "quantile" "hospital admissions only" +"22 day ahead inc hosp" "72" 2024-02-05 2024-02-27 0.25 35.75 "quantile" "hospital admissions only" +"22 day ahead inc hosp" "72" 2024-02-05 2024-02-27 0.3 36.7 "quantile" "hospital admissions only" +"22 day ahead inc hosp" "72" 2024-02-05 2024-02-27 0.35 39 "quantile" "hospital admissions only" +"22 day ahead inc hosp" "72" 2024-02-05 2024-02-27 0.4 39.6 "quantile" "hospital admissions only" +"22 day ahead inc hosp" "72" 2024-02-05 2024-02-27 0.45 42.55 "quantile" "hospital admissions only" +"22 day ahead inc hosp" "72" 2024-02-05 2024-02-27 0.5 43 "quantile" "hospital admissions only" +"22 day ahead inc hosp" "72" 2024-02-05 2024-02-27 0.55 45 "quantile" "hospital admissions only" +"22 day ahead inc hosp" "72" 2024-02-05 2024-02-27 0.6 47 "quantile" "hospital admissions only" +"22 day ahead inc hosp" "72" 2024-02-05 2024-02-27 0.65 51 "quantile" "hospital admissions only" +"22 day ahead inc hosp" "72" 2024-02-05 2024-02-27 0.7 53.3 "quantile" "hospital admissions only" +"22 day ahead inc hosp" "72" 2024-02-05 2024-02-27 0.75 57.25 "quantile" "hospital admissions only" +"22 day ahead inc hosp" "72" 2024-02-05 2024-02-27 0.8 59.2 "quantile" "hospital admissions only" +"22 day ahead inc hosp" "72" 2024-02-05 2024-02-27 0.85 64 "quantile" "hospital admissions only" +"22 day ahead inc hosp" "72" 2024-02-05 2024-02-27 0.9 66 "quantile" "hospital admissions only" +"22 day ahead inc hosp" "72" 2024-02-05 2024-02-27 0.95 74.05 "quantile" "hospital admissions only" +"22 day ahead inc hosp" "72" 2024-02-05 2024-02-27 0.975 81.625 "quantile" "hospital admissions only" +"22 day ahead inc hosp" "72" 2024-02-05 2024-02-27 0.99 92.1800000000001 "quantile" "hospital admissions only" +"23 day ahead inc hosp" "72" 2024-02-05 2024-02-28 0.01 13.93 "quantile" "hospital admissions only" +"23 day ahead inc hosp" "72" 2024-02-05 2024-02-28 0.025 17 "quantile" "hospital admissions only" +"23 day ahead inc hosp" "72" 2024-02-05 2024-02-28 0.05 18 "quantile" "hospital admissions only" +"23 day ahead inc hosp" "72" 2024-02-05 2024-02-28 0.1 24 "quantile" "hospital admissions only" +"23 day ahead inc hosp" "72" 2024-02-05 2024-02-28 0.15 26 "quantile" "hospital admissions only" +"23 day ahead inc hosp" "72" 2024-02-05 2024-02-28 0.2 29.6 "quantile" "hospital admissions only" +"23 day ahead inc hosp" "72" 2024-02-05 2024-02-28 0.25 32 "quantile" "hospital admissions only" +"23 day ahead inc hosp" "72" 2024-02-05 2024-02-28 0.3 33.7 "quantile" "hospital admissions only" +"23 day ahead inc hosp" "72" 2024-02-05 2024-02-28 0.35 35 "quantile" "hospital admissions only" +"23 day ahead inc hosp" "72" 2024-02-05 2024-02-28 0.4 36 "quantile" "hospital admissions only" +"23 day ahead inc hosp" "72" 2024-02-05 2024-02-28 0.45 37.55 "quantile" "hospital admissions only" +"23 day ahead inc hosp" "72" 2024-02-05 2024-02-28 0.5 39.5 "quantile" "hospital admissions only" +"23 day ahead inc hosp" "72" 2024-02-05 2024-02-28 0.55 40.9 "quantile" "hospital admissions only" +"23 day ahead inc hosp" "72" 2024-02-05 2024-02-28 0.6 43.4 "quantile" "hospital admissions only" +"23 day ahead inc hosp" "72" 2024-02-05 2024-02-28 0.65 45 "quantile" "hospital admissions only" +"23 day ahead inc hosp" "72" 2024-02-05 2024-02-28 0.7 45.3 "quantile" "hospital admissions only" +"23 day ahead inc hosp" "72" 2024-02-05 2024-02-28 0.75 48 "quantile" "hospital admissions only" +"23 day ahead inc hosp" "72" 2024-02-05 2024-02-28 0.8 49.4 "quantile" "hospital admissions only" +"23 day ahead inc hosp" "72" 2024-02-05 2024-02-28 0.85 52.3 "quantile" "hospital admissions only" +"23 day ahead inc hosp" "72" 2024-02-05 2024-02-28 0.9 57.1 "quantile" "hospital admissions only" +"23 day ahead inc hosp" "72" 2024-02-05 2024-02-28 0.95 61.15 "quantile" "hospital admissions only" +"23 day ahead inc hosp" "72" 2024-02-05 2024-02-28 0.975 70.6749999999999 "quantile" "hospital admissions only" +"23 day ahead inc hosp" "72" 2024-02-05 2024-02-28 0.99 98.1100000000001 "quantile" "hospital admissions only" +"24 day ahead inc hosp" "72" 2024-02-05 2024-02-29 0.01 16.96 "quantile" "hospital admissions only" +"24 day ahead inc hosp" "72" 2024-02-05 2024-02-29 0.025 18.475 "quantile" "hospital admissions only" +"24 day ahead inc hosp" "72" 2024-02-05 2024-02-29 0.05 20.9 "quantile" "hospital admissions only" +"24 day ahead inc hosp" "72" 2024-02-05 2024-02-29 0.1 24 "quantile" "hospital admissions only" +"24 day ahead inc hosp" "72" 2024-02-05 2024-02-29 0.15 27 "quantile" "hospital admissions only" +"24 day ahead inc hosp" "72" 2024-02-05 2024-02-29 0.2 29 "quantile" "hospital admissions only" +"24 day ahead inc hosp" "72" 2024-02-05 2024-02-29 0.25 31.75 "quantile" "hospital admissions only" +"24 day ahead inc hosp" "72" 2024-02-05 2024-02-29 0.3 34 "quantile" "hospital admissions only" +"24 day ahead inc hosp" "72" 2024-02-05 2024-02-29 0.35 35 "quantile" "hospital admissions only" +"24 day ahead inc hosp" "72" 2024-02-05 2024-02-29 0.4 37.6 "quantile" "hospital admissions only" +"24 day ahead inc hosp" "72" 2024-02-05 2024-02-29 0.45 42 "quantile" "hospital admissions only" +"24 day ahead inc hosp" "72" 2024-02-05 2024-02-29 0.5 43.5 "quantile" "hospital admissions only" +"24 day ahead inc hosp" "72" 2024-02-05 2024-02-29 0.55 45 "quantile" "hospital admissions only" +"24 day ahead inc hosp" "72" 2024-02-05 2024-02-29 0.6 46.4 "quantile" "hospital admissions only" +"24 day ahead inc hosp" "72" 2024-02-05 2024-02-29 0.65 48 "quantile" "hospital admissions only" +"24 day ahead inc hosp" "72" 2024-02-05 2024-02-29 0.7 49 "quantile" "hospital admissions only" +"24 day ahead inc hosp" "72" 2024-02-05 2024-02-29 0.75 52.25 "quantile" "hospital admissions only" +"24 day ahead inc hosp" "72" 2024-02-05 2024-02-29 0.8 57.2 "quantile" "hospital admissions only" +"24 day ahead inc hosp" "72" 2024-02-05 2024-02-29 0.85 60 "quantile" "hospital admissions only" +"24 day ahead inc hosp" "72" 2024-02-05 2024-02-29 0.9 63.1 "quantile" "hospital admissions only" +"24 day ahead inc hosp" "72" 2024-02-05 2024-02-29 0.95 70.1 "quantile" "hospital admissions only" +"24 day ahead inc hosp" "72" 2024-02-05 2024-02-29 0.975 77 "quantile" "hospital admissions only" +"24 day ahead inc hosp" "72" 2024-02-05 2024-02-29 0.99 83.3000000000002 "quantile" "hospital admissions only" +"25 day ahead inc hosp" "72" 2024-02-05 2024-03-01 0.01 15.95 "quantile" "hospital admissions only" +"25 day ahead inc hosp" "72" 2024-02-05 2024-03-01 0.025 18 "quantile" "hospital admissions only" +"25 day ahead inc hosp" "72" 2024-02-05 2024-03-01 0.05 22.95 "quantile" "hospital admissions only" +"25 day ahead inc hosp" "72" 2024-02-05 2024-03-01 0.1 25 "quantile" "hospital admissions only" +"25 day ahead inc hosp" "72" 2024-02-05 2024-03-01 0.15 26 "quantile" "hospital admissions only" +"25 day ahead inc hosp" "72" 2024-02-05 2024-03-01 0.2 28 "quantile" "hospital admissions only" +"25 day ahead inc hosp" "72" 2024-02-05 2024-03-01 0.25 29.75 "quantile" "hospital admissions only" +"25 day ahead inc hosp" "72" 2024-02-05 2024-03-01 0.3 32.7 "quantile" "hospital admissions only" +"25 day ahead inc hosp" "72" 2024-02-05 2024-03-01 0.35 34 "quantile" "hospital admissions only" +"25 day ahead inc hosp" "72" 2024-02-05 2024-03-01 0.4 35 "quantile" "hospital admissions only" +"25 day ahead inc hosp" "72" 2024-02-05 2024-03-01 0.45 36 "quantile" "hospital admissions only" +"25 day ahead inc hosp" "72" 2024-02-05 2024-03-01 0.5 38 "quantile" "hospital admissions only" +"25 day ahead inc hosp" "72" 2024-02-05 2024-03-01 0.55 40 "quantile" "hospital admissions only" +"25 day ahead inc hosp" "72" 2024-02-05 2024-03-01 0.6 41 "quantile" "hospital admissions only" +"25 day ahead inc hosp" "72" 2024-02-05 2024-03-01 0.65 44 "quantile" "hospital admissions only" +"25 day ahead inc hosp" "72" 2024-02-05 2024-03-01 0.7 48.3 "quantile" "hospital admissions only" +"25 day ahead inc hosp" "72" 2024-02-05 2024-03-01 0.75 51.25 "quantile" "hospital admissions only" +"25 day ahead inc hosp" "72" 2024-02-05 2024-03-01 0.8 57 "quantile" "hospital admissions only" +"25 day ahead inc hosp" "72" 2024-02-05 2024-03-01 0.85 61 "quantile" "hospital admissions only" +"25 day ahead inc hosp" "72" 2024-02-05 2024-03-01 0.9 64.6000000000001 "quantile" "hospital admissions only" +"25 day ahead inc hosp" "72" 2024-02-05 2024-03-01 0.95 75.35 "quantile" "hospital admissions only" +"25 day ahead inc hosp" "72" 2024-02-05 2024-03-01 0.975 83 "quantile" "hospital admissions only" +"25 day ahead inc hosp" "72" 2024-02-05 2024-03-01 0.99 90.2200000000001 "quantile" "hospital admissions only" +"26 day ahead inc hosp" "72" 2024-02-05 2024-03-02 0.01 11.95 "quantile" "hospital admissions only" +"26 day ahead inc hosp" "72" 2024-02-05 2024-03-02 0.025 13.475 "quantile" "hospital admissions only" +"26 day ahead inc hosp" "72" 2024-02-05 2024-03-02 0.05 18.95 "quantile" "hospital admissions only" +"26 day ahead inc hosp" "72" 2024-02-05 2024-03-02 0.1 20.9 "quantile" "hospital admissions only" +"26 day ahead inc hosp" "72" 2024-02-05 2024-03-02 0.15 22 "quantile" "hospital admissions only" +"26 day ahead inc hosp" "72" 2024-02-05 2024-03-02 0.2 23 "quantile" "hospital admissions only" +"26 day ahead inc hosp" "72" 2024-02-05 2024-03-02 0.25 26 "quantile" "hospital admissions only" +"26 day ahead inc hosp" "72" 2024-02-05 2024-03-02 0.3 28.7 "quantile" "hospital admissions only" +"26 day ahead inc hosp" "72" 2024-02-05 2024-03-02 0.35 30.65 "quantile" "hospital admissions only" +"26 day ahead inc hosp" "72" 2024-02-05 2024-03-02 0.4 32 "quantile" "hospital admissions only" +"26 day ahead inc hosp" "72" 2024-02-05 2024-03-02 0.45 33 "quantile" "hospital admissions only" +"26 day ahead inc hosp" "72" 2024-02-05 2024-03-02 0.5 35 "quantile" "hospital admissions only" +"26 day ahead inc hosp" "72" 2024-02-05 2024-03-02 0.55 36.45 "quantile" "hospital admissions only" +"26 day ahead inc hosp" "72" 2024-02-05 2024-03-02 0.6 37 "quantile" "hospital admissions only" +"26 day ahead inc hosp" "72" 2024-02-05 2024-03-02 0.65 41 "quantile" "hospital admissions only" +"26 day ahead inc hosp" "72" 2024-02-05 2024-03-02 0.7 42.3 "quantile" "hospital admissions only" +"26 day ahead inc hosp" "72" 2024-02-05 2024-03-02 0.75 46.25 "quantile" "hospital admissions only" +"26 day ahead inc hosp" "72" 2024-02-05 2024-03-02 0.8 50.2 "quantile" "hospital admissions only" +"26 day ahead inc hosp" "72" 2024-02-05 2024-03-02 0.85 58 "quantile" "hospital admissions only" +"26 day ahead inc hosp" "72" 2024-02-05 2024-03-02 0.9 59.2 "quantile" "hospital admissions only" +"26 day ahead inc hosp" "72" 2024-02-05 2024-03-02 0.95 64.15 "quantile" "hospital admissions only" +"26 day ahead inc hosp" "72" 2024-02-05 2024-03-02 0.975 68.525 "quantile" "hospital admissions only" +"26 day ahead inc hosp" "72" 2024-02-05 2024-03-02 0.99 70.03 "quantile" "hospital admissions only" +"27 day ahead inc hosp" "72" 2024-02-05 2024-03-03 0.01 9.97 "quantile" "hospital admissions only" +"27 day ahead inc hosp" "72" 2024-02-05 2024-03-03 0.025 12.95 "quantile" "hospital admissions only" +"27 day ahead inc hosp" "72" 2024-02-05 2024-03-03 0.05 14.95 "quantile" "hospital admissions only" +"27 day ahead inc hosp" "72" 2024-02-05 2024-03-03 0.1 17 "quantile" "hospital admissions only" +"27 day ahead inc hosp" "72" 2024-02-05 2024-03-03 0.15 19 "quantile" "hospital admissions only" +"27 day ahead inc hosp" "72" 2024-02-05 2024-03-03 0.2 20 "quantile" "hospital admissions only" +"27 day ahead inc hosp" "72" 2024-02-05 2024-03-03 0.25 22 "quantile" "hospital admissions only" +"27 day ahead inc hosp" "72" 2024-02-05 2024-03-03 0.3 24 "quantile" "hospital admissions only" +"27 day ahead inc hosp" "72" 2024-02-05 2024-03-03 0.35 25 "quantile" "hospital admissions only" +"27 day ahead inc hosp" "72" 2024-02-05 2024-03-03 0.4 28 "quantile" "hospital admissions only" +"27 day ahead inc hosp" "72" 2024-02-05 2024-03-03 0.45 29 "quantile" "hospital admissions only" +"27 day ahead inc hosp" "72" 2024-02-05 2024-03-03 0.5 30 "quantile" "hospital admissions only" +"27 day ahead inc hosp" "72" 2024-02-05 2024-03-03 0.55 31 "quantile" "hospital admissions only" +"27 day ahead inc hosp" "72" 2024-02-05 2024-03-03 0.6 33 "quantile" "hospital admissions only" +"27 day ahead inc hosp" "72" 2024-02-05 2024-03-03 0.65 34 "quantile" "hospital admissions only" +"27 day ahead inc hosp" "72" 2024-02-05 2024-03-03 0.7 35.6 "quantile" "hospital admissions only" +"27 day ahead inc hosp" "72" 2024-02-05 2024-03-03 0.75 37 "quantile" "hospital admissions only" +"27 day ahead inc hosp" "72" 2024-02-05 2024-03-03 0.8 40 "quantile" "hospital admissions only" +"27 day ahead inc hosp" "72" 2024-02-05 2024-03-03 0.85 43 "quantile" "hospital admissions only" +"27 day ahead inc hosp" "72" 2024-02-05 2024-03-03 0.9 45.1 "quantile" "hospital admissions only" +"27 day ahead inc hosp" "72" 2024-02-05 2024-03-03 0.95 51.05 "quantile" "hospital admissions only" +"27 day ahead inc hosp" "72" 2024-02-05 2024-03-03 0.975 57.1499999999999 "quantile" "hospital admissions only" +"27 day ahead inc hosp" "72" 2024-02-05 2024-03-03 0.99 61.09 "quantile" "hospital admissions only" +"28 day ahead inc hosp" "72" 2024-02-05 2024-03-04 0.01 15.91 "quantile" "hospital admissions only" +"28 day ahead inc hosp" "72" 2024-02-05 2024-03-04 0.025 16 "quantile" "hospital admissions only" +"28 day ahead inc hosp" "72" 2024-02-05 2024-03-04 0.05 20 "quantile" "hospital admissions only" +"28 day ahead inc hosp" "72" 2024-02-05 2024-03-04 0.1 26.7 "quantile" "hospital admissions only" +"28 day ahead inc hosp" "72" 2024-02-05 2024-03-04 0.15 28.85 "quantile" "hospital admissions only" +"28 day ahead inc hosp" "72" 2024-02-05 2024-03-04 0.2 30 "quantile" "hospital admissions only" +"28 day ahead inc hosp" "72" 2024-02-05 2024-03-04 0.25 31.75 "quantile" "hospital admissions only" +"28 day ahead inc hosp" "72" 2024-02-05 2024-03-04 0.3 34 "quantile" "hospital admissions only" +"28 day ahead inc hosp" "72" 2024-02-05 2024-03-04 0.35 39 "quantile" "hospital admissions only" +"28 day ahead inc hosp" "72" 2024-02-05 2024-03-04 0.4 41.6 "quantile" "hospital admissions only" +"28 day ahead inc hosp" "72" 2024-02-05 2024-03-04 0.45 43 "quantile" "hospital admissions only" +"28 day ahead inc hosp" "72" 2024-02-05 2024-03-04 0.5 45 "quantile" "hospital admissions only" +"28 day ahead inc hosp" "72" 2024-02-05 2024-03-04 0.55 46.45 "quantile" "hospital admissions only" +"28 day ahead inc hosp" "72" 2024-02-05 2024-03-04 0.6 47 "quantile" "hospital admissions only" +"28 day ahead inc hosp" "72" 2024-02-05 2024-03-04 0.65 50 "quantile" "hospital admissions only" +"28 day ahead inc hosp" "72" 2024-02-05 2024-03-04 0.7 52 "quantile" "hospital admissions only" +"28 day ahead inc hosp" "72" 2024-02-05 2024-03-04 0.75 55 "quantile" "hospital admissions only" +"28 day ahead inc hosp" "72" 2024-02-05 2024-03-04 0.8 61 "quantile" "hospital admissions only" +"28 day ahead inc hosp" "72" 2024-02-05 2024-03-04 0.85 64 "quantile" "hospital admissions only" +"28 day ahead inc hosp" "72" 2024-02-05 2024-03-04 0.9 66.3 "quantile" "hospital admissions only" +"28 day ahead inc hosp" "72" 2024-02-05 2024-03-04 0.95 73.3 "quantile" "hospital admissions only" +"28 day ahead inc hosp" "72" 2024-02-05 2024-03-04 0.975 84.7249999999999 "quantile" "hospital admissions only" +"28 day ahead inc hosp" "72" 2024-02-05 2024-03-04 0.99 90.5000000000003 "quantile" "hospital admissions only" +"1 day ahead inc hosp" "44" 2024-02-05 2024-02-06 0.01 2.99 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "44" 2024-02-05 2024-02-06 0.025 5 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "44" 2024-02-05 2024-02-06 0.05 7 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "44" 2024-02-05 2024-02-06 0.1 9.9 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "44" 2024-02-05 2024-02-06 0.15 10 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "44" 2024-02-05 2024-02-06 0.2 11 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "44" 2024-02-05 2024-02-06 0.25 11 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "44" 2024-02-05 2024-02-06 0.3 12 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "44" 2024-02-05 2024-02-06 0.35 13 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "44" 2024-02-05 2024-02-06 0.4 13.6 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "44" 2024-02-05 2024-02-06 0.45 14 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "44" 2024-02-05 2024-02-06 0.5 15 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "44" 2024-02-05 2024-02-06 0.55 16 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "44" 2024-02-05 2024-02-06 0.6 16 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "44" 2024-02-05 2024-02-06 0.65 17 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "44" 2024-02-05 2024-02-06 0.7 18 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "44" 2024-02-05 2024-02-06 0.75 18.25 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "44" 2024-02-05 2024-02-06 0.8 20 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "44" 2024-02-05 2024-02-06 0.85 22 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "44" 2024-02-05 2024-02-06 0.9 23.2 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "44" 2024-02-05 2024-02-06 0.95 27 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "44" 2024-02-05 2024-02-06 0.975 27 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "44" 2024-02-05 2024-02-06 0.99 29.06 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "44" 2024-02-05 2024-02-07 0.01 3.99 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "44" 2024-02-05 2024-02-07 0.025 5.475 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "44" 2024-02-05 2024-02-07 0.05 6 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "44" 2024-02-05 2024-02-07 0.1 7 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "44" 2024-02-05 2024-02-07 0.15 8 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "44" 2024-02-05 2024-02-07 0.2 9 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "44" 2024-02-05 2024-02-07 0.25 10 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "44" 2024-02-05 2024-02-07 0.3 10 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "44" 2024-02-05 2024-02-07 0.35 11 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "44" 2024-02-05 2024-02-07 0.4 12 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "44" 2024-02-05 2024-02-07 0.45 13 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "44" 2024-02-05 2024-02-07 0.5 14 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "44" 2024-02-05 2024-02-07 0.55 14 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "44" 2024-02-05 2024-02-07 0.6 15 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "44" 2024-02-05 2024-02-07 0.65 15.35 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "44" 2024-02-05 2024-02-07 0.7 16 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "44" 2024-02-05 2024-02-07 0.75 17 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "44" 2024-02-05 2024-02-07 0.8 17 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "44" 2024-02-05 2024-02-07 0.85 18 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "44" 2024-02-05 2024-02-07 0.9 22 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "44" 2024-02-05 2024-02-07 0.95 24 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "44" 2024-02-05 2024-02-07 0.975 26.575 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "44" 2024-02-05 2024-02-07 0.99 34.03 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "44" 2024-02-05 2024-02-08 0.01 2.99 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "44" 2024-02-05 2024-02-08 0.025 3.475 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "44" 2024-02-05 2024-02-08 0.05 5 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "44" 2024-02-05 2024-02-08 0.1 6.9 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "44" 2024-02-05 2024-02-08 0.15 8 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "44" 2024-02-05 2024-02-08 0.2 8 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "44" 2024-02-05 2024-02-08 0.25 9 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "44" 2024-02-05 2024-02-08 0.3 10 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "44" 2024-02-05 2024-02-08 0.35 10 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "44" 2024-02-05 2024-02-08 0.4 10.6 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "44" 2024-02-05 2024-02-08 0.45 11 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "44" 2024-02-05 2024-02-08 0.5 12 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "44" 2024-02-05 2024-02-08 0.55 12.45 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "44" 2024-02-05 2024-02-08 0.6 13 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "44" 2024-02-05 2024-02-08 0.65 14 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "44" 2024-02-05 2024-02-08 0.7 14 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "44" 2024-02-05 2024-02-08 0.75 15 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "44" 2024-02-05 2024-02-08 0.8 16 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "44" 2024-02-05 2024-02-08 0.85 16 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "44" 2024-02-05 2024-02-08 0.9 18.3 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "44" 2024-02-05 2024-02-08 0.95 23.05 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "44" 2024-02-05 2024-02-08 0.975 24.525 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "44" 2024-02-05 2024-02-08 0.99 25.04 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "44" 2024-02-05 2024-02-09 0.01 3.97 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "44" 2024-02-05 2024-02-09 0.025 5 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "44" 2024-02-05 2024-02-09 0.05 5 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "44" 2024-02-05 2024-02-09 0.1 6 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "44" 2024-02-05 2024-02-09 0.15 8 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "44" 2024-02-05 2024-02-09 0.2 9 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "44" 2024-02-05 2024-02-09 0.25 11 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "44" 2024-02-05 2024-02-09 0.3 11 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "44" 2024-02-05 2024-02-09 0.35 11.65 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "44" 2024-02-05 2024-02-09 0.4 12 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "44" 2024-02-05 2024-02-09 0.45 13 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "44" 2024-02-05 2024-02-09 0.5 13 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "44" 2024-02-05 2024-02-09 0.55 14 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "44" 2024-02-05 2024-02-09 0.6 15 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "44" 2024-02-05 2024-02-09 0.65 16.35 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "44" 2024-02-05 2024-02-09 0.7 18 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "44" 2024-02-05 2024-02-09 0.75 18 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "44" 2024-02-05 2024-02-09 0.8 19 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "44" 2024-02-05 2024-02-09 0.85 20 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "44" 2024-02-05 2024-02-09 0.9 23 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "44" 2024-02-05 2024-02-09 0.95 24.15 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "44" 2024-02-05 2024-02-09 0.975 28.525 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "44" 2024-02-05 2024-02-09 0.99 30.04 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "44" 2024-02-05 2024-02-10 0.01 1.99 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "44" 2024-02-05 2024-02-10 0.025 2 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "44" 2024-02-05 2024-02-10 0.05 2 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "44" 2024-02-05 2024-02-10 0.1 4 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "44" 2024-02-05 2024-02-10 0.15 5 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "44" 2024-02-05 2024-02-10 0.2 6 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "44" 2024-02-05 2024-02-10 0.25 6 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "44" 2024-02-05 2024-02-10 0.3 7 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "44" 2024-02-05 2024-02-10 0.35 7 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "44" 2024-02-05 2024-02-10 0.4 7.6 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "44" 2024-02-05 2024-02-10 0.45 8 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "44" 2024-02-05 2024-02-10 0.5 8 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "44" 2024-02-05 2024-02-10 0.55 9 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "44" 2024-02-05 2024-02-10 0.6 10 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "44" 2024-02-05 2024-02-10 0.65 10 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "44" 2024-02-05 2024-02-10 0.7 11 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "44" 2024-02-05 2024-02-10 0.75 11 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "44" 2024-02-05 2024-02-10 0.8 12 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "44" 2024-02-05 2024-02-10 0.85 13 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "44" 2024-02-05 2024-02-10 0.9 14.1 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "44" 2024-02-05 2024-02-10 0.95 16.05 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "44" 2024-02-05 2024-02-10 0.975 18.05 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "44" 2024-02-05 2024-02-10 0.99 19 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "44" 2024-02-05 2024-02-11 0.01 1.99 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "44" 2024-02-05 2024-02-11 0.025 3 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "44" 2024-02-05 2024-02-11 0.05 4 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "44" 2024-02-05 2024-02-11 0.1 4 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "44" 2024-02-05 2024-02-11 0.15 5 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "44" 2024-02-05 2024-02-11 0.2 5 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "44" 2024-02-05 2024-02-11 0.25 6 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "44" 2024-02-05 2024-02-11 0.3 6 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "44" 2024-02-05 2024-02-11 0.35 7 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "44" 2024-02-05 2024-02-11 0.4 7 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "44" 2024-02-05 2024-02-11 0.45 7 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "44" 2024-02-05 2024-02-11 0.5 8 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "44" 2024-02-05 2024-02-11 0.55 9 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "44" 2024-02-05 2024-02-11 0.6 10 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "44" 2024-02-05 2024-02-11 0.65 10 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "44" 2024-02-05 2024-02-11 0.7 11 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "44" 2024-02-05 2024-02-11 0.75 12 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "44" 2024-02-05 2024-02-11 0.8 12 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "44" 2024-02-05 2024-02-11 0.85 13.15 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "44" 2024-02-05 2024-02-11 0.9 14 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "44" 2024-02-05 2024-02-11 0.95 17 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "44" 2024-02-05 2024-02-11 0.975 18 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "44" 2024-02-05 2024-02-11 0.99 19.03 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "44" 2024-02-05 2024-02-12 0.01 2.99 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "44" 2024-02-05 2024-02-12 0.025 4.475 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "44" 2024-02-05 2024-02-12 0.05 5 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "44" 2024-02-05 2024-02-12 0.1 7.9 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "44" 2024-02-05 2024-02-12 0.15 9 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "44" 2024-02-05 2024-02-12 0.2 9 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "44" 2024-02-05 2024-02-12 0.25 10 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "44" 2024-02-05 2024-02-12 0.3 11 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "44" 2024-02-05 2024-02-12 0.35 11 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "44" 2024-02-05 2024-02-12 0.4 12 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "44" 2024-02-05 2024-02-12 0.45 12 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "44" 2024-02-05 2024-02-12 0.5 13 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "44" 2024-02-05 2024-02-12 0.55 13 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "44" 2024-02-05 2024-02-12 0.6 14 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "44" 2024-02-05 2024-02-12 0.65 15 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "44" 2024-02-05 2024-02-12 0.7 16 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "44" 2024-02-05 2024-02-12 0.75 17 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "44" 2024-02-05 2024-02-12 0.8 18.4 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "44" 2024-02-05 2024-02-12 0.85 20 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "44" 2024-02-05 2024-02-12 0.9 21.1 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "44" 2024-02-05 2024-02-12 0.95 27 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "44" 2024-02-05 2024-02-12 0.975 27.525 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "44" 2024-02-05 2024-02-12 0.99 33.01 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "44" 2024-02-05 2024-02-13 0.01 5 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "44" 2024-02-05 2024-02-13 0.025 6 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "44" 2024-02-05 2024-02-13 0.05 7 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "44" 2024-02-05 2024-02-13 0.1 8 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "44" 2024-02-05 2024-02-13 0.15 8 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "44" 2024-02-05 2024-02-13 0.2 8.8 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "44" 2024-02-05 2024-02-13 0.25 9.75 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "44" 2024-02-05 2024-02-13 0.3 10 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "44" 2024-02-05 2024-02-13 0.35 11 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "44" 2024-02-05 2024-02-13 0.4 11.6 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "44" 2024-02-05 2024-02-13 0.45 12 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "44" 2024-02-05 2024-02-13 0.5 13 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "44" 2024-02-05 2024-02-13 0.55 13 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "44" 2024-02-05 2024-02-13 0.6 14 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "44" 2024-02-05 2024-02-13 0.65 14 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "44" 2024-02-05 2024-02-13 0.7 15 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "44" 2024-02-05 2024-02-13 0.75 17 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "44" 2024-02-05 2024-02-13 0.8 19 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "44" 2024-02-05 2024-02-13 0.85 19 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "44" 2024-02-05 2024-02-13 0.9 22.1 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "44" 2024-02-05 2024-02-13 0.95 24 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "44" 2024-02-05 2024-02-13 0.975 24.525 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "44" 2024-02-05 2024-02-13 0.99 29.06 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "44" 2024-02-05 2024-02-14 0.01 5.99 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "44" 2024-02-05 2024-02-14 0.025 6 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "44" 2024-02-05 2024-02-14 0.05 7 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "44" 2024-02-05 2024-02-14 0.1 8 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "44" 2024-02-05 2024-02-14 0.15 9 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "44" 2024-02-05 2024-02-14 0.2 9.8 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "44" 2024-02-05 2024-02-14 0.25 10 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "44" 2024-02-05 2024-02-14 0.3 11 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "44" 2024-02-05 2024-02-14 0.35 11.65 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "44" 2024-02-05 2024-02-14 0.4 12.6 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "44" 2024-02-05 2024-02-14 0.45 13 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "44" 2024-02-05 2024-02-14 0.5 13 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "44" 2024-02-05 2024-02-14 0.55 14 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "44" 2024-02-05 2024-02-14 0.6 15 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "44" 2024-02-05 2024-02-14 0.65 15.35 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "44" 2024-02-05 2024-02-14 0.7 16 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "44" 2024-02-05 2024-02-14 0.75 17.25 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "44" 2024-02-05 2024-02-14 0.8 18.2 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "44" 2024-02-05 2024-02-14 0.85 20 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "44" 2024-02-05 2024-02-14 0.9 22.1 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "44" 2024-02-05 2024-02-14 0.95 26.1 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "44" 2024-02-05 2024-02-14 0.975 28.525 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "44" 2024-02-05 2024-02-14 0.99 30.09 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "44" 2024-02-05 2024-02-15 0.01 3 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "44" 2024-02-05 2024-02-15 0.025 4 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "44" 2024-02-05 2024-02-15 0.05 5 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "44" 2024-02-05 2024-02-15 0.1 6 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "44" 2024-02-05 2024-02-15 0.15 7 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "44" 2024-02-05 2024-02-15 0.2 8 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "44" 2024-02-05 2024-02-15 0.25 8 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "44" 2024-02-05 2024-02-15 0.3 9 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "44" 2024-02-05 2024-02-15 0.35 9.65000000000001 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "44" 2024-02-05 2024-02-15 0.4 10.6 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "44" 2024-02-05 2024-02-15 0.45 11 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "44" 2024-02-05 2024-02-15 0.5 12 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "44" 2024-02-05 2024-02-15 0.55 12 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "44" 2024-02-05 2024-02-15 0.6 13 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "44" 2024-02-05 2024-02-15 0.65 14 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "44" 2024-02-05 2024-02-15 0.7 15 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "44" 2024-02-05 2024-02-15 0.75 16 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "44" 2024-02-05 2024-02-15 0.8 16 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "44" 2024-02-05 2024-02-15 0.85 17 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "44" 2024-02-05 2024-02-15 0.9 20 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "44" 2024-02-05 2024-02-15 0.95 23.05 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "44" 2024-02-05 2024-02-15 0.975 27.6749999999999 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "44" 2024-02-05 2024-02-15 0.99 32 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "44" 2024-02-05 2024-02-16 0.01 1.99 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "44" 2024-02-05 2024-02-16 0.025 4 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "44" 2024-02-05 2024-02-16 0.05 4.95 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "44" 2024-02-05 2024-02-16 0.1 7 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "44" 2024-02-05 2024-02-16 0.15 8.85 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "44" 2024-02-05 2024-02-16 0.2 9.8 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "44" 2024-02-05 2024-02-16 0.25 10 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "44" 2024-02-05 2024-02-16 0.3 11 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "44" 2024-02-05 2024-02-16 0.35 12 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "44" 2024-02-05 2024-02-16 0.4 12 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "44" 2024-02-05 2024-02-16 0.45 13 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "44" 2024-02-05 2024-02-16 0.5 14 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "44" 2024-02-05 2024-02-16 0.55 14 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "44" 2024-02-05 2024-02-16 0.6 15 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "44" 2024-02-05 2024-02-16 0.65 16 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "44" 2024-02-05 2024-02-16 0.7 16 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "44" 2024-02-05 2024-02-16 0.75 17 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "44" 2024-02-05 2024-02-16 0.8 18 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "44" 2024-02-05 2024-02-16 0.85 19 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "44" 2024-02-05 2024-02-16 0.9 20 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "44" 2024-02-05 2024-02-16 0.95 21 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "44" 2024-02-05 2024-02-16 0.975 23.575 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "44" 2024-02-05 2024-02-16 0.99 25.08 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "44" 2024-02-05 2024-02-17 0.01 1.99 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "44" 2024-02-05 2024-02-17 0.025 2 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "44" 2024-02-05 2024-02-17 0.05 2 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "44" 2024-02-05 2024-02-17 0.1 3 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "44" 2024-02-05 2024-02-17 0.15 4 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "44" 2024-02-05 2024-02-17 0.2 4 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "44" 2024-02-05 2024-02-17 0.25 5 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "44" 2024-02-05 2024-02-17 0.3 6 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "44" 2024-02-05 2024-02-17 0.35 6 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "44" 2024-02-05 2024-02-17 0.4 7 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "44" 2024-02-05 2024-02-17 0.45 8 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "44" 2024-02-05 2024-02-17 0.5 8 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "44" 2024-02-05 2024-02-17 0.55 8 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "44" 2024-02-05 2024-02-17 0.6 9 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "44" 2024-02-05 2024-02-17 0.65 10 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "44" 2024-02-05 2024-02-17 0.7 10 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "44" 2024-02-05 2024-02-17 0.75 11 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "44" 2024-02-05 2024-02-17 0.8 12 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "44" 2024-02-05 2024-02-17 0.85 13 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "44" 2024-02-05 2024-02-17 0.9 13.1 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "44" 2024-02-05 2024-02-17 0.95 16 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "44" 2024-02-05 2024-02-17 0.975 17.525 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "44" 2024-02-05 2024-02-17 0.99 18 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "44" 2024-02-05 2024-02-18 0.01 0 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "44" 2024-02-05 2024-02-18 0.025 2.475 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "44" 2024-02-05 2024-02-18 0.05 3 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "44" 2024-02-05 2024-02-18 0.1 4.9 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "44" 2024-02-05 2024-02-18 0.15 5 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "44" 2024-02-05 2024-02-18 0.2 5.8 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "44" 2024-02-05 2024-02-18 0.25 6 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "44" 2024-02-05 2024-02-18 0.3 7 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "44" 2024-02-05 2024-02-18 0.35 7 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "44" 2024-02-05 2024-02-18 0.4 8 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "44" 2024-02-05 2024-02-18 0.45 9 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "44" 2024-02-05 2024-02-18 0.5 9.5 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "44" 2024-02-05 2024-02-18 0.55 10 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "44" 2024-02-05 2024-02-18 0.6 11 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "44" 2024-02-05 2024-02-18 0.65 12 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "44" 2024-02-05 2024-02-18 0.7 12 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "44" 2024-02-05 2024-02-18 0.75 13 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "44" 2024-02-05 2024-02-18 0.8 14 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "44" 2024-02-05 2024-02-18 0.85 15 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "44" 2024-02-05 2024-02-18 0.9 15.1 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "44" 2024-02-05 2024-02-18 0.95 16 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "44" 2024-02-05 2024-02-18 0.975 19.05 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "44" 2024-02-05 2024-02-18 0.99 21 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "44" 2024-02-05 2024-02-19 0.01 5 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "44" 2024-02-05 2024-02-19 0.025 5 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "44" 2024-02-05 2024-02-19 0.05 5 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "44" 2024-02-05 2024-02-19 0.1 6 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "44" 2024-02-05 2024-02-19 0.15 7.85 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "44" 2024-02-05 2024-02-19 0.2 9 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "44" 2024-02-05 2024-02-19 0.25 10 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "44" 2024-02-05 2024-02-19 0.3 11 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "44" 2024-02-05 2024-02-19 0.35 12 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "44" 2024-02-05 2024-02-19 0.4 12 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "44" 2024-02-05 2024-02-19 0.45 13 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "44" 2024-02-05 2024-02-19 0.5 13 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "44" 2024-02-05 2024-02-19 0.55 14 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "44" 2024-02-05 2024-02-19 0.6 15 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "44" 2024-02-05 2024-02-19 0.65 16 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "44" 2024-02-05 2024-02-19 0.7 17.3 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "44" 2024-02-05 2024-02-19 0.75 18.5 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "44" 2024-02-05 2024-02-19 0.8 20.2 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "44" 2024-02-05 2024-02-19 0.85 21.15 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "44" 2024-02-05 2024-02-19 0.9 23.1 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "44" 2024-02-05 2024-02-19 0.95 25 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "44" 2024-02-05 2024-02-19 0.975 25 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "44" 2024-02-05 2024-02-19 0.99 29.06 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "44" 2024-02-05 2024-02-20 0.01 2.99 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "44" 2024-02-05 2024-02-20 0.025 3.475 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "44" 2024-02-05 2024-02-20 0.05 5.9 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "44" 2024-02-05 2024-02-20 0.1 7 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "44" 2024-02-05 2024-02-20 0.15 8 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "44" 2024-02-05 2024-02-20 0.2 9 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "44" 2024-02-05 2024-02-20 0.25 10 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "44" 2024-02-05 2024-02-20 0.3 11 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "44" 2024-02-05 2024-02-20 0.35 12 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "44" 2024-02-05 2024-02-20 0.4 12.6 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "44" 2024-02-05 2024-02-20 0.45 13 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "44" 2024-02-05 2024-02-20 0.5 14 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "44" 2024-02-05 2024-02-20 0.55 15 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "44" 2024-02-05 2024-02-20 0.6 16 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "44" 2024-02-05 2024-02-20 0.65 16.35 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "44" 2024-02-05 2024-02-20 0.7 17 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "44" 2024-02-05 2024-02-20 0.75 18.25 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "44" 2024-02-05 2024-02-20 0.8 20 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "44" 2024-02-05 2024-02-20 0.85 22 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "44" 2024-02-05 2024-02-20 0.9 24 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "44" 2024-02-05 2024-02-20 0.95 26.05 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "44" 2024-02-05 2024-02-20 0.975 30.1499999999999 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "44" 2024-02-05 2024-02-20 0.99 34.05 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "44" 2024-02-05 2024-02-21 0.01 2 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "44" 2024-02-05 2024-02-21 0.025 3.475 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "44" 2024-02-05 2024-02-21 0.05 5 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "44" 2024-02-05 2024-02-21 0.1 6 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "44" 2024-02-05 2024-02-21 0.15 7 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "44" 2024-02-05 2024-02-21 0.2 8 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "44" 2024-02-05 2024-02-21 0.25 9 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "44" 2024-02-05 2024-02-21 0.3 10 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "44" 2024-02-05 2024-02-21 0.35 10.65 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "44" 2024-02-05 2024-02-21 0.4 11 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "44" 2024-02-05 2024-02-21 0.45 12 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "44" 2024-02-05 2024-02-21 0.5 12 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "44" 2024-02-05 2024-02-21 0.55 12.45 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "44" 2024-02-05 2024-02-21 0.6 14 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "44" 2024-02-05 2024-02-21 0.65 14 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "44" 2024-02-05 2024-02-21 0.7 16 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "44" 2024-02-05 2024-02-21 0.75 17 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "44" 2024-02-05 2024-02-21 0.8 18.2 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "44" 2024-02-05 2024-02-21 0.85 19.15 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "44" 2024-02-05 2024-02-21 0.9 21 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "44" 2024-02-05 2024-02-21 0.95 23 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "44" 2024-02-05 2024-02-21 0.975 30.7249999999999 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "44" 2024-02-05 2024-02-21 0.99 40.06 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "44" 2024-02-05 2024-02-22 0.01 1 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "44" 2024-02-05 2024-02-22 0.025 1.475 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "44" 2024-02-05 2024-02-22 0.05 2.95 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "44" 2024-02-05 2024-02-22 0.1 5.9 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "44" 2024-02-05 2024-02-22 0.15 7 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "44" 2024-02-05 2024-02-22 0.2 8 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "44" 2024-02-05 2024-02-22 0.25 8.75 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "44" 2024-02-05 2024-02-22 0.3 9 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "44" 2024-02-05 2024-02-22 0.35 10 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "44" 2024-02-05 2024-02-22 0.4 11 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "44" 2024-02-05 2024-02-22 0.45 11 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "44" 2024-02-05 2024-02-22 0.5 12 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "44" 2024-02-05 2024-02-22 0.55 13 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "44" 2024-02-05 2024-02-22 0.6 13 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "44" 2024-02-05 2024-02-22 0.65 14 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "44" 2024-02-05 2024-02-22 0.7 15 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "44" 2024-02-05 2024-02-22 0.75 16 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "44" 2024-02-05 2024-02-22 0.8 17 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "44" 2024-02-05 2024-02-22 0.85 17 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "44" 2024-02-05 2024-02-22 0.9 20 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "44" 2024-02-05 2024-02-22 0.95 22.05 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "44" 2024-02-05 2024-02-22 0.975 24.525 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "44" 2024-02-05 2024-02-22 0.99 26.05 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "44" 2024-02-05 2024-02-23 0.01 1.99 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "44" 2024-02-05 2024-02-23 0.025 4 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "44" 2024-02-05 2024-02-23 0.05 5.95 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "44" 2024-02-05 2024-02-23 0.1 6.9 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "44" 2024-02-05 2024-02-23 0.15 7.85 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "44" 2024-02-05 2024-02-23 0.2 8 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "44" 2024-02-05 2024-02-23 0.25 9 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "44" 2024-02-05 2024-02-23 0.3 10 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "44" 2024-02-05 2024-02-23 0.35 10 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "44" 2024-02-05 2024-02-23 0.4 11.6 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "44" 2024-02-05 2024-02-23 0.45 12.55 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "44" 2024-02-05 2024-02-23 0.5 13 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "44" 2024-02-05 2024-02-23 0.55 13.45 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "44" 2024-02-05 2024-02-23 0.6 15 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "44" 2024-02-05 2024-02-23 0.65 16 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "44" 2024-02-05 2024-02-23 0.7 17 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "44" 2024-02-05 2024-02-23 0.75 18 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "44" 2024-02-05 2024-02-23 0.8 19 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "44" 2024-02-05 2024-02-23 0.85 20 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "44" 2024-02-05 2024-02-23 0.9 21 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "44" 2024-02-05 2024-02-23 0.95 25 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "44" 2024-02-05 2024-02-23 0.975 29 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "44" 2024-02-05 2024-02-23 0.99 30.07 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "44" 2024-02-05 2024-02-24 0.01 1 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "44" 2024-02-05 2024-02-24 0.025 2 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "44" 2024-02-05 2024-02-24 0.05 2 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "44" 2024-02-05 2024-02-24 0.1 4 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "44" 2024-02-05 2024-02-24 0.15 5 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "44" 2024-02-05 2024-02-24 0.2 6 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "44" 2024-02-05 2024-02-24 0.25 6 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "44" 2024-02-05 2024-02-24 0.3 6 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "44" 2024-02-05 2024-02-24 0.35 7 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "44" 2024-02-05 2024-02-24 0.4 7 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "44" 2024-02-05 2024-02-24 0.45 8 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "44" 2024-02-05 2024-02-24 0.5 8 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "44" 2024-02-05 2024-02-24 0.55 8 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "44" 2024-02-05 2024-02-24 0.6 9 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "44" 2024-02-05 2024-02-24 0.65 9 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "44" 2024-02-05 2024-02-24 0.7 10 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "44" 2024-02-05 2024-02-24 0.75 11 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "44" 2024-02-05 2024-02-24 0.8 11.2 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "44" 2024-02-05 2024-02-24 0.85 13 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "44" 2024-02-05 2024-02-24 0.9 14 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "44" 2024-02-05 2024-02-24 0.95 15.05 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "44" 2024-02-05 2024-02-24 0.975 17 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "44" 2024-02-05 2024-02-24 0.99 17.03 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "44" 2024-02-05 2024-02-25 0.01 0.99 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "44" 2024-02-05 2024-02-25 0.025 1.475 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "44" 2024-02-05 2024-02-25 0.05 2 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "44" 2024-02-05 2024-02-25 0.1 4 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "44" 2024-02-05 2024-02-25 0.15 5 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "44" 2024-02-05 2024-02-25 0.2 5.8 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "44" 2024-02-05 2024-02-25 0.25 6 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "44" 2024-02-05 2024-02-25 0.3 7 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "44" 2024-02-05 2024-02-25 0.35 7 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "44" 2024-02-05 2024-02-25 0.4 8 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "44" 2024-02-05 2024-02-25 0.45 8 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "44" 2024-02-05 2024-02-25 0.5 9 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "44" 2024-02-05 2024-02-25 0.55 9 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "44" 2024-02-05 2024-02-25 0.6 10 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "44" 2024-02-05 2024-02-25 0.65 10.35 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "44" 2024-02-05 2024-02-25 0.7 11 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "44" 2024-02-05 2024-02-25 0.75 12 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "44" 2024-02-05 2024-02-25 0.8 13 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "44" 2024-02-05 2024-02-25 0.85 14.3 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "44" 2024-02-05 2024-02-25 0.9 17 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "44" 2024-02-05 2024-02-25 0.95 18 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "44" 2024-02-05 2024-02-25 0.975 19 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "44" 2024-02-05 2024-02-25 0.99 20.01 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "44" 2024-02-05 2024-02-26 0.01 2 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "44" 2024-02-05 2024-02-26 0.025 3 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "44" 2024-02-05 2024-02-26 0.05 4 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "44" 2024-02-05 2024-02-26 0.1 6 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "44" 2024-02-05 2024-02-26 0.15 7.85 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "44" 2024-02-05 2024-02-26 0.2 8 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "44" 2024-02-05 2024-02-26 0.25 8.75 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "44" 2024-02-05 2024-02-26 0.3 9.7 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "44" 2024-02-05 2024-02-26 0.35 11 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "44" 2024-02-05 2024-02-26 0.4 11 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "44" 2024-02-05 2024-02-26 0.45 12 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "44" 2024-02-05 2024-02-26 0.5 13 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "44" 2024-02-05 2024-02-26 0.55 14 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "44" 2024-02-05 2024-02-26 0.6 15 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "44" 2024-02-05 2024-02-26 0.65 16.35 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "44" 2024-02-05 2024-02-26 0.7 17.3 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "44" 2024-02-05 2024-02-26 0.75 19.25 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "44" 2024-02-05 2024-02-26 0.8 21 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "44" 2024-02-05 2024-02-26 0.85 23 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "44" 2024-02-05 2024-02-26 0.9 24.1 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "44" 2024-02-05 2024-02-26 0.95 29 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "44" 2024-02-05 2024-02-26 0.975 31.05 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "44" 2024-02-05 2024-02-26 0.99 34.04 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "44" 2024-02-05 2024-02-27 0.01 3.99 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "44" 2024-02-05 2024-02-27 0.025 4 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "44" 2024-02-05 2024-02-27 0.05 5 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "44" 2024-02-05 2024-02-27 0.1 7 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "44" 2024-02-05 2024-02-27 0.15 9 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "44" 2024-02-05 2024-02-27 0.2 10 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "44" 2024-02-05 2024-02-27 0.25 11 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "44" 2024-02-05 2024-02-27 0.3 11 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "44" 2024-02-05 2024-02-27 0.35 12 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "44" 2024-02-05 2024-02-27 0.4 12 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "44" 2024-02-05 2024-02-27 0.45 12 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "44" 2024-02-05 2024-02-27 0.5 13.5 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "44" 2024-02-05 2024-02-27 0.55 14 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "44" 2024-02-05 2024-02-27 0.6 15 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "44" 2024-02-05 2024-02-27 0.65 16 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "44" 2024-02-05 2024-02-27 0.7 17 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "44" 2024-02-05 2024-02-27 0.75 17.25 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "44" 2024-02-05 2024-02-27 0.8 20.2 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "44" 2024-02-05 2024-02-27 0.85 23 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "44" 2024-02-05 2024-02-27 0.9 24.1 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "44" 2024-02-05 2024-02-27 0.95 27 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "44" 2024-02-05 2024-02-27 0.975 29 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "44" 2024-02-05 2024-02-27 0.99 35.01 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "44" 2024-02-05 2024-02-28 0.01 3 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "44" 2024-02-05 2024-02-28 0.025 3 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "44" 2024-02-05 2024-02-28 0.05 4.95 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "44" 2024-02-05 2024-02-28 0.1 6.9 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "44" 2024-02-05 2024-02-28 0.15 7 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "44" 2024-02-05 2024-02-28 0.2 8 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "44" 2024-02-05 2024-02-28 0.25 9 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "44" 2024-02-05 2024-02-28 0.3 10 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "44" 2024-02-05 2024-02-28 0.35 10 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "44" 2024-02-05 2024-02-28 0.4 11 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "44" 2024-02-05 2024-02-28 0.45 12 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "44" 2024-02-05 2024-02-28 0.5 13 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "44" 2024-02-05 2024-02-28 0.55 13 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "44" 2024-02-05 2024-02-28 0.6 14 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "44" 2024-02-05 2024-02-28 0.65 15 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "44" 2024-02-05 2024-02-28 0.7 15.3 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "44" 2024-02-05 2024-02-28 0.75 17 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "44" 2024-02-05 2024-02-28 0.8 19 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "44" 2024-02-05 2024-02-28 0.85 20 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "44" 2024-02-05 2024-02-28 0.9 22 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "44" 2024-02-05 2024-02-28 0.95 25.05 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "44" 2024-02-05 2024-02-28 0.975 28.05 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "44" 2024-02-05 2024-02-28 0.99 30.1300000000001 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "44" 2024-02-05 2024-02-29 0.01 2.98 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "44" 2024-02-05 2024-02-29 0.025 3.475 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "44" 2024-02-05 2024-02-29 0.05 4.95 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "44" 2024-02-05 2024-02-29 0.1 6 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "44" 2024-02-05 2024-02-29 0.15 6 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "44" 2024-02-05 2024-02-29 0.2 7 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "44" 2024-02-05 2024-02-29 0.25 8 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "44" 2024-02-05 2024-02-29 0.3 8 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "44" 2024-02-05 2024-02-29 0.35 9 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "44" 2024-02-05 2024-02-29 0.4 9 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "44" 2024-02-05 2024-02-29 0.45 10 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "44" 2024-02-05 2024-02-29 0.5 11 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "44" 2024-02-05 2024-02-29 0.55 12 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "44" 2024-02-05 2024-02-29 0.6 13 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "44" 2024-02-05 2024-02-29 0.65 14 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "44" 2024-02-05 2024-02-29 0.7 16 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "44" 2024-02-05 2024-02-29 0.75 17 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "44" 2024-02-05 2024-02-29 0.8 18 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "44" 2024-02-05 2024-02-29 0.85 20 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "44" 2024-02-05 2024-02-29 0.9 22 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "44" 2024-02-05 2024-02-29 0.95 24 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "44" 2024-02-05 2024-02-29 0.975 27.525 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "44" 2024-02-05 2024-02-29 0.99 32.04 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "44" 2024-02-05 2024-03-01 0.01 3.98 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "44" 2024-02-05 2024-03-01 0.025 4 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "44" 2024-02-05 2024-03-01 0.05 5.9 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "44" 2024-02-05 2024-03-01 0.1 7 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "44" 2024-02-05 2024-03-01 0.15 8 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "44" 2024-02-05 2024-03-01 0.2 8.8 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "44" 2024-02-05 2024-03-01 0.25 9 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "44" 2024-02-05 2024-03-01 0.3 10 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "44" 2024-02-05 2024-03-01 0.35 11 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "44" 2024-02-05 2024-03-01 0.4 12 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "44" 2024-02-05 2024-03-01 0.45 13 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "44" 2024-02-05 2024-03-01 0.5 13 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "44" 2024-02-05 2024-03-01 0.55 14 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "44" 2024-02-05 2024-03-01 0.6 15 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "44" 2024-02-05 2024-03-01 0.65 15 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "44" 2024-02-05 2024-03-01 0.7 16 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "44" 2024-02-05 2024-03-01 0.75 17 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "44" 2024-02-05 2024-03-01 0.8 19.2 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "44" 2024-02-05 2024-03-01 0.85 21.15 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "44" 2024-02-05 2024-03-01 0.9 23.1 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "44" 2024-02-05 2024-03-01 0.95 26.05 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "44" 2024-02-05 2024-03-01 0.975 28 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "44" 2024-02-05 2024-03-01 0.99 29.01 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "44" 2024-02-05 2024-03-02 0.01 0.99 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "44" 2024-02-05 2024-03-02 0.025 1 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "44" 2024-02-05 2024-03-02 0.05 1 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "44" 2024-02-05 2024-03-02 0.1 3 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "44" 2024-02-05 2024-03-02 0.15 4 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "44" 2024-02-05 2024-03-02 0.2 5 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "44" 2024-02-05 2024-03-02 0.25 5.75 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "44" 2024-02-05 2024-03-02 0.3 6 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "44" 2024-02-05 2024-03-02 0.35 7 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "44" 2024-02-05 2024-03-02 0.4 7 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "44" 2024-02-05 2024-03-02 0.45 8 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "44" 2024-02-05 2024-03-02 0.5 8 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "44" 2024-02-05 2024-03-02 0.55 9 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "44" 2024-02-05 2024-03-02 0.6 10 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "44" 2024-02-05 2024-03-02 0.65 10 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "44" 2024-02-05 2024-03-02 0.7 11 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "44" 2024-02-05 2024-03-02 0.75 11 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "44" 2024-02-05 2024-03-02 0.8 12 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "44" 2024-02-05 2024-03-02 0.85 13.15 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "44" 2024-02-05 2024-03-02 0.9 14 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "44" 2024-02-05 2024-03-02 0.95 15.05 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "44" 2024-02-05 2024-03-02 0.975 19.05 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "44" 2024-02-05 2024-03-02 0.99 20.1400000000001 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "44" 2024-02-05 2024-03-03 0.01 1.99 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "44" 2024-02-05 2024-03-03 0.025 2 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "44" 2024-02-05 2024-03-03 0.05 2 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "44" 2024-02-05 2024-03-03 0.1 4 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "44" 2024-02-05 2024-03-03 0.15 5 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "44" 2024-02-05 2024-03-03 0.2 6 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "44" 2024-02-05 2024-03-03 0.25 6 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "44" 2024-02-05 2024-03-03 0.3 7 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "44" 2024-02-05 2024-03-03 0.35 8 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "44" 2024-02-05 2024-03-03 0.4 8 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "44" 2024-02-05 2024-03-03 0.45 9 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "44" 2024-02-05 2024-03-03 0.5 9 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "44" 2024-02-05 2024-03-03 0.55 10 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "44" 2024-02-05 2024-03-03 0.6 10.4 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "44" 2024-02-05 2024-03-03 0.65 11 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "44" 2024-02-05 2024-03-03 0.7 12 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "44" 2024-02-05 2024-03-03 0.75 13 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "44" 2024-02-05 2024-03-03 0.8 14.2 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "44" 2024-02-05 2024-03-03 0.85 15 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "44" 2024-02-05 2024-03-03 0.9 17.1 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "44" 2024-02-05 2024-03-03 0.95 21.05 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "44" 2024-02-05 2024-03-03 0.975 24.525 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "44" 2024-02-05 2024-03-03 0.99 27.02 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "44" 2024-02-05 2024-03-04 0.01 1.99 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "44" 2024-02-05 2024-03-04 0.025 2.475 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "44" 2024-02-05 2024-03-04 0.05 3.95 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "44" 2024-02-05 2024-03-04 0.1 5 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "44" 2024-02-05 2024-03-04 0.15 6 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "44" 2024-02-05 2024-03-04 0.2 7 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "44" 2024-02-05 2024-03-04 0.25 8 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "44" 2024-02-05 2024-03-04 0.3 9 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "44" 2024-02-05 2024-03-04 0.35 10 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "44" 2024-02-05 2024-03-04 0.4 10.6 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "44" 2024-02-05 2024-03-04 0.45 11.55 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "44" 2024-02-05 2024-03-04 0.5 12 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "44" 2024-02-05 2024-03-04 0.55 13 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "44" 2024-02-05 2024-03-04 0.6 14 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "44" 2024-02-05 2024-03-04 0.65 15 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "44" 2024-02-05 2024-03-04 0.7 16 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "44" 2024-02-05 2024-03-04 0.75 17 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "44" 2024-02-05 2024-03-04 0.8 19 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "44" 2024-02-05 2024-03-04 0.85 20.15 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "44" 2024-02-05 2024-03-04 0.9 23 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "44" 2024-02-05 2024-03-04 0.95 28.05 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "44" 2024-02-05 2024-03-04 0.975 30.525 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "44" 2024-02-05 2024-03-04 0.99 33.06 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "45" 2024-02-05 2024-02-06 0.01 41.96 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "45" 2024-02-05 2024-02-06 0.025 43 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "45" 2024-02-05 2024-02-06 0.05 44.95 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "45" 2024-02-05 2024-02-06 0.1 48 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "45" 2024-02-05 2024-02-06 0.15 52 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "45" 2024-02-05 2024-02-06 0.2 53 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "45" 2024-02-05 2024-02-06 0.25 54.75 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "45" 2024-02-05 2024-02-06 0.3 56 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "45" 2024-02-05 2024-02-06 0.35 58.65 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "45" 2024-02-05 2024-02-06 0.4 60 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "45" 2024-02-05 2024-02-06 0.45 61 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "45" 2024-02-05 2024-02-06 0.5 62 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "45" 2024-02-05 2024-02-06 0.55 63 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "45" 2024-02-05 2024-02-06 0.6 64 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "45" 2024-02-05 2024-02-06 0.65 65 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "45" 2024-02-05 2024-02-06 0.7 68 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "45" 2024-02-05 2024-02-06 0.75 69 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "45" 2024-02-05 2024-02-06 0.8 71 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "45" 2024-02-05 2024-02-06 0.85 73.3 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "45" 2024-02-05 2024-02-06 0.9 78.5 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "45" 2024-02-05 2024-02-06 0.95 87.15 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "45" 2024-02-05 2024-02-06 0.975 102.525 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "45" 2024-02-05 2024-02-06 0.99 114.1 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "45" 2024-02-05 2024-02-07 0.01 32.97 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "45" 2024-02-05 2024-02-07 0.025 37.275 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "45" 2024-02-05 2024-02-07 0.05 43.95 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "45" 2024-02-05 2024-02-07 0.1 48.9 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "45" 2024-02-05 2024-02-07 0.15 53 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "45" 2024-02-05 2024-02-07 0.2 55 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "45" 2024-02-05 2024-02-07 0.25 57.75 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "45" 2024-02-05 2024-02-07 0.3 59 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "45" 2024-02-05 2024-02-07 0.35 60 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "45" 2024-02-05 2024-02-07 0.4 62 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "45" 2024-02-05 2024-02-07 0.45 63 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "45" 2024-02-05 2024-02-07 0.5 65 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "45" 2024-02-05 2024-02-07 0.55 67 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "45" 2024-02-05 2024-02-07 0.6 68 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "45" 2024-02-05 2024-02-07 0.65 69 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "45" 2024-02-05 2024-02-07 0.7 70 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "45" 2024-02-05 2024-02-07 0.75 73.25 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "45" 2024-02-05 2024-02-07 0.8 76 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "45" 2024-02-05 2024-02-07 0.85 78.15 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "45" 2024-02-05 2024-02-07 0.9 81.1 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "45" 2024-02-05 2024-02-07 0.95 89.1 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "45" 2024-02-05 2024-02-07 0.975 92.525 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "45" 2024-02-05 2024-02-07 0.99 94.01 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "45" 2024-02-05 2024-02-08 0.01 32.9 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "45" 2024-02-05 2024-02-08 0.025 40.475 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "45" 2024-02-05 2024-02-08 0.05 41.95 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "45" 2024-02-05 2024-02-08 0.1 45.9 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "45" 2024-02-05 2024-02-08 0.15 48 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "45" 2024-02-05 2024-02-08 0.2 49 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "45" 2024-02-05 2024-02-08 0.25 51 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "45" 2024-02-05 2024-02-08 0.3 53 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "45" 2024-02-05 2024-02-08 0.35 55 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "45" 2024-02-05 2024-02-08 0.4 57 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "45" 2024-02-05 2024-02-08 0.45 59 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "45" 2024-02-05 2024-02-08 0.5 61 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "45" 2024-02-05 2024-02-08 0.55 62.45 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "45" 2024-02-05 2024-02-08 0.6 64 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "45" 2024-02-05 2024-02-08 0.65 65 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "45" 2024-02-05 2024-02-08 0.7 68 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "45" 2024-02-05 2024-02-08 0.75 70.5 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "45" 2024-02-05 2024-02-08 0.8 73 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "45" 2024-02-05 2024-02-08 0.85 74.3 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "45" 2024-02-05 2024-02-08 0.9 79 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "45" 2024-02-05 2024-02-08 0.95 88.05 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "45" 2024-02-05 2024-02-08 0.975 90.575 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "45" 2024-02-05 2024-02-08 0.99 105.11 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "45" 2024-02-05 2024-02-09 0.01 39.96 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "45" 2024-02-05 2024-02-09 0.025 41 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "45" 2024-02-05 2024-02-09 0.05 42.95 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "45" 2024-02-05 2024-02-09 0.1 45.9 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "45" 2024-02-05 2024-02-09 0.15 48 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "45" 2024-02-05 2024-02-09 0.2 50 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "45" 2024-02-05 2024-02-09 0.25 52 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "45" 2024-02-05 2024-02-09 0.3 54.4 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "45" 2024-02-05 2024-02-09 0.35 56 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "45" 2024-02-05 2024-02-09 0.4 58 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "45" 2024-02-05 2024-02-09 0.45 60.55 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "45" 2024-02-05 2024-02-09 0.5 62 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "45" 2024-02-05 2024-02-09 0.55 62 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "45" 2024-02-05 2024-02-09 0.6 63 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "45" 2024-02-05 2024-02-09 0.65 65.35 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "45" 2024-02-05 2024-02-09 0.7 68 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "45" 2024-02-05 2024-02-09 0.75 69.25 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "45" 2024-02-05 2024-02-09 0.8 70.2 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "45" 2024-02-05 2024-02-09 0.85 73.15 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "45" 2024-02-05 2024-02-09 0.9 83 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "45" 2024-02-05 2024-02-09 0.95 86.05 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "45" 2024-02-05 2024-02-09 0.975 89.525 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "45" 2024-02-05 2024-02-09 0.99 95.1200000000001 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "45" 2024-02-05 2024-02-10 0.01 33.95 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "45" 2024-02-05 2024-02-10 0.025 35.475 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "45" 2024-02-05 2024-02-10 0.05 37 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "45" 2024-02-05 2024-02-10 0.1 40.9 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "45" 2024-02-05 2024-02-10 0.15 44.85 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "45" 2024-02-05 2024-02-10 0.2 45.8 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "45" 2024-02-05 2024-02-10 0.25 49 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "45" 2024-02-05 2024-02-10 0.3 50 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "45" 2024-02-05 2024-02-10 0.35 52 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "45" 2024-02-05 2024-02-10 0.4 53 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "45" 2024-02-05 2024-02-10 0.45 54 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "45" 2024-02-05 2024-02-10 0.5 55.5 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "45" 2024-02-05 2024-02-10 0.55 57.45 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "45" 2024-02-05 2024-02-10 0.6 59.4 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "45" 2024-02-05 2024-02-10 0.65 62 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "45" 2024-02-05 2024-02-10 0.7 63 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "45" 2024-02-05 2024-02-10 0.75 64.25 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "45" 2024-02-05 2024-02-10 0.8 67.2 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "45" 2024-02-05 2024-02-10 0.85 71 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "45" 2024-02-05 2024-02-10 0.9 74.1 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "45" 2024-02-05 2024-02-10 0.95 79.15 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "45" 2024-02-05 2024-02-10 0.975 85.525 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "45" 2024-02-05 2024-02-10 0.99 92.1700000000001 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "45" 2024-02-05 2024-02-11 0.01 33.93 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "45" 2024-02-05 2024-02-11 0.025 38.95 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "45" 2024-02-05 2024-02-11 0.05 40 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "45" 2024-02-05 2024-02-11 0.1 42.9 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "45" 2024-02-05 2024-02-11 0.15 45.85 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "45" 2024-02-05 2024-02-11 0.2 48 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "45" 2024-02-05 2024-02-11 0.25 50 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "45" 2024-02-05 2024-02-11 0.3 52.7 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "45" 2024-02-05 2024-02-11 0.35 56 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "45" 2024-02-05 2024-02-11 0.4 58 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "45" 2024-02-05 2024-02-11 0.45 60.55 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "45" 2024-02-05 2024-02-11 0.5 62 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "45" 2024-02-05 2024-02-11 0.55 65 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "45" 2024-02-05 2024-02-11 0.6 67 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "45" 2024-02-05 2024-02-11 0.65 68 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "45" 2024-02-05 2024-02-11 0.7 69.3 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "45" 2024-02-05 2024-02-11 0.75 71 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "45" 2024-02-05 2024-02-11 0.8 73.2 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "45" 2024-02-05 2024-02-11 0.85 76 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "45" 2024-02-05 2024-02-11 0.9 81.3 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "45" 2024-02-05 2024-02-11 0.95 90.1 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "45" 2024-02-05 2024-02-11 0.975 93.05 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "45" 2024-02-05 2024-02-11 0.99 95.02 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "45" 2024-02-05 2024-02-12 0.01 36.93 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "45" 2024-02-05 2024-02-12 0.025 37.475 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "45" 2024-02-05 2024-02-12 0.05 41 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "45" 2024-02-05 2024-02-12 0.1 46 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "45" 2024-02-05 2024-02-12 0.15 49.85 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "45" 2024-02-05 2024-02-12 0.2 52.8 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "45" 2024-02-05 2024-02-12 0.25 54.75 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "45" 2024-02-05 2024-02-12 0.3 56 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "45" 2024-02-05 2024-02-12 0.35 57.65 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "45" 2024-02-05 2024-02-12 0.4 60 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "45" 2024-02-05 2024-02-12 0.45 61.55 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "45" 2024-02-05 2024-02-12 0.5 65 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "45" 2024-02-05 2024-02-12 0.55 68 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "45" 2024-02-05 2024-02-12 0.6 69 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "45" 2024-02-05 2024-02-12 0.65 71.35 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "45" 2024-02-05 2024-02-12 0.7 72.3 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "45" 2024-02-05 2024-02-12 0.75 74 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "45" 2024-02-05 2024-02-12 0.8 76.2 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "45" 2024-02-05 2024-02-12 0.85 80.15 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "45" 2024-02-05 2024-02-12 0.9 86.2 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "45" 2024-02-05 2024-02-12 0.95 92.1 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "45" 2024-02-05 2024-02-12 0.975 102 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "45" 2024-02-05 2024-02-12 0.99 108.2 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "45" 2024-02-05 2024-02-13 0.01 32.98 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "45" 2024-02-05 2024-02-13 0.025 35.475 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "45" 2024-02-05 2024-02-13 0.05 38.9 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "45" 2024-02-05 2024-02-13 0.1 45.9 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "45" 2024-02-05 2024-02-13 0.15 47.85 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "45" 2024-02-05 2024-02-13 0.2 50.8 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "45" 2024-02-05 2024-02-13 0.25 53.75 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "45" 2024-02-05 2024-02-13 0.3 56.4 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "45" 2024-02-05 2024-02-13 0.35 58.65 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "45" 2024-02-05 2024-02-13 0.4 61.6 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "45" 2024-02-05 2024-02-13 0.45 64 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "45" 2024-02-05 2024-02-13 0.5 65 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "45" 2024-02-05 2024-02-13 0.55 67.45 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "45" 2024-02-05 2024-02-13 0.6 69.4 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "45" 2024-02-05 2024-02-13 0.65 70.35 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "45" 2024-02-05 2024-02-13 0.7 73 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "45" 2024-02-05 2024-02-13 0.75 75 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "45" 2024-02-05 2024-02-13 0.8 77.2 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "45" 2024-02-05 2024-02-13 0.85 86 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "45" 2024-02-05 2024-02-13 0.9 92.2 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "45" 2024-02-05 2024-02-13 0.95 99 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "45" 2024-02-05 2024-02-13 0.975 100.575 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "45" 2024-02-05 2024-02-13 0.99 106.03 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "45" 2024-02-05 2024-02-14 0.01 27.96 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "45" 2024-02-05 2024-02-14 0.025 35.425 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "45" 2024-02-05 2024-02-14 0.05 43.8 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "45" 2024-02-05 2024-02-14 0.1 46.9 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "45" 2024-02-05 2024-02-14 0.15 50.85 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "45" 2024-02-05 2024-02-14 0.2 55 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "45" 2024-02-05 2024-02-14 0.25 56.75 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "45" 2024-02-05 2024-02-14 0.3 58 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "45" 2024-02-05 2024-02-14 0.35 59 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "45" 2024-02-05 2024-02-14 0.4 60 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "45" 2024-02-05 2024-02-14 0.45 61 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "45" 2024-02-05 2024-02-14 0.5 61.5 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "45" 2024-02-05 2024-02-14 0.55 63 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "45" 2024-02-05 2024-02-14 0.6 66.4 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "45" 2024-02-05 2024-02-14 0.65 68 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "45" 2024-02-05 2024-02-14 0.7 69.3 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "45" 2024-02-05 2024-02-14 0.75 71 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "45" 2024-02-05 2024-02-14 0.8 73.2 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "45" 2024-02-05 2024-02-14 0.85 77.45 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "45" 2024-02-05 2024-02-14 0.9 87 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "45" 2024-02-05 2024-02-14 0.95 95.05 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "45" 2024-02-05 2024-02-14 0.975 98.525 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "45" 2024-02-05 2024-02-14 0.99 102.01 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "45" 2024-02-05 2024-02-15 0.01 27.92 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "45" 2024-02-05 2024-02-15 0.025 33.95 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "45" 2024-02-05 2024-02-15 0.05 39 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "45" 2024-02-05 2024-02-15 0.1 42.9 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "45" 2024-02-05 2024-02-15 0.15 46 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "45" 2024-02-05 2024-02-15 0.2 47.8 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "45" 2024-02-05 2024-02-15 0.25 51 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "45" 2024-02-05 2024-02-15 0.3 52.7 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "45" 2024-02-05 2024-02-15 0.35 54.65 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "45" 2024-02-05 2024-02-15 0.4 56 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "45" 2024-02-05 2024-02-15 0.45 59 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "45" 2024-02-05 2024-02-15 0.5 61.5 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "45" 2024-02-05 2024-02-15 0.55 62.45 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "45" 2024-02-05 2024-02-15 0.6 66 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "45" 2024-02-05 2024-02-15 0.65 67.35 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "45" 2024-02-05 2024-02-15 0.7 71.3 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "45" 2024-02-05 2024-02-15 0.75 72.25 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "45" 2024-02-05 2024-02-15 0.8 75 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "45" 2024-02-05 2024-02-15 0.85 76.15 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "45" 2024-02-05 2024-02-15 0.9 84 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "45" 2024-02-05 2024-02-15 0.95 90.1 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "45" 2024-02-05 2024-02-15 0.975 95.575 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "45" 2024-02-05 2024-02-15 0.99 97.01 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "45" 2024-02-05 2024-02-16 0.01 31 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "45" 2024-02-05 2024-02-16 0.025 34.475 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "45" 2024-02-05 2024-02-16 0.05 36.95 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "45" 2024-02-05 2024-02-16 0.1 40.9 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "45" 2024-02-05 2024-02-16 0.15 42.85 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "45" 2024-02-05 2024-02-16 0.2 46.8 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "45" 2024-02-05 2024-02-16 0.25 51.75 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "45" 2024-02-05 2024-02-16 0.3 54 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "45" 2024-02-05 2024-02-16 0.35 55 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "45" 2024-02-05 2024-02-16 0.4 55.6 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "45" 2024-02-05 2024-02-16 0.45 58 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "45" 2024-02-05 2024-02-16 0.5 61 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "45" 2024-02-05 2024-02-16 0.55 64 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "45" 2024-02-05 2024-02-16 0.6 66 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "45" 2024-02-05 2024-02-16 0.65 68.7 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "45" 2024-02-05 2024-02-16 0.7 71 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "45" 2024-02-05 2024-02-16 0.75 73 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "45" 2024-02-05 2024-02-16 0.8 79 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "45" 2024-02-05 2024-02-16 0.85 81.15 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "45" 2024-02-05 2024-02-16 0.9 86.1 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "45" 2024-02-05 2024-02-16 0.95 92.05 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "45" 2024-02-05 2024-02-16 0.975 95.575 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "45" 2024-02-05 2024-02-16 0.99 102.07 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "45" 2024-02-05 2024-02-17 0.01 26.99 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "45" 2024-02-05 2024-02-17 0.025 31.325 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "45" 2024-02-05 2024-02-17 0.05 36 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "45" 2024-02-05 2024-02-17 0.1 38.8 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "45" 2024-02-05 2024-02-17 0.15 42.85 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "45" 2024-02-05 2024-02-17 0.2 45.6 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "45" 2024-02-05 2024-02-17 0.25 47 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "45" 2024-02-05 2024-02-17 0.3 48 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "45" 2024-02-05 2024-02-17 0.35 49.65 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "45" 2024-02-05 2024-02-17 0.4 52 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "45" 2024-02-05 2024-02-17 0.45 54 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "45" 2024-02-05 2024-02-17 0.5 55 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "45" 2024-02-05 2024-02-17 0.55 57 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "45" 2024-02-05 2024-02-17 0.6 60 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "45" 2024-02-05 2024-02-17 0.65 62 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "45" 2024-02-05 2024-02-17 0.7 64 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "45" 2024-02-05 2024-02-17 0.75 66.25 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "45" 2024-02-05 2024-02-17 0.8 70 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "45" 2024-02-05 2024-02-17 0.85 72.3 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "45" 2024-02-05 2024-02-17 0.9 79 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "45" 2024-02-05 2024-02-17 0.95 81.05 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "45" 2024-02-05 2024-02-17 0.975 88.625 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "45" 2024-02-05 2024-02-17 0.99 98.1400000000001 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "45" 2024-02-05 2024-02-18 0.01 24.98 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "45" 2024-02-05 2024-02-18 0.025 30.475 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "45" 2024-02-05 2024-02-18 0.05 36.85 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "45" 2024-02-05 2024-02-18 0.1 42.9 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "45" 2024-02-05 2024-02-18 0.15 46 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "45" 2024-02-05 2024-02-18 0.2 50.4 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "45" 2024-02-05 2024-02-18 0.25 53 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "45" 2024-02-05 2024-02-18 0.3 54 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "45" 2024-02-05 2024-02-18 0.35 55 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "45" 2024-02-05 2024-02-18 0.4 58.6 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "45" 2024-02-05 2024-02-18 0.45 60.55 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "45" 2024-02-05 2024-02-18 0.5 62.5 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "45" 2024-02-05 2024-02-18 0.55 64 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "45" 2024-02-05 2024-02-18 0.6 67.4 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "45" 2024-02-05 2024-02-18 0.65 70 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "45" 2024-02-05 2024-02-18 0.7 71.3 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "45" 2024-02-05 2024-02-18 0.75 75 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "45" 2024-02-05 2024-02-18 0.8 77.2 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "45" 2024-02-05 2024-02-18 0.85 81.15 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "45" 2024-02-05 2024-02-18 0.9 85.1 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "45" 2024-02-05 2024-02-18 0.95 95.15 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "45" 2024-02-05 2024-02-18 0.975 107.25 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "45" 2024-02-05 2024-02-18 0.99 118.05 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "45" 2024-02-05 2024-02-19 0.01 31 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "45" 2024-02-05 2024-02-19 0.025 35.85 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "45" 2024-02-05 2024-02-19 0.05 40 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "45" 2024-02-05 2024-02-19 0.1 46 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "45" 2024-02-05 2024-02-19 0.15 47 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "45" 2024-02-05 2024-02-19 0.2 50.8 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "45" 2024-02-05 2024-02-19 0.25 53.75 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "45" 2024-02-05 2024-02-19 0.3 57 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "45" 2024-02-05 2024-02-19 0.35 59 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "45" 2024-02-05 2024-02-19 0.4 62.6 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "45" 2024-02-05 2024-02-19 0.45 64.1 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "45" 2024-02-05 2024-02-19 0.5 66 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "45" 2024-02-05 2024-02-19 0.55 67.45 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "45" 2024-02-05 2024-02-19 0.6 69 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "45" 2024-02-05 2024-02-19 0.65 71 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "45" 2024-02-05 2024-02-19 0.7 74.3 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "45" 2024-02-05 2024-02-19 0.75 78.25 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "45" 2024-02-05 2024-02-19 0.8 80 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "45" 2024-02-05 2024-02-19 0.85 84.15 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "45" 2024-02-05 2024-02-19 0.9 88.1 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "45" 2024-02-05 2024-02-19 0.95 99.2 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "45" 2024-02-05 2024-02-19 0.975 111.625 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "45" 2024-02-05 2024-02-19 0.99 116.09 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "45" 2024-02-05 2024-02-20 0.01 29.92 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "45" 2024-02-05 2024-02-20 0.025 33.9 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "45" 2024-02-05 2024-02-20 0.05 38.95 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "45" 2024-02-05 2024-02-20 0.1 45 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "45" 2024-02-05 2024-02-20 0.15 51 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "45" 2024-02-05 2024-02-20 0.2 52 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "45" 2024-02-05 2024-02-20 0.25 54 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "45" 2024-02-05 2024-02-20 0.3 56.7 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "45" 2024-02-05 2024-02-20 0.35 59 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "45" 2024-02-05 2024-02-20 0.4 61.6 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "45" 2024-02-05 2024-02-20 0.45 64.55 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "45" 2024-02-05 2024-02-20 0.5 66 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "45" 2024-02-05 2024-02-20 0.55 67 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "45" 2024-02-05 2024-02-20 0.6 69 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "45" 2024-02-05 2024-02-20 0.65 69.35 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "45" 2024-02-05 2024-02-20 0.7 72.3 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "45" 2024-02-05 2024-02-20 0.75 74.25 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "45" 2024-02-05 2024-02-20 0.8 77.2 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "45" 2024-02-05 2024-02-20 0.85 83 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "45" 2024-02-05 2024-02-20 0.9 90 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "45" 2024-02-05 2024-02-20 0.95 103.2 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "45" 2024-02-05 2024-02-20 0.975 110.05 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "45" 2024-02-05 2024-02-20 0.99 113.18 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "45" 2024-02-05 2024-02-21 0.01 29.97 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "45" 2024-02-05 2024-02-21 0.025 31 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "45" 2024-02-05 2024-02-21 0.05 33.95 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "45" 2024-02-05 2024-02-21 0.1 43.7 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "45" 2024-02-05 2024-02-21 0.15 46.7 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "45" 2024-02-05 2024-02-21 0.2 52 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "45" 2024-02-05 2024-02-21 0.25 54 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "45" 2024-02-05 2024-02-21 0.3 56 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "45" 2024-02-05 2024-02-21 0.35 58.65 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "45" 2024-02-05 2024-02-21 0.4 60.6 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "45" 2024-02-05 2024-02-21 0.45 61.55 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "45" 2024-02-05 2024-02-21 0.5 64 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "45" 2024-02-05 2024-02-21 0.55 66.45 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "45" 2024-02-05 2024-02-21 0.6 70 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "45" 2024-02-05 2024-02-21 0.65 72 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "45" 2024-02-05 2024-02-21 0.7 75 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "45" 2024-02-05 2024-02-21 0.75 76.25 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "45" 2024-02-05 2024-02-21 0.8 83.2 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "45" 2024-02-05 2024-02-21 0.85 86.3 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "45" 2024-02-05 2024-02-21 0.9 91.4 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "45" 2024-02-05 2024-02-21 0.95 104 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "45" 2024-02-05 2024-02-21 0.975 109.725 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "45" 2024-02-05 2024-02-21 0.99 114.03 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "45" 2024-02-05 2024-02-22 0.01 24.9 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "45" 2024-02-05 2024-02-22 0.025 33.475 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "45" 2024-02-05 2024-02-22 0.05 36.85 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "45" 2024-02-05 2024-02-22 0.1 40.8 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "45" 2024-02-05 2024-02-22 0.15 45.85 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "45" 2024-02-05 2024-02-22 0.2 49.8 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "45" 2024-02-05 2024-02-22 0.25 51 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "45" 2024-02-05 2024-02-22 0.3 53 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "45" 2024-02-05 2024-02-22 0.35 54 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "45" 2024-02-05 2024-02-22 0.4 56.6 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "45" 2024-02-05 2024-02-22 0.45 58.55 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "45" 2024-02-05 2024-02-22 0.5 60.5 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "45" 2024-02-05 2024-02-22 0.55 62 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "45" 2024-02-05 2024-02-22 0.6 65.2 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "45" 2024-02-05 2024-02-22 0.65 67 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "45" 2024-02-05 2024-02-22 0.7 70 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "45" 2024-02-05 2024-02-22 0.75 73 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "45" 2024-02-05 2024-02-22 0.8 77.8 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "45" 2024-02-05 2024-02-22 0.85 84.15 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "45" 2024-02-05 2024-02-22 0.9 90.1 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "45" 2024-02-05 2024-02-22 0.95 97.1 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "45" 2024-02-05 2024-02-22 0.975 105.05 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "45" 2024-02-05 2024-02-22 0.99 106.24 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "45" 2024-02-05 2024-02-23 0.01 28.89 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "45" 2024-02-05 2024-02-23 0.025 32.425 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "45" 2024-02-05 2024-02-23 0.05 35 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "45" 2024-02-05 2024-02-23 0.1 36 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "45" 2024-02-05 2024-02-23 0.15 44.4 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "45" 2024-02-05 2024-02-23 0.2 45.8 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "45" 2024-02-05 2024-02-23 0.25 50 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "45" 2024-02-05 2024-02-23 0.3 53 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "45" 2024-02-05 2024-02-23 0.35 53 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "45" 2024-02-05 2024-02-23 0.4 55.6 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "45" 2024-02-05 2024-02-23 0.45 57.55 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "45" 2024-02-05 2024-02-23 0.5 59 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "45" 2024-02-05 2024-02-23 0.55 61.9 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "45" 2024-02-05 2024-02-23 0.6 66 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "45" 2024-02-05 2024-02-23 0.65 68.7 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "45" 2024-02-05 2024-02-23 0.7 75 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "45" 2024-02-05 2024-02-23 0.75 77.5 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "45" 2024-02-05 2024-02-23 0.8 80.2 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "45" 2024-02-05 2024-02-23 0.85 82.45 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "45" 2024-02-05 2024-02-23 0.9 90 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "45" 2024-02-05 2024-02-23 0.95 93.05 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "45" 2024-02-05 2024-02-23 0.975 102.775 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "45" 2024-02-05 2024-02-23 0.99 109.03 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "45" 2024-02-05 2024-02-24 0.01 22.96 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "45" 2024-02-05 2024-02-24 0.025 27 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "45" 2024-02-05 2024-02-24 0.05 34.95 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "45" 2024-02-05 2024-02-24 0.1 38.9 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "45" 2024-02-05 2024-02-24 0.15 42.85 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "45" 2024-02-05 2024-02-24 0.2 44 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "45" 2024-02-05 2024-02-24 0.25 45 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "45" 2024-02-05 2024-02-24 0.3 46 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "45" 2024-02-05 2024-02-24 0.35 48.65 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "45" 2024-02-05 2024-02-24 0.4 51 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "45" 2024-02-05 2024-02-24 0.45 53 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "45" 2024-02-05 2024-02-24 0.5 54 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "45" 2024-02-05 2024-02-24 0.55 56 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "45" 2024-02-05 2024-02-24 0.6 57 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "45" 2024-02-05 2024-02-24 0.65 58 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "45" 2024-02-05 2024-02-24 0.7 64 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "45" 2024-02-05 2024-02-24 0.75 67.25 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "45" 2024-02-05 2024-02-24 0.8 70.2 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "45" 2024-02-05 2024-02-24 0.85 73 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "45" 2024-02-05 2024-02-24 0.9 83.1 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "45" 2024-02-05 2024-02-24 0.95 95.4 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "45" 2024-02-05 2024-02-24 0.975 107.05 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "45" 2024-02-05 2024-02-24 0.99 108.01 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "45" 2024-02-05 2024-02-25 0.01 22.91 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "45" 2024-02-05 2024-02-25 0.025 36.95 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "45" 2024-02-05 2024-02-25 0.05 39 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "45" 2024-02-05 2024-02-25 0.1 41.9 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "45" 2024-02-05 2024-02-25 0.15 45 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "45" 2024-02-05 2024-02-25 0.2 48 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "45" 2024-02-05 2024-02-25 0.25 48.75 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "45" 2024-02-05 2024-02-25 0.3 50.7 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "45" 2024-02-05 2024-02-25 0.35 52.65 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "45" 2024-02-05 2024-02-25 0.4 55 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "45" 2024-02-05 2024-02-25 0.45 58.55 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "45" 2024-02-05 2024-02-25 0.5 61 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "45" 2024-02-05 2024-02-25 0.55 64.45 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "45" 2024-02-05 2024-02-25 0.6 66.4 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "45" 2024-02-05 2024-02-25 0.65 69.7 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "45" 2024-02-05 2024-02-25 0.7 73 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "45" 2024-02-05 2024-02-25 0.75 76 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "45" 2024-02-05 2024-02-25 0.8 78.6 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "45" 2024-02-05 2024-02-25 0.85 85.15 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "45" 2024-02-05 2024-02-25 0.9 93.2 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "45" 2024-02-05 2024-02-25 0.95 106 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "45" 2024-02-05 2024-02-25 0.975 112.775 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "45" 2024-02-05 2024-02-25 0.99 121.03 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "45" 2024-02-05 2024-02-26 0.01 23.95 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "45" 2024-02-05 2024-02-26 0.025 31.475 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "45" 2024-02-05 2024-02-26 0.05 33.95 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "45" 2024-02-05 2024-02-26 0.1 41.8 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "45" 2024-02-05 2024-02-26 0.15 46 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "45" 2024-02-05 2024-02-26 0.2 50.8 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "45" 2024-02-05 2024-02-26 0.25 54 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "45" 2024-02-05 2024-02-26 0.3 56.7 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "45" 2024-02-05 2024-02-26 0.35 58 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "45" 2024-02-05 2024-02-26 0.4 61 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "45" 2024-02-05 2024-02-26 0.45 62 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "45" 2024-02-05 2024-02-26 0.5 65.5 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "45" 2024-02-05 2024-02-26 0.55 67 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "45" 2024-02-05 2024-02-26 0.6 68.4 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "45" 2024-02-05 2024-02-26 0.65 70.35 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "45" 2024-02-05 2024-02-26 0.7 72.3 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "45" 2024-02-05 2024-02-26 0.75 77.5 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "45" 2024-02-05 2024-02-26 0.8 80.2 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "45" 2024-02-05 2024-02-26 0.85 87 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "45" 2024-02-05 2024-02-26 0.9 90.1 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "45" 2024-02-05 2024-02-26 0.95 102.05 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "45" 2024-02-05 2024-02-26 0.975 104 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "45" 2024-02-05 2024-02-26 0.99 109.22 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "45" 2024-02-05 2024-02-27 0.01 21.93 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "45" 2024-02-05 2024-02-27 0.025 31.9 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "45" 2024-02-05 2024-02-27 0.05 36.9 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "45" 2024-02-05 2024-02-27 0.1 39.9 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "45" 2024-02-05 2024-02-27 0.15 42.85 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "45" 2024-02-05 2024-02-27 0.2 46 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "45" 2024-02-05 2024-02-27 0.25 49.75 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "45" 2024-02-05 2024-02-27 0.3 51.7 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "45" 2024-02-05 2024-02-27 0.35 54.65 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "45" 2024-02-05 2024-02-27 0.4 57 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "45" 2024-02-05 2024-02-27 0.45 61.55 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "45" 2024-02-05 2024-02-27 0.5 65.5 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "45" 2024-02-05 2024-02-27 0.55 68 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "45" 2024-02-05 2024-02-27 0.6 69 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "45" 2024-02-05 2024-02-27 0.65 73 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "45" 2024-02-05 2024-02-27 0.7 76.3 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "45" 2024-02-05 2024-02-27 0.75 81 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "45" 2024-02-05 2024-02-27 0.8 85.2 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "45" 2024-02-05 2024-02-27 0.85 91 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "45" 2024-02-05 2024-02-27 0.9 99 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "45" 2024-02-05 2024-02-27 0.95 104.1 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "45" 2024-02-05 2024-02-27 0.975 110.525 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "45" 2024-02-05 2024-02-27 0.99 119.33 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "45" 2024-02-05 2024-02-28 0.01 19.97 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "45" 2024-02-05 2024-02-28 0.025 27.425 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "45" 2024-02-05 2024-02-28 0.05 31.9 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "45" 2024-02-05 2024-02-28 0.1 38 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "45" 2024-02-05 2024-02-28 0.15 41 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "45" 2024-02-05 2024-02-28 0.2 43.8 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "45" 2024-02-05 2024-02-28 0.25 48 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "45" 2024-02-05 2024-02-28 0.3 54 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "45" 2024-02-05 2024-02-28 0.35 58.6 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "45" 2024-02-05 2024-02-28 0.4 60 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "45" 2024-02-05 2024-02-28 0.45 62 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "45" 2024-02-05 2024-02-28 0.5 65 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "45" 2024-02-05 2024-02-28 0.55 67.9 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "45" 2024-02-05 2024-02-28 0.6 72 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "45" 2024-02-05 2024-02-28 0.65 74 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "45" 2024-02-05 2024-02-28 0.7 78 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "45" 2024-02-05 2024-02-28 0.75 79.25 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "45" 2024-02-05 2024-02-28 0.8 84.2 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "45" 2024-02-05 2024-02-28 0.85 86.15 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "45" 2024-02-05 2024-02-28 0.9 93.2 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "45" 2024-02-05 2024-02-28 0.95 105.25 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "45" 2024-02-05 2024-02-28 0.975 114.575 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "45" 2024-02-05 2024-02-28 0.99 118.16 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "45" 2024-02-05 2024-02-29 0.01 17.98 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "45" 2024-02-05 2024-02-29 0.025 27.9 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "45" 2024-02-05 2024-02-29 0.05 31.95 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "45" 2024-02-05 2024-02-29 0.1 36.9 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "45" 2024-02-05 2024-02-29 0.15 41 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "45" 2024-02-05 2024-02-29 0.2 46.8 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "45" 2024-02-05 2024-02-29 0.25 49 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "45" 2024-02-05 2024-02-29 0.3 51 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "45" 2024-02-05 2024-02-29 0.35 53.65 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "45" 2024-02-05 2024-02-29 0.4 57 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "45" 2024-02-05 2024-02-29 0.45 61 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "45" 2024-02-05 2024-02-29 0.5 62 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "45" 2024-02-05 2024-02-29 0.55 64 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "45" 2024-02-05 2024-02-29 0.6 66.4 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "45" 2024-02-05 2024-02-29 0.65 68.35 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "45" 2024-02-05 2024-02-29 0.7 70.3 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "45" 2024-02-05 2024-02-29 0.75 74.5 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "45" 2024-02-05 2024-02-29 0.8 77.2 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "45" 2024-02-05 2024-02-29 0.85 82.9 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "45" 2024-02-05 2024-02-29 0.9 96.3 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "45" 2024-02-05 2024-02-29 0.95 104.1 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "45" 2024-02-05 2024-02-29 0.975 111.575 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "45" 2024-02-05 2024-02-29 0.99 114.38 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "45" 2024-02-05 2024-03-01 0.01 19.94 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "45" 2024-02-05 2024-03-01 0.025 32.375 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "45" 2024-02-05 2024-03-01 0.05 35 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "45" 2024-02-05 2024-03-01 0.1 36.9 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "45" 2024-02-05 2024-03-01 0.15 40.7 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "45" 2024-02-05 2024-03-01 0.2 43.8 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "45" 2024-02-05 2024-03-01 0.25 48 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "45" 2024-02-05 2024-03-01 0.3 49.7 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "45" 2024-02-05 2024-03-01 0.35 52 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "45" 2024-02-05 2024-03-01 0.4 54.6 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "45" 2024-02-05 2024-03-01 0.45 58.1 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "45" 2024-02-05 2024-03-01 0.5 60.5 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "45" 2024-02-05 2024-03-01 0.55 63 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "45" 2024-02-05 2024-03-01 0.6 67 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "45" 2024-02-05 2024-03-01 0.65 71 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "45" 2024-02-05 2024-03-01 0.7 73 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "45" 2024-02-05 2024-03-01 0.75 77.5 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "45" 2024-02-05 2024-03-01 0.8 83 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "45" 2024-02-05 2024-03-01 0.85 87.15 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "45" 2024-02-05 2024-03-01 0.9 99 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "45" 2024-02-05 2024-03-01 0.95 105.05 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "45" 2024-02-05 2024-03-01 0.975 110.2 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "45" 2024-02-05 2024-03-01 0.99 120 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "45" 2024-02-05 2024-03-02 0.01 15.95 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "45" 2024-02-05 2024-03-02 0.025 20.375 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "45" 2024-02-05 2024-03-02 0.05 23.95 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "45" 2024-02-05 2024-03-02 0.1 32 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "45" 2024-02-05 2024-03-02 0.15 36.85 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "45" 2024-02-05 2024-03-02 0.2 41 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "45" 2024-02-05 2024-03-02 0.25 45 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "45" 2024-02-05 2024-03-02 0.3 47 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "45" 2024-02-05 2024-03-02 0.35 48 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "45" 2024-02-05 2024-03-02 0.4 51 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "45" 2024-02-05 2024-03-02 0.45 52 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "45" 2024-02-05 2024-03-02 0.5 53 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "45" 2024-02-05 2024-03-02 0.55 56 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "45" 2024-02-05 2024-03-02 0.6 58.4 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "45" 2024-02-05 2024-03-02 0.65 60 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "45" 2024-02-05 2024-03-02 0.7 64.3 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "45" 2024-02-05 2024-03-02 0.75 68 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "45" 2024-02-05 2024-03-02 0.8 75 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "45" 2024-02-05 2024-03-02 0.85 84 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "45" 2024-02-05 2024-03-02 0.9 86.8000000000001 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "45" 2024-02-05 2024-03-02 0.95 96.05 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "45" 2024-02-05 2024-03-02 0.975 105.25 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "45" 2024-02-05 2024-03-02 0.99 112.12 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "45" 2024-02-05 2024-03-03 0.01 22.85 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "45" 2024-02-05 2024-03-03 0.025 26.95 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "45" 2024-02-05 2024-03-03 0.05 29.95 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "45" 2024-02-05 2024-03-03 0.1 38.9 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "45" 2024-02-05 2024-03-03 0.15 42 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "45" 2024-02-05 2024-03-03 0.2 45 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "45" 2024-02-05 2024-03-03 0.25 48 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "45" 2024-02-05 2024-03-03 0.3 50 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "45" 2024-02-05 2024-03-03 0.35 52.65 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "45" 2024-02-05 2024-03-03 0.4 55.6 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "45" 2024-02-05 2024-03-03 0.45 58 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "45" 2024-02-05 2024-03-03 0.5 60 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "45" 2024-02-05 2024-03-03 0.55 62.9 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "45" 2024-02-05 2024-03-03 0.6 66.4 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "45" 2024-02-05 2024-03-03 0.65 70 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "45" 2024-02-05 2024-03-03 0.7 72.6 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "45" 2024-02-05 2024-03-03 0.75 75.25 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "45" 2024-02-05 2024-03-03 0.8 80.2 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "45" 2024-02-05 2024-03-03 0.85 90 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "45" 2024-02-05 2024-03-03 0.9 94 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "45" 2024-02-05 2024-03-03 0.95 101 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "45" 2024-02-05 2024-03-03 0.975 104.05 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "45" 2024-02-05 2024-03-03 0.99 122.08 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "45" 2024-02-05 2024-03-04 0.01 18.93 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "45" 2024-02-05 2024-03-04 0.025 24.275 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "45" 2024-02-05 2024-03-04 0.05 31.85 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "45" 2024-02-05 2024-03-04 0.1 38.5 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "45" 2024-02-05 2024-03-04 0.15 46.7 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "45" 2024-02-05 2024-03-04 0.2 48.8 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "45" 2024-02-05 2024-03-04 0.25 53 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "45" 2024-02-05 2024-03-04 0.3 54.7 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "45" 2024-02-05 2024-03-04 0.35 58 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "45" 2024-02-05 2024-03-04 0.4 60.6 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "45" 2024-02-05 2024-03-04 0.45 62 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "45" 2024-02-05 2024-03-04 0.5 63 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "45" 2024-02-05 2024-03-04 0.55 66.45 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "45" 2024-02-05 2024-03-04 0.6 68.4 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "45" 2024-02-05 2024-03-04 0.65 74.35 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "45" 2024-02-05 2024-03-04 0.7 78.3 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "45" 2024-02-05 2024-03-04 0.75 86 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "45" 2024-02-05 2024-03-04 0.8 89 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "45" 2024-02-05 2024-03-04 0.85 92.15 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "45" 2024-02-05 2024-03-04 0.9 102.3 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "45" 2024-02-05 2024-03-04 0.95 112.15 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "45" 2024-02-05 2024-03-04 0.975 124.775 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "45" 2024-02-05 2024-03-04 0.99 132.24 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "46" 2024-02-05 2024-02-06 0.01 2.98 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "46" 2024-02-05 2024-02-06 0.025 3 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "46" 2024-02-05 2024-02-06 0.05 3.95 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "46" 2024-02-05 2024-02-06 0.1 5 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "46" 2024-02-05 2024-02-06 0.15 5 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "46" 2024-02-05 2024-02-06 0.2 6 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "46" 2024-02-05 2024-02-06 0.25 7 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "46" 2024-02-05 2024-02-06 0.3 7 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "46" 2024-02-05 2024-02-06 0.35 7.65000000000001 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "46" 2024-02-05 2024-02-06 0.4 8 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "46" 2024-02-05 2024-02-06 0.45 8 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "46" 2024-02-05 2024-02-06 0.5 9 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "46" 2024-02-05 2024-02-06 0.55 9 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "46" 2024-02-05 2024-02-06 0.6 10 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "46" 2024-02-05 2024-02-06 0.65 10 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "46" 2024-02-05 2024-02-06 0.7 10 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "46" 2024-02-05 2024-02-06 0.75 11 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "46" 2024-02-05 2024-02-06 0.8 12 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "46" 2024-02-05 2024-02-06 0.85 12 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "46" 2024-02-05 2024-02-06 0.9 13 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "46" 2024-02-05 2024-02-06 0.95 15.05 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "46" 2024-02-05 2024-02-06 0.975 17 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "46" 2024-02-05 2024-02-06 0.99 17.06 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "46" 2024-02-05 2024-02-07 0.01 2.99 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "46" 2024-02-05 2024-02-07 0.025 4 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "46" 2024-02-05 2024-02-07 0.05 4 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "46" 2024-02-05 2024-02-07 0.1 4.9 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "46" 2024-02-05 2024-02-07 0.15 5.85 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "46" 2024-02-05 2024-02-07 0.2 6 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "46" 2024-02-05 2024-02-07 0.25 6.75 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "46" 2024-02-05 2024-02-07 0.3 7.7 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "46" 2024-02-05 2024-02-07 0.35 8 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "46" 2024-02-05 2024-02-07 0.4 9 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "46" 2024-02-05 2024-02-07 0.45 9 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "46" 2024-02-05 2024-02-07 0.5 10 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "46" 2024-02-05 2024-02-07 0.55 10 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "46" 2024-02-05 2024-02-07 0.6 11 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "46" 2024-02-05 2024-02-07 0.65 11 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "46" 2024-02-05 2024-02-07 0.7 11 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "46" 2024-02-05 2024-02-07 0.75 12 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "46" 2024-02-05 2024-02-07 0.8 12 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "46" 2024-02-05 2024-02-07 0.85 13 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "46" 2024-02-05 2024-02-07 0.9 14 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "46" 2024-02-05 2024-02-07 0.95 16.05 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "46" 2024-02-05 2024-02-07 0.975 17 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "46" 2024-02-05 2024-02-07 0.99 19.03 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "46" 2024-02-05 2024-02-08 0.01 1.99 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "46" 2024-02-05 2024-02-08 0.025 3 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "46" 2024-02-05 2024-02-08 0.05 3 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "46" 2024-02-05 2024-02-08 0.1 4 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "46" 2024-02-05 2024-02-08 0.15 5.85 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "46" 2024-02-05 2024-02-08 0.2 6 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "46" 2024-02-05 2024-02-08 0.25 7 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "46" 2024-02-05 2024-02-08 0.3 7 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "46" 2024-02-05 2024-02-08 0.35 8 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "46" 2024-02-05 2024-02-08 0.4 8 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "46" 2024-02-05 2024-02-08 0.45 9 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "46" 2024-02-05 2024-02-08 0.5 9 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "46" 2024-02-05 2024-02-08 0.55 9 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "46" 2024-02-05 2024-02-08 0.6 9.40000000000001 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "46" 2024-02-05 2024-02-08 0.65 10 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "46" 2024-02-05 2024-02-08 0.7 11 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "46" 2024-02-05 2024-02-08 0.75 11 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "46" 2024-02-05 2024-02-08 0.8 12 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "46" 2024-02-05 2024-02-08 0.85 12 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "46" 2024-02-05 2024-02-08 0.9 13.1 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "46" 2024-02-05 2024-02-08 0.95 15 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "46" 2024-02-05 2024-02-08 0.975 17.05 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "46" 2024-02-05 2024-02-08 0.99 18.01 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "46" 2024-02-05 2024-02-09 0.01 2 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "46" 2024-02-05 2024-02-09 0.025 2.475 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "46" 2024-02-05 2024-02-09 0.05 3 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "46" 2024-02-05 2024-02-09 0.1 4 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "46" 2024-02-05 2024-02-09 0.15 5 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "46" 2024-02-05 2024-02-09 0.2 5 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "46" 2024-02-05 2024-02-09 0.25 5.75 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "46" 2024-02-05 2024-02-09 0.3 6 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "46" 2024-02-05 2024-02-09 0.35 7 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "46" 2024-02-05 2024-02-09 0.4 7 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "46" 2024-02-05 2024-02-09 0.45 8 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "46" 2024-02-05 2024-02-09 0.5 8 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "46" 2024-02-05 2024-02-09 0.55 9 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "46" 2024-02-05 2024-02-09 0.6 9 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "46" 2024-02-05 2024-02-09 0.65 9 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "46" 2024-02-05 2024-02-09 0.7 10 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "46" 2024-02-05 2024-02-09 0.75 11 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "46" 2024-02-05 2024-02-09 0.8 11 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "46" 2024-02-05 2024-02-09 0.85 12.15 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "46" 2024-02-05 2024-02-09 0.9 14 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "46" 2024-02-05 2024-02-09 0.95 15.05 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "46" 2024-02-05 2024-02-09 0.975 17 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "46" 2024-02-05 2024-02-09 0.99 17.08 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "46" 2024-02-05 2024-02-10 0.01 1.99 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "46" 2024-02-05 2024-02-10 0.025 2 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "46" 2024-02-05 2024-02-10 0.05 3 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "46" 2024-02-05 2024-02-10 0.1 4 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "46" 2024-02-05 2024-02-10 0.15 4 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "46" 2024-02-05 2024-02-10 0.2 5 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "46" 2024-02-05 2024-02-10 0.25 5 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "46" 2024-02-05 2024-02-10 0.3 6 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "46" 2024-02-05 2024-02-10 0.35 6 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "46" 2024-02-05 2024-02-10 0.4 6 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "46" 2024-02-05 2024-02-10 0.45 6 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "46" 2024-02-05 2024-02-10 0.5 7 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "46" 2024-02-05 2024-02-10 0.55 7.45 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "46" 2024-02-05 2024-02-10 0.6 8 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "46" 2024-02-05 2024-02-10 0.65 8.35000000000001 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "46" 2024-02-05 2024-02-10 0.7 9.30000000000001 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "46" 2024-02-05 2024-02-10 0.75 10 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "46" 2024-02-05 2024-02-10 0.8 11 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "46" 2024-02-05 2024-02-10 0.85 11 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "46" 2024-02-05 2024-02-10 0.9 12 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "46" 2024-02-05 2024-02-10 0.95 13.05 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "46" 2024-02-05 2024-02-10 0.975 14 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "46" 2024-02-05 2024-02-10 0.99 14.01 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "46" 2024-02-05 2024-02-11 0.01 1 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "46" 2024-02-05 2024-02-11 0.025 2 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "46" 2024-02-05 2024-02-11 0.05 2 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "46" 2024-02-05 2024-02-11 0.1 3 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "46" 2024-02-05 2024-02-11 0.15 4 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "46" 2024-02-05 2024-02-11 0.2 5 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "46" 2024-02-05 2024-02-11 0.25 5 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "46" 2024-02-05 2024-02-11 0.3 6 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "46" 2024-02-05 2024-02-11 0.35 7 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "46" 2024-02-05 2024-02-11 0.4 7 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "46" 2024-02-05 2024-02-11 0.45 8 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "46" 2024-02-05 2024-02-11 0.5 8 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "46" 2024-02-05 2024-02-11 0.55 8.45 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "46" 2024-02-05 2024-02-11 0.6 9 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "46" 2024-02-05 2024-02-11 0.65 9 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "46" 2024-02-05 2024-02-11 0.7 9 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "46" 2024-02-05 2024-02-11 0.75 10 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "46" 2024-02-05 2024-02-11 0.8 11 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "46" 2024-02-05 2024-02-11 0.85 12 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "46" 2024-02-05 2024-02-11 0.9 13 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "46" 2024-02-05 2024-02-11 0.95 14.05 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "46" 2024-02-05 2024-02-11 0.975 15.525 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "46" 2024-02-05 2024-02-11 0.99 16.03 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "46" 2024-02-05 2024-02-12 0.01 1.99 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "46" 2024-02-05 2024-02-12 0.025 2.95 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "46" 2024-02-05 2024-02-12 0.05 4.95 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "46" 2024-02-05 2024-02-12 0.1 5.9 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "46" 2024-02-05 2024-02-12 0.15 6 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "46" 2024-02-05 2024-02-12 0.2 7 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "46" 2024-02-05 2024-02-12 0.25 7 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "46" 2024-02-05 2024-02-12 0.3 7 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "46" 2024-02-05 2024-02-12 0.35 8 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "46" 2024-02-05 2024-02-12 0.4 8.6 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "46" 2024-02-05 2024-02-12 0.45 9.55 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "46" 2024-02-05 2024-02-12 0.5 10 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "46" 2024-02-05 2024-02-12 0.55 11.45 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "46" 2024-02-05 2024-02-12 0.6 12 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "46" 2024-02-05 2024-02-12 0.65 12 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "46" 2024-02-05 2024-02-12 0.7 13 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "46" 2024-02-05 2024-02-12 0.75 13 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "46" 2024-02-05 2024-02-12 0.8 14 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "46" 2024-02-05 2024-02-12 0.85 14 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "46" 2024-02-05 2024-02-12 0.9 15.1 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "46" 2024-02-05 2024-02-12 0.95 17 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "46" 2024-02-05 2024-02-12 0.975 20.525 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "46" 2024-02-05 2024-02-12 0.99 21.03 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "46" 2024-02-05 2024-02-13 0.01 1.99 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "46" 2024-02-05 2024-02-13 0.025 2 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "46" 2024-02-05 2024-02-13 0.05 3 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "46" 2024-02-05 2024-02-13 0.1 4 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "46" 2024-02-05 2024-02-13 0.15 5 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "46" 2024-02-05 2024-02-13 0.2 5 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "46" 2024-02-05 2024-02-13 0.25 6 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "46" 2024-02-05 2024-02-13 0.3 6 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "46" 2024-02-05 2024-02-13 0.35 7 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "46" 2024-02-05 2024-02-13 0.4 7 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "46" 2024-02-05 2024-02-13 0.45 8 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "46" 2024-02-05 2024-02-13 0.5 8 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "46" 2024-02-05 2024-02-13 0.55 8.45 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "46" 2024-02-05 2024-02-13 0.6 9 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "46" 2024-02-05 2024-02-13 0.65 10 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "46" 2024-02-05 2024-02-13 0.7 11 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "46" 2024-02-05 2024-02-13 0.75 11 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "46" 2024-02-05 2024-02-13 0.8 12.2 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "46" 2024-02-05 2024-02-13 0.85 13 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "46" 2024-02-05 2024-02-13 0.9 14 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "46" 2024-02-05 2024-02-13 0.95 15.05 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "46" 2024-02-05 2024-02-13 0.975 18.525 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "46" 2024-02-05 2024-02-13 0.99 20 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "46" 2024-02-05 2024-02-14 0.01 2 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "46" 2024-02-05 2024-02-14 0.025 2.475 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "46" 2024-02-05 2024-02-14 0.05 3.95 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "46" 2024-02-05 2024-02-14 0.1 4 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "46" 2024-02-05 2024-02-14 0.15 5 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "46" 2024-02-05 2024-02-14 0.2 5 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "46" 2024-02-05 2024-02-14 0.25 6 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "46" 2024-02-05 2024-02-14 0.3 7 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "46" 2024-02-05 2024-02-14 0.35 7 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "46" 2024-02-05 2024-02-14 0.4 8 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "46" 2024-02-05 2024-02-14 0.45 8.55 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "46" 2024-02-05 2024-02-14 0.5 9 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "46" 2024-02-05 2024-02-14 0.55 10 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "46" 2024-02-05 2024-02-14 0.6 10 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "46" 2024-02-05 2024-02-14 0.65 11 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "46" 2024-02-05 2024-02-14 0.7 11 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "46" 2024-02-05 2024-02-14 0.75 11 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "46" 2024-02-05 2024-02-14 0.8 12 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "46" 2024-02-05 2024-02-14 0.85 12.15 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "46" 2024-02-05 2024-02-14 0.9 13 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "46" 2024-02-05 2024-02-14 0.95 17 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "46" 2024-02-05 2024-02-14 0.975 18.05 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "46" 2024-02-05 2024-02-14 0.99 21 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "46" 2024-02-05 2024-02-15 0.01 1.98 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "46" 2024-02-05 2024-02-15 0.025 2 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "46" 2024-02-05 2024-02-15 0.05 2.95 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "46" 2024-02-05 2024-02-15 0.1 4 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "46" 2024-02-05 2024-02-15 0.15 4 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "46" 2024-02-05 2024-02-15 0.2 5 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "46" 2024-02-05 2024-02-15 0.25 6 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "46" 2024-02-05 2024-02-15 0.3 6 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "46" 2024-02-05 2024-02-15 0.35 7 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "46" 2024-02-05 2024-02-15 0.4 8 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "46" 2024-02-05 2024-02-15 0.45 8 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "46" 2024-02-05 2024-02-15 0.5 8 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "46" 2024-02-05 2024-02-15 0.55 9 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "46" 2024-02-05 2024-02-15 0.6 9 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "46" 2024-02-05 2024-02-15 0.65 10 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "46" 2024-02-05 2024-02-15 0.7 10 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "46" 2024-02-05 2024-02-15 0.75 11 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "46" 2024-02-05 2024-02-15 0.8 12.2 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "46" 2024-02-05 2024-02-15 0.85 14 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "46" 2024-02-05 2024-02-15 0.9 15 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "46" 2024-02-05 2024-02-15 0.95 18 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "46" 2024-02-05 2024-02-15 0.975 18.525 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "46" 2024-02-05 2024-02-15 0.99 20.01 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "46" 2024-02-05 2024-02-16 0.01 0.99 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "46" 2024-02-05 2024-02-16 0.025 2 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "46" 2024-02-05 2024-02-16 0.05 2 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "46" 2024-02-05 2024-02-16 0.1 3 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "46" 2024-02-05 2024-02-16 0.15 4 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "46" 2024-02-05 2024-02-16 0.2 5 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "46" 2024-02-05 2024-02-16 0.25 5.75 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "46" 2024-02-05 2024-02-16 0.3 6 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "46" 2024-02-05 2024-02-16 0.35 6 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "46" 2024-02-05 2024-02-16 0.4 7 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "46" 2024-02-05 2024-02-16 0.45 7 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "46" 2024-02-05 2024-02-16 0.5 8 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "46" 2024-02-05 2024-02-16 0.55 8 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "46" 2024-02-05 2024-02-16 0.6 9 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "46" 2024-02-05 2024-02-16 0.65 9 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "46" 2024-02-05 2024-02-16 0.7 9 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "46" 2024-02-05 2024-02-16 0.75 10 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "46" 2024-02-05 2024-02-16 0.8 10 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "46" 2024-02-05 2024-02-16 0.85 11.15 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "46" 2024-02-05 2024-02-16 0.9 13 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "46" 2024-02-05 2024-02-16 0.95 14.05 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "46" 2024-02-05 2024-02-16 0.975 15.525 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "46" 2024-02-05 2024-02-16 0.99 17.02 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "46" 2024-02-05 2024-02-17 0.01 2 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "46" 2024-02-05 2024-02-17 0.025 2.475 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "46" 2024-02-05 2024-02-17 0.05 3 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "46" 2024-02-05 2024-02-17 0.1 4 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "46" 2024-02-05 2024-02-17 0.15 4 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "46" 2024-02-05 2024-02-17 0.2 4 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "46" 2024-02-05 2024-02-17 0.25 5 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "46" 2024-02-05 2024-02-17 0.3 5 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "46" 2024-02-05 2024-02-17 0.35 5 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "46" 2024-02-05 2024-02-17 0.4 5.6 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "46" 2024-02-05 2024-02-17 0.45 6 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "46" 2024-02-05 2024-02-17 0.5 6.5 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "46" 2024-02-05 2024-02-17 0.55 7 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "46" 2024-02-05 2024-02-17 0.6 8 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "46" 2024-02-05 2024-02-17 0.65 8 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "46" 2024-02-05 2024-02-17 0.7 8 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "46" 2024-02-05 2024-02-17 0.75 9 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "46" 2024-02-05 2024-02-17 0.8 10 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "46" 2024-02-05 2024-02-17 0.85 11 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "46" 2024-02-05 2024-02-17 0.9 12 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "46" 2024-02-05 2024-02-17 0.95 13.05 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "46" 2024-02-05 2024-02-17 0.975 15.525 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "46" 2024-02-05 2024-02-17 0.99 17.03 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "46" 2024-02-05 2024-02-18 0.01 1 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "46" 2024-02-05 2024-02-18 0.025 1.475 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "46" 2024-02-05 2024-02-18 0.05 2 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "46" 2024-02-05 2024-02-18 0.1 4 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "46" 2024-02-05 2024-02-18 0.15 4 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "46" 2024-02-05 2024-02-18 0.2 4 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "46" 2024-02-05 2024-02-18 0.25 5 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "46" 2024-02-05 2024-02-18 0.3 6 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "46" 2024-02-05 2024-02-18 0.35 6 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "46" 2024-02-05 2024-02-18 0.4 7 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "46" 2024-02-05 2024-02-18 0.45 7 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "46" 2024-02-05 2024-02-18 0.5 8 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "46" 2024-02-05 2024-02-18 0.55 8 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "46" 2024-02-05 2024-02-18 0.6 8.40000000000001 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "46" 2024-02-05 2024-02-18 0.65 9 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "46" 2024-02-05 2024-02-18 0.7 10 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "46" 2024-02-05 2024-02-18 0.75 10 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "46" 2024-02-05 2024-02-18 0.8 10 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "46" 2024-02-05 2024-02-18 0.85 11.15 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "46" 2024-02-05 2024-02-18 0.9 13 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "46" 2024-02-05 2024-02-18 0.95 14.05 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "46" 2024-02-05 2024-02-18 0.975 15.525 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "46" 2024-02-05 2024-02-18 0.99 16.02 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "46" 2024-02-05 2024-02-19 0.01 2 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "46" 2024-02-05 2024-02-19 0.025 2.475 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "46" 2024-02-05 2024-02-19 0.05 4 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "46" 2024-02-05 2024-02-19 0.1 4.9 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "46" 2024-02-05 2024-02-19 0.15 5 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "46" 2024-02-05 2024-02-19 0.2 6 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "46" 2024-02-05 2024-02-19 0.25 7 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "46" 2024-02-05 2024-02-19 0.3 8 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "46" 2024-02-05 2024-02-19 0.35 9 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "46" 2024-02-05 2024-02-19 0.4 9 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "46" 2024-02-05 2024-02-19 0.45 9 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "46" 2024-02-05 2024-02-19 0.5 10 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "46" 2024-02-05 2024-02-19 0.55 10 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "46" 2024-02-05 2024-02-19 0.6 11 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "46" 2024-02-05 2024-02-19 0.65 11 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "46" 2024-02-05 2024-02-19 0.7 12 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "46" 2024-02-05 2024-02-19 0.75 13 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "46" 2024-02-05 2024-02-19 0.8 14 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "46" 2024-02-05 2024-02-19 0.85 15 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "46" 2024-02-05 2024-02-19 0.9 16 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "46" 2024-02-05 2024-02-19 0.95 18.05 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "46" 2024-02-05 2024-02-19 0.975 19.525 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "46" 2024-02-05 2024-02-19 0.99 20.01 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "46" 2024-02-05 2024-02-20 0.01 1.99 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "46" 2024-02-05 2024-02-20 0.025 2 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "46" 2024-02-05 2024-02-20 0.05 2.95 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "46" 2024-02-05 2024-02-20 0.1 3.9 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "46" 2024-02-05 2024-02-20 0.15 4.85 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "46" 2024-02-05 2024-02-20 0.2 5 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "46" 2024-02-05 2024-02-20 0.25 5 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "46" 2024-02-05 2024-02-20 0.3 6 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "46" 2024-02-05 2024-02-20 0.35 6 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "46" 2024-02-05 2024-02-20 0.4 7 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "46" 2024-02-05 2024-02-20 0.45 8 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "46" 2024-02-05 2024-02-20 0.5 9 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "46" 2024-02-05 2024-02-20 0.55 9 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "46" 2024-02-05 2024-02-20 0.6 9.40000000000001 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "46" 2024-02-05 2024-02-20 0.65 10 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "46" 2024-02-05 2024-02-20 0.7 10 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "46" 2024-02-05 2024-02-20 0.75 11 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "46" 2024-02-05 2024-02-20 0.8 11.2 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "46" 2024-02-05 2024-02-20 0.85 13 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "46" 2024-02-05 2024-02-20 0.9 14 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "46" 2024-02-05 2024-02-20 0.95 16.05 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "46" 2024-02-05 2024-02-20 0.975 17.525 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "46" 2024-02-05 2024-02-20 0.99 19.02 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "46" 2024-02-05 2024-02-21 0.01 1 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "46" 2024-02-05 2024-02-21 0.025 2.475 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "46" 2024-02-05 2024-02-21 0.05 4 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "46" 2024-02-05 2024-02-21 0.1 4 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "46" 2024-02-05 2024-02-21 0.15 5 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "46" 2024-02-05 2024-02-21 0.2 5 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "46" 2024-02-05 2024-02-21 0.25 6 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "46" 2024-02-05 2024-02-21 0.3 6 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "46" 2024-02-05 2024-02-21 0.35 7 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "46" 2024-02-05 2024-02-21 0.4 7 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "46" 2024-02-05 2024-02-21 0.45 7.55 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "46" 2024-02-05 2024-02-21 0.5 8 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "46" 2024-02-05 2024-02-21 0.55 8 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "46" 2024-02-05 2024-02-21 0.6 9 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "46" 2024-02-05 2024-02-21 0.65 9 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "46" 2024-02-05 2024-02-21 0.7 10 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "46" 2024-02-05 2024-02-21 0.75 10.25 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "46" 2024-02-05 2024-02-21 0.8 11.2 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "46" 2024-02-05 2024-02-21 0.85 12.15 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "46" 2024-02-05 2024-02-21 0.9 13 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "46" 2024-02-05 2024-02-21 0.95 15.05 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "46" 2024-02-05 2024-02-21 0.975 16.525 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "46" 2024-02-05 2024-02-21 0.99 18.01 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "46" 2024-02-05 2024-02-22 0.01 0.99 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "46" 2024-02-05 2024-02-22 0.025 2 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "46" 2024-02-05 2024-02-22 0.05 2 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "46" 2024-02-05 2024-02-22 0.1 3.9 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "46" 2024-02-05 2024-02-22 0.15 5 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "46" 2024-02-05 2024-02-22 0.2 5.8 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "46" 2024-02-05 2024-02-22 0.25 6 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "46" 2024-02-05 2024-02-22 0.3 6 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "46" 2024-02-05 2024-02-22 0.35 7 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "46" 2024-02-05 2024-02-22 0.4 7 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "46" 2024-02-05 2024-02-22 0.45 7 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "46" 2024-02-05 2024-02-22 0.5 8.5 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "46" 2024-02-05 2024-02-22 0.55 9 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "46" 2024-02-05 2024-02-22 0.6 9 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "46" 2024-02-05 2024-02-22 0.65 10 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "46" 2024-02-05 2024-02-22 0.7 11 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "46" 2024-02-05 2024-02-22 0.75 11 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "46" 2024-02-05 2024-02-22 0.8 12 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "46" 2024-02-05 2024-02-22 0.85 13 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "46" 2024-02-05 2024-02-22 0.9 14 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "46" 2024-02-05 2024-02-22 0.95 15 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "46" 2024-02-05 2024-02-22 0.975 16.525 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "46" 2024-02-05 2024-02-22 0.99 19.01 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "46" 2024-02-05 2024-02-23 0.01 0.99 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "46" 2024-02-05 2024-02-23 0.025 1 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "46" 2024-02-05 2024-02-23 0.05 1 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "46" 2024-02-05 2024-02-23 0.1 2.9 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "46" 2024-02-05 2024-02-23 0.15 3 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "46" 2024-02-05 2024-02-23 0.2 4 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "46" 2024-02-05 2024-02-23 0.25 5 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "46" 2024-02-05 2024-02-23 0.3 6 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "46" 2024-02-05 2024-02-23 0.35 6 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "46" 2024-02-05 2024-02-23 0.4 7 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "46" 2024-02-05 2024-02-23 0.45 7 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "46" 2024-02-05 2024-02-23 0.5 8 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "46" 2024-02-05 2024-02-23 0.55 8 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "46" 2024-02-05 2024-02-23 0.6 8 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "46" 2024-02-05 2024-02-23 0.65 9 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "46" 2024-02-05 2024-02-23 0.7 10 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "46" 2024-02-05 2024-02-23 0.75 10.25 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "46" 2024-02-05 2024-02-23 0.8 12 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "46" 2024-02-05 2024-02-23 0.85 13 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "46" 2024-02-05 2024-02-23 0.9 14 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "46" 2024-02-05 2024-02-23 0.95 15 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "46" 2024-02-05 2024-02-23 0.975 15 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "46" 2024-02-05 2024-02-23 0.99 16.08 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "46" 2024-02-05 2024-02-24 0.01 0 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "46" 2024-02-05 2024-02-24 0.025 1 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "46" 2024-02-05 2024-02-24 0.05 1 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "46" 2024-02-05 2024-02-24 0.1 2 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "46" 2024-02-05 2024-02-24 0.15 3 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "46" 2024-02-05 2024-02-24 0.2 3.8 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "46" 2024-02-05 2024-02-24 0.25 4 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "46" 2024-02-05 2024-02-24 0.3 5 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "46" 2024-02-05 2024-02-24 0.35 5 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "46" 2024-02-05 2024-02-24 0.4 5 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "46" 2024-02-05 2024-02-24 0.45 6 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "46" 2024-02-05 2024-02-24 0.5 6 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "46" 2024-02-05 2024-02-24 0.55 7 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "46" 2024-02-05 2024-02-24 0.6 7.40000000000001 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "46" 2024-02-05 2024-02-24 0.65 8 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "46" 2024-02-05 2024-02-24 0.7 8 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "46" 2024-02-05 2024-02-24 0.75 9 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "46" 2024-02-05 2024-02-24 0.8 9.2 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "46" 2024-02-05 2024-02-24 0.85 10 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "46" 2024-02-05 2024-02-24 0.9 12 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "46" 2024-02-05 2024-02-24 0.95 13 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "46" 2024-02-05 2024-02-24 0.975 15.05 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "46" 2024-02-05 2024-02-24 0.99 17 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "46" 2024-02-05 2024-02-25 0.01 1.99 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "46" 2024-02-05 2024-02-25 0.025 2 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "46" 2024-02-05 2024-02-25 0.05 2 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "46" 2024-02-05 2024-02-25 0.1 2 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "46" 2024-02-05 2024-02-25 0.15 3.85 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "46" 2024-02-05 2024-02-25 0.2 4 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "46" 2024-02-05 2024-02-25 0.25 5 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "46" 2024-02-05 2024-02-25 0.3 5.7 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "46" 2024-02-05 2024-02-25 0.35 6 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "46" 2024-02-05 2024-02-25 0.4 7 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "46" 2024-02-05 2024-02-25 0.45 7 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "46" 2024-02-05 2024-02-25 0.5 7 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "46" 2024-02-05 2024-02-25 0.55 8 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "46" 2024-02-05 2024-02-25 0.6 8.40000000000001 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "46" 2024-02-05 2024-02-25 0.65 9 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "46" 2024-02-05 2024-02-25 0.7 10 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "46" 2024-02-05 2024-02-25 0.75 11 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "46" 2024-02-05 2024-02-25 0.8 12 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "46" 2024-02-05 2024-02-25 0.85 12.15 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "46" 2024-02-05 2024-02-25 0.9 13 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "46" 2024-02-05 2024-02-25 0.95 16.05 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "46" 2024-02-05 2024-02-25 0.975 17.525 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "46" 2024-02-05 2024-02-25 0.99 18.01 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "46" 2024-02-05 2024-02-26 0.01 1.99 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "46" 2024-02-05 2024-02-26 0.025 2.475 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "46" 2024-02-05 2024-02-26 0.05 3.95 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "46" 2024-02-05 2024-02-26 0.1 4 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "46" 2024-02-05 2024-02-26 0.15 5 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "46" 2024-02-05 2024-02-26 0.2 5 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "46" 2024-02-05 2024-02-26 0.25 6 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "46" 2024-02-05 2024-02-26 0.3 7 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "46" 2024-02-05 2024-02-26 0.35 8 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "46" 2024-02-05 2024-02-26 0.4 8 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "46" 2024-02-05 2024-02-26 0.45 9 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "46" 2024-02-05 2024-02-26 0.5 9 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "46" 2024-02-05 2024-02-26 0.55 9 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "46" 2024-02-05 2024-02-26 0.6 9.40000000000001 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "46" 2024-02-05 2024-02-26 0.65 10 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "46" 2024-02-05 2024-02-26 0.7 11 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "46" 2024-02-05 2024-02-26 0.75 11.25 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "46" 2024-02-05 2024-02-26 0.8 13 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "46" 2024-02-05 2024-02-26 0.85 15 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "46" 2024-02-05 2024-02-26 0.9 16.1 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "46" 2024-02-05 2024-02-26 0.95 20 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "46" 2024-02-05 2024-02-26 0.975 20.525 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "46" 2024-02-05 2024-02-26 0.99 21.04 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "46" 2024-02-05 2024-02-27 0.01 1 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "46" 2024-02-05 2024-02-27 0.025 1 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "46" 2024-02-05 2024-02-27 0.05 2 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "46" 2024-02-05 2024-02-27 0.1 3 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "46" 2024-02-05 2024-02-27 0.15 4 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "46" 2024-02-05 2024-02-27 0.2 4 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "46" 2024-02-05 2024-02-27 0.25 5 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "46" 2024-02-05 2024-02-27 0.3 5 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "46" 2024-02-05 2024-02-27 0.35 6 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "46" 2024-02-05 2024-02-27 0.4 6 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "46" 2024-02-05 2024-02-27 0.45 7 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "46" 2024-02-05 2024-02-27 0.5 7 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "46" 2024-02-05 2024-02-27 0.55 8 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "46" 2024-02-05 2024-02-27 0.6 8 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "46" 2024-02-05 2024-02-27 0.65 9 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "46" 2024-02-05 2024-02-27 0.7 9.30000000000001 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "46" 2024-02-05 2024-02-27 0.75 11 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "46" 2024-02-05 2024-02-27 0.8 12 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "46" 2024-02-05 2024-02-27 0.85 12.15 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "46" 2024-02-05 2024-02-27 0.9 14.2 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "46" 2024-02-05 2024-02-27 0.95 18 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "46" 2024-02-05 2024-02-27 0.975 20.525 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "46" 2024-02-05 2024-02-27 0.99 22.03 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "46" 2024-02-05 2024-02-28 0.01 0 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "46" 2024-02-05 2024-02-28 0.025 0.475 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "46" 2024-02-05 2024-02-28 0.05 2 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "46" 2024-02-05 2024-02-28 0.1 2 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "46" 2024-02-05 2024-02-28 0.15 2.85 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "46" 2024-02-05 2024-02-28 0.2 4 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "46" 2024-02-05 2024-02-28 0.25 5 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "46" 2024-02-05 2024-02-28 0.3 5 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "46" 2024-02-05 2024-02-28 0.35 5.65000000000001 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "46" 2024-02-05 2024-02-28 0.4 6 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "46" 2024-02-05 2024-02-28 0.45 7 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "46" 2024-02-05 2024-02-28 0.5 7 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "46" 2024-02-05 2024-02-28 0.55 7.45 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "46" 2024-02-05 2024-02-28 0.6 8 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "46" 2024-02-05 2024-02-28 0.65 9 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "46" 2024-02-05 2024-02-28 0.7 10 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "46" 2024-02-05 2024-02-28 0.75 11 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "46" 2024-02-05 2024-02-28 0.8 11 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "46" 2024-02-05 2024-02-28 0.85 12 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "46" 2024-02-05 2024-02-28 0.9 13 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "46" 2024-02-05 2024-02-28 0.95 15 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "46" 2024-02-05 2024-02-28 0.975 17.05 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "46" 2024-02-05 2024-02-28 0.99 18.03 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "46" 2024-02-05 2024-02-29 0.01 0.99 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "46" 2024-02-05 2024-02-29 0.025 1.475 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "46" 2024-02-05 2024-02-29 0.05 2 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "46" 2024-02-05 2024-02-29 0.1 4 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "46" 2024-02-05 2024-02-29 0.15 4 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "46" 2024-02-05 2024-02-29 0.2 5 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "46" 2024-02-05 2024-02-29 0.25 6 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "46" 2024-02-05 2024-02-29 0.3 7 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "46" 2024-02-05 2024-02-29 0.35 7 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "46" 2024-02-05 2024-02-29 0.4 8 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "46" 2024-02-05 2024-02-29 0.45 8 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "46" 2024-02-05 2024-02-29 0.5 9 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "46" 2024-02-05 2024-02-29 0.55 9 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "46" 2024-02-05 2024-02-29 0.6 9 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "46" 2024-02-05 2024-02-29 0.65 10 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "46" 2024-02-05 2024-02-29 0.7 10 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "46" 2024-02-05 2024-02-29 0.75 10 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "46" 2024-02-05 2024-02-29 0.8 11.2 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "46" 2024-02-05 2024-02-29 0.85 12 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "46" 2024-02-05 2024-02-29 0.9 13 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "46" 2024-02-05 2024-02-29 0.95 17 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "46" 2024-02-05 2024-02-29 0.975 19 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "46" 2024-02-05 2024-02-29 0.99 20 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "46" 2024-02-05 2024-03-01 0.01 0 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "46" 2024-02-05 2024-03-01 0.025 1 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "46" 2024-02-05 2024-03-01 0.05 1.95 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "46" 2024-02-05 2024-03-01 0.1 2 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "46" 2024-02-05 2024-03-01 0.15 2 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "46" 2024-02-05 2024-03-01 0.2 3 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "46" 2024-02-05 2024-03-01 0.25 3.75 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "46" 2024-02-05 2024-03-01 0.3 4.7 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "46" 2024-02-05 2024-03-01 0.35 5 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "46" 2024-02-05 2024-03-01 0.4 5.6 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "46" 2024-02-05 2024-03-01 0.45 6 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "46" 2024-02-05 2024-03-01 0.5 7 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "46" 2024-02-05 2024-03-01 0.55 7 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "46" 2024-02-05 2024-03-01 0.6 8 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "46" 2024-02-05 2024-03-01 0.65 9 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "46" 2024-02-05 2024-03-01 0.7 9 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "46" 2024-02-05 2024-03-01 0.75 10 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "46" 2024-02-05 2024-03-01 0.8 10.2 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "46" 2024-02-05 2024-03-01 0.85 12 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "46" 2024-02-05 2024-03-01 0.9 13 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "46" 2024-02-05 2024-03-01 0.95 16 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "46" 2024-02-05 2024-03-01 0.975 19 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "46" 2024-02-05 2024-03-01 0.99 22.01 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "46" 2024-02-05 2024-03-02 0.01 0 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "46" 2024-02-05 2024-03-02 0.025 0.475 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "46" 2024-02-05 2024-03-02 0.05 2 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "46" 2024-02-05 2024-03-02 0.1 2 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "46" 2024-02-05 2024-03-02 0.15 3 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "46" 2024-02-05 2024-03-02 0.2 3.8 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "46" 2024-02-05 2024-03-02 0.25 4 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "46" 2024-02-05 2024-03-02 0.3 4 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "46" 2024-02-05 2024-03-02 0.35 5 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "46" 2024-02-05 2024-03-02 0.4 5 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "46" 2024-02-05 2024-03-02 0.45 5.55 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "46" 2024-02-05 2024-03-02 0.5 6 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "46" 2024-02-05 2024-03-02 0.55 6 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "46" 2024-02-05 2024-03-02 0.6 7 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "46" 2024-02-05 2024-03-02 0.65 7 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "46" 2024-02-05 2024-03-02 0.7 7 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "46" 2024-02-05 2024-03-02 0.75 8 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "46" 2024-02-05 2024-03-02 0.8 9 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "46" 2024-02-05 2024-03-02 0.85 10 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "46" 2024-02-05 2024-03-02 0.9 13 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "46" 2024-02-05 2024-03-02 0.95 14 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "46" 2024-02-05 2024-03-02 0.975 15.525 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "46" 2024-02-05 2024-03-02 0.99 17.02 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "46" 2024-02-05 2024-03-03 0.01 0 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "46" 2024-02-05 2024-03-03 0.025 0.475 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "46" 2024-02-05 2024-03-03 0.05 2 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "46" 2024-02-05 2024-03-03 0.1 3 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "46" 2024-02-05 2024-03-03 0.15 3.85 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "46" 2024-02-05 2024-03-03 0.2 4 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "46" 2024-02-05 2024-03-03 0.25 4 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "46" 2024-02-05 2024-03-03 0.3 5 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "46" 2024-02-05 2024-03-03 0.35 5 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "46" 2024-02-05 2024-03-03 0.4 6 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "46" 2024-02-05 2024-03-03 0.45 6 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "46" 2024-02-05 2024-03-03 0.5 6.5 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "46" 2024-02-05 2024-03-03 0.55 7.45 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "46" 2024-02-05 2024-03-03 0.6 8 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "46" 2024-02-05 2024-03-03 0.65 9 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "46" 2024-02-05 2024-03-03 0.7 10 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "46" 2024-02-05 2024-03-03 0.75 10 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "46" 2024-02-05 2024-03-03 0.8 11 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "46" 2024-02-05 2024-03-03 0.85 12 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "46" 2024-02-05 2024-03-03 0.9 12.2 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "46" 2024-02-05 2024-03-03 0.95 14.05 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "46" 2024-02-05 2024-03-03 0.975 15.525 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "46" 2024-02-05 2024-03-03 0.99 21.04 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "46" 2024-02-05 2024-03-04 0.01 1 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "46" 2024-02-05 2024-03-04 0.025 1 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "46" 2024-02-05 2024-03-04 0.05 2 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "46" 2024-02-05 2024-03-04 0.1 3 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "46" 2024-02-05 2024-03-04 0.15 4 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "46" 2024-02-05 2024-03-04 0.2 5 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "46" 2024-02-05 2024-03-04 0.25 6 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "46" 2024-02-05 2024-03-04 0.3 6 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "46" 2024-02-05 2024-03-04 0.35 7 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "46" 2024-02-05 2024-03-04 0.4 8 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "46" 2024-02-05 2024-03-04 0.45 9 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "46" 2024-02-05 2024-03-04 0.5 9 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "46" 2024-02-05 2024-03-04 0.55 10 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "46" 2024-02-05 2024-03-04 0.6 11 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "46" 2024-02-05 2024-03-04 0.65 11.35 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "46" 2024-02-05 2024-03-04 0.7 12 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "46" 2024-02-05 2024-03-04 0.75 13 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "46" 2024-02-05 2024-03-04 0.8 15 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "46" 2024-02-05 2024-03-04 0.85 15 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "46" 2024-02-05 2024-03-04 0.9 16.1 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "46" 2024-02-05 2024-03-04 0.95 20.05 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "46" 2024-02-05 2024-03-04 0.975 22.525 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "46" 2024-02-05 2024-03-04 0.99 26.06 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "47" 2024-02-05 2024-02-06 0.01 19.95 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "47" 2024-02-05 2024-02-06 0.025 23.475 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "47" 2024-02-05 2024-02-06 0.05 25.95 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "47" 2024-02-05 2024-02-06 0.1 30.9 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "47" 2024-02-05 2024-02-06 0.15 34 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "47" 2024-02-05 2024-02-06 0.2 37 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "47" 2024-02-05 2024-02-06 0.25 39 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "47" 2024-02-05 2024-02-06 0.3 39 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "47" 2024-02-05 2024-02-06 0.35 41 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "47" 2024-02-05 2024-02-06 0.4 42 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "47" 2024-02-05 2024-02-06 0.45 43 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "47" 2024-02-05 2024-02-06 0.5 44.5 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "47" 2024-02-05 2024-02-06 0.55 47 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "47" 2024-02-05 2024-02-06 0.6 49 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "47" 2024-02-05 2024-02-06 0.65 50 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "47" 2024-02-05 2024-02-06 0.7 51.3 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "47" 2024-02-05 2024-02-06 0.75 54 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "47" 2024-02-05 2024-02-06 0.8 55 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "47" 2024-02-05 2024-02-06 0.85 58 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "47" 2024-02-05 2024-02-06 0.9 62.2 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "47" 2024-02-05 2024-02-06 0.95 65 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "47" 2024-02-05 2024-02-06 0.975 66.525 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "47" 2024-02-05 2024-02-06 0.99 68.1100000000001 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "47" 2024-02-05 2024-02-07 0.01 23.97 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "47" 2024-02-05 2024-02-07 0.025 26.9 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "47" 2024-02-05 2024-02-07 0.05 30.9 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "47" 2024-02-05 2024-02-07 0.1 33 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "47" 2024-02-05 2024-02-07 0.15 35 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "47" 2024-02-05 2024-02-07 0.2 38 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "47" 2024-02-05 2024-02-07 0.25 38.75 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "47" 2024-02-05 2024-02-07 0.3 39 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "47" 2024-02-05 2024-02-07 0.35 41 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "47" 2024-02-05 2024-02-07 0.4 43 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "47" 2024-02-05 2024-02-07 0.45 44 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "47" 2024-02-05 2024-02-07 0.5 45.5 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "47" 2024-02-05 2024-02-07 0.55 46 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "47" 2024-02-05 2024-02-07 0.6 49 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "47" 2024-02-05 2024-02-07 0.65 50 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "47" 2024-02-05 2024-02-07 0.7 51 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "47" 2024-02-05 2024-02-07 0.75 53 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "47" 2024-02-05 2024-02-07 0.8 55 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "47" 2024-02-05 2024-02-07 0.85 58 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "47" 2024-02-05 2024-02-07 0.9 62 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "47" 2024-02-05 2024-02-07 0.95 66 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "47" 2024-02-05 2024-02-07 0.975 68.525 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "47" 2024-02-05 2024-02-07 0.99 70.08 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "47" 2024-02-05 2024-02-08 0.01 21.98 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "47" 2024-02-05 2024-02-08 0.025 23 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "47" 2024-02-05 2024-02-08 0.05 25.95 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "47" 2024-02-05 2024-02-08 0.1 29 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "47" 2024-02-05 2024-02-08 0.15 32 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "47" 2024-02-05 2024-02-08 0.2 33.8 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "47" 2024-02-05 2024-02-08 0.25 35 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "47" 2024-02-05 2024-02-08 0.3 37 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "47" 2024-02-05 2024-02-08 0.35 38.65 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "47" 2024-02-05 2024-02-08 0.4 39 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "47" 2024-02-05 2024-02-08 0.45 41.55 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "47" 2024-02-05 2024-02-08 0.5 43.5 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "47" 2024-02-05 2024-02-08 0.55 44.45 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "47" 2024-02-05 2024-02-08 0.6 45 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "47" 2024-02-05 2024-02-08 0.65 47 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "47" 2024-02-05 2024-02-08 0.7 48 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "47" 2024-02-05 2024-02-08 0.75 50 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "47" 2024-02-05 2024-02-08 0.8 51.2 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "47" 2024-02-05 2024-02-08 0.85 53.15 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "47" 2024-02-05 2024-02-08 0.9 56 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "47" 2024-02-05 2024-02-08 0.95 58 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "47" 2024-02-05 2024-02-08 0.975 61.575 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "47" 2024-02-05 2024-02-08 0.99 63.01 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "47" 2024-02-05 2024-02-09 0.01 21.96 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "47" 2024-02-05 2024-02-09 0.025 22 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "47" 2024-02-05 2024-02-09 0.05 23 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "47" 2024-02-05 2024-02-09 0.1 25.9 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "47" 2024-02-05 2024-02-09 0.15 26 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "47" 2024-02-05 2024-02-09 0.2 28.8 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "47" 2024-02-05 2024-02-09 0.25 30 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "47" 2024-02-05 2024-02-09 0.3 32 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "47" 2024-02-05 2024-02-09 0.35 33 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "47" 2024-02-05 2024-02-09 0.4 35 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "47" 2024-02-05 2024-02-09 0.45 37 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "47" 2024-02-05 2024-02-09 0.5 38 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "47" 2024-02-05 2024-02-09 0.55 40 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "47" 2024-02-05 2024-02-09 0.6 41.4 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "47" 2024-02-05 2024-02-09 0.65 43 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "47" 2024-02-05 2024-02-09 0.7 45 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "47" 2024-02-05 2024-02-09 0.75 46 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "47" 2024-02-05 2024-02-09 0.8 47 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "47" 2024-02-05 2024-02-09 0.85 52.3 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "47" 2024-02-05 2024-02-09 0.9 55.1 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "47" 2024-02-05 2024-02-09 0.95 60.15 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "47" 2024-02-05 2024-02-09 0.975 68.525 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "47" 2024-02-05 2024-02-09 0.99 69.01 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "47" 2024-02-05 2024-02-10 0.01 17.91 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "47" 2024-02-05 2024-02-10 0.025 20.475 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "47" 2024-02-05 2024-02-10 0.05 21 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "47" 2024-02-05 2024-02-10 0.1 24.8 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "47" 2024-02-05 2024-02-10 0.15 26.85 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "47" 2024-02-05 2024-02-10 0.2 27 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "47" 2024-02-05 2024-02-10 0.25 28 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "47" 2024-02-05 2024-02-10 0.3 30 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "47" 2024-02-05 2024-02-10 0.35 31.65 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "47" 2024-02-05 2024-02-10 0.4 33 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "47" 2024-02-05 2024-02-10 0.45 34 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "47" 2024-02-05 2024-02-10 0.5 35 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "47" 2024-02-05 2024-02-10 0.55 36.45 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "47" 2024-02-05 2024-02-10 0.6 38 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "47" 2024-02-05 2024-02-10 0.65 38 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "47" 2024-02-05 2024-02-10 0.7 40 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "47" 2024-02-05 2024-02-10 0.75 40.25 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "47" 2024-02-05 2024-02-10 0.8 42.2 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "47" 2024-02-05 2024-02-10 0.85 44.15 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "47" 2024-02-05 2024-02-10 0.9 47.1 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "47" 2024-02-05 2024-02-10 0.95 54.15 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "47" 2024-02-05 2024-02-10 0.975 62.525 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "47" 2024-02-05 2024-02-10 0.99 66.02 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "47" 2024-02-05 2024-02-11 0.01 17.99 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "47" 2024-02-05 2024-02-11 0.025 20 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "47" 2024-02-05 2024-02-11 0.05 20.95 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "47" 2024-02-05 2024-02-11 0.1 23.9 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "47" 2024-02-05 2024-02-11 0.15 25 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "47" 2024-02-05 2024-02-11 0.2 26 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "47" 2024-02-05 2024-02-11 0.25 28 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "47" 2024-02-05 2024-02-11 0.3 29 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "47" 2024-02-05 2024-02-11 0.35 29 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "47" 2024-02-05 2024-02-11 0.4 31 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "47" 2024-02-05 2024-02-11 0.45 32.55 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "47" 2024-02-05 2024-02-11 0.5 33.5 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "47" 2024-02-05 2024-02-11 0.55 34 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "47" 2024-02-05 2024-02-11 0.6 36 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "47" 2024-02-05 2024-02-11 0.65 39.35 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "47" 2024-02-05 2024-02-11 0.7 41 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "47" 2024-02-05 2024-02-11 0.75 42 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "47" 2024-02-05 2024-02-11 0.8 43.2 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "47" 2024-02-05 2024-02-11 0.85 46 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "47" 2024-02-05 2024-02-11 0.9 47 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "47" 2024-02-05 2024-02-11 0.95 57.05 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "47" 2024-02-05 2024-02-11 0.975 59.05 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "47" 2024-02-05 2024-02-11 0.99 63.07 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "47" 2024-02-05 2024-02-12 0.01 16.89 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "47" 2024-02-05 2024-02-12 0.025 19 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "47" 2024-02-05 2024-02-12 0.05 20 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "47" 2024-02-05 2024-02-12 0.1 23 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "47" 2024-02-05 2024-02-12 0.15 27 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "47" 2024-02-05 2024-02-12 0.2 28 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "47" 2024-02-05 2024-02-12 0.25 29 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "47" 2024-02-05 2024-02-12 0.3 31 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "47" 2024-02-05 2024-02-12 0.35 33.95 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "47" 2024-02-05 2024-02-12 0.4 35 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "47" 2024-02-05 2024-02-12 0.45 37 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "47" 2024-02-05 2024-02-12 0.5 39 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "47" 2024-02-05 2024-02-12 0.55 41 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "47" 2024-02-05 2024-02-12 0.6 42 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "47" 2024-02-05 2024-02-12 0.65 43 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "47" 2024-02-05 2024-02-12 0.7 44 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "47" 2024-02-05 2024-02-12 0.75 46.25 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "47" 2024-02-05 2024-02-12 0.8 50.2 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "47" 2024-02-05 2024-02-12 0.85 52 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "47" 2024-02-05 2024-02-12 0.9 53.1 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "47" 2024-02-05 2024-02-12 0.95 55.3 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "47" 2024-02-05 2024-02-12 0.975 65.05 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "47" 2024-02-05 2024-02-12 0.99 71.01 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "47" 2024-02-05 2024-02-13 0.01 19.92 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "47" 2024-02-05 2024-02-13 0.025 20.475 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "47" 2024-02-05 2024-02-13 0.05 22 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "47" 2024-02-05 2024-02-13 0.1 26 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "47" 2024-02-05 2024-02-13 0.15 28.85 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "47" 2024-02-05 2024-02-13 0.2 31 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "47" 2024-02-05 2024-02-13 0.25 32 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "47" 2024-02-05 2024-02-13 0.3 35 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "47" 2024-02-05 2024-02-13 0.35 35.65 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "47" 2024-02-05 2024-02-13 0.4 37 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "47" 2024-02-05 2024-02-13 0.45 38 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "47" 2024-02-05 2024-02-13 0.5 39 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "47" 2024-02-05 2024-02-13 0.55 41.45 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "47" 2024-02-05 2024-02-13 0.6 43 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "47" 2024-02-05 2024-02-13 0.65 45.35 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "47" 2024-02-05 2024-02-13 0.7 47 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "47" 2024-02-05 2024-02-13 0.75 49.25 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "47" 2024-02-05 2024-02-13 0.8 52 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "47" 2024-02-05 2024-02-13 0.85 56.15 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "47" 2024-02-05 2024-02-13 0.9 58.3 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "47" 2024-02-05 2024-02-13 0.95 66 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "47" 2024-02-05 2024-02-13 0.975 73.525 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "47" 2024-02-05 2024-02-13 0.99 79.02 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "47" 2024-02-05 2024-02-14 0.01 15.99 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "47" 2024-02-05 2024-02-14 0.025 20 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "47" 2024-02-05 2024-02-14 0.05 22 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "47" 2024-02-05 2024-02-14 0.1 25 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "47" 2024-02-05 2024-02-14 0.15 27 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "47" 2024-02-05 2024-02-14 0.2 29 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "47" 2024-02-05 2024-02-14 0.25 30.75 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "47" 2024-02-05 2024-02-14 0.3 33.7 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "47" 2024-02-05 2024-02-14 0.35 35 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "47" 2024-02-05 2024-02-14 0.4 36 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "47" 2024-02-05 2024-02-14 0.45 38 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "47" 2024-02-05 2024-02-14 0.5 39 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "47" 2024-02-05 2024-02-14 0.55 41 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "47" 2024-02-05 2024-02-14 0.6 42.4 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "47" 2024-02-05 2024-02-14 0.65 45 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "47" 2024-02-05 2024-02-14 0.7 46.3 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "47" 2024-02-05 2024-02-14 0.75 47.25 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "47" 2024-02-05 2024-02-14 0.8 51 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "47" 2024-02-05 2024-02-14 0.85 54 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "47" 2024-02-05 2024-02-14 0.9 58.2 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "47" 2024-02-05 2024-02-14 0.95 66.2 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "47" 2024-02-05 2024-02-14 0.975 73.525 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "47" 2024-02-05 2024-02-14 0.99 77.2300000000001 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "47" 2024-02-05 2024-02-15 0.01 15.94 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "47" 2024-02-05 2024-02-15 0.025 17 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "47" 2024-02-05 2024-02-15 0.05 18.95 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "47" 2024-02-05 2024-02-15 0.1 23 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "47" 2024-02-05 2024-02-15 0.15 25 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "47" 2024-02-05 2024-02-15 0.2 27 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "47" 2024-02-05 2024-02-15 0.25 28.75 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "47" 2024-02-05 2024-02-15 0.3 29.7 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "47" 2024-02-05 2024-02-15 0.35 31.65 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "47" 2024-02-05 2024-02-15 0.4 33.6 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "47" 2024-02-05 2024-02-15 0.45 35 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "47" 2024-02-05 2024-02-15 0.5 36 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "47" 2024-02-05 2024-02-15 0.55 40 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "47" 2024-02-05 2024-02-15 0.6 41.8 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "47" 2024-02-05 2024-02-15 0.65 44.35 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "47" 2024-02-05 2024-02-15 0.7 46.3 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "47" 2024-02-05 2024-02-15 0.75 47 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "47" 2024-02-05 2024-02-15 0.8 49 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "47" 2024-02-05 2024-02-15 0.85 51.15 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "47" 2024-02-05 2024-02-15 0.9 56.1 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "47" 2024-02-05 2024-02-15 0.95 69 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "47" 2024-02-05 2024-02-15 0.975 72 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "47" 2024-02-05 2024-02-15 0.99 81.05 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "47" 2024-02-05 2024-02-16 0.01 9.99 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "47" 2024-02-05 2024-02-16 0.025 13 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "47" 2024-02-05 2024-02-16 0.05 14 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "47" 2024-02-05 2024-02-16 0.1 18 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "47" 2024-02-05 2024-02-16 0.15 20 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "47" 2024-02-05 2024-02-16 0.2 22 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "47" 2024-02-05 2024-02-16 0.25 24 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "47" 2024-02-05 2024-02-16 0.3 25 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "47" 2024-02-05 2024-02-16 0.35 26.65 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "47" 2024-02-05 2024-02-16 0.4 29 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "47" 2024-02-05 2024-02-16 0.45 29 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "47" 2024-02-05 2024-02-16 0.5 30 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "47" 2024-02-05 2024-02-16 0.55 32 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "47" 2024-02-05 2024-02-16 0.6 34.4 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "47" 2024-02-05 2024-02-16 0.65 38 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "47" 2024-02-05 2024-02-16 0.7 39.3 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "47" 2024-02-05 2024-02-16 0.75 42 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "47" 2024-02-05 2024-02-16 0.8 44 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "47" 2024-02-05 2024-02-16 0.85 47.15 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "47" 2024-02-05 2024-02-16 0.9 49.1 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "47" 2024-02-05 2024-02-16 0.95 55.05 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "47" 2024-02-05 2024-02-16 0.975 62.1499999999999 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "47" 2024-02-05 2024-02-16 0.99 69.01 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "47" 2024-02-05 2024-02-17 0.01 9.98 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "47" 2024-02-05 2024-02-17 0.025 11.475 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "47" 2024-02-05 2024-02-17 0.05 14.95 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "47" 2024-02-05 2024-02-17 0.1 18.8 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "47" 2024-02-05 2024-02-17 0.15 20.85 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "47" 2024-02-05 2024-02-17 0.2 22 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "47" 2024-02-05 2024-02-17 0.25 23.75 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "47" 2024-02-05 2024-02-17 0.3 25 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "47" 2024-02-05 2024-02-17 0.35 27 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "47" 2024-02-05 2024-02-17 0.4 28.6 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "47" 2024-02-05 2024-02-17 0.45 30 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "47" 2024-02-05 2024-02-17 0.5 31 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "47" 2024-02-05 2024-02-17 0.55 33 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "47" 2024-02-05 2024-02-17 0.6 34 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "47" 2024-02-05 2024-02-17 0.65 34 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "47" 2024-02-05 2024-02-17 0.7 36.3 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "47" 2024-02-05 2024-02-17 0.75 39 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "47" 2024-02-05 2024-02-17 0.8 40 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "47" 2024-02-05 2024-02-17 0.85 42 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "47" 2024-02-05 2024-02-17 0.9 45 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "47" 2024-02-05 2024-02-17 0.95 54.05 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "47" 2024-02-05 2024-02-17 0.975 60.2499999999999 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "47" 2024-02-05 2024-02-17 0.99 66.1900000000001 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "47" 2024-02-05 2024-02-18 0.01 10.98 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "47" 2024-02-05 2024-02-18 0.025 13.95 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "47" 2024-02-05 2024-02-18 0.05 16.95 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "47" 2024-02-05 2024-02-18 0.1 19 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "47" 2024-02-05 2024-02-18 0.15 21 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "47" 2024-02-05 2024-02-18 0.2 22 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "47" 2024-02-05 2024-02-18 0.25 23 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "47" 2024-02-05 2024-02-18 0.3 24 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "47" 2024-02-05 2024-02-18 0.35 25 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "47" 2024-02-05 2024-02-18 0.4 27 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "47" 2024-02-05 2024-02-18 0.45 28 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "47" 2024-02-05 2024-02-18 0.5 29.5 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "47" 2024-02-05 2024-02-18 0.55 30 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "47" 2024-02-05 2024-02-18 0.6 34 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "47" 2024-02-05 2024-02-18 0.65 35 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "47" 2024-02-05 2024-02-18 0.7 37 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "47" 2024-02-05 2024-02-18 0.75 39 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "47" 2024-02-05 2024-02-18 0.8 42.2 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "47" 2024-02-05 2024-02-18 0.85 44 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "47" 2024-02-05 2024-02-18 0.9 46.2 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "47" 2024-02-05 2024-02-18 0.95 55.15 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "47" 2024-02-05 2024-02-18 0.975 59.525 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "47" 2024-02-05 2024-02-18 0.99 64.1500000000001 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "47" 2024-02-05 2024-02-19 0.01 10 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "47" 2024-02-05 2024-02-19 0.025 14.475 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "47" 2024-02-05 2024-02-19 0.05 16.9 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "47" 2024-02-05 2024-02-19 0.1 20 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "47" 2024-02-05 2024-02-19 0.15 22 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "47" 2024-02-05 2024-02-19 0.2 24 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "47" 2024-02-05 2024-02-19 0.25 26 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "47" 2024-02-05 2024-02-19 0.3 27 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "47" 2024-02-05 2024-02-19 0.35 28 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "47" 2024-02-05 2024-02-19 0.4 30 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "47" 2024-02-05 2024-02-19 0.45 31 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "47" 2024-02-05 2024-02-19 0.5 32 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "47" 2024-02-05 2024-02-19 0.55 33.45 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "47" 2024-02-05 2024-02-19 0.6 35.4 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "47" 2024-02-05 2024-02-19 0.65 39 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "47" 2024-02-05 2024-02-19 0.7 41.3 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "47" 2024-02-05 2024-02-19 0.75 43 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "47" 2024-02-05 2024-02-19 0.8 46.2 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "47" 2024-02-05 2024-02-19 0.85 51 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "47" 2024-02-05 2024-02-19 0.9 55.2 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "47" 2024-02-05 2024-02-19 0.95 60.05 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "47" 2024-02-05 2024-02-19 0.975 66.05 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "47" 2024-02-05 2024-02-19 0.99 68.1900000000001 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "47" 2024-02-05 2024-02-20 0.01 13.97 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "47" 2024-02-05 2024-02-20 0.025 14 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "47" 2024-02-05 2024-02-20 0.05 15 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "47" 2024-02-05 2024-02-20 0.1 21.9 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "47" 2024-02-05 2024-02-20 0.15 23 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "47" 2024-02-05 2024-02-20 0.2 25.8 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "47" 2024-02-05 2024-02-20 0.25 28 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "47" 2024-02-05 2024-02-20 0.3 29.7 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "47" 2024-02-05 2024-02-20 0.35 31 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "47" 2024-02-05 2024-02-20 0.4 32 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "47" 2024-02-05 2024-02-20 0.45 36 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "47" 2024-02-05 2024-02-20 0.5 37 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "47" 2024-02-05 2024-02-20 0.55 38.45 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "47" 2024-02-05 2024-02-20 0.6 40.4 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "47" 2024-02-05 2024-02-20 0.65 42 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "47" 2024-02-05 2024-02-20 0.7 43 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "47" 2024-02-05 2024-02-20 0.75 45 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "47" 2024-02-05 2024-02-20 0.8 46.2 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "47" 2024-02-05 2024-02-20 0.85 49 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "47" 2024-02-05 2024-02-20 0.9 58.2 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "47" 2024-02-05 2024-02-20 0.95 65.1 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "47" 2024-02-05 2024-02-20 0.975 81 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "47" 2024-02-05 2024-02-20 0.99 97.06 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "47" 2024-02-05 2024-02-21 0.01 13.92 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "47" 2024-02-05 2024-02-21 0.025 14.95 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "47" 2024-02-05 2024-02-21 0.05 17.9 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "47" 2024-02-05 2024-02-21 0.1 20.9 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "47" 2024-02-05 2024-02-21 0.15 23 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "47" 2024-02-05 2024-02-21 0.2 24.8 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "47" 2024-02-05 2024-02-21 0.25 26 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "47" 2024-02-05 2024-02-21 0.3 27.7 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "47" 2024-02-05 2024-02-21 0.35 29.65 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "47" 2024-02-05 2024-02-21 0.4 31 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "47" 2024-02-05 2024-02-21 0.45 33 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "47" 2024-02-05 2024-02-21 0.5 35 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "47" 2024-02-05 2024-02-21 0.55 37.9 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "47" 2024-02-05 2024-02-21 0.6 39.4 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "47" 2024-02-05 2024-02-21 0.65 42 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "47" 2024-02-05 2024-02-21 0.7 43.3 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "47" 2024-02-05 2024-02-21 0.75 44.25 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "47" 2024-02-05 2024-02-21 0.8 48 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "47" 2024-02-05 2024-02-21 0.85 52.15 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "47" 2024-02-05 2024-02-21 0.9 54.3 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "47" 2024-02-05 2024-02-21 0.95 68.3 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "47" 2024-02-05 2024-02-21 0.975 77.05 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "47" 2024-02-05 2024-02-21 0.99 85.1600000000001 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "47" 2024-02-05 2024-02-22 0.01 12.91 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "47" 2024-02-05 2024-02-22 0.025 14 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "47" 2024-02-05 2024-02-22 0.05 15.95 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "47" 2024-02-05 2024-02-22 0.1 18 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "47" 2024-02-05 2024-02-22 0.15 20 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "47" 2024-02-05 2024-02-22 0.2 22.8 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "47" 2024-02-05 2024-02-22 0.25 25 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "47" 2024-02-05 2024-02-22 0.3 26 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "47" 2024-02-05 2024-02-22 0.35 27 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "47" 2024-02-05 2024-02-22 0.4 29 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "47" 2024-02-05 2024-02-22 0.45 30 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "47" 2024-02-05 2024-02-22 0.5 33.5 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "47" 2024-02-05 2024-02-22 0.55 35 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "47" 2024-02-05 2024-02-22 0.6 36.4 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "47" 2024-02-05 2024-02-22 0.65 39.35 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "47" 2024-02-05 2024-02-22 0.7 41.3 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "47" 2024-02-05 2024-02-22 0.75 45 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "47" 2024-02-05 2024-02-22 0.8 48 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "47" 2024-02-05 2024-02-22 0.85 51.45 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "47" 2024-02-05 2024-02-22 0.9 56.4 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "47" 2024-02-05 2024-02-22 0.95 67 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "47" 2024-02-05 2024-02-22 0.975 73 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "47" 2024-02-05 2024-02-22 0.99 77.1400000000001 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "47" 2024-02-05 2024-02-23 0.01 7.98 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "47" 2024-02-05 2024-02-23 0.025 12 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "47" 2024-02-05 2024-02-23 0.05 13 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "47" 2024-02-05 2024-02-23 0.1 15 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "47" 2024-02-05 2024-02-23 0.15 17.85 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "47" 2024-02-05 2024-02-23 0.2 20 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "47" 2024-02-05 2024-02-23 0.25 21 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "47" 2024-02-05 2024-02-23 0.3 23 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "47" 2024-02-05 2024-02-23 0.35 24.65 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "47" 2024-02-05 2024-02-23 0.4 26.6 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "47" 2024-02-05 2024-02-23 0.45 28 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "47" 2024-02-05 2024-02-23 0.5 30 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "47" 2024-02-05 2024-02-23 0.55 31 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "47" 2024-02-05 2024-02-23 0.6 33.4 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "47" 2024-02-05 2024-02-23 0.65 35.35 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "47" 2024-02-05 2024-02-23 0.7 37 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "47" 2024-02-05 2024-02-23 0.75 38 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "47" 2024-02-05 2024-02-23 0.8 41 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "47" 2024-02-05 2024-02-23 0.85 45 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "47" 2024-02-05 2024-02-23 0.9 50 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "47" 2024-02-05 2024-02-23 0.95 58.05 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "47" 2024-02-05 2024-02-23 0.975 64.1999999999999 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "47" 2024-02-05 2024-02-23 0.99 70.1000000000001 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "47" 2024-02-05 2024-02-24 0.01 9.97 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "47" 2024-02-05 2024-02-24 0.025 13 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "47" 2024-02-05 2024-02-24 0.05 14.95 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "47" 2024-02-05 2024-02-24 0.1 17 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "47" 2024-02-05 2024-02-24 0.15 18 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "47" 2024-02-05 2024-02-24 0.2 18.8 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "47" 2024-02-05 2024-02-24 0.25 19.75 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "47" 2024-02-05 2024-02-24 0.3 22 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "47" 2024-02-05 2024-02-24 0.35 23.65 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "47" 2024-02-05 2024-02-24 0.4 24.6 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "47" 2024-02-05 2024-02-24 0.45 26 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "47" 2024-02-05 2024-02-24 0.5 28 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "47" 2024-02-05 2024-02-24 0.55 30 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "47" 2024-02-05 2024-02-24 0.6 33 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "47" 2024-02-05 2024-02-24 0.65 34.35 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "47" 2024-02-05 2024-02-24 0.7 36 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "47" 2024-02-05 2024-02-24 0.75 39 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "47" 2024-02-05 2024-02-24 0.8 42 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "47" 2024-02-05 2024-02-24 0.85 45.15 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "47" 2024-02-05 2024-02-24 0.9 48.1 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "47" 2024-02-05 2024-02-24 0.95 55 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "47" 2024-02-05 2024-02-24 0.975 66.575 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "47" 2024-02-05 2024-02-24 0.99 79.1400000000001 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "47" 2024-02-05 2024-02-25 0.01 6.98 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "47" 2024-02-05 2024-02-25 0.025 7.475 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "47" 2024-02-05 2024-02-25 0.05 11.8 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "47" 2024-02-05 2024-02-25 0.1 15 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "47" 2024-02-05 2024-02-25 0.15 16.85 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "47" 2024-02-05 2024-02-25 0.2 18 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "47" 2024-02-05 2024-02-25 0.25 19.75 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "47" 2024-02-05 2024-02-25 0.3 21 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "47" 2024-02-05 2024-02-25 0.35 22.65 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "47" 2024-02-05 2024-02-25 0.4 25.6 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "47" 2024-02-05 2024-02-25 0.45 27 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "47" 2024-02-05 2024-02-25 0.5 28 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "47" 2024-02-05 2024-02-25 0.55 29 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "47" 2024-02-05 2024-02-25 0.6 30.4 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "47" 2024-02-05 2024-02-25 0.65 32.35 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "47" 2024-02-05 2024-02-25 0.7 34.3 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "47" 2024-02-05 2024-02-25 0.75 37 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "47" 2024-02-05 2024-02-25 0.8 39.2 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "47" 2024-02-05 2024-02-25 0.85 43 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "47" 2024-02-05 2024-02-25 0.9 48.2 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "47" 2024-02-05 2024-02-25 0.95 56.05 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "47" 2024-02-05 2024-02-25 0.975 61.1 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "47" 2024-02-05 2024-02-25 0.99 80.1100000000001 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "47" 2024-02-05 2024-02-26 0.01 9.99 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "47" 2024-02-05 2024-02-26 0.025 11 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "47" 2024-02-05 2024-02-26 0.05 12.95 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "47" 2024-02-05 2024-02-26 0.1 15 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "47" 2024-02-05 2024-02-26 0.15 17 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "47" 2024-02-05 2024-02-26 0.2 21 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "47" 2024-02-05 2024-02-26 0.25 22.75 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "47" 2024-02-05 2024-02-26 0.3 24 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "47" 2024-02-05 2024-02-26 0.35 26.65 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "47" 2024-02-05 2024-02-26 0.4 28 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "47" 2024-02-05 2024-02-26 0.45 30 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "47" 2024-02-05 2024-02-26 0.5 32 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "47" 2024-02-05 2024-02-26 0.55 33 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "47" 2024-02-05 2024-02-26 0.6 35 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "47" 2024-02-05 2024-02-26 0.65 37 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "47" 2024-02-05 2024-02-26 0.7 38 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "47" 2024-02-05 2024-02-26 0.75 42 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "47" 2024-02-05 2024-02-26 0.8 43.2 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "47" 2024-02-05 2024-02-26 0.85 47.15 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "47" 2024-02-05 2024-02-26 0.9 51.1 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "47" 2024-02-05 2024-02-26 0.95 57.1 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "47" 2024-02-05 2024-02-26 0.975 66.7249999999999 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "47" 2024-02-05 2024-02-26 0.99 80.08 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "47" 2024-02-05 2024-02-27 0.01 6.99 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "47" 2024-02-05 2024-02-27 0.025 9.95 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "47" 2024-02-05 2024-02-27 0.05 14.85 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "47" 2024-02-05 2024-02-27 0.1 16 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "47" 2024-02-05 2024-02-27 0.15 19.85 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "47" 2024-02-05 2024-02-27 0.2 22 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "47" 2024-02-05 2024-02-27 0.25 24.75 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "47" 2024-02-05 2024-02-27 0.3 26 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "47" 2024-02-05 2024-02-27 0.35 29 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "47" 2024-02-05 2024-02-27 0.4 31.6 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "47" 2024-02-05 2024-02-27 0.45 33 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "47" 2024-02-05 2024-02-27 0.5 33.5 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "47" 2024-02-05 2024-02-27 0.55 36 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "47" 2024-02-05 2024-02-27 0.6 39.4 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "47" 2024-02-05 2024-02-27 0.65 42.35 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "47" 2024-02-05 2024-02-27 0.7 45 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "47" 2024-02-05 2024-02-27 0.75 46 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "47" 2024-02-05 2024-02-27 0.8 49.2 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "47" 2024-02-05 2024-02-27 0.85 51 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "47" 2024-02-05 2024-02-27 0.9 57.2 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "47" 2024-02-05 2024-02-27 0.95 72.25 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "47" 2024-02-05 2024-02-27 0.975 84.1499999999999 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "47" 2024-02-05 2024-02-27 0.99 114.07 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "47" 2024-02-05 2024-02-28 0.01 9.94 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "47" 2024-02-05 2024-02-28 0.025 10 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "47" 2024-02-05 2024-02-28 0.05 12.95 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "47" 2024-02-05 2024-02-28 0.1 15 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "47" 2024-02-05 2024-02-28 0.15 16.85 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "47" 2024-02-05 2024-02-28 0.2 21 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "47" 2024-02-05 2024-02-28 0.25 23 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "47" 2024-02-05 2024-02-28 0.3 26 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "47" 2024-02-05 2024-02-28 0.35 27.65 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "47" 2024-02-05 2024-02-28 0.4 29.6 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "47" 2024-02-05 2024-02-28 0.45 32 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "47" 2024-02-05 2024-02-28 0.5 34 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "47" 2024-02-05 2024-02-28 0.55 35 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "47" 2024-02-05 2024-02-28 0.6 37 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "47" 2024-02-05 2024-02-28 0.65 39.35 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "47" 2024-02-05 2024-02-28 0.7 43 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "47" 2024-02-05 2024-02-28 0.75 44.25 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "47" 2024-02-05 2024-02-28 0.8 49 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "47" 2024-02-05 2024-02-28 0.85 54.3 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "47" 2024-02-05 2024-02-28 0.9 58.1 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "47" 2024-02-05 2024-02-28 0.95 76.05 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "47" 2024-02-05 2024-02-28 0.975 87.8749999999999 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "47" 2024-02-05 2024-02-28 0.99 117.08 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "47" 2024-02-05 2024-02-29 0.01 7.96 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "47" 2024-02-05 2024-02-29 0.025 9.475 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "47" 2024-02-05 2024-02-29 0.05 11 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "47" 2024-02-05 2024-02-29 0.1 13.9 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "47" 2024-02-05 2024-02-29 0.15 16.85 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "47" 2024-02-05 2024-02-29 0.2 18.8 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "47" 2024-02-05 2024-02-29 0.25 19.75 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "47" 2024-02-05 2024-02-29 0.3 20.7 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "47" 2024-02-05 2024-02-29 0.35 24 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "47" 2024-02-05 2024-02-29 0.4 26 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "47" 2024-02-05 2024-02-29 0.45 28 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "47" 2024-02-05 2024-02-29 0.5 30 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "47" 2024-02-05 2024-02-29 0.55 32 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "47" 2024-02-05 2024-02-29 0.6 34 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "47" 2024-02-05 2024-02-29 0.65 35 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "47" 2024-02-05 2024-02-29 0.7 38 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "47" 2024-02-05 2024-02-29 0.75 43 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "47" 2024-02-05 2024-02-29 0.8 44.2 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "47" 2024-02-05 2024-02-29 0.85 48.3 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "47" 2024-02-05 2024-02-29 0.9 51 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "47" 2024-02-05 2024-02-29 0.95 66.05 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "47" 2024-02-05 2024-02-29 0.975 85.6499999999998 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "47" 2024-02-05 2024-02-29 0.99 114.04 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "47" 2024-02-05 2024-03-01 0.01 8.98 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "47" 2024-02-05 2024-03-01 0.025 9 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "47" 2024-02-05 2024-03-01 0.05 10 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "47" 2024-02-05 2024-03-01 0.1 13 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "47" 2024-02-05 2024-03-01 0.15 14 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "47" 2024-02-05 2024-03-01 0.2 16.8 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "47" 2024-02-05 2024-03-01 0.25 17 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "47" 2024-02-05 2024-03-01 0.3 19 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "47" 2024-02-05 2024-03-01 0.35 21.65 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "47" 2024-02-05 2024-03-01 0.4 23.6 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "47" 2024-02-05 2024-03-01 0.45 25.55 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "47" 2024-02-05 2024-03-01 0.5 26.5 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "47" 2024-02-05 2024-03-01 0.55 29 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "47" 2024-02-05 2024-03-01 0.6 31.4 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "47" 2024-02-05 2024-03-01 0.65 34 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "47" 2024-02-05 2024-03-01 0.7 36.3 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "47" 2024-02-05 2024-03-01 0.75 38 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "47" 2024-02-05 2024-03-01 0.8 40.2 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "47" 2024-02-05 2024-03-01 0.85 45.3 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "47" 2024-02-05 2024-03-01 0.9 49.1 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "47" 2024-02-05 2024-03-01 0.95 63.1 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "47" 2024-02-05 2024-03-01 0.975 74.2499999999999 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "47" 2024-02-05 2024-03-01 0.99 101.03 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "47" 2024-02-05 2024-03-02 0.01 6 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "47" 2024-02-05 2024-03-02 0.025 7 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "47" 2024-02-05 2024-03-02 0.05 8 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "47" 2024-02-05 2024-03-02 0.1 11.9 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "47" 2024-02-05 2024-03-02 0.15 15.7 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "47" 2024-02-05 2024-03-02 0.2 18 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "47" 2024-02-05 2024-03-02 0.25 19 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "47" 2024-02-05 2024-03-02 0.3 20.7 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "47" 2024-02-05 2024-03-02 0.35 23 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "47" 2024-02-05 2024-03-02 0.4 24.6 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "47" 2024-02-05 2024-03-02 0.45 25.55 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "47" 2024-02-05 2024-03-02 0.5 27 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "47" 2024-02-05 2024-03-02 0.55 28 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "47" 2024-02-05 2024-03-02 0.6 31 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "47" 2024-02-05 2024-03-02 0.65 32.35 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "47" 2024-02-05 2024-03-02 0.7 34 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "47" 2024-02-05 2024-03-02 0.75 36 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "47" 2024-02-05 2024-03-02 0.8 40.2 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "47" 2024-02-05 2024-03-02 0.85 44.15 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "47" 2024-02-05 2024-03-02 0.9 48.1 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "47" 2024-02-05 2024-03-02 0.95 59.25 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "47" 2024-02-05 2024-03-02 0.975 81.6749999999999 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "47" 2024-02-05 2024-03-02 0.99 86.1300000000001 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "47" 2024-02-05 2024-03-03 0.01 3.98 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "47" 2024-02-05 2024-03-03 0.025 5 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "47" 2024-02-05 2024-03-03 0.05 8.95 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "47" 2024-02-05 2024-03-03 0.1 11 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "47" 2024-02-05 2024-03-03 0.15 14 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "47" 2024-02-05 2024-03-03 0.2 15 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "47" 2024-02-05 2024-03-03 0.25 17.75 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "47" 2024-02-05 2024-03-03 0.3 19.7 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "47" 2024-02-05 2024-03-03 0.35 21 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "47" 2024-02-05 2024-03-03 0.4 21 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "47" 2024-02-05 2024-03-03 0.45 22 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "47" 2024-02-05 2024-03-03 0.5 23.5 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "47" 2024-02-05 2024-03-03 0.55 25.45 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "47" 2024-02-05 2024-03-03 0.6 30 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "47" 2024-02-05 2024-03-03 0.65 31 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "47" 2024-02-05 2024-03-03 0.7 34 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "47" 2024-02-05 2024-03-03 0.75 35.25 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "47" 2024-02-05 2024-03-03 0.8 38.2 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "47" 2024-02-05 2024-03-03 0.85 40.15 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "47" 2024-02-05 2024-03-03 0.9 46.3 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "47" 2024-02-05 2024-03-03 0.95 53.65 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "47" 2024-02-05 2024-03-03 0.975 68.05 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "47" 2024-02-05 2024-03-03 0.99 94.2800000000001 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "47" 2024-02-05 2024-03-04 0.01 2.99 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "47" 2024-02-05 2024-03-04 0.025 6.95 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "47" 2024-02-05 2024-03-04 0.05 9.9 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "47" 2024-02-05 2024-03-04 0.1 12 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "47" 2024-02-05 2024-03-04 0.15 13.85 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "47" 2024-02-05 2024-03-04 0.2 16.8 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "47" 2024-02-05 2024-03-04 0.25 18 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "47" 2024-02-05 2024-03-04 0.3 22 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "47" 2024-02-05 2024-03-04 0.35 23.65 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "47" 2024-02-05 2024-03-04 0.4 25.6 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "47" 2024-02-05 2024-03-04 0.45 27.55 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "47" 2024-02-05 2024-03-04 0.5 28 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "47" 2024-02-05 2024-03-04 0.55 30 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "47" 2024-02-05 2024-03-04 0.6 34.4 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "47" 2024-02-05 2024-03-04 0.65 36.35 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "47" 2024-02-05 2024-03-04 0.7 38.3 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "47" 2024-02-05 2024-03-04 0.75 41.75 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "47" 2024-02-05 2024-03-04 0.8 45.2 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "47" 2024-02-05 2024-03-04 0.85 48 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "47" 2024-02-05 2024-03-04 0.9 55 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "47" 2024-02-05 2024-03-04 0.95 69.15 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "47" 2024-02-05 2024-03-04 0.975 90.1499999999999 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "47" 2024-02-05 2024-03-04 0.99 113.24 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "48" 2024-02-05 2024-02-06 0.01 223.9 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "48" 2024-02-05 2024-02-06 0.025 224.95 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "48" 2024-02-05 2024-02-06 0.05 231.95 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "48" 2024-02-05 2024-02-06 0.1 239.9 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "48" 2024-02-05 2024-02-06 0.15 246.85 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "48" 2024-02-05 2024-02-06 0.2 254 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "48" 2024-02-05 2024-02-06 0.25 259.5 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "48" 2024-02-05 2024-02-06 0.3 268.7 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "48" 2024-02-05 2024-02-06 0.35 273.3 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "48" 2024-02-05 2024-02-06 0.4 277 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "48" 2024-02-05 2024-02-06 0.45 280.55 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "48" 2024-02-05 2024-02-06 0.5 295.5 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "48" 2024-02-05 2024-02-06 0.55 300 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "48" 2024-02-05 2024-02-06 0.6 302.4 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "48" 2024-02-05 2024-02-06 0.65 307.35 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "48" 2024-02-05 2024-02-06 0.7 311.9 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "48" 2024-02-05 2024-02-06 0.75 320.25 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "48" 2024-02-05 2024-02-06 0.8 326 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "48" 2024-02-05 2024-02-06 0.85 328.15 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "48" 2024-02-05 2024-02-06 0.9 331.9 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "48" 2024-02-05 2024-02-06 0.95 349.35 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "48" 2024-02-05 2024-02-06 0.975 365.575 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "48" 2024-02-05 2024-02-06 0.99 389.15 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "48" 2024-02-05 2024-02-07 0.01 190.76 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "48" 2024-02-05 2024-02-07 0.025 210.85 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "48" 2024-02-05 2024-02-07 0.05 222.65 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "48" 2024-02-05 2024-02-07 0.1 232.9 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "48" 2024-02-05 2024-02-07 0.15 243 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "48" 2024-02-05 2024-02-07 0.2 250 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "48" 2024-02-05 2024-02-07 0.25 258 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "48" 2024-02-05 2024-02-07 0.3 265 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "48" 2024-02-05 2024-02-07 0.35 271 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "48" 2024-02-05 2024-02-07 0.4 273 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "48" 2024-02-05 2024-02-07 0.45 275.55 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "48" 2024-02-05 2024-02-07 0.5 279 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "48" 2024-02-05 2024-02-07 0.55 282 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "48" 2024-02-05 2024-02-07 0.6 286.4 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "48" 2024-02-05 2024-02-07 0.65 293.35 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "48" 2024-02-05 2024-02-07 0.7 299.3 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "48" 2024-02-05 2024-02-07 0.75 305.25 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "48" 2024-02-05 2024-02-07 0.8 309.2 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "48" 2024-02-05 2024-02-07 0.85 314.3 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "48" 2024-02-05 2024-02-07 0.9 332.6 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "48" 2024-02-05 2024-02-07 0.95 350.25 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "48" 2024-02-05 2024-02-07 0.975 376.5 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "48" 2024-02-05 2024-02-07 0.99 392.15 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "48" 2024-02-05 2024-02-08 0.01 186.99 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "48" 2024-02-05 2024-02-08 0.025 197.425 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "48" 2024-02-05 2024-02-08 0.05 207.7 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "48" 2024-02-05 2024-02-08 0.1 226.6 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "48" 2024-02-05 2024-02-08 0.15 236 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "48" 2024-02-05 2024-02-08 0.2 244.6 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "48" 2024-02-05 2024-02-08 0.25 249 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "48" 2024-02-05 2024-02-08 0.3 253 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "48" 2024-02-05 2024-02-08 0.35 259.3 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "48" 2024-02-05 2024-02-08 0.4 262 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "48" 2024-02-05 2024-02-08 0.45 271 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "48" 2024-02-05 2024-02-08 0.5 276 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "48" 2024-02-05 2024-02-08 0.55 279.45 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "48" 2024-02-05 2024-02-08 0.6 284.8 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "48" 2024-02-05 2024-02-08 0.65 290 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "48" 2024-02-05 2024-02-08 0.7 293.3 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "48" 2024-02-05 2024-02-08 0.75 298.25 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "48" 2024-02-05 2024-02-08 0.8 305.2 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "48" 2024-02-05 2024-02-08 0.85 317.2 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "48" 2024-02-05 2024-02-08 0.9 340 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "48" 2024-02-05 2024-02-08 0.95 371.35 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "48" 2024-02-05 2024-02-08 0.975 390.775 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "48" 2024-02-05 2024-02-08 0.99 402.67 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "48" 2024-02-05 2024-02-09 0.01 171.98 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "48" 2024-02-05 2024-02-09 0.025 196.95 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "48" 2024-02-05 2024-02-09 0.05 207.7 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "48" 2024-02-05 2024-02-09 0.1 232.7 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "48" 2024-02-05 2024-02-09 0.15 239.7 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "48" 2024-02-05 2024-02-09 0.2 243 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "48" 2024-02-05 2024-02-09 0.25 249.5 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "48" 2024-02-05 2024-02-09 0.3 257 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "48" 2024-02-05 2024-02-09 0.35 263.25 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "48" 2024-02-05 2024-02-09 0.4 267.6 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "48" 2024-02-05 2024-02-09 0.45 269.55 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "48" 2024-02-05 2024-02-09 0.5 274 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "48" 2024-02-05 2024-02-09 0.55 281 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "48" 2024-02-05 2024-02-09 0.6 283.4 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "48" 2024-02-05 2024-02-09 0.65 289 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "48" 2024-02-05 2024-02-09 0.7 297.3 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "48" 2024-02-05 2024-02-09 0.75 311.25 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "48" 2024-02-05 2024-02-09 0.8 328 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "48" 2024-02-05 2024-02-09 0.85 345.15 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "48" 2024-02-05 2024-02-09 0.9 354 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "48" 2024-02-05 2024-02-09 0.95 369.2 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "48" 2024-02-05 2024-02-09 0.975 380.05 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "48" 2024-02-05 2024-02-09 0.99 382.02 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "48" 2024-02-05 2024-02-10 0.01 152.86 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "48" 2024-02-05 2024-02-10 0.025 165.6 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "48" 2024-02-05 2024-02-10 0.05 177.85 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "48" 2024-02-05 2024-02-10 0.1 201.9 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "48" 2024-02-05 2024-02-10 0.15 209 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "48" 2024-02-05 2024-02-10 0.2 215.8 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "48" 2024-02-05 2024-02-10 0.25 222 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "48" 2024-02-05 2024-02-10 0.3 232.1 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "48" 2024-02-05 2024-02-10 0.35 238.65 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "48" 2024-02-05 2024-02-10 0.4 245.6 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "48" 2024-02-05 2024-02-10 0.45 252.55 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "48" 2024-02-05 2024-02-10 0.5 258.5 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "48" 2024-02-05 2024-02-10 0.55 262 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "48" 2024-02-05 2024-02-10 0.6 265 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "48" 2024-02-05 2024-02-10 0.65 270.35 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "48" 2024-02-05 2024-02-10 0.7 276.3 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "48" 2024-02-05 2024-02-10 0.75 279.25 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "48" 2024-02-05 2024-02-10 0.8 288.2 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "48" 2024-02-05 2024-02-10 0.85 302.15 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "48" 2024-02-05 2024-02-10 0.9 319.1 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "48" 2024-02-05 2024-02-10 0.95 327.3 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "48" 2024-02-05 2024-02-10 0.975 338.2 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "48" 2024-02-05 2024-02-10 0.99 370.32 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "48" 2024-02-05 2024-02-11 0.01 179.65 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "48" 2024-02-05 2024-02-11 0.025 199.95 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "48" 2024-02-05 2024-02-11 0.05 205.85 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "48" 2024-02-05 2024-02-11 0.1 213.9 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "48" 2024-02-05 2024-02-11 0.15 224.25 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "48" 2024-02-05 2024-02-11 0.2 230.8 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "48" 2024-02-05 2024-02-11 0.25 238.75 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "48" 2024-02-05 2024-02-11 0.3 246.1 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "48" 2024-02-05 2024-02-11 0.35 250.3 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "48" 2024-02-05 2024-02-11 0.4 254.6 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "48" 2024-02-05 2024-02-11 0.45 257.55 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "48" 2024-02-05 2024-02-11 0.5 266.5 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "48" 2024-02-05 2024-02-11 0.55 275 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "48" 2024-02-05 2024-02-11 0.6 280.2 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "48" 2024-02-05 2024-02-11 0.65 287.7 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "48" 2024-02-05 2024-02-11 0.7 301 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "48" 2024-02-05 2024-02-11 0.75 315.25 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "48" 2024-02-05 2024-02-11 0.8 322.4 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "48" 2024-02-05 2024-02-11 0.85 333.15 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "48" 2024-02-05 2024-02-11 0.9 350.1 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "48" 2024-02-05 2024-02-11 0.95 373.2 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "48" 2024-02-05 2024-02-11 0.975 392.525 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "48" 2024-02-05 2024-02-11 0.99 406.19 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "48" 2024-02-05 2024-02-12 0.01 199.55 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "48" 2024-02-05 2024-02-12 0.025 204.325 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "48" 2024-02-05 2024-02-12 0.05 221.6 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "48" 2024-02-05 2024-02-12 0.1 231.8 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "48" 2024-02-05 2024-02-12 0.15 241.7 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "48" 2024-02-05 2024-02-12 0.2 254.2 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "48" 2024-02-05 2024-02-12 0.25 260.5 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "48" 2024-02-05 2024-02-12 0.3 264 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "48" 2024-02-05 2024-02-12 0.35 269 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "48" 2024-02-05 2024-02-12 0.4 281.8 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "48" 2024-02-05 2024-02-12 0.45 287.1 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "48" 2024-02-05 2024-02-12 0.5 295.5 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "48" 2024-02-05 2024-02-12 0.55 308.45 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "48" 2024-02-05 2024-02-12 0.6 313.4 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "48" 2024-02-05 2024-02-12 0.65 320.35 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "48" 2024-02-05 2024-02-12 0.7 336.3 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "48" 2024-02-05 2024-02-12 0.75 340.25 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "48" 2024-02-05 2024-02-12 0.8 348.2 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "48" 2024-02-05 2024-02-12 0.85 358.15 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "48" 2024-02-05 2024-02-12 0.9 365.6 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "48" 2024-02-05 2024-02-12 0.95 421.05 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "48" 2024-02-05 2024-02-12 0.975 453.35 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "48" 2024-02-05 2024-02-12 0.99 462.25 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "48" 2024-02-05 2024-02-13 0.01 185.97 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "48" 2024-02-05 2024-02-13 0.025 207.55 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "48" 2024-02-05 2024-02-13 0.05 225.65 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "48" 2024-02-05 2024-02-13 0.1 239 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "48" 2024-02-05 2024-02-13 0.15 244.55 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "48" 2024-02-05 2024-02-13 0.2 249 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "48" 2024-02-05 2024-02-13 0.25 256 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "48" 2024-02-05 2024-02-13 0.3 261.7 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "48" 2024-02-05 2024-02-13 0.35 270.95 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "48" 2024-02-05 2024-02-13 0.4 279.8 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "48" 2024-02-05 2024-02-13 0.45 285.65 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "48" 2024-02-05 2024-02-13 0.5 295 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "48" 2024-02-05 2024-02-13 0.55 302.35 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "48" 2024-02-05 2024-02-13 0.6 308 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "48" 2024-02-05 2024-02-13 0.65 317.4 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "48" 2024-02-05 2024-02-13 0.7 330.5 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "48" 2024-02-05 2024-02-13 0.75 340.75 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "48" 2024-02-05 2024-02-13 0.8 345.6 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "48" 2024-02-05 2024-02-13 0.85 354 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "48" 2024-02-05 2024-02-13 0.9 373.3 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "48" 2024-02-05 2024-02-13 0.95 391.45 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "48" 2024-02-05 2024-02-13 0.975 417.575 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "48" 2024-02-05 2024-02-13 0.99 438.46 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "48" 2024-02-05 2024-02-14 0.01 158.99 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "48" 2024-02-05 2024-02-14 0.025 169.075 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "48" 2024-02-05 2024-02-14 0.05 200.1 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "48" 2024-02-05 2024-02-14 0.1 215.9 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "48" 2024-02-05 2024-02-14 0.15 224 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "48" 2024-02-05 2024-02-14 0.2 236.8 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "48" 2024-02-05 2024-02-14 0.25 244.5 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "48" 2024-02-05 2024-02-14 0.3 251.4 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "48" 2024-02-05 2024-02-14 0.35 260.65 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "48" 2024-02-05 2024-02-14 0.4 269.2 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "48" 2024-02-05 2024-02-14 0.45 276 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "48" 2024-02-05 2024-02-14 0.5 284.5 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "48" 2024-02-05 2024-02-14 0.55 292.45 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "48" 2024-02-05 2024-02-14 0.6 299.4 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "48" 2024-02-05 2024-02-14 0.65 307.05 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "48" 2024-02-05 2024-02-14 0.7 321.6 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "48" 2024-02-05 2024-02-14 0.75 334.75 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "48" 2024-02-05 2024-02-14 0.8 346.4 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "48" 2024-02-05 2024-02-14 0.85 359.15 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "48" 2024-02-05 2024-02-14 0.9 367.1 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "48" 2024-02-05 2024-02-14 0.95 405.1 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "48" 2024-02-05 2024-02-14 0.975 439.3 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "48" 2024-02-05 2024-02-14 0.99 451.51 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "48" 2024-02-05 2024-02-15 0.01 181.41 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "48" 2024-02-05 2024-02-15 0.025 185.85 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "48" 2024-02-05 2024-02-15 0.05 198.9 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "48" 2024-02-05 2024-02-15 0.1 203.8 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "48" 2024-02-05 2024-02-15 0.15 220.7 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "48" 2024-02-05 2024-02-15 0.2 229.8 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "48" 2024-02-05 2024-02-15 0.25 247.5 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "48" 2024-02-05 2024-02-15 0.3 254.4 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "48" 2024-02-05 2024-02-15 0.35 266.95 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "48" 2024-02-05 2024-02-15 0.4 275.6 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "48" 2024-02-05 2024-02-15 0.45 280.1 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "48" 2024-02-05 2024-02-15 0.5 286 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "48" 2024-02-05 2024-02-15 0.55 289.45 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "48" 2024-02-05 2024-02-15 0.6 296.4 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "48" 2024-02-05 2024-02-15 0.65 306 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "48" 2024-02-05 2024-02-15 0.7 320.3 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "48" 2024-02-05 2024-02-15 0.75 326.25 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "48" 2024-02-05 2024-02-15 0.8 336 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "48" 2024-02-05 2024-02-15 0.85 347.9 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "48" 2024-02-05 2024-02-15 0.9 359.3 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "48" 2024-02-05 2024-02-15 0.95 395.15 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "48" 2024-02-05 2024-02-15 0.975 412.775 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "48" 2024-02-05 2024-02-15 0.99 462.19 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "48" 2024-02-05 2024-02-16 0.01 175.83 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "48" 2024-02-05 2024-02-16 0.025 184.375 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "48" 2024-02-05 2024-02-16 0.05 194.65 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "48" 2024-02-05 2024-02-16 0.1 209.9 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "48" 2024-02-05 2024-02-16 0.15 215.85 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "48" 2024-02-05 2024-02-16 0.2 223.2 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "48" 2024-02-05 2024-02-16 0.25 238.75 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "48" 2024-02-05 2024-02-16 0.3 247 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "48" 2024-02-05 2024-02-16 0.35 252 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "48" 2024-02-05 2024-02-16 0.4 256.8 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "48" 2024-02-05 2024-02-16 0.45 263 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "48" 2024-02-05 2024-02-16 0.5 268 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "48" 2024-02-05 2024-02-16 0.55 278.8 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "48" 2024-02-05 2024-02-16 0.6 288.8 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "48" 2024-02-05 2024-02-16 0.65 300.1 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "48" 2024-02-05 2024-02-16 0.7 311.3 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "48" 2024-02-05 2024-02-16 0.75 319.25 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "48" 2024-02-05 2024-02-16 0.8 327.4 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "48" 2024-02-05 2024-02-16 0.85 338.45 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "48" 2024-02-05 2024-02-16 0.9 354.3 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "48" 2024-02-05 2024-02-16 0.95 370 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "48" 2024-02-05 2024-02-16 0.975 393.65 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "48" 2024-02-05 2024-02-16 0.99 434.23 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "48" 2024-02-05 2024-02-17 0.01 145.66 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "48" 2024-02-05 2024-02-17 0.025 153.85 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "48" 2024-02-05 2024-02-17 0.05 169.45 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "48" 2024-02-05 2024-02-17 0.1 182.9 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "48" 2024-02-05 2024-02-17 0.15 196.1 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "48" 2024-02-05 2024-02-17 0.2 207 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "48" 2024-02-05 2024-02-17 0.25 213.5 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "48" 2024-02-05 2024-02-17 0.3 221 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "48" 2024-02-05 2024-02-17 0.35 228.3 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "48" 2024-02-05 2024-02-17 0.4 233.6 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "48" 2024-02-05 2024-02-17 0.45 238.55 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "48" 2024-02-05 2024-02-17 0.5 246 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "48" 2024-02-05 2024-02-17 0.55 250.45 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "48" 2024-02-05 2024-02-17 0.6 264.4 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "48" 2024-02-05 2024-02-17 0.65 271.7 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "48" 2024-02-05 2024-02-17 0.7 281.3 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "48" 2024-02-05 2024-02-17 0.75 289.75 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "48" 2024-02-05 2024-02-17 0.8 301.2 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "48" 2024-02-05 2024-02-17 0.85 313.05 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "48" 2024-02-05 2024-02-17 0.9 342.1 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "48" 2024-02-05 2024-02-17 0.95 377.25 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "48" 2024-02-05 2024-02-17 0.975 408.025 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "48" 2024-02-05 2024-02-17 0.99 475.07 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "48" 2024-02-05 2024-02-18 0.01 143.63 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "48" 2024-02-05 2024-02-18 0.025 175.95 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "48" 2024-02-05 2024-02-18 0.05 186.65 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "48" 2024-02-05 2024-02-18 0.1 200 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "48" 2024-02-05 2024-02-18 0.15 209.7 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "48" 2024-02-05 2024-02-18 0.2 219.6 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "48" 2024-02-05 2024-02-18 0.25 236.5 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "48" 2024-02-05 2024-02-18 0.3 248.1 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "48" 2024-02-05 2024-02-18 0.35 254.3 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "48" 2024-02-05 2024-02-18 0.4 266.6 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "48" 2024-02-05 2024-02-18 0.45 269.55 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "48" 2024-02-05 2024-02-18 0.5 275 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "48" 2024-02-05 2024-02-18 0.55 284.25 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "48" 2024-02-05 2024-02-18 0.6 298.4 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "48" 2024-02-05 2024-02-18 0.65 303 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "48" 2024-02-05 2024-02-18 0.7 307.6 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "48" 2024-02-05 2024-02-18 0.75 320.5 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "48" 2024-02-05 2024-02-18 0.8 326.4 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "48" 2024-02-05 2024-02-18 0.85 337.65 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "48" 2024-02-05 2024-02-18 0.9 363.9 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "48" 2024-02-05 2024-02-18 0.95 394.1 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "48" 2024-02-05 2024-02-18 0.975 403.2 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "48" 2024-02-05 2024-02-18 0.99 465.44 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "48" 2024-02-05 2024-02-19 0.01 152.84 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "48" 2024-02-05 2024-02-19 0.025 187.55 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "48" 2024-02-05 2024-02-19 0.05 198.95 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "48" 2024-02-05 2024-02-19 0.1 208.9 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "48" 2024-02-05 2024-02-19 0.15 220.7 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "48" 2024-02-05 2024-02-19 0.2 230.8 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "48" 2024-02-05 2024-02-19 0.25 240.75 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "48" 2024-02-05 2024-02-19 0.3 252 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "48" 2024-02-05 2024-02-19 0.35 264.9 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "48" 2024-02-05 2024-02-19 0.4 270.8 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "48" 2024-02-05 2024-02-19 0.45 277.65 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "48" 2024-02-05 2024-02-19 0.5 289 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "48" 2024-02-05 2024-02-19 0.55 302 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "48" 2024-02-05 2024-02-19 0.6 317.8 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "48" 2024-02-05 2024-02-19 0.65 326.05 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "48" 2024-02-05 2024-02-19 0.7 343.5 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "48" 2024-02-05 2024-02-19 0.75 353.75 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "48" 2024-02-05 2024-02-19 0.8 363.2 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "48" 2024-02-05 2024-02-19 0.85 383.8 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "48" 2024-02-05 2024-02-19 0.9 417.2 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "48" 2024-02-05 2024-02-19 0.95 442.5 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "48" 2024-02-05 2024-02-19 0.975 461.675 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "48" 2024-02-05 2024-02-19 0.99 480.030000000001 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "48" 2024-02-05 2024-02-20 0.01 180.57 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "48" 2024-02-05 2024-02-20 0.025 184.85 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "48" 2024-02-05 2024-02-20 0.05 191.9 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "48" 2024-02-05 2024-02-20 0.1 211.5 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "48" 2024-02-05 2024-02-20 0.15 220.4 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "48" 2024-02-05 2024-02-20 0.2 228.4 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "48" 2024-02-05 2024-02-20 0.25 240 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "48" 2024-02-05 2024-02-20 0.3 250.8 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "48" 2024-02-05 2024-02-20 0.35 258.65 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "48" 2024-02-05 2024-02-20 0.4 272.6 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "48" 2024-02-05 2024-02-20 0.45 286.2 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "48" 2024-02-05 2024-02-20 0.5 297.5 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "48" 2024-02-05 2024-02-20 0.55 311.45 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "48" 2024-02-05 2024-02-20 0.6 316.4 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "48" 2024-02-05 2024-02-20 0.65 325 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "48" 2024-02-05 2024-02-20 0.7 329.3 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "48" 2024-02-05 2024-02-20 0.75 335.5 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "48" 2024-02-05 2024-02-20 0.8 365.4 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "48" 2024-02-05 2024-02-20 0.85 396.5 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "48" 2024-02-05 2024-02-20 0.9 415.2 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "48" 2024-02-05 2024-02-20 0.95 444.1 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "48" 2024-02-05 2024-02-20 0.975 481.525 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "48" 2024-02-05 2024-02-20 0.99 505.08 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "48" 2024-02-05 2024-02-21 0.01 138.95 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "48" 2024-02-05 2024-02-21 0.025 167.65 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "48" 2024-02-05 2024-02-21 0.05 179 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "48" 2024-02-05 2024-02-21 0.1 193 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "48" 2024-02-05 2024-02-21 0.15 215 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "48" 2024-02-05 2024-02-21 0.2 224.8 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "48" 2024-02-05 2024-02-21 0.25 239.25 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "48" 2024-02-05 2024-02-21 0.3 251 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "48" 2024-02-05 2024-02-21 0.35 255 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "48" 2024-02-05 2024-02-21 0.4 261 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "48" 2024-02-05 2024-02-21 0.45 272.55 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "48" 2024-02-05 2024-02-21 0.5 287 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "48" 2024-02-05 2024-02-21 0.55 299.7 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "48" 2024-02-05 2024-02-21 0.6 309.8 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "48" 2024-02-05 2024-02-21 0.65 323.1 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "48" 2024-02-05 2024-02-21 0.7 333.3 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "48" 2024-02-05 2024-02-21 0.75 338.75 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "48" 2024-02-05 2024-02-21 0.8 353 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "48" 2024-02-05 2024-02-21 0.85 369.25 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "48" 2024-02-05 2024-02-21 0.9 413.2 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "48" 2024-02-05 2024-02-21 0.95 452.15 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "48" 2024-02-05 2024-02-21 0.975 481.525 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "48" 2024-02-05 2024-02-21 0.99 509.18 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "48" 2024-02-05 2024-02-22 0.01 132.97 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "48" 2024-02-05 2024-02-22 0.025 175.95 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "48" 2024-02-05 2024-02-22 0.05 187.45 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "48" 2024-02-05 2024-02-22 0.1 198.7 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "48" 2024-02-05 2024-02-22 0.15 214.25 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "48" 2024-02-05 2024-02-22 0.2 221.8 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "48" 2024-02-05 2024-02-22 0.25 232 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "48" 2024-02-05 2024-02-22 0.3 244.1 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "48" 2024-02-05 2024-02-22 0.35 251 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "48" 2024-02-05 2024-02-22 0.4 266.6 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "48" 2024-02-05 2024-02-22 0.45 278.2 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "48" 2024-02-05 2024-02-22 0.5 288.5 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "48" 2024-02-05 2024-02-22 0.55 294 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "48" 2024-02-05 2024-02-22 0.6 308.4 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "48" 2024-02-05 2024-02-22 0.65 316.35 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "48" 2024-02-05 2024-02-22 0.7 330 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "48" 2024-02-05 2024-02-22 0.75 336.75 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "48" 2024-02-05 2024-02-22 0.8 357 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "48" 2024-02-05 2024-02-22 0.85 365.15 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "48" 2024-02-05 2024-02-22 0.9 387.3 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "48" 2024-02-05 2024-02-22 0.95 437.45 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "48" 2024-02-05 2024-02-22 0.975 456.825 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "48" 2024-02-05 2024-02-22 0.99 509.02 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "48" 2024-02-05 2024-02-23 0.01 139.78 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "48" 2024-02-05 2024-02-23 0.025 144.8 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "48" 2024-02-05 2024-02-23 0.05 169.1 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "48" 2024-02-05 2024-02-23 0.1 190 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "48" 2024-02-05 2024-02-23 0.15 201.85 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "48" 2024-02-05 2024-02-23 0.2 215 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "48" 2024-02-05 2024-02-23 0.25 236.75 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "48" 2024-02-05 2024-02-23 0.3 240.4 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "48" 2024-02-05 2024-02-23 0.35 248.6 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "48" 2024-02-05 2024-02-23 0.4 266.8 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "48" 2024-02-05 2024-02-23 0.45 274.3 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "48" 2024-02-05 2024-02-23 0.5 282 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "48" 2024-02-05 2024-02-23 0.55 299.45 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "48" 2024-02-05 2024-02-23 0.6 311.4 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "48" 2024-02-05 2024-02-23 0.65 317.35 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "48" 2024-02-05 2024-02-23 0.7 326.3 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "48" 2024-02-05 2024-02-23 0.75 336.25 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "48" 2024-02-05 2024-02-23 0.8 361.4 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "48" 2024-02-05 2024-02-23 0.85 377.15 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "48" 2024-02-05 2024-02-23 0.9 388.1 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "48" 2024-02-05 2024-02-23 0.95 429.05 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "48" 2024-02-05 2024-02-23 0.975 454.35 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "48" 2024-02-05 2024-02-23 0.99 481.12 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "48" 2024-02-05 2024-02-24 0.01 141.51 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "48" 2024-02-05 2024-02-24 0.025 156.85 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "48" 2024-02-05 2024-02-24 0.05 161.95 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "48" 2024-02-05 2024-02-24 0.1 170.9 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "48" 2024-02-05 2024-02-24 0.15 180.7 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "48" 2024-02-05 2024-02-24 0.2 195.8 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "48" 2024-02-05 2024-02-24 0.25 204.75 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "48" 2024-02-05 2024-02-24 0.3 218.7 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "48" 2024-02-05 2024-02-24 0.35 220.65 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "48" 2024-02-05 2024-02-24 0.4 229.6 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "48" 2024-02-05 2024-02-24 0.45 236.1 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "48" 2024-02-05 2024-02-24 0.5 243 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "48" 2024-02-05 2024-02-24 0.55 254 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "48" 2024-02-05 2024-02-24 0.6 266.2 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "48" 2024-02-05 2024-02-24 0.65 288.35 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "48" 2024-02-05 2024-02-24 0.7 302.6 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "48" 2024-02-05 2024-02-24 0.75 315.25 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "48" 2024-02-05 2024-02-24 0.8 331 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "48" 2024-02-05 2024-02-24 0.85 342.45 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "48" 2024-02-05 2024-02-24 0.9 379 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "48" 2024-02-05 2024-02-24 0.95 407.05 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "48" 2024-02-05 2024-02-24 0.975 420.525 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "48" 2024-02-05 2024-02-24 0.99 444.25 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "48" 2024-02-05 2024-02-25 0.01 137.79 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "48" 2024-02-05 2024-02-25 0.025 146.475 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "48" 2024-02-05 2024-02-25 0.05 162.25 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "48" 2024-02-05 2024-02-25 0.1 172.9 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "48" 2024-02-05 2024-02-25 0.15 201.85 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "48" 2024-02-05 2024-02-25 0.2 213.4 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "48" 2024-02-05 2024-02-25 0.25 224 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "48" 2024-02-05 2024-02-25 0.3 248 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "48" 2024-02-05 2024-02-25 0.35 256.25 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "48" 2024-02-05 2024-02-25 0.4 269 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "48" 2024-02-05 2024-02-25 0.45 274 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "48" 2024-02-05 2024-02-25 0.5 281 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "48" 2024-02-05 2024-02-25 0.55 289.9 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "48" 2024-02-05 2024-02-25 0.6 298.4 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "48" 2024-02-05 2024-02-25 0.65 307.35 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "48" 2024-02-05 2024-02-25 0.7 316.6 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "48" 2024-02-05 2024-02-25 0.75 336.5 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "48" 2024-02-05 2024-02-25 0.8 349.2 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "48" 2024-02-05 2024-02-25 0.85 370 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "48" 2024-02-05 2024-02-25 0.9 385.8 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "48" 2024-02-05 2024-02-25 0.95 431.3 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "48" 2024-02-05 2024-02-25 0.975 437.525 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "48" 2024-02-05 2024-02-25 0.99 468.030000000001 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "48" 2024-02-05 2024-02-26 0.01 138.73 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "48" 2024-02-05 2024-02-26 0.025 149.425 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "48" 2024-02-05 2024-02-26 0.05 170.05 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "48" 2024-02-05 2024-02-26 0.1 200.7 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "48" 2024-02-05 2024-02-26 0.15 213.85 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "48" 2024-02-05 2024-02-26 0.2 227.4 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "48" 2024-02-05 2024-02-26 0.25 236 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "48" 2024-02-05 2024-02-26 0.3 244.7 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "48" 2024-02-05 2024-02-26 0.35 259.65 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "48" 2024-02-05 2024-02-26 0.4 271.6 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "48" 2024-02-05 2024-02-26 0.45 279 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "48" 2024-02-05 2024-02-26 0.5 288 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "48" 2024-02-05 2024-02-26 0.55 303 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "48" 2024-02-05 2024-02-26 0.6 322.8 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "48" 2024-02-05 2024-02-26 0.65 327 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "48" 2024-02-05 2024-02-26 0.7 338.9 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "48" 2024-02-05 2024-02-26 0.75 345.5 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "48" 2024-02-05 2024-02-26 0.8 380.4 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "48" 2024-02-05 2024-02-26 0.85 405.3 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "48" 2024-02-05 2024-02-26 0.9 416.1 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "48" 2024-02-05 2024-02-26 0.95 450.55 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "48" 2024-02-05 2024-02-26 0.975 475.15 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "48" 2024-02-05 2024-02-26 0.99 529.48 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "48" 2024-02-05 2024-02-27 0.01 114.99 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "48" 2024-02-05 2024-02-27 0.025 165.6 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "48" 2024-02-05 2024-02-27 0.05 180.7 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "48" 2024-02-05 2024-02-27 0.1 202.7 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "48" 2024-02-05 2024-02-27 0.15 213.4 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "48" 2024-02-05 2024-02-27 0.2 230.6 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "48" 2024-02-05 2024-02-27 0.25 244.75 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "48" 2024-02-05 2024-02-27 0.3 259.4 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "48" 2024-02-05 2024-02-27 0.35 271.25 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "48" 2024-02-05 2024-02-27 0.4 280.2 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "48" 2024-02-05 2024-02-27 0.45 290.85 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "48" 2024-02-05 2024-02-27 0.5 301 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "48" 2024-02-05 2024-02-27 0.55 310.45 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "48" 2024-02-05 2024-02-27 0.6 317.2 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "48" 2024-02-05 2024-02-27 0.65 326 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "48" 2024-02-05 2024-02-27 0.7 331.6 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "48" 2024-02-05 2024-02-27 0.75 355.25 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "48" 2024-02-05 2024-02-27 0.8 374.6 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "48" 2024-02-05 2024-02-27 0.85 398.6 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "48" 2024-02-05 2024-02-27 0.9 421.5 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "48" 2024-02-05 2024-02-27 0.95 494.85 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "48" 2024-02-05 2024-02-27 0.975 522.35 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "48" 2024-02-05 2024-02-27 0.99 547.34 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "48" 2024-02-05 2024-02-28 0.01 110.96 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "48" 2024-02-05 2024-02-28 0.025 154.075 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "48" 2024-02-05 2024-02-28 0.05 166.95 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "48" 2024-02-05 2024-02-28 0.1 187.9 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "48" 2024-02-05 2024-02-28 0.15 205.55 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "48" 2024-02-05 2024-02-28 0.2 226.2 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "48" 2024-02-05 2024-02-28 0.25 240.75 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "48" 2024-02-05 2024-02-28 0.3 248 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "48" 2024-02-05 2024-02-28 0.35 255.3 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "48" 2024-02-05 2024-02-28 0.4 263.6 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "48" 2024-02-05 2024-02-28 0.45 275.1 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "48" 2024-02-05 2024-02-28 0.5 284 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "48" 2024-02-05 2024-02-28 0.55 300.45 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "48" 2024-02-05 2024-02-28 0.6 307.8 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "48" 2024-02-05 2024-02-28 0.65 317.7 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "48" 2024-02-05 2024-02-28 0.7 326.9 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "48" 2024-02-05 2024-02-28 0.75 337.25 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "48" 2024-02-05 2024-02-28 0.8 344.6 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "48" 2024-02-05 2024-02-28 0.85 377.6 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "48" 2024-02-05 2024-02-28 0.9 403.9 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "48" 2024-02-05 2024-02-28 0.95 471.55 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "48" 2024-02-05 2024-02-28 0.975 527.125 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "48" 2024-02-05 2024-02-28 0.99 560.09 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "48" 2024-02-05 2024-02-29 0.01 128.97 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "48" 2024-02-05 2024-02-29 0.025 163.275 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "48" 2024-02-05 2024-02-29 0.05 170.95 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "48" 2024-02-05 2024-02-29 0.1 184.6 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "48" 2024-02-05 2024-02-29 0.15 196.85 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "48" 2024-02-05 2024-02-29 0.2 221.8 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "48" 2024-02-05 2024-02-29 0.25 242 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "48" 2024-02-05 2024-02-29 0.3 251.7 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "48" 2024-02-05 2024-02-29 0.35 258.65 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "48" 2024-02-05 2024-02-29 0.4 270.6 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "48" 2024-02-05 2024-02-29 0.45 280.1 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "48" 2024-02-05 2024-02-29 0.5 296 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "48" 2024-02-05 2024-02-29 0.55 306.05 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "48" 2024-02-05 2024-02-29 0.6 318.8 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "48" 2024-02-05 2024-02-29 0.65 334.05 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "48" 2024-02-05 2024-02-29 0.7 348.3 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "48" 2024-02-05 2024-02-29 0.75 364.75 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "48" 2024-02-05 2024-02-29 0.8 374.2 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "48" 2024-02-05 2024-02-29 0.85 394.3 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "48" 2024-02-05 2024-02-29 0.9 414.6 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "48" 2024-02-05 2024-02-29 0.95 456.8 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "48" 2024-02-05 2024-02-29 0.975 517.475 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "48" 2024-02-05 2024-02-29 0.99 545.44 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "48" 2024-02-05 2024-03-01 0.01 127.79 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "48" 2024-02-05 2024-03-01 0.025 133.8 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "48" 2024-02-05 2024-03-01 0.05 149.85 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "48" 2024-02-05 2024-03-01 0.1 178.1 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "48" 2024-02-05 2024-03-01 0.15 198.25 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "48" 2024-02-05 2024-03-01 0.2 213 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "48" 2024-02-05 2024-03-01 0.25 226.75 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "48" 2024-02-05 2024-03-01 0.3 240 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "48" 2024-02-05 2024-03-01 0.35 244.65 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "48" 2024-02-05 2024-03-01 0.4 249 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "48" 2024-02-05 2024-03-01 0.45 264.5 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "48" 2024-02-05 2024-03-01 0.5 292.5 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "48" 2024-02-05 2024-03-01 0.55 308.8 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "48" 2024-02-05 2024-03-01 0.6 325.6 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "48" 2024-02-05 2024-03-01 0.65 334.05 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "48" 2024-02-05 2024-03-01 0.7 344.9 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "48" 2024-02-05 2024-03-01 0.75 354.75 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "48" 2024-02-05 2024-03-01 0.8 361.2 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "48" 2024-02-05 2024-03-01 0.85 382.6 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "48" 2024-02-05 2024-03-01 0.9 391.3 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "48" 2024-02-05 2024-03-01 0.95 459.2 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "48" 2024-02-05 2024-03-01 0.975 484.525 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "48" 2024-02-05 2024-03-01 0.99 491.68 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "48" 2024-02-05 2024-03-02 0.01 93.97 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "48" 2024-02-05 2024-03-02 0.025 141.8 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "48" 2024-02-05 2024-03-02 0.05 148.9 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "48" 2024-02-05 2024-03-02 0.1 165 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "48" 2024-02-05 2024-03-02 0.15 177 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "48" 2024-02-05 2024-03-02 0.2 198.8 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "48" 2024-02-05 2024-03-02 0.25 209.25 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "48" 2024-02-05 2024-03-02 0.3 219.8 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "48" 2024-02-05 2024-03-02 0.35 234.5 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "48" 2024-02-05 2024-03-02 0.4 243.6 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "48" 2024-02-05 2024-03-02 0.45 251 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "48" 2024-02-05 2024-03-02 0.5 256 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "48" 2024-02-05 2024-03-02 0.55 263.45 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "48" 2024-02-05 2024-03-02 0.6 280 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "48" 2024-02-05 2024-03-02 0.65 285.35 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "48" 2024-02-05 2024-03-02 0.7 294.3 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "48" 2024-02-05 2024-03-02 0.75 302 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "48" 2024-02-05 2024-03-02 0.8 313.8 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "48" 2024-02-05 2024-03-02 0.85 326.6 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "48" 2024-02-05 2024-03-02 0.9 369.8 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "48" 2024-02-05 2024-03-02 0.95 433.35 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "48" 2024-02-05 2024-03-02 0.975 447.15 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "48" 2024-02-05 2024-03-02 0.99 531.1 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "48" 2024-02-05 2024-03-03 0.01 98.97 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "48" 2024-02-05 2024-03-03 0.025 138.8 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "48" 2024-02-05 2024-03-03 0.05 153.5 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "48" 2024-02-05 2024-03-03 0.1 179.5 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "48" 2024-02-05 2024-03-03 0.15 191.85 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "48" 2024-02-05 2024-03-03 0.2 206.2 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "48" 2024-02-05 2024-03-03 0.25 212.75 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "48" 2024-02-05 2024-03-03 0.3 228.5 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "48" 2024-02-05 2024-03-03 0.35 241.25 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "48" 2024-02-05 2024-03-03 0.4 253 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "48" 2024-02-05 2024-03-03 0.45 263.85 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "48" 2024-02-05 2024-03-03 0.5 292 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "48" 2024-02-05 2024-03-03 0.55 309.45 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "48" 2024-02-05 2024-03-03 0.6 319.6 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "48" 2024-02-05 2024-03-03 0.65 329.7 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "48" 2024-02-05 2024-03-03 0.7 344.1 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "48" 2024-02-05 2024-03-03 0.75 358.25 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "48" 2024-02-05 2024-03-03 0.8 372.4 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "48" 2024-02-05 2024-03-03 0.85 391.45 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "48" 2024-02-05 2024-03-03 0.9 409.7 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "48" 2024-02-05 2024-03-03 0.95 444.55 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "48" 2024-02-05 2024-03-03 0.975 484.775 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "48" 2024-02-05 2024-03-03 0.99 531.16 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "48" 2024-02-05 2024-03-04 0.01 109 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "48" 2024-02-05 2024-03-04 0.025 141.775 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "48" 2024-02-05 2024-03-04 0.05 159.9 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "48" 2024-02-05 2024-03-04 0.1 183.8 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "48" 2024-02-05 2024-03-04 0.15 207.7 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "48" 2024-02-05 2024-03-04 0.2 221 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "48" 2024-02-05 2024-03-04 0.25 236 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "48" 2024-02-05 2024-03-04 0.3 252.3 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "48" 2024-02-05 2024-03-04 0.35 266 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "48" 2024-02-05 2024-03-04 0.4 279 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "48" 2024-02-05 2024-03-04 0.45 296.55 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "48" 2024-02-05 2024-03-04 0.5 307.5 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "48" 2024-02-05 2024-03-04 0.55 325.45 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "48" 2024-02-05 2024-03-04 0.6 334 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "48" 2024-02-05 2024-03-04 0.65 345 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "48" 2024-02-05 2024-03-04 0.7 363.1 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "48" 2024-02-05 2024-03-04 0.75 374.25 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "48" 2024-02-05 2024-03-04 0.8 383.6 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "48" 2024-02-05 2024-03-04 0.85 415.6 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "48" 2024-02-05 2024-03-04 0.9 433.2 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "48" 2024-02-05 2024-03-04 0.95 458.7 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "48" 2024-02-05 2024-03-04 0.975 554.6 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "48" 2024-02-05 2024-03-04 0.99 657.33 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "49" 2024-02-05 2024-02-06 0.01 6.98 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "49" 2024-02-05 2024-02-06 0.025 7.475 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "49" 2024-02-05 2024-02-06 0.05 8 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "49" 2024-02-05 2024-02-06 0.1 9.9 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "49" 2024-02-05 2024-02-06 0.15 11 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "49" 2024-02-05 2024-02-06 0.2 12 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "49" 2024-02-05 2024-02-06 0.25 13 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "49" 2024-02-05 2024-02-06 0.3 14 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "49" 2024-02-05 2024-02-06 0.35 15 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "49" 2024-02-05 2024-02-06 0.4 16 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "49" 2024-02-05 2024-02-06 0.45 16 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "49" 2024-02-05 2024-02-06 0.5 16 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "49" 2024-02-05 2024-02-06 0.55 17 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "49" 2024-02-05 2024-02-06 0.6 18 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "49" 2024-02-05 2024-02-06 0.65 18 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "49" 2024-02-05 2024-02-06 0.7 19 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "49" 2024-02-05 2024-02-06 0.75 20 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "49" 2024-02-05 2024-02-06 0.8 21 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "49" 2024-02-05 2024-02-06 0.85 22 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "49" 2024-02-05 2024-02-06 0.9 25.1 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "49" 2024-02-05 2024-02-06 0.95 27 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "49" 2024-02-05 2024-02-06 0.975 27.525 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "49" 2024-02-05 2024-02-06 0.99 30.01 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "49" 2024-02-05 2024-02-07 0.01 6 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "49" 2024-02-05 2024-02-07 0.025 7 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "49" 2024-02-05 2024-02-07 0.05 7.95 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "49" 2024-02-05 2024-02-07 0.1 8.9 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "49" 2024-02-05 2024-02-07 0.15 10 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "49" 2024-02-05 2024-02-07 0.2 10.8 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "49" 2024-02-05 2024-02-07 0.25 11.75 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "49" 2024-02-05 2024-02-07 0.3 12.7 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "49" 2024-02-05 2024-02-07 0.35 13 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "49" 2024-02-05 2024-02-07 0.4 14.6 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "49" 2024-02-05 2024-02-07 0.45 16 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "49" 2024-02-05 2024-02-07 0.5 16.5 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "49" 2024-02-05 2024-02-07 0.55 17 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "49" 2024-02-05 2024-02-07 0.6 17.4 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "49" 2024-02-05 2024-02-07 0.65 18 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "49" 2024-02-05 2024-02-07 0.7 19 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "49" 2024-02-05 2024-02-07 0.75 20 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "49" 2024-02-05 2024-02-07 0.8 21 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "49" 2024-02-05 2024-02-07 0.85 21.15 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "49" 2024-02-05 2024-02-07 0.9 23 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "49" 2024-02-05 2024-02-07 0.95 24 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "49" 2024-02-05 2024-02-07 0.975 25.525 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "49" 2024-02-05 2024-02-07 0.99 27.02 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "49" 2024-02-05 2024-02-08 0.01 4 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "49" 2024-02-05 2024-02-08 0.025 7 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "49" 2024-02-05 2024-02-08 0.05 7 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "49" 2024-02-05 2024-02-08 0.1 9 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "49" 2024-02-05 2024-02-08 0.15 10 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "49" 2024-02-05 2024-02-08 0.2 10.8 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "49" 2024-02-05 2024-02-08 0.25 11 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "49" 2024-02-05 2024-02-08 0.3 12 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "49" 2024-02-05 2024-02-08 0.35 12.65 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "49" 2024-02-05 2024-02-08 0.4 13 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "49" 2024-02-05 2024-02-08 0.45 14 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "49" 2024-02-05 2024-02-08 0.5 14 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "49" 2024-02-05 2024-02-08 0.55 15 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "49" 2024-02-05 2024-02-08 0.6 15 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "49" 2024-02-05 2024-02-08 0.65 16 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "49" 2024-02-05 2024-02-08 0.7 17 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "49" 2024-02-05 2024-02-08 0.75 17.25 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "49" 2024-02-05 2024-02-08 0.8 18 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "49" 2024-02-05 2024-02-08 0.85 19 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "49" 2024-02-05 2024-02-08 0.9 19.1 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "49" 2024-02-05 2024-02-08 0.95 21 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "49" 2024-02-05 2024-02-08 0.975 22 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "49" 2024-02-05 2024-02-08 0.99 25.03 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "49" 2024-02-05 2024-02-09 0.01 4 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "49" 2024-02-05 2024-02-09 0.025 5.475 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "49" 2024-02-05 2024-02-09 0.05 6 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "49" 2024-02-05 2024-02-09 0.1 8 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "49" 2024-02-05 2024-02-09 0.15 9 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "49" 2024-02-05 2024-02-09 0.2 9 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "49" 2024-02-05 2024-02-09 0.25 10 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "49" 2024-02-05 2024-02-09 0.3 11 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "49" 2024-02-05 2024-02-09 0.35 11 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "49" 2024-02-05 2024-02-09 0.4 12 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "49" 2024-02-05 2024-02-09 0.45 12.55 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "49" 2024-02-05 2024-02-09 0.5 13 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "49" 2024-02-05 2024-02-09 0.55 13 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "49" 2024-02-05 2024-02-09 0.6 14 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "49" 2024-02-05 2024-02-09 0.65 15 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "49" 2024-02-05 2024-02-09 0.7 15.3 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "49" 2024-02-05 2024-02-09 0.75 16 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "49" 2024-02-05 2024-02-09 0.8 17 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "49" 2024-02-05 2024-02-09 0.85 18 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "49" 2024-02-05 2024-02-09 0.9 19 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "49" 2024-02-05 2024-02-09 0.95 20.05 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "49" 2024-02-05 2024-02-09 0.975 23.525 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "49" 2024-02-05 2024-02-09 0.99 24.05 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "49" 2024-02-05 2024-02-10 0.01 3.98 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "49" 2024-02-05 2024-02-10 0.025 4.475 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "49" 2024-02-05 2024-02-10 0.05 5 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "49" 2024-02-05 2024-02-10 0.1 6 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "49" 2024-02-05 2024-02-10 0.15 7 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "49" 2024-02-05 2024-02-10 0.2 8 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "49" 2024-02-05 2024-02-10 0.25 9 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "49" 2024-02-05 2024-02-10 0.3 9 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "49" 2024-02-05 2024-02-10 0.35 10 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "49" 2024-02-05 2024-02-10 0.4 11 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "49" 2024-02-05 2024-02-10 0.45 11 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "49" 2024-02-05 2024-02-10 0.5 12 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "49" 2024-02-05 2024-02-10 0.55 12 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "49" 2024-02-05 2024-02-10 0.6 13 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "49" 2024-02-05 2024-02-10 0.65 13 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "49" 2024-02-05 2024-02-10 0.7 14 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "49" 2024-02-05 2024-02-10 0.75 15 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "49" 2024-02-05 2024-02-10 0.8 16.2 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "49" 2024-02-05 2024-02-10 0.85 18 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "49" 2024-02-05 2024-02-10 0.9 18 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "49" 2024-02-05 2024-02-10 0.95 20 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "49" 2024-02-05 2024-02-10 0.975 20 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "49" 2024-02-05 2024-02-10 0.99 20.02 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "49" 2024-02-05 2024-02-11 0.01 4.98 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "49" 2024-02-05 2024-02-11 0.025 5 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "49" 2024-02-05 2024-02-11 0.05 5 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "49" 2024-02-05 2024-02-11 0.1 6.9 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "49" 2024-02-05 2024-02-11 0.15 7 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "49" 2024-02-05 2024-02-11 0.2 8 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "49" 2024-02-05 2024-02-11 0.25 9 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "49" 2024-02-05 2024-02-11 0.3 9 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "49" 2024-02-05 2024-02-11 0.35 10 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "49" 2024-02-05 2024-02-11 0.4 10 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "49" 2024-02-05 2024-02-11 0.45 11 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "49" 2024-02-05 2024-02-11 0.5 11 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "49" 2024-02-05 2024-02-11 0.55 11 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "49" 2024-02-05 2024-02-11 0.6 12 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "49" 2024-02-05 2024-02-11 0.65 13 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "49" 2024-02-05 2024-02-11 0.7 13 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "49" 2024-02-05 2024-02-11 0.75 14 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "49" 2024-02-05 2024-02-11 0.8 14 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "49" 2024-02-05 2024-02-11 0.85 16 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "49" 2024-02-05 2024-02-11 0.9 16 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "49" 2024-02-05 2024-02-11 0.95 17.05 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "49" 2024-02-05 2024-02-11 0.975 18 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "49" 2024-02-05 2024-02-11 0.99 19.01 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "49" 2024-02-05 2024-02-12 0.01 6.94 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "49" 2024-02-05 2024-02-12 0.025 7 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "49" 2024-02-05 2024-02-12 0.05 7.95 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "49" 2024-02-05 2024-02-12 0.1 9 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "49" 2024-02-05 2024-02-12 0.15 9 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "49" 2024-02-05 2024-02-12 0.2 10.8 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "49" 2024-02-05 2024-02-12 0.25 11 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "49" 2024-02-05 2024-02-12 0.3 11.7 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "49" 2024-02-05 2024-02-12 0.35 12 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "49" 2024-02-05 2024-02-12 0.4 13 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "49" 2024-02-05 2024-02-12 0.45 13.55 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "49" 2024-02-05 2024-02-12 0.5 14.5 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "49" 2024-02-05 2024-02-12 0.55 15 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "49" 2024-02-05 2024-02-12 0.6 15.4 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "49" 2024-02-05 2024-02-12 0.65 16 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "49" 2024-02-05 2024-02-12 0.7 17 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "49" 2024-02-05 2024-02-12 0.75 17 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "49" 2024-02-05 2024-02-12 0.8 18 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "49" 2024-02-05 2024-02-12 0.85 20 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "49" 2024-02-05 2024-02-12 0.9 21.1 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "49" 2024-02-05 2024-02-12 0.95 22.1 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "49" 2024-02-05 2024-02-12 0.975 25.05 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "49" 2024-02-05 2024-02-12 0.99 26.06 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "49" 2024-02-05 2024-02-13 0.01 5.99 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "49" 2024-02-05 2024-02-13 0.025 6 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "49" 2024-02-05 2024-02-13 0.05 6 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "49" 2024-02-05 2024-02-13 0.1 8 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "49" 2024-02-05 2024-02-13 0.15 9 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "49" 2024-02-05 2024-02-13 0.2 10 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "49" 2024-02-05 2024-02-13 0.25 10.75 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "49" 2024-02-05 2024-02-13 0.3 11 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "49" 2024-02-05 2024-02-13 0.35 12 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "49" 2024-02-05 2024-02-13 0.4 13 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "49" 2024-02-05 2024-02-13 0.45 13 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "49" 2024-02-05 2024-02-13 0.5 13 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "49" 2024-02-05 2024-02-13 0.55 14.45 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "49" 2024-02-05 2024-02-13 0.6 15 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "49" 2024-02-05 2024-02-13 0.65 16 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "49" 2024-02-05 2024-02-13 0.7 17 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "49" 2024-02-05 2024-02-13 0.75 17 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "49" 2024-02-05 2024-02-13 0.8 18 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "49" 2024-02-05 2024-02-13 0.85 19 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "49" 2024-02-05 2024-02-13 0.9 20 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "49" 2024-02-05 2024-02-13 0.95 21 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "49" 2024-02-05 2024-02-13 0.975 22 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "49" 2024-02-05 2024-02-13 0.99 23.02 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "49" 2024-02-05 2024-02-14 0.01 4.97 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "49" 2024-02-05 2024-02-14 0.025 6.475 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "49" 2024-02-05 2024-02-14 0.05 7.95 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "49" 2024-02-05 2024-02-14 0.1 9 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "49" 2024-02-05 2024-02-14 0.15 10 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "49" 2024-02-05 2024-02-14 0.2 11 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "49" 2024-02-05 2024-02-14 0.25 11 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "49" 2024-02-05 2024-02-14 0.3 11 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "49" 2024-02-05 2024-02-14 0.35 12 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "49" 2024-02-05 2024-02-14 0.4 12 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "49" 2024-02-05 2024-02-14 0.45 13 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "49" 2024-02-05 2024-02-14 0.5 13 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "49" 2024-02-05 2024-02-14 0.55 13.45 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "49" 2024-02-05 2024-02-14 0.6 14 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "49" 2024-02-05 2024-02-14 0.65 15 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "49" 2024-02-05 2024-02-14 0.7 16 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "49" 2024-02-05 2024-02-14 0.75 16.25 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "49" 2024-02-05 2024-02-14 0.8 17.2 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "49" 2024-02-05 2024-02-14 0.85 18.15 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "49" 2024-02-05 2024-02-14 0.9 19 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "49" 2024-02-05 2024-02-14 0.95 21.05 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "49" 2024-02-05 2024-02-14 0.975 23 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "49" 2024-02-05 2024-02-14 0.99 26.02 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "49" 2024-02-05 2024-02-15 0.01 3.99 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "49" 2024-02-05 2024-02-15 0.025 5 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "49" 2024-02-05 2024-02-15 0.05 5.95 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "49" 2024-02-05 2024-02-15 0.1 7 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "49" 2024-02-05 2024-02-15 0.15 8 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "49" 2024-02-05 2024-02-15 0.2 8 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "49" 2024-02-05 2024-02-15 0.25 8.75 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "49" 2024-02-05 2024-02-15 0.3 9 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "49" 2024-02-05 2024-02-15 0.35 10 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "49" 2024-02-05 2024-02-15 0.4 11 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "49" 2024-02-05 2024-02-15 0.45 12 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "49" 2024-02-05 2024-02-15 0.5 12 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "49" 2024-02-05 2024-02-15 0.55 13 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "49" 2024-02-05 2024-02-15 0.6 14 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "49" 2024-02-05 2024-02-15 0.65 14.35 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "49" 2024-02-05 2024-02-15 0.7 15 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "49" 2024-02-05 2024-02-15 0.75 16 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "49" 2024-02-05 2024-02-15 0.8 17 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "49" 2024-02-05 2024-02-15 0.85 17.15 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "49" 2024-02-05 2024-02-15 0.9 19 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "49" 2024-02-05 2024-02-15 0.95 21.05 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "49" 2024-02-05 2024-02-15 0.975 25.525 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "49" 2024-02-05 2024-02-15 0.99 27.02 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "49" 2024-02-05 2024-02-16 0.01 3.98 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "49" 2024-02-05 2024-02-16 0.025 5 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "49" 2024-02-05 2024-02-16 0.05 5.95 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "49" 2024-02-05 2024-02-16 0.1 7.9 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "49" 2024-02-05 2024-02-16 0.15 9 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "49" 2024-02-05 2024-02-16 0.2 9 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "49" 2024-02-05 2024-02-16 0.25 9.75 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "49" 2024-02-05 2024-02-16 0.3 10 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "49" 2024-02-05 2024-02-16 0.35 11 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "49" 2024-02-05 2024-02-16 0.4 12 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "49" 2024-02-05 2024-02-16 0.45 12 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "49" 2024-02-05 2024-02-16 0.5 12 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "49" 2024-02-05 2024-02-16 0.55 13 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "49" 2024-02-05 2024-02-16 0.6 14 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "49" 2024-02-05 2024-02-16 0.65 14 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "49" 2024-02-05 2024-02-16 0.7 15 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "49" 2024-02-05 2024-02-16 0.75 15.25 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "49" 2024-02-05 2024-02-16 0.8 16 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "49" 2024-02-05 2024-02-16 0.85 18 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "49" 2024-02-05 2024-02-16 0.9 19 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "49" 2024-02-05 2024-02-16 0.95 21.1 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "49" 2024-02-05 2024-02-16 0.975 24 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "49" 2024-02-05 2024-02-16 0.99 24.01 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "49" 2024-02-05 2024-02-17 0.01 4.98 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "49" 2024-02-05 2024-02-17 0.025 5 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "49" 2024-02-05 2024-02-17 0.05 5 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "49" 2024-02-05 2024-02-17 0.1 6 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "49" 2024-02-05 2024-02-17 0.15 6 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "49" 2024-02-05 2024-02-17 0.2 7 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "49" 2024-02-05 2024-02-17 0.25 8 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "49" 2024-02-05 2024-02-17 0.3 8 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "49" 2024-02-05 2024-02-17 0.35 9 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "49" 2024-02-05 2024-02-17 0.4 9 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "49" 2024-02-05 2024-02-17 0.45 9 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "49" 2024-02-05 2024-02-17 0.5 10 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "49" 2024-02-05 2024-02-17 0.55 10 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "49" 2024-02-05 2024-02-17 0.6 11 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "49" 2024-02-05 2024-02-17 0.65 11 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "49" 2024-02-05 2024-02-17 0.7 12 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "49" 2024-02-05 2024-02-17 0.75 12 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "49" 2024-02-05 2024-02-17 0.8 13.2 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "49" 2024-02-05 2024-02-17 0.85 14.15 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "49" 2024-02-05 2024-02-17 0.9 16 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "49" 2024-02-05 2024-02-17 0.95 18 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "49" 2024-02-05 2024-02-17 0.975 18.525 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "49" 2024-02-05 2024-02-17 0.99 23 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "49" 2024-02-05 2024-02-18 0.01 2 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "49" 2024-02-05 2024-02-18 0.025 3.475 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "49" 2024-02-05 2024-02-18 0.05 4 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "49" 2024-02-05 2024-02-18 0.1 5 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "49" 2024-02-05 2024-02-18 0.15 5 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "49" 2024-02-05 2024-02-18 0.2 6 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "49" 2024-02-05 2024-02-18 0.25 7 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "49" 2024-02-05 2024-02-18 0.3 7 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "49" 2024-02-05 2024-02-18 0.35 8 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "49" 2024-02-05 2024-02-18 0.4 8.6 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "49" 2024-02-05 2024-02-18 0.45 9 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "49" 2024-02-05 2024-02-18 0.5 10 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "49" 2024-02-05 2024-02-18 0.55 11 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "49" 2024-02-05 2024-02-18 0.6 11 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "49" 2024-02-05 2024-02-18 0.65 11.35 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "49" 2024-02-05 2024-02-18 0.7 12 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "49" 2024-02-05 2024-02-18 0.75 13 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "49" 2024-02-05 2024-02-18 0.8 14 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "49" 2024-02-05 2024-02-18 0.85 16 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "49" 2024-02-05 2024-02-18 0.9 19 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "49" 2024-02-05 2024-02-18 0.95 20 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "49" 2024-02-05 2024-02-18 0.975 20 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "49" 2024-02-05 2024-02-18 0.99 21.02 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "49" 2024-02-05 2024-02-19 0.01 5.99 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "49" 2024-02-05 2024-02-19 0.025 6.475 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "49" 2024-02-05 2024-02-19 0.05 7 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "49" 2024-02-05 2024-02-19 0.1 8 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "49" 2024-02-05 2024-02-19 0.15 9 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "49" 2024-02-05 2024-02-19 0.2 9 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "49" 2024-02-05 2024-02-19 0.25 10 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "49" 2024-02-05 2024-02-19 0.3 11 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "49" 2024-02-05 2024-02-19 0.35 11 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "49" 2024-02-05 2024-02-19 0.4 12 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "49" 2024-02-05 2024-02-19 0.45 13 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "49" 2024-02-05 2024-02-19 0.5 13 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "49" 2024-02-05 2024-02-19 0.55 14 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "49" 2024-02-05 2024-02-19 0.6 15 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "49" 2024-02-05 2024-02-19 0.65 16 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "49" 2024-02-05 2024-02-19 0.7 17 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "49" 2024-02-05 2024-02-19 0.75 17 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "49" 2024-02-05 2024-02-19 0.8 18.2 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "49" 2024-02-05 2024-02-19 0.85 20 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "49" 2024-02-05 2024-02-19 0.9 21 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "49" 2024-02-05 2024-02-19 0.95 24 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "49" 2024-02-05 2024-02-19 0.975 29 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "49" 2024-02-05 2024-02-19 0.99 31.03 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "49" 2024-02-05 2024-02-20 0.01 3.99 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "49" 2024-02-05 2024-02-20 0.025 4 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "49" 2024-02-05 2024-02-20 0.05 4.95 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "49" 2024-02-05 2024-02-20 0.1 6.9 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "49" 2024-02-05 2024-02-20 0.15 7.85 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "49" 2024-02-05 2024-02-20 0.2 9 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "49" 2024-02-05 2024-02-20 0.25 9.75 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "49" 2024-02-05 2024-02-20 0.3 10 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "49" 2024-02-05 2024-02-20 0.35 11 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "49" 2024-02-05 2024-02-20 0.4 12 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "49" 2024-02-05 2024-02-20 0.45 12 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "49" 2024-02-05 2024-02-20 0.5 13 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "49" 2024-02-05 2024-02-20 0.55 13 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "49" 2024-02-05 2024-02-20 0.6 14 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "49" 2024-02-05 2024-02-20 0.65 14 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "49" 2024-02-05 2024-02-20 0.7 15.3 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "49" 2024-02-05 2024-02-20 0.75 16 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "49" 2024-02-05 2024-02-20 0.8 17 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "49" 2024-02-05 2024-02-20 0.85 19 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "49" 2024-02-05 2024-02-20 0.9 20.1 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "49" 2024-02-05 2024-02-20 0.95 22.05 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "49" 2024-02-05 2024-02-20 0.975 27.05 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "49" 2024-02-05 2024-02-20 0.99 29.01 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "49" 2024-02-05 2024-02-21 0.01 3 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "49" 2024-02-05 2024-02-21 0.025 3.475 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "49" 2024-02-05 2024-02-21 0.05 5.95 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "49" 2024-02-05 2024-02-21 0.1 7 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "49" 2024-02-05 2024-02-21 0.15 8 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "49" 2024-02-05 2024-02-21 0.2 8 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "49" 2024-02-05 2024-02-21 0.25 9 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "49" 2024-02-05 2024-02-21 0.3 9 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "49" 2024-02-05 2024-02-21 0.35 10 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "49" 2024-02-05 2024-02-21 0.4 11 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "49" 2024-02-05 2024-02-21 0.45 11.55 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "49" 2024-02-05 2024-02-21 0.5 12.5 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "49" 2024-02-05 2024-02-21 0.55 14 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "49" 2024-02-05 2024-02-21 0.6 14.4 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "49" 2024-02-05 2024-02-21 0.65 15 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "49" 2024-02-05 2024-02-21 0.7 16 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "49" 2024-02-05 2024-02-21 0.75 16 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "49" 2024-02-05 2024-02-21 0.8 17 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "49" 2024-02-05 2024-02-21 0.85 18 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "49" 2024-02-05 2024-02-21 0.9 20 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "49" 2024-02-05 2024-02-21 0.95 22 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "49" 2024-02-05 2024-02-21 0.975 23.05 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "49" 2024-02-05 2024-02-21 0.99 25.03 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "49" 2024-02-05 2024-02-22 0.01 3.99 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "49" 2024-02-05 2024-02-22 0.025 4 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "49" 2024-02-05 2024-02-22 0.05 5 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "49" 2024-02-05 2024-02-22 0.1 6 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "49" 2024-02-05 2024-02-22 0.15 6.85 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "49" 2024-02-05 2024-02-22 0.2 7 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "49" 2024-02-05 2024-02-22 0.25 7 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "49" 2024-02-05 2024-02-22 0.3 8 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "49" 2024-02-05 2024-02-22 0.35 8 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "49" 2024-02-05 2024-02-22 0.4 9 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "49" 2024-02-05 2024-02-22 0.45 9.55 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "49" 2024-02-05 2024-02-22 0.5 10 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "49" 2024-02-05 2024-02-22 0.55 10.45 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "49" 2024-02-05 2024-02-22 0.6 12 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "49" 2024-02-05 2024-02-22 0.65 13 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "49" 2024-02-05 2024-02-22 0.7 14 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "49" 2024-02-05 2024-02-22 0.75 15 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "49" 2024-02-05 2024-02-22 0.8 16 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "49" 2024-02-05 2024-02-22 0.85 16.15 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "49" 2024-02-05 2024-02-22 0.9 18.2 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "49" 2024-02-05 2024-02-22 0.95 22.1 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "49" 2024-02-05 2024-02-22 0.975 27.525 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "49" 2024-02-05 2024-02-22 0.99 31 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "49" 2024-02-05 2024-02-23 0.01 2 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "49" 2024-02-05 2024-02-23 0.025 2.475 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "49" 2024-02-05 2024-02-23 0.05 4 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "49" 2024-02-05 2024-02-23 0.1 5.9 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "49" 2024-02-05 2024-02-23 0.15 6 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "49" 2024-02-05 2024-02-23 0.2 7 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "49" 2024-02-05 2024-02-23 0.25 7 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "49" 2024-02-05 2024-02-23 0.3 8 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "49" 2024-02-05 2024-02-23 0.35 9 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "49" 2024-02-05 2024-02-23 0.4 9 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "49" 2024-02-05 2024-02-23 0.45 10 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "49" 2024-02-05 2024-02-23 0.5 10.5 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "49" 2024-02-05 2024-02-23 0.55 12 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "49" 2024-02-05 2024-02-23 0.6 12.4 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "49" 2024-02-05 2024-02-23 0.65 13 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "49" 2024-02-05 2024-02-23 0.7 13.3 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "49" 2024-02-05 2024-02-23 0.75 14 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "49" 2024-02-05 2024-02-23 0.8 14.2 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "49" 2024-02-05 2024-02-23 0.85 16 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "49" 2024-02-05 2024-02-23 0.9 17.1 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "49" 2024-02-05 2024-02-23 0.95 21.05 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "49" 2024-02-05 2024-02-23 0.975 24.525 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "49" 2024-02-05 2024-02-23 0.99 27 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "49" 2024-02-05 2024-02-24 0.01 2 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "49" 2024-02-05 2024-02-24 0.025 3 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "49" 2024-02-05 2024-02-24 0.05 3 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "49" 2024-02-05 2024-02-24 0.1 5 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "49" 2024-02-05 2024-02-24 0.15 6 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "49" 2024-02-05 2024-02-24 0.2 7 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "49" 2024-02-05 2024-02-24 0.25 7 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "49" 2024-02-05 2024-02-24 0.3 8 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "49" 2024-02-05 2024-02-24 0.35 8 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "49" 2024-02-05 2024-02-24 0.4 9 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "49" 2024-02-05 2024-02-24 0.45 9 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "49" 2024-02-05 2024-02-24 0.5 10 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "49" 2024-02-05 2024-02-24 0.55 10 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "49" 2024-02-05 2024-02-24 0.6 11 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "49" 2024-02-05 2024-02-24 0.65 12 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "49" 2024-02-05 2024-02-24 0.7 12 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "49" 2024-02-05 2024-02-24 0.75 12 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "49" 2024-02-05 2024-02-24 0.8 13 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "49" 2024-02-05 2024-02-24 0.85 13.15 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "49" 2024-02-05 2024-02-24 0.9 16 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "49" 2024-02-05 2024-02-24 0.95 17 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "49" 2024-02-05 2024-02-24 0.975 17.525 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "49" 2024-02-05 2024-02-24 0.99 20.07 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "49" 2024-02-05 2024-02-25 0.01 2 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "49" 2024-02-05 2024-02-25 0.025 3 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "49" 2024-02-05 2024-02-25 0.05 3.95 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "49" 2024-02-05 2024-02-25 0.1 5 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "49" 2024-02-05 2024-02-25 0.15 5 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "49" 2024-02-05 2024-02-25 0.2 6 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "49" 2024-02-05 2024-02-25 0.25 6 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "49" 2024-02-05 2024-02-25 0.3 7 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "49" 2024-02-05 2024-02-25 0.35 8 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "49" 2024-02-05 2024-02-25 0.4 8 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "49" 2024-02-05 2024-02-25 0.45 9 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "49" 2024-02-05 2024-02-25 0.5 10 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "49" 2024-02-05 2024-02-25 0.55 11 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "49" 2024-02-05 2024-02-25 0.6 11 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "49" 2024-02-05 2024-02-25 0.65 12 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "49" 2024-02-05 2024-02-25 0.7 12.3 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "49" 2024-02-05 2024-02-25 0.75 14 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "49" 2024-02-05 2024-02-25 0.8 14.2 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "49" 2024-02-05 2024-02-25 0.85 15.15 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "49" 2024-02-05 2024-02-25 0.9 16.1 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "49" 2024-02-05 2024-02-25 0.95 18 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "49" 2024-02-05 2024-02-25 0.975 18 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "49" 2024-02-05 2024-02-25 0.99 20 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "49" 2024-02-05 2024-02-26 0.01 3.99 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "49" 2024-02-05 2024-02-26 0.025 4.475 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "49" 2024-02-05 2024-02-26 0.05 5.95 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "49" 2024-02-05 2024-02-26 0.1 6 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "49" 2024-02-05 2024-02-26 0.15 7 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "49" 2024-02-05 2024-02-26 0.2 7 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "49" 2024-02-05 2024-02-26 0.25 8 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "49" 2024-02-05 2024-02-26 0.3 9 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "49" 2024-02-05 2024-02-26 0.35 9.65000000000001 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "49" 2024-02-05 2024-02-26 0.4 10 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "49" 2024-02-05 2024-02-26 0.45 10 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "49" 2024-02-05 2024-02-26 0.5 11 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "49" 2024-02-05 2024-02-26 0.55 11.45 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "49" 2024-02-05 2024-02-26 0.6 12 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "49" 2024-02-05 2024-02-26 0.65 13 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "49" 2024-02-05 2024-02-26 0.7 14 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "49" 2024-02-05 2024-02-26 0.75 14 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "49" 2024-02-05 2024-02-26 0.8 15 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "49" 2024-02-05 2024-02-26 0.85 16.15 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "49" 2024-02-05 2024-02-26 0.9 19.1 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "49" 2024-02-05 2024-02-26 0.95 22 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "49" 2024-02-05 2024-02-26 0.975 25.1499999999999 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "49" 2024-02-05 2024-02-26 0.99 29.1100000000001 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "49" 2024-02-05 2024-02-27 0.01 3 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "49" 2024-02-05 2024-02-27 0.025 4 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "49" 2024-02-05 2024-02-27 0.05 4.95 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "49" 2024-02-05 2024-02-27 0.1 6 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "49" 2024-02-05 2024-02-27 0.15 6.85 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "49" 2024-02-05 2024-02-27 0.2 7 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "49" 2024-02-05 2024-02-27 0.25 8 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "49" 2024-02-05 2024-02-27 0.3 8.7 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "49" 2024-02-05 2024-02-27 0.35 9.65000000000001 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "49" 2024-02-05 2024-02-27 0.4 10 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "49" 2024-02-05 2024-02-27 0.45 10 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "49" 2024-02-05 2024-02-27 0.5 11 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "49" 2024-02-05 2024-02-27 0.55 12 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "49" 2024-02-05 2024-02-27 0.6 12.4 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "49" 2024-02-05 2024-02-27 0.65 13 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "49" 2024-02-05 2024-02-27 0.7 14 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "49" 2024-02-05 2024-02-27 0.75 16 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "49" 2024-02-05 2024-02-27 0.8 16 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "49" 2024-02-05 2024-02-27 0.85 17.15 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "49" 2024-02-05 2024-02-27 0.9 20.1 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "49" 2024-02-05 2024-02-27 0.95 25 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "49" 2024-02-05 2024-02-27 0.975 26 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "49" 2024-02-05 2024-02-27 0.99 28.01 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "49" 2024-02-05 2024-02-28 0.01 2 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "49" 2024-02-05 2024-02-28 0.025 3 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "49" 2024-02-05 2024-02-28 0.05 4 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "49" 2024-02-05 2024-02-28 0.1 4.9 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "49" 2024-02-05 2024-02-28 0.15 6 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "49" 2024-02-05 2024-02-28 0.2 7 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "49" 2024-02-05 2024-02-28 0.25 7 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "49" 2024-02-05 2024-02-28 0.3 8 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "49" 2024-02-05 2024-02-28 0.35 8 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "49" 2024-02-05 2024-02-28 0.4 9.6 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "49" 2024-02-05 2024-02-28 0.45 11 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "49" 2024-02-05 2024-02-28 0.5 12 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "49" 2024-02-05 2024-02-28 0.55 12 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "49" 2024-02-05 2024-02-28 0.6 13 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "49" 2024-02-05 2024-02-28 0.65 13.35 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "49" 2024-02-05 2024-02-28 0.7 14 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "49" 2024-02-05 2024-02-28 0.75 14.25 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "49" 2024-02-05 2024-02-28 0.8 16 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "49" 2024-02-05 2024-02-28 0.85 17 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "49" 2024-02-05 2024-02-28 0.9 19.1 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "49" 2024-02-05 2024-02-28 0.95 24 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "49" 2024-02-05 2024-02-28 0.975 26.525 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "49" 2024-02-05 2024-02-28 0.99 31.08 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "49" 2024-02-05 2024-02-29 0.01 1 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "49" 2024-02-05 2024-02-29 0.025 3 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "49" 2024-02-05 2024-02-29 0.05 4.95 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "49" 2024-02-05 2024-02-29 0.1 5 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "49" 2024-02-05 2024-02-29 0.15 5 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "49" 2024-02-05 2024-02-29 0.2 6 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "49" 2024-02-05 2024-02-29 0.25 6 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "49" 2024-02-05 2024-02-29 0.3 7 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "49" 2024-02-05 2024-02-29 0.35 7.65000000000001 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "49" 2024-02-05 2024-02-29 0.4 9 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "49" 2024-02-05 2024-02-29 0.45 10 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "49" 2024-02-05 2024-02-29 0.5 10 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "49" 2024-02-05 2024-02-29 0.55 11 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "49" 2024-02-05 2024-02-29 0.6 12 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "49" 2024-02-05 2024-02-29 0.65 12 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "49" 2024-02-05 2024-02-29 0.7 13 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "49" 2024-02-05 2024-02-29 0.75 13 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "49" 2024-02-05 2024-02-29 0.8 15 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "49" 2024-02-05 2024-02-29 0.85 16.15 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "49" 2024-02-05 2024-02-29 0.9 19 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "49" 2024-02-05 2024-02-29 0.95 22.1 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "49" 2024-02-05 2024-02-29 0.975 26.05 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "49" 2024-02-05 2024-02-29 0.99 31.1100000000001 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "49" 2024-02-05 2024-03-01 0.01 2.99 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "49" 2024-02-05 2024-03-01 0.025 3.475 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "49" 2024-02-05 2024-03-01 0.05 4 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "49" 2024-02-05 2024-03-01 0.1 4.9 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "49" 2024-02-05 2024-03-01 0.15 6 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "49" 2024-02-05 2024-03-01 0.2 6.8 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "49" 2024-02-05 2024-03-01 0.25 7.75 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "49" 2024-02-05 2024-03-01 0.3 8 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "49" 2024-02-05 2024-03-01 0.35 9 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "49" 2024-02-05 2024-03-01 0.4 9 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "49" 2024-02-05 2024-03-01 0.45 10 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "49" 2024-02-05 2024-03-01 0.5 10 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "49" 2024-02-05 2024-03-01 0.55 10 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "49" 2024-02-05 2024-03-01 0.6 11 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "49" 2024-02-05 2024-03-01 0.65 12 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "49" 2024-02-05 2024-03-01 0.7 13 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "49" 2024-02-05 2024-03-01 0.75 13 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "49" 2024-02-05 2024-03-01 0.8 14 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "49" 2024-02-05 2024-03-01 0.85 15.15 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "49" 2024-02-05 2024-03-01 0.9 18 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "49" 2024-02-05 2024-03-01 0.95 22 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "49" 2024-02-05 2024-03-01 0.975 23.05 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "49" 2024-02-05 2024-03-01 0.99 24.03 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "49" 2024-02-05 2024-03-02 0.01 1 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "49" 2024-02-05 2024-03-02 0.025 2 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "49" 2024-02-05 2024-03-02 0.05 3.95 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "49" 2024-02-05 2024-03-02 0.1 5 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "49" 2024-02-05 2024-03-02 0.15 5 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "49" 2024-02-05 2024-03-02 0.2 6 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "49" 2024-02-05 2024-03-02 0.25 6.75 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "49" 2024-02-05 2024-03-02 0.3 7 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "49" 2024-02-05 2024-03-02 0.35 7 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "49" 2024-02-05 2024-03-02 0.4 8 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "49" 2024-02-05 2024-03-02 0.45 8 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "49" 2024-02-05 2024-03-02 0.5 8 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "49" 2024-02-05 2024-03-02 0.55 9 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "49" 2024-02-05 2024-03-02 0.6 10 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "49" 2024-02-05 2024-03-02 0.65 11 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "49" 2024-02-05 2024-03-02 0.7 11.3 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "49" 2024-02-05 2024-03-02 0.75 12 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "49" 2024-02-05 2024-03-02 0.8 13.2 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "49" 2024-02-05 2024-03-02 0.85 15.15 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "49" 2024-02-05 2024-03-02 0.9 18.1 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "49" 2024-02-05 2024-03-02 0.95 22.05 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "49" 2024-02-05 2024-03-02 0.975 23 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "49" 2024-02-05 2024-03-02 0.99 24.03 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "49" 2024-02-05 2024-03-03 0.01 0 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "49" 2024-02-05 2024-03-03 0.025 1.475 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "49" 2024-02-05 2024-03-03 0.05 2 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "49" 2024-02-05 2024-03-03 0.1 3.9 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "49" 2024-02-05 2024-03-03 0.15 4 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "49" 2024-02-05 2024-03-03 0.2 5 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "49" 2024-02-05 2024-03-03 0.25 6 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "49" 2024-02-05 2024-03-03 0.3 6 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "49" 2024-02-05 2024-03-03 0.35 7 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "49" 2024-02-05 2024-03-03 0.4 7 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "49" 2024-02-05 2024-03-03 0.45 8 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "49" 2024-02-05 2024-03-03 0.5 9 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "49" 2024-02-05 2024-03-03 0.55 9 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "49" 2024-02-05 2024-03-03 0.6 10 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "49" 2024-02-05 2024-03-03 0.65 11 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "49" 2024-02-05 2024-03-03 0.7 12 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "49" 2024-02-05 2024-03-03 0.75 13 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "49" 2024-02-05 2024-03-03 0.8 14 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "49" 2024-02-05 2024-03-03 0.85 15 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "49" 2024-02-05 2024-03-03 0.9 17 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "49" 2024-02-05 2024-03-03 0.95 19.05 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "49" 2024-02-05 2024-03-03 0.975 22.05 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "49" 2024-02-05 2024-03-03 0.99 24.01 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "49" 2024-02-05 2024-03-04 0.01 1.99 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "49" 2024-02-05 2024-03-04 0.025 2 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "49" 2024-02-05 2024-03-04 0.05 2.95 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "49" 2024-02-05 2024-03-04 0.1 5.9 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "49" 2024-02-05 2024-03-04 0.15 6 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "49" 2024-02-05 2024-03-04 0.2 7.8 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "49" 2024-02-05 2024-03-04 0.25 8 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "49" 2024-02-05 2024-03-04 0.3 9 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "49" 2024-02-05 2024-03-04 0.35 9 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "49" 2024-02-05 2024-03-04 0.4 9 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "49" 2024-02-05 2024-03-04 0.45 10.55 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "49" 2024-02-05 2024-03-04 0.5 11 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "49" 2024-02-05 2024-03-04 0.55 11 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "49" 2024-02-05 2024-03-04 0.6 13 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "49" 2024-02-05 2024-03-04 0.65 13 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "49" 2024-02-05 2024-03-04 0.7 14 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "49" 2024-02-05 2024-03-04 0.75 14 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "49" 2024-02-05 2024-03-04 0.8 15.2 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "49" 2024-02-05 2024-03-04 0.85 17.15 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "49" 2024-02-05 2024-03-04 0.9 21.1 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "49" 2024-02-05 2024-03-04 0.95 25.05 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "49" 2024-02-05 2024-03-04 0.975 26.525 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "49" 2024-02-05 2024-03-04 0.99 28.1200000000001 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "51" 2024-02-05 2024-02-06 0.01 46.98 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "51" 2024-02-05 2024-02-06 0.025 47.95 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "51" 2024-02-05 2024-02-06 0.05 50.9 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "51" 2024-02-05 2024-02-06 0.1 54.9 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "51" 2024-02-05 2024-02-06 0.15 58 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "51" 2024-02-05 2024-02-06 0.2 63 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "51" 2024-02-05 2024-02-06 0.25 64.75 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "51" 2024-02-05 2024-02-06 0.3 65.7 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "51" 2024-02-05 2024-02-06 0.35 69 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "51" 2024-02-05 2024-02-06 0.4 71 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "51" 2024-02-05 2024-02-06 0.45 71 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "51" 2024-02-05 2024-02-06 0.5 73.5 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "51" 2024-02-05 2024-02-06 0.55 74.45 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "51" 2024-02-05 2024-02-06 0.6 77 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "51" 2024-02-05 2024-02-06 0.65 79 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "51" 2024-02-05 2024-02-06 0.7 80.3 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "51" 2024-02-05 2024-02-06 0.75 84 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "51" 2024-02-05 2024-02-06 0.8 85 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "51" 2024-02-05 2024-02-06 0.85 89 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "51" 2024-02-05 2024-02-06 0.9 91.1 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "51" 2024-02-05 2024-02-06 0.95 95 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "51" 2024-02-05 2024-02-06 0.975 97 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "51" 2024-02-05 2024-02-06 0.99 100.02 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "51" 2024-02-05 2024-02-07 0.01 43.98 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "51" 2024-02-05 2024-02-07 0.025 47.95 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "51" 2024-02-05 2024-02-07 0.05 52.9 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "51" 2024-02-05 2024-02-07 0.1 57.9 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "51" 2024-02-05 2024-02-07 0.15 62 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "51" 2024-02-05 2024-02-07 0.2 64.6 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "51" 2024-02-05 2024-02-07 0.25 66 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "51" 2024-02-05 2024-02-07 0.3 68 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "51" 2024-02-05 2024-02-07 0.35 69 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "51" 2024-02-05 2024-02-07 0.4 70.6 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "51" 2024-02-05 2024-02-07 0.45 73.55 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "51" 2024-02-05 2024-02-07 0.5 74 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "51" 2024-02-05 2024-02-07 0.55 75 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "51" 2024-02-05 2024-02-07 0.6 76 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "51" 2024-02-05 2024-02-07 0.65 77 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "51" 2024-02-05 2024-02-07 0.7 80.3 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "51" 2024-02-05 2024-02-07 0.75 82 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "51" 2024-02-05 2024-02-07 0.8 84 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "51" 2024-02-05 2024-02-07 0.85 86.15 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "51" 2024-02-05 2024-02-07 0.9 94.1 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "51" 2024-02-05 2024-02-07 0.95 101.2 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "51" 2024-02-05 2024-02-07 0.975 105.525 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "51" 2024-02-05 2024-02-07 0.99 108.05 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "51" 2024-02-05 2024-02-08 0.01 45.83 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "51" 2024-02-05 2024-02-08 0.025 49 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "51" 2024-02-05 2024-02-08 0.05 50.95 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "51" 2024-02-05 2024-02-08 0.1 55.8 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "51" 2024-02-05 2024-02-08 0.15 58 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "51" 2024-02-05 2024-02-08 0.2 59 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "51" 2024-02-05 2024-02-08 0.25 61 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "51" 2024-02-05 2024-02-08 0.3 63 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "51" 2024-02-05 2024-02-08 0.35 65 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "51" 2024-02-05 2024-02-08 0.4 67 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "51" 2024-02-05 2024-02-08 0.45 69 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "51" 2024-02-05 2024-02-08 0.5 70 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "51" 2024-02-05 2024-02-08 0.55 72 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "51" 2024-02-05 2024-02-08 0.6 76.4 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "51" 2024-02-05 2024-02-08 0.65 78 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "51" 2024-02-05 2024-02-08 0.7 80 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "51" 2024-02-05 2024-02-08 0.75 82.25 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "51" 2024-02-05 2024-02-08 0.8 85.6 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "51" 2024-02-05 2024-02-08 0.85 89.15 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "51" 2024-02-05 2024-02-08 0.9 91.3 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "51" 2024-02-05 2024-02-08 0.95 98.05 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "51" 2024-02-05 2024-02-08 0.975 100.525 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "51" 2024-02-05 2024-02-08 0.99 102.04 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "51" 2024-02-05 2024-02-09 0.01 36.97 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "51" 2024-02-05 2024-02-09 0.025 43.85 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "51" 2024-02-05 2024-02-09 0.05 49 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "51" 2024-02-05 2024-02-09 0.1 51 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "51" 2024-02-05 2024-02-09 0.15 53 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "51" 2024-02-05 2024-02-09 0.2 55.8 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "51" 2024-02-05 2024-02-09 0.25 57 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "51" 2024-02-05 2024-02-09 0.3 61 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "51" 2024-02-05 2024-02-09 0.35 64 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "51" 2024-02-05 2024-02-09 0.4 66 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "51" 2024-02-05 2024-02-09 0.45 68 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "51" 2024-02-05 2024-02-09 0.5 69.5 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "51" 2024-02-05 2024-02-09 0.55 70.45 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "51" 2024-02-05 2024-02-09 0.6 72.4 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "51" 2024-02-05 2024-02-09 0.65 73.35 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "51" 2024-02-05 2024-02-09 0.7 74.3 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "51" 2024-02-05 2024-02-09 0.75 79.25 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "51" 2024-02-05 2024-02-09 0.8 81 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "51" 2024-02-05 2024-02-09 0.85 83 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "51" 2024-02-05 2024-02-09 0.9 89.4 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "51" 2024-02-05 2024-02-09 0.95 103.15 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "51" 2024-02-05 2024-02-09 0.975 106.525 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "51" 2024-02-05 2024-02-09 0.99 111.03 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "51" 2024-02-05 2024-02-10 0.01 32.98 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "51" 2024-02-05 2024-02-10 0.025 36.9 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "51" 2024-02-05 2024-02-10 0.05 41.9 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "51" 2024-02-05 2024-02-10 0.1 43.9 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "51" 2024-02-05 2024-02-10 0.15 44.85 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "51" 2024-02-05 2024-02-10 0.2 48.8 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "51" 2024-02-05 2024-02-10 0.25 52 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "51" 2024-02-05 2024-02-10 0.3 53 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "51" 2024-02-05 2024-02-10 0.35 55 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "51" 2024-02-05 2024-02-10 0.4 57 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "51" 2024-02-05 2024-02-10 0.45 59 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "51" 2024-02-05 2024-02-10 0.5 62.5 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "51" 2024-02-05 2024-02-10 0.55 64.45 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "51" 2024-02-05 2024-02-10 0.6 66.4 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "51" 2024-02-05 2024-02-10 0.65 68.35 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "51" 2024-02-05 2024-02-10 0.7 70 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "51" 2024-02-05 2024-02-10 0.75 73.25 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "51" 2024-02-05 2024-02-10 0.8 75 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "51" 2024-02-05 2024-02-10 0.85 77 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "51" 2024-02-05 2024-02-10 0.9 82.3 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "51" 2024-02-05 2024-02-10 0.95 88.15 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "51" 2024-02-05 2024-02-10 0.975 103.1 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "51" 2024-02-05 2024-02-10 0.99 106.05 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "51" 2024-02-05 2024-02-11 0.01 30.99 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "51" 2024-02-05 2024-02-11 0.025 34.95 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "51" 2024-02-05 2024-02-11 0.05 37.95 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "51" 2024-02-05 2024-02-11 0.1 42.9 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "51" 2024-02-05 2024-02-11 0.15 45.85 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "51" 2024-02-05 2024-02-11 0.2 50 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "51" 2024-02-05 2024-02-11 0.25 52 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "51" 2024-02-05 2024-02-11 0.3 55 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "51" 2024-02-05 2024-02-11 0.35 56.65 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "51" 2024-02-05 2024-02-11 0.4 58 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "51" 2024-02-05 2024-02-11 0.45 60 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "51" 2024-02-05 2024-02-11 0.5 62.5 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "51" 2024-02-05 2024-02-11 0.55 64 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "51" 2024-02-05 2024-02-11 0.6 65.4 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "51" 2024-02-05 2024-02-11 0.65 66 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "51" 2024-02-05 2024-02-11 0.7 69 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "51" 2024-02-05 2024-02-11 0.75 71.25 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "51" 2024-02-05 2024-02-11 0.8 76.2 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "51" 2024-02-05 2024-02-11 0.85 78.3 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "51" 2024-02-05 2024-02-11 0.9 88.1 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "51" 2024-02-05 2024-02-11 0.95 95.1 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "51" 2024-02-05 2024-02-11 0.975 99.575 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "51" 2024-02-05 2024-02-11 0.99 106.04 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "51" 2024-02-05 2024-02-12 0.01 38.99 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "51" 2024-02-05 2024-02-12 0.025 42 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "51" 2024-02-05 2024-02-12 0.05 43 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "51" 2024-02-05 2024-02-12 0.1 47 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "51" 2024-02-05 2024-02-12 0.15 51.85 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "51" 2024-02-05 2024-02-12 0.2 54 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "51" 2024-02-05 2024-02-12 0.25 56.75 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "51" 2024-02-05 2024-02-12 0.3 59.7 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "51" 2024-02-05 2024-02-12 0.35 62.65 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "51" 2024-02-05 2024-02-12 0.4 65 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "51" 2024-02-05 2024-02-12 0.45 65.55 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "51" 2024-02-05 2024-02-12 0.5 67 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "51" 2024-02-05 2024-02-12 0.55 69 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "51" 2024-02-05 2024-02-12 0.6 71.4 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "51" 2024-02-05 2024-02-12 0.65 76 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "51" 2024-02-05 2024-02-12 0.7 78 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "51" 2024-02-05 2024-02-12 0.75 80 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "51" 2024-02-05 2024-02-12 0.8 85.2 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "51" 2024-02-05 2024-02-12 0.85 89.3 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "51" 2024-02-05 2024-02-12 0.9 93.2 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "51" 2024-02-05 2024-02-12 0.95 103.35 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "51" 2024-02-05 2024-02-12 0.975 114.05 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "51" 2024-02-05 2024-02-12 0.99 122.05 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "51" 2024-02-05 2024-02-13 0.01 32.97 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "51" 2024-02-05 2024-02-13 0.025 38.425 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "51" 2024-02-05 2024-02-13 0.05 42 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "51" 2024-02-05 2024-02-13 0.1 46 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "51" 2024-02-05 2024-02-13 0.15 51 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "51" 2024-02-05 2024-02-13 0.2 54.8 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "51" 2024-02-05 2024-02-13 0.25 56 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "51" 2024-02-05 2024-02-13 0.3 56.7 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "51" 2024-02-05 2024-02-13 0.35 58 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "51" 2024-02-05 2024-02-13 0.4 59 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "51" 2024-02-05 2024-02-13 0.45 61.55 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "51" 2024-02-05 2024-02-13 0.5 64 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "51" 2024-02-05 2024-02-13 0.55 68 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "51" 2024-02-05 2024-02-13 0.6 69 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "51" 2024-02-05 2024-02-13 0.65 72 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "51" 2024-02-05 2024-02-13 0.7 74 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "51" 2024-02-05 2024-02-13 0.75 79 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "51" 2024-02-05 2024-02-13 0.8 82.2 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "51" 2024-02-05 2024-02-13 0.85 86.45 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "51" 2024-02-05 2024-02-13 0.9 93.2 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "51" 2024-02-05 2024-02-13 0.95 103.05 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "51" 2024-02-05 2024-02-13 0.975 109.675 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "51" 2024-02-05 2024-02-13 0.99 115.1 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "51" 2024-02-05 2024-02-14 0.01 31.92 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "51" 2024-02-05 2024-02-14 0.025 33 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "51" 2024-02-05 2024-02-14 0.05 36.9 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "51" 2024-02-05 2024-02-14 0.1 40 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "51" 2024-02-05 2024-02-14 0.15 52 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "51" 2024-02-05 2024-02-14 0.2 54 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "51" 2024-02-05 2024-02-14 0.25 56.75 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "51" 2024-02-05 2024-02-14 0.3 58.7 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "51" 2024-02-05 2024-02-14 0.35 60 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "51" 2024-02-05 2024-02-14 0.4 61 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "51" 2024-02-05 2024-02-14 0.45 64.55 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "51" 2024-02-05 2024-02-14 0.5 65.5 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "51" 2024-02-05 2024-02-14 0.55 68.45 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "51" 2024-02-05 2024-02-14 0.6 71 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "51" 2024-02-05 2024-02-14 0.65 73 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "51" 2024-02-05 2024-02-14 0.7 76 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "51" 2024-02-05 2024-02-14 0.75 78.25 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "51" 2024-02-05 2024-02-14 0.8 84.2 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "51" 2024-02-05 2024-02-14 0.85 91.15 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "51" 2024-02-05 2024-02-14 0.9 98.1 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "51" 2024-02-05 2024-02-14 0.95 103.1 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "51" 2024-02-05 2024-02-14 0.975 108.625 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "51" 2024-02-05 2024-02-14 0.99 120.08 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "51" 2024-02-05 2024-02-15 0.01 31.99 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "51" 2024-02-05 2024-02-15 0.025 34.425 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "51" 2024-02-05 2024-02-15 0.05 36.95 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "51" 2024-02-05 2024-02-15 0.1 43.8 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "51" 2024-02-05 2024-02-15 0.15 46.85 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "51" 2024-02-05 2024-02-15 0.2 50 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "51" 2024-02-05 2024-02-15 0.25 51 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "51" 2024-02-05 2024-02-15 0.3 53 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "51" 2024-02-05 2024-02-15 0.35 54.65 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "51" 2024-02-05 2024-02-15 0.4 58 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "51" 2024-02-05 2024-02-15 0.45 59.55 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "51" 2024-02-05 2024-02-15 0.5 60.5 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "51" 2024-02-05 2024-02-15 0.55 63.9 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "51" 2024-02-05 2024-02-15 0.6 66 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "51" 2024-02-05 2024-02-15 0.65 69.35 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "51" 2024-02-05 2024-02-15 0.7 73.3 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "51" 2024-02-05 2024-02-15 0.75 78 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "51" 2024-02-05 2024-02-15 0.8 82 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "51" 2024-02-05 2024-02-15 0.85 84.15 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "51" 2024-02-05 2024-02-15 0.9 92.1 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "51" 2024-02-05 2024-02-15 0.95 103.25 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "51" 2024-02-05 2024-02-15 0.975 116.4 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "51" 2024-02-05 2024-02-15 0.99 128.06 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "51" 2024-02-05 2024-02-16 0.01 25.96 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "51" 2024-02-05 2024-02-16 0.025 28.475 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "51" 2024-02-05 2024-02-16 0.05 33.95 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "51" 2024-02-05 2024-02-16 0.1 39 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "51" 2024-02-05 2024-02-16 0.15 42.85 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "51" 2024-02-05 2024-02-16 0.2 48.8 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "51" 2024-02-05 2024-02-16 0.25 52 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "51" 2024-02-05 2024-02-16 0.3 54 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "51" 2024-02-05 2024-02-16 0.35 56 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "51" 2024-02-05 2024-02-16 0.4 58.6 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "51" 2024-02-05 2024-02-16 0.45 60 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "51" 2024-02-05 2024-02-16 0.5 62 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "51" 2024-02-05 2024-02-16 0.55 64 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "51" 2024-02-05 2024-02-16 0.6 66 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "51" 2024-02-05 2024-02-16 0.65 68 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "51" 2024-02-05 2024-02-16 0.7 72 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "51" 2024-02-05 2024-02-16 0.75 76 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "51" 2024-02-05 2024-02-16 0.8 77.4 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "51" 2024-02-05 2024-02-16 0.85 81.3 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "51" 2024-02-05 2024-02-16 0.9 87.1 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "51" 2024-02-05 2024-02-16 0.95 108.2 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "51" 2024-02-05 2024-02-16 0.975 116.15 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "51" 2024-02-05 2024-02-16 0.99 133.05 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "51" 2024-02-05 2024-02-17 0.01 26.94 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "51" 2024-02-05 2024-02-17 0.025 28.475 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "51" 2024-02-05 2024-02-17 0.05 32.85 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "51" 2024-02-05 2024-02-17 0.1 36.9 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "51" 2024-02-05 2024-02-17 0.15 39.85 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "51" 2024-02-05 2024-02-17 0.2 42 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "51" 2024-02-05 2024-02-17 0.25 44 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "51" 2024-02-05 2024-02-17 0.3 46 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "51" 2024-02-05 2024-02-17 0.35 48 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "51" 2024-02-05 2024-02-17 0.4 52 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "51" 2024-02-05 2024-02-17 0.45 54 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "51" 2024-02-05 2024-02-17 0.5 55 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "51" 2024-02-05 2024-02-17 0.55 55.9 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "51" 2024-02-05 2024-02-17 0.6 58.4 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "51" 2024-02-05 2024-02-17 0.65 60 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "51" 2024-02-05 2024-02-17 0.7 63.3 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "51" 2024-02-05 2024-02-17 0.75 69.25 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "51" 2024-02-05 2024-02-17 0.8 72.4 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "51" 2024-02-05 2024-02-17 0.85 77.15 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "51" 2024-02-05 2024-02-17 0.9 85 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "51" 2024-02-05 2024-02-17 0.95 91.45 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "51" 2024-02-05 2024-02-17 0.975 103.525 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "51" 2024-02-05 2024-02-17 0.99 112.06 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "51" 2024-02-05 2024-02-18 0.01 20.97 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "51" 2024-02-05 2024-02-18 0.025 22.475 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "51" 2024-02-05 2024-02-18 0.05 30.9 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "51" 2024-02-05 2024-02-18 0.1 37 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "51" 2024-02-05 2024-02-18 0.15 40 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "51" 2024-02-05 2024-02-18 0.2 42 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "51" 2024-02-05 2024-02-18 0.25 43 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "51" 2024-02-05 2024-02-18 0.3 45.7 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "51" 2024-02-05 2024-02-18 0.35 49.3 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "51" 2024-02-05 2024-02-18 0.4 52 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "51" 2024-02-05 2024-02-18 0.45 53.55 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "51" 2024-02-05 2024-02-18 0.5 55 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "51" 2024-02-05 2024-02-18 0.55 57.45 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "51" 2024-02-05 2024-02-18 0.6 59.4 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "51" 2024-02-05 2024-02-18 0.65 62 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "51" 2024-02-05 2024-02-18 0.7 65 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "51" 2024-02-05 2024-02-18 0.75 70 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "51" 2024-02-05 2024-02-18 0.8 71.2 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "51" 2024-02-05 2024-02-18 0.85 78 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "51" 2024-02-05 2024-02-18 0.9 88 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "51" 2024-02-05 2024-02-18 0.95 107.05 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "51" 2024-02-05 2024-02-18 0.975 110.575 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "51" 2024-02-05 2024-02-18 0.99 113.11 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "51" 2024-02-05 2024-02-19 0.01 21.97 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "51" 2024-02-05 2024-02-19 0.025 27.95 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "51" 2024-02-05 2024-02-19 0.05 33.8 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "51" 2024-02-05 2024-02-19 0.1 40 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "51" 2024-02-05 2024-02-19 0.15 43 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "51" 2024-02-05 2024-02-19 0.2 45 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "51" 2024-02-05 2024-02-19 0.25 46 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "51" 2024-02-05 2024-02-19 0.3 47 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "51" 2024-02-05 2024-02-19 0.35 50.65 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "51" 2024-02-05 2024-02-19 0.4 54.6 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "51" 2024-02-05 2024-02-19 0.45 56 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "51" 2024-02-05 2024-02-19 0.5 58 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "51" 2024-02-05 2024-02-19 0.55 60.45 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "51" 2024-02-05 2024-02-19 0.6 64 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "51" 2024-02-05 2024-02-19 0.65 67 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "51" 2024-02-05 2024-02-19 0.7 70 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "51" 2024-02-05 2024-02-19 0.75 73.25 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "51" 2024-02-05 2024-02-19 0.8 87.2 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "51" 2024-02-05 2024-02-19 0.85 92.15 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "51" 2024-02-05 2024-02-19 0.9 97 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "51" 2024-02-05 2024-02-19 0.95 117.55 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "51" 2024-02-05 2024-02-19 0.975 137.525 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "51" 2024-02-05 2024-02-19 0.99 140.07 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "51" 2024-02-05 2024-02-20 0.01 20.99 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "51" 2024-02-05 2024-02-20 0.025 23.475 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "51" 2024-02-05 2024-02-20 0.05 28.85 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "51" 2024-02-05 2024-02-20 0.1 36.9 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "51" 2024-02-05 2024-02-20 0.15 42 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "51" 2024-02-05 2024-02-20 0.2 47.8 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "51" 2024-02-05 2024-02-20 0.25 49 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "51" 2024-02-05 2024-02-20 0.3 50 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "51" 2024-02-05 2024-02-20 0.35 52 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "51" 2024-02-05 2024-02-20 0.4 52.6 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "51" 2024-02-05 2024-02-20 0.45 54 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "51" 2024-02-05 2024-02-20 0.5 57 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "51" 2024-02-05 2024-02-20 0.55 59 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "51" 2024-02-05 2024-02-20 0.6 61.4 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "51" 2024-02-05 2024-02-20 0.65 63 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "51" 2024-02-05 2024-02-20 0.7 65.6 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "51" 2024-02-05 2024-02-20 0.75 72.25 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "51" 2024-02-05 2024-02-20 0.8 78.6 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "51" 2024-02-05 2024-02-20 0.85 86.15 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "51" 2024-02-05 2024-02-20 0.9 95.2 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "51" 2024-02-05 2024-02-20 0.95 110 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "51" 2024-02-05 2024-02-20 0.975 116.1 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "51" 2024-02-05 2024-02-20 0.99 129.08 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "51" 2024-02-05 2024-02-21 0.01 20.97 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "51" 2024-02-05 2024-02-21 0.025 27.425 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "51" 2024-02-05 2024-02-21 0.05 30.95 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "51" 2024-02-05 2024-02-21 0.1 35.9 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "51" 2024-02-05 2024-02-21 0.15 40 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "51" 2024-02-05 2024-02-21 0.2 42 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "51" 2024-02-05 2024-02-21 0.25 46 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "51" 2024-02-05 2024-02-21 0.3 48.7 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "51" 2024-02-05 2024-02-21 0.35 50 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "51" 2024-02-05 2024-02-21 0.4 52.2 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "51" 2024-02-05 2024-02-21 0.45 55 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "51" 2024-02-05 2024-02-21 0.5 59 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "51" 2024-02-05 2024-02-21 0.55 61.45 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "51" 2024-02-05 2024-02-21 0.6 63.4 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "51" 2024-02-05 2024-02-21 0.65 66.35 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "51" 2024-02-05 2024-02-21 0.7 68.3 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "51" 2024-02-05 2024-02-21 0.75 71 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "51" 2024-02-05 2024-02-21 0.8 82.6 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "51" 2024-02-05 2024-02-21 0.85 89 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "51" 2024-02-05 2024-02-21 0.9 100 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "51" 2024-02-05 2024-02-21 0.95 116.45 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "51" 2024-02-05 2024-02-21 0.975 140.775 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "51" 2024-02-05 2024-02-21 0.99 155.01 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "51" 2024-02-05 2024-02-22 0.01 19.98 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "51" 2024-02-05 2024-02-22 0.025 24.425 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "51" 2024-02-05 2024-02-22 0.05 30.95 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "51" 2024-02-05 2024-02-22 0.1 33 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "51" 2024-02-05 2024-02-22 0.15 35 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "51" 2024-02-05 2024-02-22 0.2 38.8 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "51" 2024-02-05 2024-02-22 0.25 42 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "51" 2024-02-05 2024-02-22 0.3 45.4 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "51" 2024-02-05 2024-02-22 0.35 49.65 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "51" 2024-02-05 2024-02-22 0.4 52.2 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "51" 2024-02-05 2024-02-22 0.45 55 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "51" 2024-02-05 2024-02-22 0.5 57 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "51" 2024-02-05 2024-02-22 0.55 60 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "51" 2024-02-05 2024-02-22 0.6 62 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "51" 2024-02-05 2024-02-22 0.65 63.35 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "51" 2024-02-05 2024-02-22 0.7 66 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "51" 2024-02-05 2024-02-22 0.75 67.25 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "51" 2024-02-05 2024-02-22 0.8 76.4 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "51" 2024-02-05 2024-02-22 0.85 89.15 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "51" 2024-02-05 2024-02-22 0.9 103.4 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "51" 2024-02-05 2024-02-22 0.95 116.6 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "51" 2024-02-05 2024-02-22 0.975 135.575 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "51" 2024-02-05 2024-02-22 0.99 141.07 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "51" 2024-02-05 2024-02-23 0.01 19 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "51" 2024-02-05 2024-02-23 0.025 21.425 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "51" 2024-02-05 2024-02-23 0.05 26.8 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "51" 2024-02-05 2024-02-23 0.1 31 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "51" 2024-02-05 2024-02-23 0.15 33.85 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "51" 2024-02-05 2024-02-23 0.2 36.8 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "51" 2024-02-05 2024-02-23 0.25 38 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "51" 2024-02-05 2024-02-23 0.3 43 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "51" 2024-02-05 2024-02-23 0.35 46 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "51" 2024-02-05 2024-02-23 0.4 48.6 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "51" 2024-02-05 2024-02-23 0.45 50.55 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "51" 2024-02-05 2024-02-23 0.5 53 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "51" 2024-02-05 2024-02-23 0.55 55 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "51" 2024-02-05 2024-02-23 0.6 57.8 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "51" 2024-02-05 2024-02-23 0.65 63 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "51" 2024-02-05 2024-02-23 0.7 64.3 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "51" 2024-02-05 2024-02-23 0.75 70.75 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "51" 2024-02-05 2024-02-23 0.8 78.2 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "51" 2024-02-05 2024-02-23 0.85 82.3 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "51" 2024-02-05 2024-02-23 0.9 96.3 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "51" 2024-02-05 2024-02-23 0.95 108.25 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "51" 2024-02-05 2024-02-23 0.975 131.675 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "51" 2024-02-05 2024-02-23 0.99 142.07 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "51" 2024-02-05 2024-02-24 0.01 15.94 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "51" 2024-02-05 2024-02-24 0.025 16 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "51" 2024-02-05 2024-02-24 0.05 19.9 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "51" 2024-02-05 2024-02-24 0.1 26.8 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "51" 2024-02-05 2024-02-24 0.15 30.85 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "51" 2024-02-05 2024-02-24 0.2 33.6 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "51" 2024-02-05 2024-02-24 0.25 38 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "51" 2024-02-05 2024-02-24 0.3 39.7 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "51" 2024-02-05 2024-02-24 0.35 42 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "51" 2024-02-05 2024-02-24 0.4 44 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "51" 2024-02-05 2024-02-24 0.45 46.55 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "51" 2024-02-05 2024-02-24 0.5 50 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "51" 2024-02-05 2024-02-24 0.55 52.45 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "51" 2024-02-05 2024-02-24 0.6 55 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "51" 2024-02-05 2024-02-24 0.65 59.7 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "51" 2024-02-05 2024-02-24 0.7 62 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "51" 2024-02-05 2024-02-24 0.75 68 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "51" 2024-02-05 2024-02-24 0.8 76 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "51" 2024-02-05 2024-02-24 0.85 86.15 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "51" 2024-02-05 2024-02-24 0.9 92.2 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "51" 2024-02-05 2024-02-24 0.95 100.5 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "51" 2024-02-05 2024-02-24 0.975 115.725 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "51" 2024-02-05 2024-02-24 0.99 132.14 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "51" 2024-02-05 2024-02-25 0.01 17.96 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "51" 2024-02-05 2024-02-25 0.025 20.475 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "51" 2024-02-05 2024-02-25 0.05 22.9 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "51" 2024-02-05 2024-02-25 0.1 26.9 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "51" 2024-02-05 2024-02-25 0.15 29 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "51" 2024-02-05 2024-02-25 0.2 34.6 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "51" 2024-02-05 2024-02-25 0.25 37.75 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "51" 2024-02-05 2024-02-25 0.3 40 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "51" 2024-02-05 2024-02-25 0.35 41 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "51" 2024-02-05 2024-02-25 0.4 44.6 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "51" 2024-02-05 2024-02-25 0.45 47.55 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "51" 2024-02-05 2024-02-25 0.5 50.5 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "51" 2024-02-05 2024-02-25 0.55 54.45 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "51" 2024-02-05 2024-02-25 0.6 56 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "51" 2024-02-05 2024-02-25 0.65 61 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "51" 2024-02-05 2024-02-25 0.7 63.6 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "51" 2024-02-05 2024-02-25 0.75 69.25 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "51" 2024-02-05 2024-02-25 0.8 75.4 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "51" 2024-02-05 2024-02-25 0.85 79.45 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "51" 2024-02-05 2024-02-25 0.9 92.2 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "51" 2024-02-05 2024-02-25 0.95 111 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "51" 2024-02-05 2024-02-25 0.975 121.3 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "51" 2024-02-05 2024-02-25 0.99 149.17 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "51" 2024-02-05 2024-02-26 0.01 15.98 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "51" 2024-02-05 2024-02-26 0.025 17.475 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "51" 2024-02-05 2024-02-26 0.05 20 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "51" 2024-02-05 2024-02-26 0.1 29.7 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "51" 2024-02-05 2024-02-26 0.15 32 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "51" 2024-02-05 2024-02-26 0.2 33 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "51" 2024-02-05 2024-02-26 0.25 39.75 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "51" 2024-02-05 2024-02-26 0.3 42.7 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "51" 2024-02-05 2024-02-26 0.35 46.3 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "51" 2024-02-05 2024-02-26 0.4 49.6 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "51" 2024-02-05 2024-02-26 0.45 52.55 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "51" 2024-02-05 2024-02-26 0.5 57 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "51" 2024-02-05 2024-02-26 0.55 58 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "51" 2024-02-05 2024-02-26 0.6 59.4 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "51" 2024-02-05 2024-02-26 0.65 62 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "51" 2024-02-05 2024-02-26 0.7 67.3 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "51" 2024-02-05 2024-02-26 0.75 73 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "51" 2024-02-05 2024-02-26 0.8 75.2 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "51" 2024-02-05 2024-02-26 0.85 91.3 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "51" 2024-02-05 2024-02-26 0.9 104 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "51" 2024-02-05 2024-02-26 0.95 122.55 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "51" 2024-02-05 2024-02-26 0.975 134.575 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "51" 2024-02-05 2024-02-26 0.99 143.29 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "51" 2024-02-05 2024-02-27 0.01 16.95 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "51" 2024-02-05 2024-02-27 0.025 18.475 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "51" 2024-02-05 2024-02-27 0.05 20.9 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "51" 2024-02-05 2024-02-27 0.1 22.8 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "51" 2024-02-05 2024-02-27 0.15 30.4 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "51" 2024-02-05 2024-02-27 0.2 34.8 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "51" 2024-02-05 2024-02-27 0.25 38.75 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "51" 2024-02-05 2024-02-27 0.3 42.1 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "51" 2024-02-05 2024-02-27 0.35 45.65 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "51" 2024-02-05 2024-02-27 0.4 48.2 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "51" 2024-02-05 2024-02-27 0.45 50.55 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "51" 2024-02-05 2024-02-27 0.5 53.5 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "51" 2024-02-05 2024-02-27 0.55 55.9 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "51" 2024-02-05 2024-02-27 0.6 60.8 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "51" 2024-02-05 2024-02-27 0.65 64.35 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "51" 2024-02-05 2024-02-27 0.7 69 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "51" 2024-02-05 2024-02-27 0.75 74.5 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "51" 2024-02-05 2024-02-27 0.8 81.2 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "51" 2024-02-05 2024-02-27 0.85 89.3 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "51" 2024-02-05 2024-02-27 0.9 106.4 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "51" 2024-02-05 2024-02-27 0.95 115.7 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "51" 2024-02-05 2024-02-27 0.975 140.725 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "51" 2024-02-05 2024-02-27 0.99 154.43 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "51" 2024-02-05 2024-02-28 0.01 15.96 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "51" 2024-02-05 2024-02-28 0.025 16.95 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "51" 2024-02-05 2024-02-28 0.05 19 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "51" 2024-02-05 2024-02-28 0.1 23.8 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "51" 2024-02-05 2024-02-28 0.15 29.55 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "51" 2024-02-05 2024-02-28 0.2 34 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "51" 2024-02-05 2024-02-28 0.25 37.5 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "51" 2024-02-05 2024-02-28 0.3 42.7 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "51" 2024-02-05 2024-02-28 0.35 45.65 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "51" 2024-02-05 2024-02-28 0.4 49.8 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "51" 2024-02-05 2024-02-28 0.45 53 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "51" 2024-02-05 2024-02-28 0.5 55 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "51" 2024-02-05 2024-02-28 0.55 57 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "51" 2024-02-05 2024-02-28 0.6 60.4 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "51" 2024-02-05 2024-02-28 0.65 65.4 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "51" 2024-02-05 2024-02-28 0.7 71 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "51" 2024-02-05 2024-02-28 0.75 73.25 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "51" 2024-02-05 2024-02-28 0.8 79.4 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "51" 2024-02-05 2024-02-28 0.85 96.15 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "51" 2024-02-05 2024-02-28 0.9 106.1 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "51" 2024-02-05 2024-02-28 0.95 121.2 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "51" 2024-02-05 2024-02-28 0.975 145.875 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "51" 2024-02-05 2024-02-28 0.99 165.85 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "51" 2024-02-05 2024-02-29 0.01 9.96 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "51" 2024-02-05 2024-02-29 0.025 13.425 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "51" 2024-02-05 2024-02-29 0.05 15.95 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "51" 2024-02-05 2024-02-29 0.1 24.9 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "51" 2024-02-05 2024-02-29 0.15 27 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "51" 2024-02-05 2024-02-29 0.2 30.8 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "51" 2024-02-05 2024-02-29 0.25 34 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "51" 2024-02-05 2024-02-29 0.3 37 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "51" 2024-02-05 2024-02-29 0.35 39.65 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "51" 2024-02-05 2024-02-29 0.4 43 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "51" 2024-02-05 2024-02-29 0.45 47 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "51" 2024-02-05 2024-02-29 0.5 49 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "51" 2024-02-05 2024-02-29 0.55 53.45 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "51" 2024-02-05 2024-02-29 0.6 57.6 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "51" 2024-02-05 2024-02-29 0.65 64.35 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "51" 2024-02-05 2024-02-29 0.7 68.6 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "51" 2024-02-05 2024-02-29 0.75 73 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "51" 2024-02-05 2024-02-29 0.8 80.2 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "51" 2024-02-05 2024-02-29 0.85 89.15 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "51" 2024-02-05 2024-02-29 0.9 109.3 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "51" 2024-02-05 2024-02-29 0.95 127.5 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "51" 2024-02-05 2024-02-29 0.975 147.925 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "51" 2024-02-05 2024-02-29 0.99 166.7 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "51" 2024-02-05 2024-03-01 0.01 12 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "51" 2024-02-05 2024-03-01 0.025 13.95 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "51" 2024-02-05 2024-03-01 0.05 16.9 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "51" 2024-02-05 2024-03-01 0.1 21 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "51" 2024-02-05 2024-03-01 0.15 23.85 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "51" 2024-02-05 2024-03-01 0.2 29.8 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "51" 2024-02-05 2024-03-01 0.25 35 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "51" 2024-02-05 2024-03-01 0.3 38.4 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "51" 2024-02-05 2024-03-01 0.35 40.65 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "51" 2024-02-05 2024-03-01 0.4 42.6 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "51" 2024-02-05 2024-03-01 0.45 46.55 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "51" 2024-02-05 2024-03-01 0.5 48.5 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "51" 2024-02-05 2024-03-01 0.55 54.45 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "51" 2024-02-05 2024-03-01 0.6 56 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "51" 2024-02-05 2024-03-01 0.65 59 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "51" 2024-02-05 2024-03-01 0.7 61.9 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "51" 2024-02-05 2024-03-01 0.75 74.25 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "51" 2024-02-05 2024-03-01 0.8 78.6 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "51" 2024-02-05 2024-03-01 0.85 90.3 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "51" 2024-02-05 2024-03-01 0.9 101.8 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "51" 2024-02-05 2024-03-01 0.95 120.05 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "51" 2024-02-05 2024-03-01 0.975 142 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "51" 2024-02-05 2024-03-01 0.99 183.71 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "51" 2024-02-05 2024-03-02 0.01 11.94 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "51" 2024-02-05 2024-03-02 0.025 13 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "51" 2024-02-05 2024-03-02 0.05 15 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "51" 2024-02-05 2024-03-02 0.1 21 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "51" 2024-02-05 2024-03-02 0.15 23.85 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "51" 2024-02-05 2024-03-02 0.2 28 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "51" 2024-02-05 2024-03-02 0.25 30.75 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "51" 2024-02-05 2024-03-02 0.3 33.7 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "51" 2024-02-05 2024-03-02 0.35 37.65 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "51" 2024-02-05 2024-03-02 0.4 40.6 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "51" 2024-02-05 2024-03-02 0.45 43.55 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "51" 2024-02-05 2024-03-02 0.5 45 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "51" 2024-02-05 2024-03-02 0.55 48 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "51" 2024-02-05 2024-03-02 0.6 49.8 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "51" 2024-02-05 2024-03-02 0.65 53.35 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "51" 2024-02-05 2024-03-02 0.7 59.3 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "51" 2024-02-05 2024-03-02 0.75 71 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "51" 2024-02-05 2024-03-02 0.8 77.2 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "51" 2024-02-05 2024-03-02 0.85 81.6 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "51" 2024-02-05 2024-03-02 0.9 96.2 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "51" 2024-02-05 2024-03-02 0.95 114 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "51" 2024-02-05 2024-03-02 0.975 125.3 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "51" 2024-02-05 2024-03-02 0.99 162.060000000001 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "51" 2024-02-05 2024-03-03 0.01 9.97 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "51" 2024-02-05 2024-03-03 0.025 11.475 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "51" 2024-02-05 2024-03-03 0.05 12 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "51" 2024-02-05 2024-03-03 0.1 15 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "51" 2024-02-05 2024-03-03 0.15 20 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "51" 2024-02-05 2024-03-03 0.2 24.6 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "51" 2024-02-05 2024-03-03 0.25 29.75 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "51" 2024-02-05 2024-03-03 0.3 33.7 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "51" 2024-02-05 2024-03-03 0.35 36 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "51" 2024-02-05 2024-03-03 0.4 37 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "51" 2024-02-05 2024-03-03 0.45 40.1 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "51" 2024-02-05 2024-03-03 0.5 43 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "51" 2024-02-05 2024-03-03 0.55 46.9 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "51" 2024-02-05 2024-03-03 0.6 51.4 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "51" 2024-02-05 2024-03-03 0.65 62 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "51" 2024-02-05 2024-03-03 0.7 63.6 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "51" 2024-02-05 2024-03-03 0.75 68.25 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "51" 2024-02-05 2024-03-03 0.8 77 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "51" 2024-02-05 2024-03-03 0.85 95.45 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "51" 2024-02-05 2024-03-03 0.9 107.1 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "51" 2024-02-05 2024-03-03 0.95 116.6 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "51" 2024-02-05 2024-03-03 0.975 144.725 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "51" 2024-02-05 2024-03-03 0.99 169.120000000001 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "51" 2024-02-05 2024-03-04 0.01 7.99 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "51" 2024-02-05 2024-03-04 0.025 9.475 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "51" 2024-02-05 2024-03-04 0.05 13.9 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "51" 2024-02-05 2024-03-04 0.1 19.9 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "51" 2024-02-05 2024-03-04 0.15 25.85 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "51" 2024-02-05 2024-03-04 0.2 28 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "51" 2024-02-05 2024-03-04 0.25 32.75 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "51" 2024-02-05 2024-03-04 0.3 35.7 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "51" 2024-02-05 2024-03-04 0.35 43 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "51" 2024-02-05 2024-03-04 0.4 45 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "51" 2024-02-05 2024-03-04 0.45 49 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "51" 2024-02-05 2024-03-04 0.5 53 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "51" 2024-02-05 2024-03-04 0.55 55.45 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "51" 2024-02-05 2024-03-04 0.6 57.8 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "51" 2024-02-05 2024-03-04 0.65 61 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "51" 2024-02-05 2024-03-04 0.7 65.6 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "51" 2024-02-05 2024-03-04 0.75 74.75 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "51" 2024-02-05 2024-03-04 0.8 83 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "51" 2024-02-05 2024-03-04 0.85 100 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "51" 2024-02-05 2024-03-04 0.9 115.1 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "51" 2024-02-05 2024-03-04 0.95 140.25 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "51" 2024-02-05 2024-03-04 0.975 151.675 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "51" 2024-02-05 2024-03-04 0.99 169.470000000001 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "50" 2024-02-05 2024-02-06 0.01 0.99 "quantile" "hospital admissions only" +"1 day ahead inc hosp" "50" 2024-02-05 2024-02-06 0.025 1.475 "quantile" "hospital admissions only" +"1 day ahead inc hosp" "50" 2024-02-05 2024-02-06 0.05 2 "quantile" "hospital admissions only" +"1 day ahead inc hosp" "50" 2024-02-05 2024-02-06 0.1 4 "quantile" "hospital admissions only" +"1 day ahead inc hosp" "50" 2024-02-05 2024-02-06 0.15 4 "quantile" "hospital admissions only" +"1 day ahead inc hosp" "50" 2024-02-05 2024-02-06 0.2 5 "quantile" "hospital admissions only" +"1 day ahead inc hosp" "50" 2024-02-05 2024-02-06 0.25 5 "quantile" "hospital admissions only" +"1 day ahead inc hosp" "50" 2024-02-05 2024-02-06 0.3 5.7 "quantile" "hospital admissions only" +"1 day ahead inc hosp" "50" 2024-02-05 2024-02-06 0.35 6 "quantile" "hospital admissions only" +"1 day ahead inc hosp" "50" 2024-02-05 2024-02-06 0.4 7 "quantile" "hospital admissions only" +"1 day ahead inc hosp" "50" 2024-02-05 2024-02-06 0.45 7 "quantile" "hospital admissions only" +"1 day ahead inc hosp" "50" 2024-02-05 2024-02-06 0.5 8 "quantile" "hospital admissions only" +"1 day ahead inc hosp" "50" 2024-02-05 2024-02-06 0.55 8 "quantile" "hospital admissions only" +"1 day ahead inc hosp" "50" 2024-02-05 2024-02-06 0.6 9 "quantile" "hospital admissions only" +"1 day ahead inc hosp" "50" 2024-02-05 2024-02-06 0.65 9 "quantile" "hospital admissions only" +"1 day ahead inc hosp" "50" 2024-02-05 2024-02-06 0.7 9 "quantile" "hospital admissions only" +"1 day ahead inc hosp" "50" 2024-02-05 2024-02-06 0.75 9 "quantile" "hospital admissions only" +"1 day ahead inc hosp" "50" 2024-02-05 2024-02-06 0.8 10 "quantile" "hospital admissions only" +"1 day ahead inc hosp" "50" 2024-02-05 2024-02-06 0.85 10 "quantile" "hospital admissions only" +"1 day ahead inc hosp" "50" 2024-02-05 2024-02-06 0.9 11 "quantile" "hospital admissions only" +"1 day ahead inc hosp" "50" 2024-02-05 2024-02-06 0.95 12 "quantile" "hospital admissions only" +"1 day ahead inc hosp" "50" 2024-02-05 2024-02-06 0.975 12.525 "quantile" "hospital admissions only" +"1 day ahead inc hosp" "50" 2024-02-05 2024-02-06 0.99 14.02 "quantile" "hospital admissions only" +"2 day ahead inc hosp" "50" 2024-02-05 2024-02-07 0.01 2 "quantile" "hospital admissions only" +"2 day ahead inc hosp" "50" 2024-02-05 2024-02-07 0.025 3 "quantile" "hospital admissions only" +"2 day ahead inc hosp" "50" 2024-02-05 2024-02-07 0.05 3 "quantile" "hospital admissions only" +"2 day ahead inc hosp" "50" 2024-02-05 2024-02-07 0.1 4 "quantile" "hospital admissions only" +"2 day ahead inc hosp" "50" 2024-02-05 2024-02-07 0.15 4 "quantile" "hospital admissions only" +"2 day ahead inc hosp" "50" 2024-02-05 2024-02-07 0.2 5 "quantile" "hospital admissions only" +"2 day ahead inc hosp" "50" 2024-02-05 2024-02-07 0.25 5 "quantile" "hospital admissions only" +"2 day ahead inc hosp" "50" 2024-02-05 2024-02-07 0.3 6 "quantile" "hospital admissions only" +"2 day ahead inc hosp" "50" 2024-02-05 2024-02-07 0.35 6 "quantile" "hospital admissions only" +"2 day ahead inc hosp" "50" 2024-02-05 2024-02-07 0.4 6 "quantile" "hospital admissions only" +"2 day ahead inc hosp" "50" 2024-02-05 2024-02-07 0.45 7 "quantile" "hospital admissions only" +"2 day ahead inc hosp" "50" 2024-02-05 2024-02-07 0.5 7 "quantile" "hospital admissions only" +"2 day ahead inc hosp" "50" 2024-02-05 2024-02-07 0.55 7.45 "quantile" "hospital admissions only" +"2 day ahead inc hosp" "50" 2024-02-05 2024-02-07 0.6 8 "quantile" "hospital admissions only" +"2 day ahead inc hosp" "50" 2024-02-05 2024-02-07 0.65 8 "quantile" "hospital admissions only" +"2 day ahead inc hosp" "50" 2024-02-05 2024-02-07 0.7 8.30000000000001 "quantile" "hospital admissions only" +"2 day ahead inc hosp" "50" 2024-02-05 2024-02-07 0.75 9 "quantile" "hospital admissions only" +"2 day ahead inc hosp" "50" 2024-02-05 2024-02-07 0.8 9 "quantile" "hospital admissions only" +"2 day ahead inc hosp" "50" 2024-02-05 2024-02-07 0.85 9.15000000000001 "quantile" "hospital admissions only" +"2 day ahead inc hosp" "50" 2024-02-05 2024-02-07 0.9 10 "quantile" "hospital admissions only" +"2 day ahead inc hosp" "50" 2024-02-05 2024-02-07 0.95 11 "quantile" "hospital admissions only" +"2 day ahead inc hosp" "50" 2024-02-05 2024-02-07 0.975 12 "quantile" "hospital admissions only" +"2 day ahead inc hosp" "50" 2024-02-05 2024-02-07 0.99 12.01 "quantile" "hospital admissions only" +"3 day ahead inc hosp" "50" 2024-02-05 2024-02-08 0.01 2 "quantile" "hospital admissions only" +"3 day ahead inc hosp" "50" 2024-02-05 2024-02-08 0.025 2.475 "quantile" "hospital admissions only" +"3 day ahead inc hosp" "50" 2024-02-05 2024-02-08 0.05 3 "quantile" "hospital admissions only" +"3 day ahead inc hosp" "50" 2024-02-05 2024-02-08 0.1 3 "quantile" "hospital admissions only" +"3 day ahead inc hosp" "50" 2024-02-05 2024-02-08 0.15 4 "quantile" "hospital admissions only" +"3 day ahead inc hosp" "50" 2024-02-05 2024-02-08 0.2 4.8 "quantile" "hospital admissions only" +"3 day ahead inc hosp" "50" 2024-02-05 2024-02-08 0.25 5 "quantile" "hospital admissions only" +"3 day ahead inc hosp" "50" 2024-02-05 2024-02-08 0.3 5 "quantile" "hospital admissions only" +"3 day ahead inc hosp" "50" 2024-02-05 2024-02-08 0.35 5 "quantile" "hospital admissions only" +"3 day ahead inc hosp" "50" 2024-02-05 2024-02-08 0.4 6 "quantile" "hospital admissions only" +"3 day ahead inc hosp" "50" 2024-02-05 2024-02-08 0.45 6 "quantile" "hospital admissions only" +"3 day ahead inc hosp" "50" 2024-02-05 2024-02-08 0.5 6 "quantile" "hospital admissions only" +"3 day ahead inc hosp" "50" 2024-02-05 2024-02-08 0.55 6.45 "quantile" "hospital admissions only" +"3 day ahead inc hosp" "50" 2024-02-05 2024-02-08 0.6 7 "quantile" "hospital admissions only" +"3 day ahead inc hosp" "50" 2024-02-05 2024-02-08 0.65 7 "quantile" "hospital admissions only" +"3 day ahead inc hosp" "50" 2024-02-05 2024-02-08 0.7 7 "quantile" "hospital admissions only" +"3 day ahead inc hosp" "50" 2024-02-05 2024-02-08 0.75 8 "quantile" "hospital admissions only" +"3 day ahead inc hosp" "50" 2024-02-05 2024-02-08 0.8 8 "quantile" "hospital admissions only" +"3 day ahead inc hosp" "50" 2024-02-05 2024-02-08 0.85 9 "quantile" "hospital admissions only" +"3 day ahead inc hosp" "50" 2024-02-05 2024-02-08 0.9 9.10000000000001 "quantile" "hospital admissions only" +"3 day ahead inc hosp" "50" 2024-02-05 2024-02-08 0.95 10 "quantile" "hospital admissions only" +"3 day ahead inc hosp" "50" 2024-02-05 2024-02-08 0.975 11 "quantile" "hospital admissions only" +"3 day ahead inc hosp" "50" 2024-02-05 2024-02-08 0.99 13.01 "quantile" "hospital admissions only" +"4 day ahead inc hosp" "50" 2024-02-05 2024-02-09 0.01 2.99 "quantile" "hospital admissions only" +"4 day ahead inc hosp" "50" 2024-02-05 2024-02-09 0.025 3 "quantile" "hospital admissions only" +"4 day ahead inc hosp" "50" 2024-02-05 2024-02-09 0.05 4 "quantile" "hospital admissions only" +"4 day ahead inc hosp" "50" 2024-02-05 2024-02-09 0.1 5 "quantile" "hospital admissions only" +"4 day ahead inc hosp" "50" 2024-02-05 2024-02-09 0.15 5.85 "quantile" "hospital admissions only" +"4 day ahead inc hosp" "50" 2024-02-05 2024-02-09 0.2 6 "quantile" "hospital admissions only" +"4 day ahead inc hosp" "50" 2024-02-05 2024-02-09 0.25 6 "quantile" "hospital admissions only" +"4 day ahead inc hosp" "50" 2024-02-05 2024-02-09 0.3 7 "quantile" "hospital admissions only" +"4 day ahead inc hosp" "50" 2024-02-05 2024-02-09 0.35 7 "quantile" "hospital admissions only" +"4 day ahead inc hosp" "50" 2024-02-05 2024-02-09 0.4 8 "quantile" "hospital admissions only" +"4 day ahead inc hosp" "50" 2024-02-05 2024-02-09 0.45 9 "quantile" "hospital admissions only" +"4 day ahead inc hosp" "50" 2024-02-05 2024-02-09 0.5 9 "quantile" "hospital admissions only" +"4 day ahead inc hosp" "50" 2024-02-05 2024-02-09 0.55 9 "quantile" "hospital admissions only" +"4 day ahead inc hosp" "50" 2024-02-05 2024-02-09 0.6 9.40000000000001 "quantile" "hospital admissions only" +"4 day ahead inc hosp" "50" 2024-02-05 2024-02-09 0.65 10.35 "quantile" "hospital admissions only" +"4 day ahead inc hosp" "50" 2024-02-05 2024-02-09 0.7 11 "quantile" "hospital admissions only" +"4 day ahead inc hosp" "50" 2024-02-05 2024-02-09 0.75 12 "quantile" "hospital admissions only" +"4 day ahead inc hosp" "50" 2024-02-05 2024-02-09 0.8 12 "quantile" "hospital admissions only" +"4 day ahead inc hosp" "50" 2024-02-05 2024-02-09 0.85 13 "quantile" "hospital admissions only" +"4 day ahead inc hosp" "50" 2024-02-05 2024-02-09 0.9 13 "quantile" "hospital admissions only" +"4 day ahead inc hosp" "50" 2024-02-05 2024-02-09 0.95 14 "quantile" "hospital admissions only" +"4 day ahead inc hosp" "50" 2024-02-05 2024-02-09 0.975 15.525 "quantile" "hospital admissions only" +"4 day ahead inc hosp" "50" 2024-02-05 2024-02-09 0.99 16.01 "quantile" "hospital admissions only" +"5 day ahead inc hosp" "50" 2024-02-05 2024-02-10 0.01 2 "quantile" "hospital admissions only" +"5 day ahead inc hosp" "50" 2024-02-05 2024-02-10 0.025 2 "quantile" "hospital admissions only" +"5 day ahead inc hosp" "50" 2024-02-05 2024-02-10 0.05 3 "quantile" "hospital admissions only" +"5 day ahead inc hosp" "50" 2024-02-05 2024-02-10 0.1 4 "quantile" "hospital admissions only" +"5 day ahead inc hosp" "50" 2024-02-05 2024-02-10 0.15 4 "quantile" "hospital admissions only" +"5 day ahead inc hosp" "50" 2024-02-05 2024-02-10 0.2 4.8 "quantile" "hospital admissions only" +"5 day ahead inc hosp" "50" 2024-02-05 2024-02-10 0.25 5 "quantile" "hospital admissions only" +"5 day ahead inc hosp" "50" 2024-02-05 2024-02-10 0.3 5 "quantile" "hospital admissions only" +"5 day ahead inc hosp" "50" 2024-02-05 2024-02-10 0.35 6 "quantile" "hospital admissions only" +"5 day ahead inc hosp" "50" 2024-02-05 2024-02-10 0.4 6 "quantile" "hospital admissions only" +"5 day ahead inc hosp" "50" 2024-02-05 2024-02-10 0.45 6 "quantile" "hospital admissions only" +"5 day ahead inc hosp" "50" 2024-02-05 2024-02-10 0.5 7 "quantile" "hospital admissions only" +"5 day ahead inc hosp" "50" 2024-02-05 2024-02-10 0.55 7 "quantile" "hospital admissions only" +"5 day ahead inc hosp" "50" 2024-02-05 2024-02-10 0.6 7 "quantile" "hospital admissions only" +"5 day ahead inc hosp" "50" 2024-02-05 2024-02-10 0.65 8 "quantile" "hospital admissions only" +"5 day ahead inc hosp" "50" 2024-02-05 2024-02-10 0.7 8 "quantile" "hospital admissions only" +"5 day ahead inc hosp" "50" 2024-02-05 2024-02-10 0.75 9 "quantile" "hospital admissions only" +"5 day ahead inc hosp" "50" 2024-02-05 2024-02-10 0.8 9 "quantile" "hospital admissions only" +"5 day ahead inc hosp" "50" 2024-02-05 2024-02-10 0.85 10 "quantile" "hospital admissions only" +"5 day ahead inc hosp" "50" 2024-02-05 2024-02-10 0.9 10 "quantile" "hospital admissions only" +"5 day ahead inc hosp" "50" 2024-02-05 2024-02-10 0.95 11 "quantile" "hospital admissions only" +"5 day ahead inc hosp" "50" 2024-02-05 2024-02-10 0.975 11.525 "quantile" "hospital admissions only" +"5 day ahead inc hosp" "50" 2024-02-05 2024-02-10 0.99 13 "quantile" "hospital admissions only" +"6 day ahead inc hosp" "50" 2024-02-05 2024-02-11 0.01 1.99 "quantile" "hospital admissions only" +"6 day ahead inc hosp" "50" 2024-02-05 2024-02-11 0.025 2 "quantile" "hospital admissions only" +"6 day ahead inc hosp" "50" 2024-02-05 2024-02-11 0.05 3 "quantile" "hospital admissions only" +"6 day ahead inc hosp" "50" 2024-02-05 2024-02-11 0.1 3 "quantile" "hospital admissions only" +"6 day ahead inc hosp" "50" 2024-02-05 2024-02-11 0.15 4 "quantile" "hospital admissions only" +"6 day ahead inc hosp" "50" 2024-02-05 2024-02-11 0.2 4.8 "quantile" "hospital admissions only" +"6 day ahead inc hosp" "50" 2024-02-05 2024-02-11 0.25 5 "quantile" "hospital admissions only" +"6 day ahead inc hosp" "50" 2024-02-05 2024-02-11 0.3 5 "quantile" "hospital admissions only" +"6 day ahead inc hosp" "50" 2024-02-05 2024-02-11 0.35 6 "quantile" "hospital admissions only" +"6 day ahead inc hosp" "50" 2024-02-05 2024-02-11 0.4 6 "quantile" "hospital admissions only" +"6 day ahead inc hosp" "50" 2024-02-05 2024-02-11 0.45 6 "quantile" "hospital admissions only" +"6 day ahead inc hosp" "50" 2024-02-05 2024-02-11 0.5 7 "quantile" "hospital admissions only" +"6 day ahead inc hosp" "50" 2024-02-05 2024-02-11 0.55 7 "quantile" "hospital admissions only" +"6 day ahead inc hosp" "50" 2024-02-05 2024-02-11 0.6 7.40000000000001 "quantile" "hospital admissions only" +"6 day ahead inc hosp" "50" 2024-02-05 2024-02-11 0.65 8 "quantile" "hospital admissions only" +"6 day ahead inc hosp" "50" 2024-02-05 2024-02-11 0.7 8 "quantile" "hospital admissions only" +"6 day ahead inc hosp" "50" 2024-02-05 2024-02-11 0.75 9 "quantile" "hospital admissions only" +"6 day ahead inc hosp" "50" 2024-02-05 2024-02-11 0.8 9.2 "quantile" "hospital admissions only" +"6 day ahead inc hosp" "50" 2024-02-05 2024-02-11 0.85 10 "quantile" "hospital admissions only" +"6 day ahead inc hosp" "50" 2024-02-05 2024-02-11 0.9 10.1 "quantile" "hospital admissions only" +"6 day ahead inc hosp" "50" 2024-02-05 2024-02-11 0.95 11 "quantile" "hospital admissions only" +"6 day ahead inc hosp" "50" 2024-02-05 2024-02-11 0.975 12.525 "quantile" "hospital admissions only" +"6 day ahead inc hosp" "50" 2024-02-05 2024-02-11 0.99 13.07 "quantile" "hospital admissions only" +"7 day ahead inc hosp" "50" 2024-02-05 2024-02-12 0.01 1.99 "quantile" "hospital admissions only" +"7 day ahead inc hosp" "50" 2024-02-05 2024-02-12 0.025 2 "quantile" "hospital admissions only" +"7 day ahead inc hosp" "50" 2024-02-05 2024-02-12 0.05 2 "quantile" "hospital admissions only" +"7 day ahead inc hosp" "50" 2024-02-05 2024-02-12 0.1 3 "quantile" "hospital admissions only" +"7 day ahead inc hosp" "50" 2024-02-05 2024-02-12 0.15 4 "quantile" "hospital admissions only" +"7 day ahead inc hosp" "50" 2024-02-05 2024-02-12 0.2 4 "quantile" "hospital admissions only" +"7 day ahead inc hosp" "50" 2024-02-05 2024-02-12 0.25 4 "quantile" "hospital admissions only" +"7 day ahead inc hosp" "50" 2024-02-05 2024-02-12 0.3 4 "quantile" "hospital admissions only" +"7 day ahead inc hosp" "50" 2024-02-05 2024-02-12 0.35 5 "quantile" "hospital admissions only" +"7 day ahead inc hosp" "50" 2024-02-05 2024-02-12 0.4 5 "quantile" "hospital admissions only" +"7 day ahead inc hosp" "50" 2024-02-05 2024-02-12 0.45 5 "quantile" "hospital admissions only" +"7 day ahead inc hosp" "50" 2024-02-05 2024-02-12 0.5 6 "quantile" "hospital admissions only" +"7 day ahead inc hosp" "50" 2024-02-05 2024-02-12 0.55 6 "quantile" "hospital admissions only" +"7 day ahead inc hosp" "50" 2024-02-05 2024-02-12 0.6 6 "quantile" "hospital admissions only" +"7 day ahead inc hosp" "50" 2024-02-05 2024-02-12 0.65 7 "quantile" "hospital admissions only" +"7 day ahead inc hosp" "50" 2024-02-05 2024-02-12 0.7 7 "quantile" "hospital admissions only" +"7 day ahead inc hosp" "50" 2024-02-05 2024-02-12 0.75 7.25000000000001 "quantile" "hospital admissions only" +"7 day ahead inc hosp" "50" 2024-02-05 2024-02-12 0.8 8 "quantile" "hospital admissions only" +"7 day ahead inc hosp" "50" 2024-02-05 2024-02-12 0.85 9 "quantile" "hospital admissions only" +"7 day ahead inc hosp" "50" 2024-02-05 2024-02-12 0.9 10 "quantile" "hospital admissions only" +"7 day ahead inc hosp" "50" 2024-02-05 2024-02-12 0.95 11.05 "quantile" "hospital admissions only" +"7 day ahead inc hosp" "50" 2024-02-05 2024-02-12 0.975 12.525 "quantile" "hospital admissions only" +"7 day ahead inc hosp" "50" 2024-02-05 2024-02-12 0.99 13.02 "quantile" "hospital admissions only" +"8 day ahead inc hosp" "50" 2024-02-05 2024-02-13 0.01 1.99 "quantile" "hospital admissions only" +"8 day ahead inc hosp" "50" 2024-02-05 2024-02-13 0.025 3 "quantile" "hospital admissions only" +"8 day ahead inc hosp" "50" 2024-02-05 2024-02-13 0.05 3 "quantile" "hospital admissions only" +"8 day ahead inc hosp" "50" 2024-02-05 2024-02-13 0.1 4 "quantile" "hospital admissions only" +"8 day ahead inc hosp" "50" 2024-02-05 2024-02-13 0.15 4 "quantile" "hospital admissions only" +"8 day ahead inc hosp" "50" 2024-02-05 2024-02-13 0.2 5 "quantile" "hospital admissions only" +"8 day ahead inc hosp" "50" 2024-02-05 2024-02-13 0.25 5 "quantile" "hospital admissions only" +"8 day ahead inc hosp" "50" 2024-02-05 2024-02-13 0.3 6 "quantile" "hospital admissions only" +"8 day ahead inc hosp" "50" 2024-02-05 2024-02-13 0.35 6 "quantile" "hospital admissions only" +"8 day ahead inc hosp" "50" 2024-02-05 2024-02-13 0.4 6.6 "quantile" "hospital admissions only" +"8 day ahead inc hosp" "50" 2024-02-05 2024-02-13 0.45 7 "quantile" "hospital admissions only" +"8 day ahead inc hosp" "50" 2024-02-05 2024-02-13 0.5 7.5 "quantile" "hospital admissions only" +"8 day ahead inc hosp" "50" 2024-02-05 2024-02-13 0.55 8 "quantile" "hospital admissions only" +"8 day ahead inc hosp" "50" 2024-02-05 2024-02-13 0.6 9 "quantile" "hospital admissions only" +"8 day ahead inc hosp" "50" 2024-02-05 2024-02-13 0.65 9 "quantile" "hospital admissions only" +"8 day ahead inc hosp" "50" 2024-02-05 2024-02-13 0.7 9.30000000000001 "quantile" "hospital admissions only" +"8 day ahead inc hosp" "50" 2024-02-05 2024-02-13 0.75 10 "quantile" "hospital admissions only" +"8 day ahead inc hosp" "50" 2024-02-05 2024-02-13 0.8 10 "quantile" "hospital admissions only" +"8 day ahead inc hosp" "50" 2024-02-05 2024-02-13 0.85 11 "quantile" "hospital admissions only" +"8 day ahead inc hosp" "50" 2024-02-05 2024-02-13 0.9 12 "quantile" "hospital admissions only" +"8 day ahead inc hosp" "50" 2024-02-05 2024-02-13 0.95 13.05 "quantile" "hospital admissions only" +"8 day ahead inc hosp" "50" 2024-02-05 2024-02-13 0.975 16.1 "quantile" "hospital admissions only" +"8 day ahead inc hosp" "50" 2024-02-05 2024-02-13 0.99 18.02 "quantile" "hospital admissions only" +"9 day ahead inc hosp" "50" 2024-02-05 2024-02-14 0.01 1 "quantile" "hospital admissions only" +"9 day ahead inc hosp" "50" 2024-02-05 2024-02-14 0.025 1.475 "quantile" "hospital admissions only" +"9 day ahead inc hosp" "50" 2024-02-05 2024-02-14 0.05 2 "quantile" "hospital admissions only" +"9 day ahead inc hosp" "50" 2024-02-05 2024-02-14 0.1 3 "quantile" "hospital admissions only" +"9 day ahead inc hosp" "50" 2024-02-05 2024-02-14 0.15 4 "quantile" "hospital admissions only" +"9 day ahead inc hosp" "50" 2024-02-05 2024-02-14 0.2 4 "quantile" "hospital admissions only" +"9 day ahead inc hosp" "50" 2024-02-05 2024-02-14 0.25 5 "quantile" "hospital admissions only" +"9 day ahead inc hosp" "50" 2024-02-05 2024-02-14 0.3 5 "quantile" "hospital admissions only" +"9 day ahead inc hosp" "50" 2024-02-05 2024-02-14 0.35 5 "quantile" "hospital admissions only" +"9 day ahead inc hosp" "50" 2024-02-05 2024-02-14 0.4 6 "quantile" "hospital admissions only" +"9 day ahead inc hosp" "50" 2024-02-05 2024-02-14 0.45 6 "quantile" "hospital admissions only" +"9 day ahead inc hosp" "50" 2024-02-05 2024-02-14 0.5 7 "quantile" "hospital admissions only" +"9 day ahead inc hosp" "50" 2024-02-05 2024-02-14 0.55 7 "quantile" "hospital admissions only" +"9 day ahead inc hosp" "50" 2024-02-05 2024-02-14 0.6 7 "quantile" "hospital admissions only" +"9 day ahead inc hosp" "50" 2024-02-05 2024-02-14 0.65 8 "quantile" "hospital admissions only" +"9 day ahead inc hosp" "50" 2024-02-05 2024-02-14 0.7 8 "quantile" "hospital admissions only" +"9 day ahead inc hosp" "50" 2024-02-05 2024-02-14 0.75 9 "quantile" "hospital admissions only" +"9 day ahead inc hosp" "50" 2024-02-05 2024-02-14 0.8 9.2 "quantile" "hospital admissions only" +"9 day ahead inc hosp" "50" 2024-02-05 2024-02-14 0.85 10.15 "quantile" "hospital admissions only" +"9 day ahead inc hosp" "50" 2024-02-05 2024-02-14 0.9 11 "quantile" "hospital admissions only" +"9 day ahead inc hosp" "50" 2024-02-05 2024-02-14 0.95 12.05 "quantile" "hospital admissions only" +"9 day ahead inc hosp" "50" 2024-02-05 2024-02-14 0.975 13 "quantile" "hospital admissions only" +"9 day ahead inc hosp" "50" 2024-02-05 2024-02-14 0.99 15.04 "quantile" "hospital admissions only" +"10 day ahead inc hosp" "50" 2024-02-05 2024-02-15 0.01 1 "quantile" "hospital admissions only" +"10 day ahead inc hosp" "50" 2024-02-05 2024-02-15 0.025 1.475 "quantile" "hospital admissions only" +"10 day ahead inc hosp" "50" 2024-02-05 2024-02-15 0.05 2 "quantile" "hospital admissions only" +"10 day ahead inc hosp" "50" 2024-02-05 2024-02-15 0.1 3.9 "quantile" "hospital admissions only" +"10 day ahead inc hosp" "50" 2024-02-05 2024-02-15 0.15 4 "quantile" "hospital admissions only" +"10 day ahead inc hosp" "50" 2024-02-05 2024-02-15 0.2 4 "quantile" "hospital admissions only" +"10 day ahead inc hosp" "50" 2024-02-05 2024-02-15 0.25 5 "quantile" "hospital admissions only" +"10 day ahead inc hosp" "50" 2024-02-05 2024-02-15 0.3 5 "quantile" "hospital admissions only" +"10 day ahead inc hosp" "50" 2024-02-05 2024-02-15 0.35 5 "quantile" "hospital admissions only" +"10 day ahead inc hosp" "50" 2024-02-05 2024-02-15 0.4 5 "quantile" "hospital admissions only" +"10 day ahead inc hosp" "50" 2024-02-05 2024-02-15 0.45 6 "quantile" "hospital admissions only" +"10 day ahead inc hosp" "50" 2024-02-05 2024-02-15 0.5 6 "quantile" "hospital admissions only" +"10 day ahead inc hosp" "50" 2024-02-05 2024-02-15 0.55 6 "quantile" "hospital admissions only" +"10 day ahead inc hosp" "50" 2024-02-05 2024-02-15 0.6 6 "quantile" "hospital admissions only" +"10 day ahead inc hosp" "50" 2024-02-05 2024-02-15 0.65 7 "quantile" "hospital admissions only" +"10 day ahead inc hosp" "50" 2024-02-05 2024-02-15 0.7 7 "quantile" "hospital admissions only" +"10 day ahead inc hosp" "50" 2024-02-05 2024-02-15 0.75 8 "quantile" "hospital admissions only" +"10 day ahead inc hosp" "50" 2024-02-05 2024-02-15 0.8 8.2 "quantile" "hospital admissions only" +"10 day ahead inc hosp" "50" 2024-02-05 2024-02-15 0.85 9 "quantile" "hospital admissions only" +"10 day ahead inc hosp" "50" 2024-02-05 2024-02-15 0.9 10 "quantile" "hospital admissions only" +"10 day ahead inc hosp" "50" 2024-02-05 2024-02-15 0.95 11 "quantile" "hospital admissions only" +"10 day ahead inc hosp" "50" 2024-02-05 2024-02-15 0.975 12.525 "quantile" "hospital admissions only" +"10 day ahead inc hosp" "50" 2024-02-05 2024-02-15 0.99 13.01 "quantile" "hospital admissions only" +"11 day ahead inc hosp" "50" 2024-02-05 2024-02-16 0.01 2 "quantile" "hospital admissions only" +"11 day ahead inc hosp" "50" 2024-02-05 2024-02-16 0.025 3 "quantile" "hospital admissions only" +"11 day ahead inc hosp" "50" 2024-02-05 2024-02-16 0.05 3.95 "quantile" "hospital admissions only" +"11 day ahead inc hosp" "50" 2024-02-05 2024-02-16 0.1 5 "quantile" "hospital admissions only" +"11 day ahead inc hosp" "50" 2024-02-05 2024-02-16 0.15 5 "quantile" "hospital admissions only" +"11 day ahead inc hosp" "50" 2024-02-05 2024-02-16 0.2 6 "quantile" "hospital admissions only" +"11 day ahead inc hosp" "50" 2024-02-05 2024-02-16 0.25 6 "quantile" "hospital admissions only" +"11 day ahead inc hosp" "50" 2024-02-05 2024-02-16 0.3 6.7 "quantile" "hospital admissions only" +"11 day ahead inc hosp" "50" 2024-02-05 2024-02-16 0.35 7 "quantile" "hospital admissions only" +"11 day ahead inc hosp" "50" 2024-02-05 2024-02-16 0.4 8 "quantile" "hospital admissions only" +"11 day ahead inc hosp" "50" 2024-02-05 2024-02-16 0.45 8 "quantile" "hospital admissions only" +"11 day ahead inc hosp" "50" 2024-02-05 2024-02-16 0.5 8 "quantile" "hospital admissions only" +"11 day ahead inc hosp" "50" 2024-02-05 2024-02-16 0.55 9 "quantile" "hospital admissions only" +"11 day ahead inc hosp" "50" 2024-02-05 2024-02-16 0.6 10 "quantile" "hospital admissions only" +"11 day ahead inc hosp" "50" 2024-02-05 2024-02-16 0.65 10 "quantile" "hospital admissions only" +"11 day ahead inc hosp" "50" 2024-02-05 2024-02-16 0.7 11 "quantile" "hospital admissions only" +"11 day ahead inc hosp" "50" 2024-02-05 2024-02-16 0.75 11 "quantile" "hospital admissions only" +"11 day ahead inc hosp" "50" 2024-02-05 2024-02-16 0.8 12 "quantile" "hospital admissions only" +"11 day ahead inc hosp" "50" 2024-02-05 2024-02-16 0.85 13 "quantile" "hospital admissions only" +"11 day ahead inc hosp" "50" 2024-02-05 2024-02-16 0.9 13.1 "quantile" "hospital admissions only" +"11 day ahead inc hosp" "50" 2024-02-05 2024-02-16 0.95 14.05 "quantile" "hospital admissions only" +"11 day ahead inc hosp" "50" 2024-02-05 2024-02-16 0.975 16.05 "quantile" "hospital admissions only" +"11 day ahead inc hosp" "50" 2024-02-05 2024-02-16 0.99 18 "quantile" "hospital admissions only" +"12 day ahead inc hosp" "50" 2024-02-05 2024-02-17 0.01 2 "quantile" "hospital admissions only" +"12 day ahead inc hosp" "50" 2024-02-05 2024-02-17 0.025 2 "quantile" "hospital admissions only" +"12 day ahead inc hosp" "50" 2024-02-05 2024-02-17 0.05 2 "quantile" "hospital admissions only" +"12 day ahead inc hosp" "50" 2024-02-05 2024-02-17 0.1 3 "quantile" "hospital admissions only" +"12 day ahead inc hosp" "50" 2024-02-05 2024-02-17 0.15 3 "quantile" "hospital admissions only" +"12 day ahead inc hosp" "50" 2024-02-05 2024-02-17 0.2 4 "quantile" "hospital admissions only" +"12 day ahead inc hosp" "50" 2024-02-05 2024-02-17 0.25 4 "quantile" "hospital admissions only" +"12 day ahead inc hosp" "50" 2024-02-05 2024-02-17 0.3 5 "quantile" "hospital admissions only" +"12 day ahead inc hosp" "50" 2024-02-05 2024-02-17 0.35 5 "quantile" "hospital admissions only" +"12 day ahead inc hosp" "50" 2024-02-05 2024-02-17 0.4 5.6 "quantile" "hospital admissions only" +"12 day ahead inc hosp" "50" 2024-02-05 2024-02-17 0.45 6 "quantile" "hospital admissions only" +"12 day ahead inc hosp" "50" 2024-02-05 2024-02-17 0.5 6 "quantile" "hospital admissions only" +"12 day ahead inc hosp" "50" 2024-02-05 2024-02-17 0.55 6.45 "quantile" "hospital admissions only" +"12 day ahead inc hosp" "50" 2024-02-05 2024-02-17 0.6 7 "quantile" "hospital admissions only" +"12 day ahead inc hosp" "50" 2024-02-05 2024-02-17 0.65 8 "quantile" "hospital admissions only" +"12 day ahead inc hosp" "50" 2024-02-05 2024-02-17 0.7 8 "quantile" "hospital admissions only" +"12 day ahead inc hosp" "50" 2024-02-05 2024-02-17 0.75 9 "quantile" "hospital admissions only" +"12 day ahead inc hosp" "50" 2024-02-05 2024-02-17 0.8 9 "quantile" "hospital admissions only" +"12 day ahead inc hosp" "50" 2024-02-05 2024-02-17 0.85 9 "quantile" "hospital admissions only" +"12 day ahead inc hosp" "50" 2024-02-05 2024-02-17 0.9 10 "quantile" "hospital admissions only" +"12 day ahead inc hosp" "50" 2024-02-05 2024-02-17 0.95 12 "quantile" "hospital admissions only" +"12 day ahead inc hosp" "50" 2024-02-05 2024-02-17 0.975 12 "quantile" "hospital admissions only" +"12 day ahead inc hosp" "50" 2024-02-05 2024-02-17 0.99 12.02 "quantile" "hospital admissions only" +"13 day ahead inc hosp" "50" 2024-02-05 2024-02-18 0.01 1.99 "quantile" "hospital admissions only" +"13 day ahead inc hosp" "50" 2024-02-05 2024-02-18 0.025 2.475 "quantile" "hospital admissions only" +"13 day ahead inc hosp" "50" 2024-02-05 2024-02-18 0.05 3 "quantile" "hospital admissions only" +"13 day ahead inc hosp" "50" 2024-02-05 2024-02-18 0.1 3 "quantile" "hospital admissions only" +"13 day ahead inc hosp" "50" 2024-02-05 2024-02-18 0.15 4 "quantile" "hospital admissions only" +"13 day ahead inc hosp" "50" 2024-02-05 2024-02-18 0.2 5 "quantile" "hospital admissions only" +"13 day ahead inc hosp" "50" 2024-02-05 2024-02-18 0.25 5 "quantile" "hospital admissions only" +"13 day ahead inc hosp" "50" 2024-02-05 2024-02-18 0.3 5 "quantile" "hospital admissions only" +"13 day ahead inc hosp" "50" 2024-02-05 2024-02-18 0.35 6 "quantile" "hospital admissions only" +"13 day ahead inc hosp" "50" 2024-02-05 2024-02-18 0.4 6 "quantile" "hospital admissions only" +"13 day ahead inc hosp" "50" 2024-02-05 2024-02-18 0.45 6 "quantile" "hospital admissions only" +"13 day ahead inc hosp" "50" 2024-02-05 2024-02-18 0.5 7 "quantile" "hospital admissions only" +"13 day ahead inc hosp" "50" 2024-02-05 2024-02-18 0.55 7 "quantile" "hospital admissions only" +"13 day ahead inc hosp" "50" 2024-02-05 2024-02-18 0.6 7.40000000000001 "quantile" "hospital admissions only" +"13 day ahead inc hosp" "50" 2024-02-05 2024-02-18 0.65 8 "quantile" "hospital admissions only" +"13 day ahead inc hosp" "50" 2024-02-05 2024-02-18 0.7 8 "quantile" "hospital admissions only" +"13 day ahead inc hosp" "50" 2024-02-05 2024-02-18 0.75 9 "quantile" "hospital admissions only" +"13 day ahead inc hosp" "50" 2024-02-05 2024-02-18 0.8 10 "quantile" "hospital admissions only" +"13 day ahead inc hosp" "50" 2024-02-05 2024-02-18 0.85 10 "quantile" "hospital admissions only" +"13 day ahead inc hosp" "50" 2024-02-05 2024-02-18 0.9 11.1 "quantile" "hospital admissions only" +"13 day ahead inc hosp" "50" 2024-02-05 2024-02-18 0.95 12 "quantile" "hospital admissions only" +"13 day ahead inc hosp" "50" 2024-02-05 2024-02-18 0.975 12 "quantile" "hospital admissions only" +"13 day ahead inc hosp" "50" 2024-02-05 2024-02-18 0.99 13.03 "quantile" "hospital admissions only" +"14 day ahead inc hosp" "50" 2024-02-05 2024-02-19 0.01 0 "quantile" "hospital admissions only" +"14 day ahead inc hosp" "50" 2024-02-05 2024-02-19 0.025 1 "quantile" "hospital admissions only" +"14 day ahead inc hosp" "50" 2024-02-05 2024-02-19 0.05 1 "quantile" "hospital admissions only" +"14 day ahead inc hosp" "50" 2024-02-05 2024-02-19 0.1 2 "quantile" "hospital admissions only" +"14 day ahead inc hosp" "50" 2024-02-05 2024-02-19 0.15 3 "quantile" "hospital admissions only" +"14 day ahead inc hosp" "50" 2024-02-05 2024-02-19 0.2 4 "quantile" "hospital admissions only" +"14 day ahead inc hosp" "50" 2024-02-05 2024-02-19 0.25 4 "quantile" "hospital admissions only" +"14 day ahead inc hosp" "50" 2024-02-05 2024-02-19 0.3 4 "quantile" "hospital admissions only" +"14 day ahead inc hosp" "50" 2024-02-05 2024-02-19 0.35 5 "quantile" "hospital admissions only" +"14 day ahead inc hosp" "50" 2024-02-05 2024-02-19 0.4 5 "quantile" "hospital admissions only" +"14 day ahead inc hosp" "50" 2024-02-05 2024-02-19 0.45 5 "quantile" "hospital admissions only" +"14 day ahead inc hosp" "50" 2024-02-05 2024-02-19 0.5 6 "quantile" "hospital admissions only" +"14 day ahead inc hosp" "50" 2024-02-05 2024-02-19 0.55 6 "quantile" "hospital admissions only" +"14 day ahead inc hosp" "50" 2024-02-05 2024-02-19 0.6 6 "quantile" "hospital admissions only" +"14 day ahead inc hosp" "50" 2024-02-05 2024-02-19 0.65 7 "quantile" "hospital admissions only" +"14 day ahead inc hosp" "50" 2024-02-05 2024-02-19 0.7 7 "quantile" "hospital admissions only" +"14 day ahead inc hosp" "50" 2024-02-05 2024-02-19 0.75 7 "quantile" "hospital admissions only" +"14 day ahead inc hosp" "50" 2024-02-05 2024-02-19 0.8 9 "quantile" "hospital admissions only" +"14 day ahead inc hosp" "50" 2024-02-05 2024-02-19 0.85 9 "quantile" "hospital admissions only" +"14 day ahead inc hosp" "50" 2024-02-05 2024-02-19 0.9 10 "quantile" "hospital admissions only" +"14 day ahead inc hosp" "50" 2024-02-05 2024-02-19 0.95 12 "quantile" "hospital admissions only" +"14 day ahead inc hosp" "50" 2024-02-05 2024-02-19 0.975 14 "quantile" "hospital admissions only" +"14 day ahead inc hosp" "50" 2024-02-05 2024-02-19 0.99 15.01 "quantile" "hospital admissions only" +"15 day ahead inc hosp" "50" 2024-02-05 2024-02-20 0.01 1 "quantile" "hospital admissions only" +"15 day ahead inc hosp" "50" 2024-02-05 2024-02-20 0.025 2.475 "quantile" "hospital admissions only" +"15 day ahead inc hosp" "50" 2024-02-05 2024-02-20 0.05 3 "quantile" "hospital admissions only" +"15 day ahead inc hosp" "50" 2024-02-05 2024-02-20 0.1 4 "quantile" "hospital admissions only" +"15 day ahead inc hosp" "50" 2024-02-05 2024-02-20 0.15 4 "quantile" "hospital admissions only" +"15 day ahead inc hosp" "50" 2024-02-05 2024-02-20 0.2 5 "quantile" "hospital admissions only" +"15 day ahead inc hosp" "50" 2024-02-05 2024-02-20 0.25 5 "quantile" "hospital admissions only" +"15 day ahead inc hosp" "50" 2024-02-05 2024-02-20 0.3 5 "quantile" "hospital admissions only" +"15 day ahead inc hosp" "50" 2024-02-05 2024-02-20 0.35 6 "quantile" "hospital admissions only" +"15 day ahead inc hosp" "50" 2024-02-05 2024-02-20 0.4 6 "quantile" "hospital admissions only" +"15 day ahead inc hosp" "50" 2024-02-05 2024-02-20 0.45 7 "quantile" "hospital admissions only" +"15 day ahead inc hosp" "50" 2024-02-05 2024-02-20 0.5 7 "quantile" "hospital admissions only" +"15 day ahead inc hosp" "50" 2024-02-05 2024-02-20 0.55 8 "quantile" "hospital admissions only" +"15 day ahead inc hosp" "50" 2024-02-05 2024-02-20 0.6 8 "quantile" "hospital admissions only" +"15 day ahead inc hosp" "50" 2024-02-05 2024-02-20 0.65 8 "quantile" "hospital admissions only" +"15 day ahead inc hosp" "50" 2024-02-05 2024-02-20 0.7 9 "quantile" "hospital admissions only" +"15 day ahead inc hosp" "50" 2024-02-05 2024-02-20 0.75 9 "quantile" "hospital admissions only" +"15 day ahead inc hosp" "50" 2024-02-05 2024-02-20 0.8 10 "quantile" "hospital admissions only" +"15 day ahead inc hosp" "50" 2024-02-05 2024-02-20 0.85 10 "quantile" "hospital admissions only" +"15 day ahead inc hosp" "50" 2024-02-05 2024-02-20 0.9 10.1 "quantile" "hospital admissions only" +"15 day ahead inc hosp" "50" 2024-02-05 2024-02-20 0.95 12 "quantile" "hospital admissions only" +"15 day ahead inc hosp" "50" 2024-02-05 2024-02-20 0.975 12.525 "quantile" "hospital admissions only" +"15 day ahead inc hosp" "50" 2024-02-05 2024-02-20 0.99 13.02 "quantile" "hospital admissions only" +"16 day ahead inc hosp" "50" 2024-02-05 2024-02-21 0.01 2 "quantile" "hospital admissions only" +"16 day ahead inc hosp" "50" 2024-02-05 2024-02-21 0.025 2 "quantile" "hospital admissions only" +"16 day ahead inc hosp" "50" 2024-02-05 2024-02-21 0.05 2 "quantile" "hospital admissions only" +"16 day ahead inc hosp" "50" 2024-02-05 2024-02-21 0.1 3 "quantile" "hospital admissions only" +"16 day ahead inc hosp" "50" 2024-02-05 2024-02-21 0.15 3 "quantile" "hospital admissions only" +"16 day ahead inc hosp" "50" 2024-02-05 2024-02-21 0.2 4 "quantile" "hospital admissions only" +"16 day ahead inc hosp" "50" 2024-02-05 2024-02-21 0.25 4 "quantile" "hospital admissions only" +"16 day ahead inc hosp" "50" 2024-02-05 2024-02-21 0.3 4 "quantile" "hospital admissions only" +"16 day ahead inc hosp" "50" 2024-02-05 2024-02-21 0.35 5 "quantile" "hospital admissions only" +"16 day ahead inc hosp" "50" 2024-02-05 2024-02-21 0.4 5 "quantile" "hospital admissions only" +"16 day ahead inc hosp" "50" 2024-02-05 2024-02-21 0.45 5 "quantile" "hospital admissions only" +"16 day ahead inc hosp" "50" 2024-02-05 2024-02-21 0.5 6 "quantile" "hospital admissions only" +"16 day ahead inc hosp" "50" 2024-02-05 2024-02-21 0.55 6 "quantile" "hospital admissions only" +"16 day ahead inc hosp" "50" 2024-02-05 2024-02-21 0.6 7 "quantile" "hospital admissions only" +"16 day ahead inc hosp" "50" 2024-02-05 2024-02-21 0.65 7 "quantile" "hospital admissions only" +"16 day ahead inc hosp" "50" 2024-02-05 2024-02-21 0.7 8 "quantile" "hospital admissions only" +"16 day ahead inc hosp" "50" 2024-02-05 2024-02-21 0.75 9 "quantile" "hospital admissions only" +"16 day ahead inc hosp" "50" 2024-02-05 2024-02-21 0.8 9 "quantile" "hospital admissions only" +"16 day ahead inc hosp" "50" 2024-02-05 2024-02-21 0.85 10 "quantile" "hospital admissions only" +"16 day ahead inc hosp" "50" 2024-02-05 2024-02-21 0.9 11 "quantile" "hospital admissions only" +"16 day ahead inc hosp" "50" 2024-02-05 2024-02-21 0.95 12.05 "quantile" "hospital admissions only" +"16 day ahead inc hosp" "50" 2024-02-05 2024-02-21 0.975 13 "quantile" "hospital admissions only" +"16 day ahead inc hosp" "50" 2024-02-05 2024-02-21 0.99 14.01 "quantile" "hospital admissions only" +"17 day ahead inc hosp" "50" 2024-02-05 2024-02-22 0.01 0.99 "quantile" "hospital admissions only" +"17 day ahead inc hosp" "50" 2024-02-05 2024-02-22 0.025 1.475 "quantile" "hospital admissions only" +"17 day ahead inc hosp" "50" 2024-02-05 2024-02-22 0.05 2 "quantile" "hospital admissions only" +"17 day ahead inc hosp" "50" 2024-02-05 2024-02-22 0.1 2.9 "quantile" "hospital admissions only" +"17 day ahead inc hosp" "50" 2024-02-05 2024-02-22 0.15 3 "quantile" "hospital admissions only" +"17 day ahead inc hosp" "50" 2024-02-05 2024-02-22 0.2 4 "quantile" "hospital admissions only" +"17 day ahead inc hosp" "50" 2024-02-05 2024-02-22 0.25 4 "quantile" "hospital admissions only" +"17 day ahead inc hosp" "50" 2024-02-05 2024-02-22 0.3 5 "quantile" "hospital admissions only" +"17 day ahead inc hosp" "50" 2024-02-05 2024-02-22 0.35 5 "quantile" "hospital admissions only" +"17 day ahead inc hosp" "50" 2024-02-05 2024-02-22 0.4 5 "quantile" "hospital admissions only" +"17 day ahead inc hosp" "50" 2024-02-05 2024-02-22 0.45 6 "quantile" "hospital admissions only" +"17 day ahead inc hosp" "50" 2024-02-05 2024-02-22 0.5 6 "quantile" "hospital admissions only" +"17 day ahead inc hosp" "50" 2024-02-05 2024-02-22 0.55 6 "quantile" "hospital admissions only" +"17 day ahead inc hosp" "50" 2024-02-05 2024-02-22 0.6 7 "quantile" "hospital admissions only" +"17 day ahead inc hosp" "50" 2024-02-05 2024-02-22 0.65 7 "quantile" "hospital admissions only" +"17 day ahead inc hosp" "50" 2024-02-05 2024-02-22 0.7 8 "quantile" "hospital admissions only" +"17 day ahead inc hosp" "50" 2024-02-05 2024-02-22 0.75 8 "quantile" "hospital admissions only" +"17 day ahead inc hosp" "50" 2024-02-05 2024-02-22 0.8 9 "quantile" "hospital admissions only" +"17 day ahead inc hosp" "50" 2024-02-05 2024-02-22 0.85 9.15000000000001 "quantile" "hospital admissions only" +"17 day ahead inc hosp" "50" 2024-02-05 2024-02-22 0.9 10 "quantile" "hospital admissions only" +"17 day ahead inc hosp" "50" 2024-02-05 2024-02-22 0.95 11.05 "quantile" "hospital admissions only" +"17 day ahead inc hosp" "50" 2024-02-05 2024-02-22 0.975 12 "quantile" "hospital admissions only" +"17 day ahead inc hosp" "50" 2024-02-05 2024-02-22 0.99 12.09 "quantile" "hospital admissions only" +"18 day ahead inc hosp" "50" 2024-02-05 2024-02-23 0.01 2.99 "quantile" "hospital admissions only" +"18 day ahead inc hosp" "50" 2024-02-05 2024-02-23 0.025 3.475 "quantile" "hospital admissions only" +"18 day ahead inc hosp" "50" 2024-02-05 2024-02-23 0.05 4 "quantile" "hospital admissions only" +"18 day ahead inc hosp" "50" 2024-02-05 2024-02-23 0.1 5 "quantile" "hospital admissions only" +"18 day ahead inc hosp" "50" 2024-02-05 2024-02-23 0.15 5.85 "quantile" "hospital admissions only" +"18 day ahead inc hosp" "50" 2024-02-05 2024-02-23 0.2 6 "quantile" "hospital admissions only" +"18 day ahead inc hosp" "50" 2024-02-05 2024-02-23 0.25 6.75 "quantile" "hospital admissions only" +"18 day ahead inc hosp" "50" 2024-02-05 2024-02-23 0.3 7 "quantile" "hospital admissions only" +"18 day ahead inc hosp" "50" 2024-02-05 2024-02-23 0.35 7 "quantile" "hospital admissions only" +"18 day ahead inc hosp" "50" 2024-02-05 2024-02-23 0.4 8 "quantile" "hospital admissions only" +"18 day ahead inc hosp" "50" 2024-02-05 2024-02-23 0.45 8 "quantile" "hospital admissions only" +"18 day ahead inc hosp" "50" 2024-02-05 2024-02-23 0.5 9 "quantile" "hospital admissions only" +"18 day ahead inc hosp" "50" 2024-02-05 2024-02-23 0.55 9 "quantile" "hospital admissions only" +"18 day ahead inc hosp" "50" 2024-02-05 2024-02-23 0.6 9 "quantile" "hospital admissions only" +"18 day ahead inc hosp" "50" 2024-02-05 2024-02-23 0.65 10 "quantile" "hospital admissions only" +"18 day ahead inc hosp" "50" 2024-02-05 2024-02-23 0.7 10 "quantile" "hospital admissions only" +"18 day ahead inc hosp" "50" 2024-02-05 2024-02-23 0.75 11 "quantile" "hospital admissions only" +"18 day ahead inc hosp" "50" 2024-02-05 2024-02-23 0.8 11.2 "quantile" "hospital admissions only" +"18 day ahead inc hosp" "50" 2024-02-05 2024-02-23 0.85 12 "quantile" "hospital admissions only" +"18 day ahead inc hosp" "50" 2024-02-05 2024-02-23 0.9 13 "quantile" "hospital admissions only" +"18 day ahead inc hosp" "50" 2024-02-05 2024-02-23 0.95 14.05 "quantile" "hospital admissions only" +"18 day ahead inc hosp" "50" 2024-02-05 2024-02-23 0.975 16 "quantile" "hospital admissions only" +"18 day ahead inc hosp" "50" 2024-02-05 2024-02-23 0.99 17.05 "quantile" "hospital admissions only" +"19 day ahead inc hosp" "50" 2024-02-05 2024-02-24 0.01 0.99 "quantile" "hospital admissions only" +"19 day ahead inc hosp" "50" 2024-02-05 2024-02-24 0.025 2 "quantile" "hospital admissions only" +"19 day ahead inc hosp" "50" 2024-02-05 2024-02-24 0.05 2 "quantile" "hospital admissions only" +"19 day ahead inc hosp" "50" 2024-02-05 2024-02-24 0.1 3 "quantile" "hospital admissions only" +"19 day ahead inc hosp" "50" 2024-02-05 2024-02-24 0.15 3.85 "quantile" "hospital admissions only" +"19 day ahead inc hosp" "50" 2024-02-05 2024-02-24 0.2 4 "quantile" "hospital admissions only" +"19 day ahead inc hosp" "50" 2024-02-05 2024-02-24 0.25 4.75 "quantile" "hospital admissions only" +"19 day ahead inc hosp" "50" 2024-02-05 2024-02-24 0.3 5 "quantile" "hospital admissions only" +"19 day ahead inc hosp" "50" 2024-02-05 2024-02-24 0.35 5 "quantile" "hospital admissions only" +"19 day ahead inc hosp" "50" 2024-02-05 2024-02-24 0.4 6 "quantile" "hospital admissions only" +"19 day ahead inc hosp" "50" 2024-02-05 2024-02-24 0.45 6 "quantile" "hospital admissions only" +"19 day ahead inc hosp" "50" 2024-02-05 2024-02-24 0.5 7 "quantile" "hospital admissions only" +"19 day ahead inc hosp" "50" 2024-02-05 2024-02-24 0.55 7 "quantile" "hospital admissions only" +"19 day ahead inc hosp" "50" 2024-02-05 2024-02-24 0.6 8 "quantile" "hospital admissions only" +"19 day ahead inc hosp" "50" 2024-02-05 2024-02-24 0.65 8 "quantile" "hospital admissions only" +"19 day ahead inc hosp" "50" 2024-02-05 2024-02-24 0.7 8 "quantile" "hospital admissions only" +"19 day ahead inc hosp" "50" 2024-02-05 2024-02-24 0.75 9 "quantile" "hospital admissions only" +"19 day ahead inc hosp" "50" 2024-02-05 2024-02-24 0.8 9 "quantile" "hospital admissions only" +"19 day ahead inc hosp" "50" 2024-02-05 2024-02-24 0.85 10 "quantile" "hospital admissions only" +"19 day ahead inc hosp" "50" 2024-02-05 2024-02-24 0.9 10 "quantile" "hospital admissions only" +"19 day ahead inc hosp" "50" 2024-02-05 2024-02-24 0.95 11.05 "quantile" "hospital admissions only" +"19 day ahead inc hosp" "50" 2024-02-05 2024-02-24 0.975 13.05 "quantile" "hospital admissions only" +"19 day ahead inc hosp" "50" 2024-02-05 2024-02-24 0.99 15.02 "quantile" "hospital admissions only" +"20 day ahead inc hosp" "50" 2024-02-05 2024-02-25 0.01 1 "quantile" "hospital admissions only" +"20 day ahead inc hosp" "50" 2024-02-05 2024-02-25 0.025 2 "quantile" "hospital admissions only" +"20 day ahead inc hosp" "50" 2024-02-05 2024-02-25 0.05 2.95 "quantile" "hospital admissions only" +"20 day ahead inc hosp" "50" 2024-02-05 2024-02-25 0.1 3 "quantile" "hospital admissions only" +"20 day ahead inc hosp" "50" 2024-02-05 2024-02-25 0.15 3 "quantile" "hospital admissions only" +"20 day ahead inc hosp" "50" 2024-02-05 2024-02-25 0.2 4 "quantile" "hospital admissions only" +"20 day ahead inc hosp" "50" 2024-02-05 2024-02-25 0.25 5 "quantile" "hospital admissions only" +"20 day ahead inc hosp" "50" 2024-02-05 2024-02-25 0.3 5 "quantile" "hospital admissions only" +"20 day ahead inc hosp" "50" 2024-02-05 2024-02-25 0.35 5.65000000000001 "quantile" "hospital admissions only" +"20 day ahead inc hosp" "50" 2024-02-05 2024-02-25 0.4 6 "quantile" "hospital admissions only" +"20 day ahead inc hosp" "50" 2024-02-05 2024-02-25 0.45 6 "quantile" "hospital admissions only" +"20 day ahead inc hosp" "50" 2024-02-05 2024-02-25 0.5 7 "quantile" "hospital admissions only" +"20 day ahead inc hosp" "50" 2024-02-05 2024-02-25 0.55 7 "quantile" "hospital admissions only" +"20 day ahead inc hosp" "50" 2024-02-05 2024-02-25 0.6 7 "quantile" "hospital admissions only" +"20 day ahead inc hosp" "50" 2024-02-05 2024-02-25 0.65 8 "quantile" "hospital admissions only" +"20 day ahead inc hosp" "50" 2024-02-05 2024-02-25 0.7 8 "quantile" "hospital admissions only" +"20 day ahead inc hosp" "50" 2024-02-05 2024-02-25 0.75 9 "quantile" "hospital admissions only" +"20 day ahead inc hosp" "50" 2024-02-05 2024-02-25 0.8 10 "quantile" "hospital admissions only" +"20 day ahead inc hosp" "50" 2024-02-05 2024-02-25 0.85 10 "quantile" "hospital admissions only" +"20 day ahead inc hosp" "50" 2024-02-05 2024-02-25 0.9 11 "quantile" "hospital admissions only" +"20 day ahead inc hosp" "50" 2024-02-05 2024-02-25 0.95 13 "quantile" "hospital admissions only" +"20 day ahead inc hosp" "50" 2024-02-05 2024-02-25 0.975 14 "quantile" "hospital admissions only" +"20 day ahead inc hosp" "50" 2024-02-05 2024-02-25 0.99 14.05 "quantile" "hospital admissions only" +"21 day ahead inc hosp" "50" 2024-02-05 2024-02-26 0.01 0.99 "quantile" "hospital admissions only" +"21 day ahead inc hosp" "50" 2024-02-05 2024-02-26 0.025 1.475 "quantile" "hospital admissions only" +"21 day ahead inc hosp" "50" 2024-02-05 2024-02-26 0.05 2.95 "quantile" "hospital admissions only" +"21 day ahead inc hosp" "50" 2024-02-05 2024-02-26 0.1 3 "quantile" "hospital admissions only" +"21 day ahead inc hosp" "50" 2024-02-05 2024-02-26 0.15 4 "quantile" "hospital admissions only" +"21 day ahead inc hosp" "50" 2024-02-05 2024-02-26 0.2 4 "quantile" "hospital admissions only" +"21 day ahead inc hosp" "50" 2024-02-05 2024-02-26 0.25 4 "quantile" "hospital admissions only" +"21 day ahead inc hosp" "50" 2024-02-05 2024-02-26 0.3 5 "quantile" "hospital admissions only" +"21 day ahead inc hosp" "50" 2024-02-05 2024-02-26 0.35 5 "quantile" "hospital admissions only" +"21 day ahead inc hosp" "50" 2024-02-05 2024-02-26 0.4 5 "quantile" "hospital admissions only" +"21 day ahead inc hosp" "50" 2024-02-05 2024-02-26 0.45 5.55 "quantile" "hospital admissions only" +"21 day ahead inc hosp" "50" 2024-02-05 2024-02-26 0.5 6 "quantile" "hospital admissions only" +"21 day ahead inc hosp" "50" 2024-02-05 2024-02-26 0.55 6 "quantile" "hospital admissions only" +"21 day ahead inc hosp" "50" 2024-02-05 2024-02-26 0.6 7 "quantile" "hospital admissions only" +"21 day ahead inc hosp" "50" 2024-02-05 2024-02-26 0.65 7 "quantile" "hospital admissions only" +"21 day ahead inc hosp" "50" 2024-02-05 2024-02-26 0.7 7 "quantile" "hospital admissions only" +"21 day ahead inc hosp" "50" 2024-02-05 2024-02-26 0.75 8 "quantile" "hospital admissions only" +"21 day ahead inc hosp" "50" 2024-02-05 2024-02-26 0.8 8 "quantile" "hospital admissions only" +"21 day ahead inc hosp" "50" 2024-02-05 2024-02-26 0.85 8 "quantile" "hospital admissions only" +"21 day ahead inc hosp" "50" 2024-02-05 2024-02-26 0.9 9 "quantile" "hospital admissions only" +"21 day ahead inc hosp" "50" 2024-02-05 2024-02-26 0.95 10.05 "quantile" "hospital admissions only" +"21 day ahead inc hosp" "50" 2024-02-05 2024-02-26 0.975 12 "quantile" "hospital admissions only" +"21 day ahead inc hosp" "50" 2024-02-05 2024-02-26 0.99 12.05 "quantile" "hospital admissions only" +"22 day ahead inc hosp" "50" 2024-02-05 2024-02-27 0.01 1.99 "quantile" "hospital admissions only" +"22 day ahead inc hosp" "50" 2024-02-05 2024-02-27 0.025 3 "quantile" "hospital admissions only" +"22 day ahead inc hosp" "50" 2024-02-05 2024-02-27 0.05 3.95 "quantile" "hospital admissions only" +"22 day ahead inc hosp" "50" 2024-02-05 2024-02-27 0.1 4 "quantile" "hospital admissions only" +"22 day ahead inc hosp" "50" 2024-02-05 2024-02-27 0.15 4 "quantile" "hospital admissions only" +"22 day ahead inc hosp" "50" 2024-02-05 2024-02-27 0.2 5 "quantile" "hospital admissions only" +"22 day ahead inc hosp" "50" 2024-02-05 2024-02-27 0.25 5 "quantile" "hospital admissions only" +"22 day ahead inc hosp" "50" 2024-02-05 2024-02-27 0.3 6 "quantile" "hospital admissions only" +"22 day ahead inc hosp" "50" 2024-02-05 2024-02-27 0.35 6 "quantile" "hospital admissions only" +"22 day ahead inc hosp" "50" 2024-02-05 2024-02-27 0.4 7 "quantile" "hospital admissions only" +"22 day ahead inc hosp" "50" 2024-02-05 2024-02-27 0.45 7 "quantile" "hospital admissions only" +"22 day ahead inc hosp" "50" 2024-02-05 2024-02-27 0.5 7 "quantile" "hospital admissions only" +"22 day ahead inc hosp" "50" 2024-02-05 2024-02-27 0.55 8 "quantile" "hospital admissions only" +"22 day ahead inc hosp" "50" 2024-02-05 2024-02-27 0.6 8 "quantile" "hospital admissions only" +"22 day ahead inc hosp" "50" 2024-02-05 2024-02-27 0.65 9 "quantile" "hospital admissions only" +"22 day ahead inc hosp" "50" 2024-02-05 2024-02-27 0.7 9 "quantile" "hospital admissions only" +"22 day ahead inc hosp" "50" 2024-02-05 2024-02-27 0.75 10 "quantile" "hospital admissions only" +"22 day ahead inc hosp" "50" 2024-02-05 2024-02-27 0.8 11 "quantile" "hospital admissions only" +"22 day ahead inc hosp" "50" 2024-02-05 2024-02-27 0.85 12 "quantile" "hospital admissions only" +"22 day ahead inc hosp" "50" 2024-02-05 2024-02-27 0.9 12.1 "quantile" "hospital admissions only" +"22 day ahead inc hosp" "50" 2024-02-05 2024-02-27 0.95 13 "quantile" "hospital admissions only" +"22 day ahead inc hosp" "50" 2024-02-05 2024-02-27 0.975 14 "quantile" "hospital admissions only" +"22 day ahead inc hosp" "50" 2024-02-05 2024-02-27 0.99 14.03 "quantile" "hospital admissions only" +"23 day ahead inc hosp" "50" 2024-02-05 2024-02-28 0.01 1 "quantile" "hospital admissions only" +"23 day ahead inc hosp" "50" 2024-02-05 2024-02-28 0.025 1.475 "quantile" "hospital admissions only" +"23 day ahead inc hosp" "50" 2024-02-05 2024-02-28 0.05 2 "quantile" "hospital admissions only" +"23 day ahead inc hosp" "50" 2024-02-05 2024-02-28 0.1 3 "quantile" "hospital admissions only" +"23 day ahead inc hosp" "50" 2024-02-05 2024-02-28 0.15 3 "quantile" "hospital admissions only" +"23 day ahead inc hosp" "50" 2024-02-05 2024-02-28 0.2 4 "quantile" "hospital admissions only" +"23 day ahead inc hosp" "50" 2024-02-05 2024-02-28 0.25 4 "quantile" "hospital admissions only" +"23 day ahead inc hosp" "50" 2024-02-05 2024-02-28 0.3 5 "quantile" "hospital admissions only" +"23 day ahead inc hosp" "50" 2024-02-05 2024-02-28 0.35 5 "quantile" "hospital admissions only" +"23 day ahead inc hosp" "50" 2024-02-05 2024-02-28 0.4 5.6 "quantile" "hospital admissions only" +"23 day ahead inc hosp" "50" 2024-02-05 2024-02-28 0.45 6 "quantile" "hospital admissions only" +"23 day ahead inc hosp" "50" 2024-02-05 2024-02-28 0.5 6.5 "quantile" "hospital admissions only" +"23 day ahead inc hosp" "50" 2024-02-05 2024-02-28 0.55 7 "quantile" "hospital admissions only" +"23 day ahead inc hosp" "50" 2024-02-05 2024-02-28 0.6 7 "quantile" "hospital admissions only" +"23 day ahead inc hosp" "50" 2024-02-05 2024-02-28 0.65 8 "quantile" "hospital admissions only" +"23 day ahead inc hosp" "50" 2024-02-05 2024-02-28 0.7 8 "quantile" "hospital admissions only" +"23 day ahead inc hosp" "50" 2024-02-05 2024-02-28 0.75 8 "quantile" "hospital admissions only" +"23 day ahead inc hosp" "50" 2024-02-05 2024-02-28 0.8 9 "quantile" "hospital admissions only" +"23 day ahead inc hosp" "50" 2024-02-05 2024-02-28 0.85 9 "quantile" "hospital admissions only" +"23 day ahead inc hosp" "50" 2024-02-05 2024-02-28 0.9 10 "quantile" "hospital admissions only" +"23 day ahead inc hosp" "50" 2024-02-05 2024-02-28 0.95 12 "quantile" "hospital admissions only" +"23 day ahead inc hosp" "50" 2024-02-05 2024-02-28 0.975 12 "quantile" "hospital admissions only" +"23 day ahead inc hosp" "50" 2024-02-05 2024-02-28 0.99 12.02 "quantile" "hospital admissions only" +"24 day ahead inc hosp" "50" 2024-02-05 2024-02-29 0.01 1 "quantile" "hospital admissions only" +"24 day ahead inc hosp" "50" 2024-02-05 2024-02-29 0.025 1.475 "quantile" "hospital admissions only" +"24 day ahead inc hosp" "50" 2024-02-05 2024-02-29 0.05 2 "quantile" "hospital admissions only" +"24 day ahead inc hosp" "50" 2024-02-05 2024-02-29 0.1 3 "quantile" "hospital admissions only" +"24 day ahead inc hosp" "50" 2024-02-05 2024-02-29 0.15 3 "quantile" "hospital admissions only" +"24 day ahead inc hosp" "50" 2024-02-05 2024-02-29 0.2 4 "quantile" "hospital admissions only" +"24 day ahead inc hosp" "50" 2024-02-05 2024-02-29 0.25 5 "quantile" "hospital admissions only" +"24 day ahead inc hosp" "50" 2024-02-05 2024-02-29 0.3 5 "quantile" "hospital admissions only" +"24 day ahead inc hosp" "50" 2024-02-05 2024-02-29 0.35 5 "quantile" "hospital admissions only" +"24 day ahead inc hosp" "50" 2024-02-05 2024-02-29 0.4 6 "quantile" "hospital admissions only" +"24 day ahead inc hosp" "50" 2024-02-05 2024-02-29 0.45 6 "quantile" "hospital admissions only" +"24 day ahead inc hosp" "50" 2024-02-05 2024-02-29 0.5 6 "quantile" "hospital admissions only" +"24 day ahead inc hosp" "50" 2024-02-05 2024-02-29 0.55 7 "quantile" "hospital admissions only" +"24 day ahead inc hosp" "50" 2024-02-05 2024-02-29 0.6 7 "quantile" "hospital admissions only" +"24 day ahead inc hosp" "50" 2024-02-05 2024-02-29 0.65 7 "quantile" "hospital admissions only" +"24 day ahead inc hosp" "50" 2024-02-05 2024-02-29 0.7 8 "quantile" "hospital admissions only" +"24 day ahead inc hosp" "50" 2024-02-05 2024-02-29 0.75 8 "quantile" "hospital admissions only" +"24 day ahead inc hosp" "50" 2024-02-05 2024-02-29 0.8 9 "quantile" "hospital admissions only" +"24 day ahead inc hosp" "50" 2024-02-05 2024-02-29 0.85 9 "quantile" "hospital admissions only" +"24 day ahead inc hosp" "50" 2024-02-05 2024-02-29 0.9 10 "quantile" "hospital admissions only" +"24 day ahead inc hosp" "50" 2024-02-05 2024-02-29 0.95 11 "quantile" "hospital admissions only" +"24 day ahead inc hosp" "50" 2024-02-05 2024-02-29 0.975 12 "quantile" "hospital admissions only" +"24 day ahead inc hosp" "50" 2024-02-05 2024-02-29 0.99 13 "quantile" "hospital admissions only" +"25 day ahead inc hosp" "50" 2024-02-05 2024-03-01 0.01 2.98 "quantile" "hospital admissions only" +"25 day ahead inc hosp" "50" 2024-02-05 2024-03-01 0.025 3 "quantile" "hospital admissions only" +"25 day ahead inc hosp" "50" 2024-02-05 2024-03-01 0.05 4 "quantile" "hospital admissions only" +"25 day ahead inc hosp" "50" 2024-02-05 2024-03-01 0.1 5 "quantile" "hospital admissions only" +"25 day ahead inc hosp" "50" 2024-02-05 2024-03-01 0.15 5 "quantile" "hospital admissions only" +"25 day ahead inc hosp" "50" 2024-02-05 2024-03-01 0.2 6 "quantile" "hospital admissions only" +"25 day ahead inc hosp" "50" 2024-02-05 2024-03-01 0.25 6 "quantile" "hospital admissions only" +"25 day ahead inc hosp" "50" 2024-02-05 2024-03-01 0.3 7 "quantile" "hospital admissions only" +"25 day ahead inc hosp" "50" 2024-02-05 2024-03-01 0.35 7 "quantile" "hospital admissions only" +"25 day ahead inc hosp" "50" 2024-02-05 2024-03-01 0.4 7.6 "quantile" "hospital admissions only" +"25 day ahead inc hosp" "50" 2024-02-05 2024-03-01 0.45 8 "quantile" "hospital admissions only" +"25 day ahead inc hosp" "50" 2024-02-05 2024-03-01 0.5 8 "quantile" "hospital admissions only" +"25 day ahead inc hosp" "50" 2024-02-05 2024-03-01 0.55 8 "quantile" "hospital admissions only" +"25 day ahead inc hosp" "50" 2024-02-05 2024-03-01 0.6 9 "quantile" "hospital admissions only" +"25 day ahead inc hosp" "50" 2024-02-05 2024-03-01 0.65 9 "quantile" "hospital admissions only" +"25 day ahead inc hosp" "50" 2024-02-05 2024-03-01 0.7 9.30000000000001 "quantile" "hospital admissions only" +"25 day ahead inc hosp" "50" 2024-02-05 2024-03-01 0.75 10.25 "quantile" "hospital admissions only" +"25 day ahead inc hosp" "50" 2024-02-05 2024-03-01 0.8 11 "quantile" "hospital admissions only" +"25 day ahead inc hosp" "50" 2024-02-05 2024-03-01 0.85 12 "quantile" "hospital admissions only" +"25 day ahead inc hosp" "50" 2024-02-05 2024-03-01 0.9 13 "quantile" "hospital admissions only" +"25 day ahead inc hosp" "50" 2024-02-05 2024-03-01 0.95 13.05 "quantile" "hospital admissions only" +"25 day ahead inc hosp" "50" 2024-02-05 2024-03-01 0.975 14.525 "quantile" "hospital admissions only" +"25 day ahead inc hosp" "50" 2024-02-05 2024-03-01 0.99 16.02 "quantile" "hospital admissions only" +"26 day ahead inc hosp" "50" 2024-02-05 2024-03-02 0.01 2 "quantile" "hospital admissions only" +"26 day ahead inc hosp" "50" 2024-02-05 2024-03-02 0.025 2.475 "quantile" "hospital admissions only" +"26 day ahead inc hosp" "50" 2024-02-05 2024-03-02 0.05 3 "quantile" "hospital admissions only" +"26 day ahead inc hosp" "50" 2024-02-05 2024-03-02 0.1 4 "quantile" "hospital admissions only" +"26 day ahead inc hosp" "50" 2024-02-05 2024-03-02 0.15 4 "quantile" "hospital admissions only" +"26 day ahead inc hosp" "50" 2024-02-05 2024-03-02 0.2 5 "quantile" "hospital admissions only" +"26 day ahead inc hosp" "50" 2024-02-05 2024-03-02 0.25 5 "quantile" "hospital admissions only" +"26 day ahead inc hosp" "50" 2024-02-05 2024-03-02 0.3 5 "quantile" "hospital admissions only" +"26 day ahead inc hosp" "50" 2024-02-05 2024-03-02 0.35 5 "quantile" "hospital admissions only" +"26 day ahead inc hosp" "50" 2024-02-05 2024-03-02 0.4 6 "quantile" "hospital admissions only" +"26 day ahead inc hosp" "50" 2024-02-05 2024-03-02 0.45 6 "quantile" "hospital admissions only" +"26 day ahead inc hosp" "50" 2024-02-05 2024-03-02 0.5 7 "quantile" "hospital admissions only" +"26 day ahead inc hosp" "50" 2024-02-05 2024-03-02 0.55 7 "quantile" "hospital admissions only" +"26 day ahead inc hosp" "50" 2024-02-05 2024-03-02 0.6 7.40000000000001 "quantile" "hospital admissions only" +"26 day ahead inc hosp" "50" 2024-02-05 2024-03-02 0.65 8 "quantile" "hospital admissions only" +"26 day ahead inc hosp" "50" 2024-02-05 2024-03-02 0.7 9 "quantile" "hospital admissions only" +"26 day ahead inc hosp" "50" 2024-02-05 2024-03-02 0.75 9 "quantile" "hospital admissions only" +"26 day ahead inc hosp" "50" 2024-02-05 2024-03-02 0.8 10 "quantile" "hospital admissions only" +"26 day ahead inc hosp" "50" 2024-02-05 2024-03-02 0.85 11 "quantile" "hospital admissions only" +"26 day ahead inc hosp" "50" 2024-02-05 2024-03-02 0.9 12.1 "quantile" "hospital admissions only" +"26 day ahead inc hosp" "50" 2024-02-05 2024-03-02 0.95 13 "quantile" "hospital admissions only" +"26 day ahead inc hosp" "50" 2024-02-05 2024-03-02 0.975 15 "quantile" "hospital admissions only" +"26 day ahead inc hosp" "50" 2024-02-05 2024-03-02 0.99 16 "quantile" "hospital admissions only" +"27 day ahead inc hosp" "50" 2024-02-05 2024-03-03 0.01 1 "quantile" "hospital admissions only" +"27 day ahead inc hosp" "50" 2024-02-05 2024-03-03 0.025 2 "quantile" "hospital admissions only" +"27 day ahead inc hosp" "50" 2024-02-05 2024-03-03 0.05 3 "quantile" "hospital admissions only" +"27 day ahead inc hosp" "50" 2024-02-05 2024-03-03 0.1 3 "quantile" "hospital admissions only" +"27 day ahead inc hosp" "50" 2024-02-05 2024-03-03 0.15 3 "quantile" "hospital admissions only" +"27 day ahead inc hosp" "50" 2024-02-05 2024-03-03 0.2 4 "quantile" "hospital admissions only" +"27 day ahead inc hosp" "50" 2024-02-05 2024-03-03 0.25 4 "quantile" "hospital admissions only" +"27 day ahead inc hosp" "50" 2024-02-05 2024-03-03 0.3 5 "quantile" "hospital admissions only" +"27 day ahead inc hosp" "50" 2024-02-05 2024-03-03 0.35 5 "quantile" "hospital admissions only" +"27 day ahead inc hosp" "50" 2024-02-05 2024-03-03 0.4 5.6 "quantile" "hospital admissions only" +"27 day ahead inc hosp" "50" 2024-02-05 2024-03-03 0.45 6 "quantile" "hospital admissions only" +"27 day ahead inc hosp" "50" 2024-02-05 2024-03-03 0.5 6 "quantile" "hospital admissions only" +"27 day ahead inc hosp" "50" 2024-02-05 2024-03-03 0.55 7 "quantile" "hospital admissions only" +"27 day ahead inc hosp" "50" 2024-02-05 2024-03-03 0.6 7 "quantile" "hospital admissions only" +"27 day ahead inc hosp" "50" 2024-02-05 2024-03-03 0.65 7 "quantile" "hospital admissions only" +"27 day ahead inc hosp" "50" 2024-02-05 2024-03-03 0.7 8 "quantile" "hospital admissions only" +"27 day ahead inc hosp" "50" 2024-02-05 2024-03-03 0.75 8 "quantile" "hospital admissions only" +"27 day ahead inc hosp" "50" 2024-02-05 2024-03-03 0.8 9 "quantile" "hospital admissions only" +"27 day ahead inc hosp" "50" 2024-02-05 2024-03-03 0.85 9 "quantile" "hospital admissions only" +"27 day ahead inc hosp" "50" 2024-02-05 2024-03-03 0.9 10 "quantile" "hospital admissions only" +"27 day ahead inc hosp" "50" 2024-02-05 2024-03-03 0.95 11 "quantile" "hospital admissions only" +"27 day ahead inc hosp" "50" 2024-02-05 2024-03-03 0.975 12.575 "quantile" "hospital admissions only" +"27 day ahead inc hosp" "50" 2024-02-05 2024-03-03 0.99 14.01 "quantile" "hospital admissions only" +"28 day ahead inc hosp" "50" 2024-02-05 2024-03-04 0.01 0.99 "quantile" "hospital admissions only" +"28 day ahead inc hosp" "50" 2024-02-05 2024-03-04 0.025 1 "quantile" "hospital admissions only" +"28 day ahead inc hosp" "50" 2024-02-05 2024-03-04 0.05 2 "quantile" "hospital admissions only" +"28 day ahead inc hosp" "50" 2024-02-05 2024-03-04 0.1 3 "quantile" "hospital admissions only" +"28 day ahead inc hosp" "50" 2024-02-05 2024-03-04 0.15 3 "quantile" "hospital admissions only" +"28 day ahead inc hosp" "50" 2024-02-05 2024-03-04 0.2 4 "quantile" "hospital admissions only" +"28 day ahead inc hosp" "50" 2024-02-05 2024-03-04 0.25 4 "quantile" "hospital admissions only" +"28 day ahead inc hosp" "50" 2024-02-05 2024-03-04 0.3 5 "quantile" "hospital admissions only" +"28 day ahead inc hosp" "50" 2024-02-05 2024-03-04 0.35 5 "quantile" "hospital admissions only" +"28 day ahead inc hosp" "50" 2024-02-05 2024-03-04 0.4 5 "quantile" "hospital admissions only" +"28 day ahead inc hosp" "50" 2024-02-05 2024-03-04 0.45 6 "quantile" "hospital admissions only" +"28 day ahead inc hosp" "50" 2024-02-05 2024-03-04 0.5 6 "quantile" "hospital admissions only" +"28 day ahead inc hosp" "50" 2024-02-05 2024-03-04 0.55 6 "quantile" "hospital admissions only" +"28 day ahead inc hosp" "50" 2024-02-05 2024-03-04 0.6 7 "quantile" "hospital admissions only" +"28 day ahead inc hosp" "50" 2024-02-05 2024-03-04 0.65 7 "quantile" "hospital admissions only" +"28 day ahead inc hosp" "50" 2024-02-05 2024-03-04 0.7 7 "quantile" "hospital admissions only" +"28 day ahead inc hosp" "50" 2024-02-05 2024-03-04 0.75 8 "quantile" "hospital admissions only" +"28 day ahead inc hosp" "50" 2024-02-05 2024-03-04 0.8 8 "quantile" "hospital admissions only" +"28 day ahead inc hosp" "50" 2024-02-05 2024-03-04 0.85 8 "quantile" "hospital admissions only" +"28 day ahead inc hosp" "50" 2024-02-05 2024-03-04 0.9 9 "quantile" "hospital admissions only" +"28 day ahead inc hosp" "50" 2024-02-05 2024-03-04 0.95 10 "quantile" "hospital admissions only" +"28 day ahead inc hosp" "50" 2024-02-05 2024-03-04 0.975 10 "quantile" "hospital admissions only" +"28 day ahead inc hosp" "50" 2024-02-05 2024-03-04 0.99 11.02 "quantile" "hospital admissions only" +"1 day ahead inc hosp" "53" 2024-02-05 2024-02-06 0.01 31 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "53" 2024-02-05 2024-02-06 0.025 35.475 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "53" 2024-02-05 2024-02-06 0.05 36 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "53" 2024-02-05 2024-02-06 0.1 38.9 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "53" 2024-02-05 2024-02-06 0.15 40.85 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "53" 2024-02-05 2024-02-06 0.2 41.8 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "53" 2024-02-05 2024-02-06 0.25 43 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "53" 2024-02-05 2024-02-06 0.3 44 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "53" 2024-02-05 2024-02-06 0.35 46.65 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "53" 2024-02-05 2024-02-06 0.4 47 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "53" 2024-02-05 2024-02-06 0.45 48.55 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "53" 2024-02-05 2024-02-06 0.5 50 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "53" 2024-02-05 2024-02-06 0.55 52 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "53" 2024-02-05 2024-02-06 0.6 53 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "53" 2024-02-05 2024-02-06 0.65 54 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "53" 2024-02-05 2024-02-06 0.7 55.3 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "53" 2024-02-05 2024-02-06 0.75 56 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "53" 2024-02-05 2024-02-06 0.8 58 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "53" 2024-02-05 2024-02-06 0.85 60.15 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "53" 2024-02-05 2024-02-06 0.9 63.2 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "53" 2024-02-05 2024-02-06 0.95 67.05 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "53" 2024-02-05 2024-02-06 0.975 69 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "53" 2024-02-05 2024-02-06 0.99 73.08 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "53" 2024-02-05 2024-02-07 0.01 32.98 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "53" 2024-02-05 2024-02-07 0.025 33.475 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "53" 2024-02-05 2024-02-07 0.05 34 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "53" 2024-02-05 2024-02-07 0.1 37.8 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "53" 2024-02-05 2024-02-07 0.15 40.85 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "53" 2024-02-05 2024-02-07 0.2 44 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "53" 2024-02-05 2024-02-07 0.25 46 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "53" 2024-02-05 2024-02-07 0.3 47 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "53" 2024-02-05 2024-02-07 0.35 48.65 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "53" 2024-02-05 2024-02-07 0.4 50 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "53" 2024-02-05 2024-02-07 0.45 52.55 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "53" 2024-02-05 2024-02-07 0.5 54 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "53" 2024-02-05 2024-02-07 0.55 54 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "53" 2024-02-05 2024-02-07 0.6 55 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "53" 2024-02-05 2024-02-07 0.65 57 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "53" 2024-02-05 2024-02-07 0.7 59 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "53" 2024-02-05 2024-02-07 0.75 60.25 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "53" 2024-02-05 2024-02-07 0.8 64 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "53" 2024-02-05 2024-02-07 0.85 66 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "53" 2024-02-05 2024-02-07 0.9 68.1 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "53" 2024-02-05 2024-02-07 0.95 70.05 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "53" 2024-02-05 2024-02-07 0.975 73.05 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "53" 2024-02-05 2024-02-07 0.99 78.04 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "53" 2024-02-05 2024-02-08 0.01 28.99 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "53" 2024-02-05 2024-02-08 0.025 31.95 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "53" 2024-02-05 2024-02-08 0.05 34 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "53" 2024-02-05 2024-02-08 0.1 36 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "53" 2024-02-05 2024-02-08 0.15 37 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "53" 2024-02-05 2024-02-08 0.2 38 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "53" 2024-02-05 2024-02-08 0.25 40.75 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "53" 2024-02-05 2024-02-08 0.3 41.7 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "53" 2024-02-05 2024-02-08 0.35 42 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "53" 2024-02-05 2024-02-08 0.4 43.6 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "53" 2024-02-05 2024-02-08 0.45 44.55 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "53" 2024-02-05 2024-02-08 0.5 46 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "53" 2024-02-05 2024-02-08 0.55 47 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "53" 2024-02-05 2024-02-08 0.6 49 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "53" 2024-02-05 2024-02-08 0.65 52 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "53" 2024-02-05 2024-02-08 0.7 52.3 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "53" 2024-02-05 2024-02-08 0.75 54 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "53" 2024-02-05 2024-02-08 0.8 55 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "53" 2024-02-05 2024-02-08 0.85 59 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "53" 2024-02-05 2024-02-08 0.9 62.1 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "53" 2024-02-05 2024-02-08 0.95 65.2 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "53" 2024-02-05 2024-02-08 0.975 71 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "53" 2024-02-05 2024-02-08 0.99 72 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "53" 2024-02-05 2024-02-09 0.01 28.99 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "53" 2024-02-05 2024-02-09 0.025 31.475 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "53" 2024-02-05 2024-02-09 0.05 33.9 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "53" 2024-02-05 2024-02-09 0.1 36 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "53" 2024-02-05 2024-02-09 0.15 38 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "53" 2024-02-05 2024-02-09 0.2 40.8 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "53" 2024-02-05 2024-02-09 0.25 43.75 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "53" 2024-02-05 2024-02-09 0.3 44.7 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "53" 2024-02-05 2024-02-09 0.35 46 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "53" 2024-02-05 2024-02-09 0.4 48 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "53" 2024-02-05 2024-02-09 0.45 49.55 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "53" 2024-02-05 2024-02-09 0.5 51 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "53" 2024-02-05 2024-02-09 0.55 51.45 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "53" 2024-02-05 2024-02-09 0.6 53 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "53" 2024-02-05 2024-02-09 0.65 53.35 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "53" 2024-02-05 2024-02-09 0.7 56 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "53" 2024-02-05 2024-02-09 0.75 58 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "53" 2024-02-05 2024-02-09 0.8 58 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "53" 2024-02-05 2024-02-09 0.85 60 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "53" 2024-02-05 2024-02-09 0.9 63.1 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "53" 2024-02-05 2024-02-09 0.95 70.15 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "53" 2024-02-05 2024-02-09 0.975 78.1499999999999 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "53" 2024-02-05 2024-02-09 0.99 85.01 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "53" 2024-02-05 2024-02-10 0.01 19.98 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "53" 2024-02-05 2024-02-10 0.025 21 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "53" 2024-02-05 2024-02-10 0.05 24.95 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "53" 2024-02-05 2024-02-10 0.1 26 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "53" 2024-02-05 2024-02-10 0.15 27.85 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "53" 2024-02-05 2024-02-10 0.2 30 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "53" 2024-02-05 2024-02-10 0.25 32 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "53" 2024-02-05 2024-02-10 0.3 33 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "53" 2024-02-05 2024-02-10 0.35 34.65 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "53" 2024-02-05 2024-02-10 0.4 35.6 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "53" 2024-02-05 2024-02-10 0.45 37 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "53" 2024-02-05 2024-02-10 0.5 38 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "53" 2024-02-05 2024-02-10 0.55 39 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "53" 2024-02-05 2024-02-10 0.6 41 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "53" 2024-02-05 2024-02-10 0.65 43 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "53" 2024-02-05 2024-02-10 0.7 44 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "53" 2024-02-05 2024-02-10 0.75 44.25 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "53" 2024-02-05 2024-02-10 0.8 46.6 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "53" 2024-02-05 2024-02-10 0.85 53 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "53" 2024-02-05 2024-02-10 0.9 55.1 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "53" 2024-02-05 2024-02-10 0.95 59.1 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "53" 2024-02-05 2024-02-10 0.975 62.05 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "53" 2024-02-05 2024-02-10 0.99 66.01 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "53" 2024-02-05 2024-02-11 0.01 20 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "53" 2024-02-05 2024-02-11 0.025 21 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "53" 2024-02-05 2024-02-11 0.05 21.95 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "53" 2024-02-05 2024-02-11 0.1 26.9 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "53" 2024-02-05 2024-02-11 0.15 32 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "53" 2024-02-05 2024-02-11 0.2 33 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "53" 2024-02-05 2024-02-11 0.25 34 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "53" 2024-02-05 2024-02-11 0.3 36 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "53" 2024-02-05 2024-02-11 0.35 38 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "53" 2024-02-05 2024-02-11 0.4 41 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "53" 2024-02-05 2024-02-11 0.45 42 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "53" 2024-02-05 2024-02-11 0.5 43 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "53" 2024-02-05 2024-02-11 0.55 44 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "53" 2024-02-05 2024-02-11 0.6 45 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "53" 2024-02-05 2024-02-11 0.65 46 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "53" 2024-02-05 2024-02-11 0.7 46.6 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "53" 2024-02-05 2024-02-11 0.75 49 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "53" 2024-02-05 2024-02-11 0.8 50.4 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "53" 2024-02-05 2024-02-11 0.85 54.15 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "53" 2024-02-05 2024-02-11 0.9 57.1 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "53" 2024-02-05 2024-02-11 0.95 61 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "53" 2024-02-05 2024-02-11 0.975 62.525 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "53" 2024-02-05 2024-02-11 0.99 69.06 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "53" 2024-02-05 2024-02-12 0.01 26.97 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "53" 2024-02-05 2024-02-12 0.025 27 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "53" 2024-02-05 2024-02-12 0.05 28.95 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "53" 2024-02-05 2024-02-12 0.1 33 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "53" 2024-02-05 2024-02-12 0.15 34.85 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "53" 2024-02-05 2024-02-12 0.2 37 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "53" 2024-02-05 2024-02-12 0.25 40 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "53" 2024-02-05 2024-02-12 0.3 42.7 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "53" 2024-02-05 2024-02-12 0.35 44.65 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "53" 2024-02-05 2024-02-12 0.4 47 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "53" 2024-02-05 2024-02-12 0.45 49 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "53" 2024-02-05 2024-02-12 0.5 49.5 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "53" 2024-02-05 2024-02-12 0.55 51 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "53" 2024-02-05 2024-02-12 0.6 52 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "53" 2024-02-05 2024-02-12 0.65 55.35 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "53" 2024-02-05 2024-02-12 0.7 57 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "53" 2024-02-05 2024-02-12 0.75 59.25 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "53" 2024-02-05 2024-02-12 0.8 62.2 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "53" 2024-02-05 2024-02-12 0.85 66.15 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "53" 2024-02-05 2024-02-12 0.9 69 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "53" 2024-02-05 2024-02-12 0.95 73.1 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "53" 2024-02-05 2024-02-12 0.975 82.2499999999999 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "53" 2024-02-05 2024-02-12 0.99 90.09 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "53" 2024-02-05 2024-02-13 0.01 23.99 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "53" 2024-02-05 2024-02-13 0.025 27.95 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "53" 2024-02-05 2024-02-13 0.05 29 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "53" 2024-02-05 2024-02-13 0.1 33 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "53" 2024-02-05 2024-02-13 0.15 35 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "53" 2024-02-05 2024-02-13 0.2 38 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "53" 2024-02-05 2024-02-13 0.25 40 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "53" 2024-02-05 2024-02-13 0.3 42.7 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "53" 2024-02-05 2024-02-13 0.35 44.65 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "53" 2024-02-05 2024-02-13 0.4 47 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "53" 2024-02-05 2024-02-13 0.45 48.55 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "53" 2024-02-05 2024-02-13 0.5 49 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "53" 2024-02-05 2024-02-13 0.55 51 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "53" 2024-02-05 2024-02-13 0.6 52.4 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "53" 2024-02-05 2024-02-13 0.65 54 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "53" 2024-02-05 2024-02-13 0.7 55 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "53" 2024-02-05 2024-02-13 0.75 58.25 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "53" 2024-02-05 2024-02-13 0.8 60 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "53" 2024-02-05 2024-02-13 0.85 62 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "53" 2024-02-05 2024-02-13 0.9 66 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "53" 2024-02-05 2024-02-13 0.95 73.05 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "53" 2024-02-05 2024-02-13 0.975 75 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "53" 2024-02-05 2024-02-13 0.99 76.05 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "53" 2024-02-05 2024-02-14 0.01 21.97 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "53" 2024-02-05 2024-02-14 0.025 25.425 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "53" 2024-02-05 2024-02-14 0.05 29.85 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "53" 2024-02-05 2024-02-14 0.1 34 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "53" 2024-02-05 2024-02-14 0.15 36.85 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "53" 2024-02-05 2024-02-14 0.2 39.8 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "53" 2024-02-05 2024-02-14 0.25 42.75 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "53" 2024-02-05 2024-02-14 0.3 44 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "53" 2024-02-05 2024-02-14 0.35 46 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "53" 2024-02-05 2024-02-14 0.4 47.6 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "53" 2024-02-05 2024-02-14 0.45 49.55 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "53" 2024-02-05 2024-02-14 0.5 52.5 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "53" 2024-02-05 2024-02-14 0.55 56 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "53" 2024-02-05 2024-02-14 0.6 58 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "53" 2024-02-05 2024-02-14 0.65 60 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "53" 2024-02-05 2024-02-14 0.7 62 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "53" 2024-02-05 2024-02-14 0.75 64 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "53" 2024-02-05 2024-02-14 0.8 64.2 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "53" 2024-02-05 2024-02-14 0.85 70.15 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "53" 2024-02-05 2024-02-14 0.9 73 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "53" 2024-02-05 2024-02-14 0.95 84.2 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "53" 2024-02-05 2024-02-14 0.975 89.05 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "53" 2024-02-05 2024-02-14 0.99 91.07 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "53" 2024-02-05 2024-02-15 0.01 21.99 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "53" 2024-02-05 2024-02-15 0.025 27.475 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "53" 2024-02-05 2024-02-15 0.05 30.95 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "53" 2024-02-05 2024-02-15 0.1 32 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "53" 2024-02-05 2024-02-15 0.15 34.85 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "53" 2024-02-05 2024-02-15 0.2 36 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "53" 2024-02-05 2024-02-15 0.25 37 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "53" 2024-02-05 2024-02-15 0.3 38 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "53" 2024-02-05 2024-02-15 0.35 39 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "53" 2024-02-05 2024-02-15 0.4 41 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "53" 2024-02-05 2024-02-15 0.45 43.1 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "53" 2024-02-05 2024-02-15 0.5 45.5 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "53" 2024-02-05 2024-02-15 0.55 48 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "53" 2024-02-05 2024-02-15 0.6 49.4 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "53" 2024-02-05 2024-02-15 0.65 51 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "53" 2024-02-05 2024-02-15 0.7 53.3 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "53" 2024-02-05 2024-02-15 0.75 54 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "53" 2024-02-05 2024-02-15 0.8 56 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "53" 2024-02-05 2024-02-15 0.85 60 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "53" 2024-02-05 2024-02-15 0.9 66 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "53" 2024-02-05 2024-02-15 0.95 70.1 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "53" 2024-02-05 2024-02-15 0.975 76.575 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "53" 2024-02-05 2024-02-15 0.99 80.08 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "53" 2024-02-05 2024-02-16 0.01 20.97 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "53" 2024-02-05 2024-02-16 0.025 22.95 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "53" 2024-02-05 2024-02-16 0.05 27.9 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "53" 2024-02-05 2024-02-16 0.1 32.9 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "53" 2024-02-05 2024-02-16 0.15 35.85 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "53" 2024-02-05 2024-02-16 0.2 38 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "53" 2024-02-05 2024-02-16 0.25 41 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "53" 2024-02-05 2024-02-16 0.3 44 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "53" 2024-02-05 2024-02-16 0.35 45 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "53" 2024-02-05 2024-02-16 0.4 46.6 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "53" 2024-02-05 2024-02-16 0.45 48 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "53" 2024-02-05 2024-02-16 0.5 50 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "53" 2024-02-05 2024-02-16 0.55 51 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "53" 2024-02-05 2024-02-16 0.6 53.4 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "53" 2024-02-05 2024-02-16 0.65 55 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "53" 2024-02-05 2024-02-16 0.7 58.3 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "53" 2024-02-05 2024-02-16 0.75 60 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "53" 2024-02-05 2024-02-16 0.8 61.2 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "53" 2024-02-05 2024-02-16 0.85 64.15 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "53" 2024-02-05 2024-02-16 0.9 70 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "53" 2024-02-05 2024-02-16 0.95 76.1 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "53" 2024-02-05 2024-02-16 0.975 80 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "53" 2024-02-05 2024-02-16 0.99 84.03 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "53" 2024-02-05 2024-02-17 0.01 11.98 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "53" 2024-02-05 2024-02-17 0.025 15.475 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "53" 2024-02-05 2024-02-17 0.05 20.8 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "53" 2024-02-05 2024-02-17 0.1 23.8 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "53" 2024-02-05 2024-02-17 0.15 26 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "53" 2024-02-05 2024-02-17 0.2 28 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "53" 2024-02-05 2024-02-17 0.25 29.75 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "53" 2024-02-05 2024-02-17 0.3 30.7 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "53" 2024-02-05 2024-02-17 0.35 31.65 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "53" 2024-02-05 2024-02-17 0.4 33.6 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "53" 2024-02-05 2024-02-17 0.45 35.1 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "53" 2024-02-05 2024-02-17 0.5 37.5 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "53" 2024-02-05 2024-02-17 0.55 39 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "53" 2024-02-05 2024-02-17 0.6 40.4 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "53" 2024-02-05 2024-02-17 0.65 43.35 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "53" 2024-02-05 2024-02-17 0.7 45.6 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "53" 2024-02-05 2024-02-17 0.75 48.25 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "53" 2024-02-05 2024-02-17 0.8 50.2 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "53" 2024-02-05 2024-02-17 0.85 53 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "53" 2024-02-05 2024-02-17 0.9 57.2 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "53" 2024-02-05 2024-02-17 0.95 68 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "53" 2024-02-05 2024-02-17 0.975 68.525 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "53" 2024-02-05 2024-02-17 0.99 69.01 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "53" 2024-02-05 2024-02-18 0.01 15.99 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "53" 2024-02-05 2024-02-18 0.025 18.475 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "53" 2024-02-05 2024-02-18 0.05 22 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "53" 2024-02-05 2024-02-18 0.1 25.8 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "53" 2024-02-05 2024-02-18 0.15 27 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "53" 2024-02-05 2024-02-18 0.2 32.6 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "53" 2024-02-05 2024-02-18 0.25 33.75 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "53" 2024-02-05 2024-02-18 0.3 36 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "53" 2024-02-05 2024-02-18 0.35 39.65 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "53" 2024-02-05 2024-02-18 0.4 41 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "53" 2024-02-05 2024-02-18 0.45 42 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "53" 2024-02-05 2024-02-18 0.5 43 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "53" 2024-02-05 2024-02-18 0.55 45 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "53" 2024-02-05 2024-02-18 0.6 46.4 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "53" 2024-02-05 2024-02-18 0.65 48 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "53" 2024-02-05 2024-02-18 0.7 49.3 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "53" 2024-02-05 2024-02-18 0.75 52 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "53" 2024-02-05 2024-02-18 0.8 54 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "53" 2024-02-05 2024-02-18 0.85 55.15 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "53" 2024-02-05 2024-02-18 0.9 64.1 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "53" 2024-02-05 2024-02-18 0.95 69 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "53" 2024-02-05 2024-02-18 0.975 70.525 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "53" 2024-02-05 2024-02-18 0.99 78.07 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "53" 2024-02-05 2024-02-19 0.01 24.99 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "53" 2024-02-05 2024-02-19 0.025 25 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "53" 2024-02-05 2024-02-19 0.05 25.95 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "53" 2024-02-05 2024-02-19 0.1 28.9 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "53" 2024-02-05 2024-02-19 0.15 32.85 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "53" 2024-02-05 2024-02-19 0.2 34.8 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "53" 2024-02-05 2024-02-19 0.25 35.75 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "53" 2024-02-05 2024-02-19 0.3 38.7 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "53" 2024-02-05 2024-02-19 0.35 40 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "53" 2024-02-05 2024-02-19 0.4 42.6 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "53" 2024-02-05 2024-02-19 0.45 45 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "53" 2024-02-05 2024-02-19 0.5 46.5 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "53" 2024-02-05 2024-02-19 0.55 48 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "53" 2024-02-05 2024-02-19 0.6 50 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "53" 2024-02-05 2024-02-19 0.65 52 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "53" 2024-02-05 2024-02-19 0.7 53 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "53" 2024-02-05 2024-02-19 0.75 56.75 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "53" 2024-02-05 2024-02-19 0.8 61 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "53" 2024-02-05 2024-02-19 0.85 63.3 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "53" 2024-02-05 2024-02-19 0.9 68.1 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "53" 2024-02-05 2024-02-19 0.95 74.1 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "53" 2024-02-05 2024-02-19 0.975 83.1 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "53" 2024-02-05 2024-02-19 0.99 89.03 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "53" 2024-02-05 2024-02-20 0.01 22.99 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "53" 2024-02-05 2024-02-20 0.025 25.475 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "53" 2024-02-05 2024-02-20 0.05 27 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "53" 2024-02-05 2024-02-20 0.1 29 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "53" 2024-02-05 2024-02-20 0.15 32.7 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "53" 2024-02-05 2024-02-20 0.2 35 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "53" 2024-02-05 2024-02-20 0.25 37.75 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "53" 2024-02-05 2024-02-20 0.3 39 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "53" 2024-02-05 2024-02-20 0.35 40.65 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "53" 2024-02-05 2024-02-20 0.4 42.6 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "53" 2024-02-05 2024-02-20 0.45 44 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "53" 2024-02-05 2024-02-20 0.5 46 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "53" 2024-02-05 2024-02-20 0.55 49.45 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "53" 2024-02-05 2024-02-20 0.6 53.4 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "53" 2024-02-05 2024-02-20 0.65 55 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "53" 2024-02-05 2024-02-20 0.7 58.3 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "53" 2024-02-05 2024-02-20 0.75 61.5 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "53" 2024-02-05 2024-02-20 0.8 64 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "53" 2024-02-05 2024-02-20 0.85 66 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "53" 2024-02-05 2024-02-20 0.9 71 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "53" 2024-02-05 2024-02-20 0.95 76 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "53" 2024-02-05 2024-02-20 0.975 78 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "53" 2024-02-05 2024-02-20 0.99 83.03 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "53" 2024-02-05 2024-02-21 0.01 23.96 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "53" 2024-02-05 2024-02-21 0.025 26.475 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "53" 2024-02-05 2024-02-21 0.05 28.9 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "53" 2024-02-05 2024-02-21 0.1 31 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "53" 2024-02-05 2024-02-21 0.15 36 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "53" 2024-02-05 2024-02-21 0.2 37.8 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "53" 2024-02-05 2024-02-21 0.25 41 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "53" 2024-02-05 2024-02-21 0.3 44 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "53" 2024-02-05 2024-02-21 0.35 45 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "53" 2024-02-05 2024-02-21 0.4 46 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "53" 2024-02-05 2024-02-21 0.45 48 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "53" 2024-02-05 2024-02-21 0.5 49.5 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "53" 2024-02-05 2024-02-21 0.55 52.35 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "53" 2024-02-05 2024-02-21 0.6 56.4 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "53" 2024-02-05 2024-02-21 0.65 58.35 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "53" 2024-02-05 2024-02-21 0.7 62.3 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "53" 2024-02-05 2024-02-21 0.75 65.5 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "53" 2024-02-05 2024-02-21 0.8 69 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "53" 2024-02-05 2024-02-21 0.85 71.15 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "53" 2024-02-05 2024-02-21 0.9 78 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "53" 2024-02-05 2024-02-21 0.95 80.05 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "53" 2024-02-05 2024-02-21 0.975 86.1499999999999 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "53" 2024-02-05 2024-02-21 0.99 92.1700000000001 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "53" 2024-02-05 2024-02-22 0.01 19.99 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "53" 2024-02-05 2024-02-22 0.025 21 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "53" 2024-02-05 2024-02-22 0.05 21 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "53" 2024-02-05 2024-02-22 0.1 26.9 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "53" 2024-02-05 2024-02-22 0.15 30 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "53" 2024-02-05 2024-02-22 0.2 34 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "53" 2024-02-05 2024-02-22 0.25 36 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "53" 2024-02-05 2024-02-22 0.3 39.4 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "53" 2024-02-05 2024-02-22 0.35 41 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "53" 2024-02-05 2024-02-22 0.4 42 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "53" 2024-02-05 2024-02-22 0.45 44 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "53" 2024-02-05 2024-02-22 0.5 45.5 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "53" 2024-02-05 2024-02-22 0.55 47.45 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "53" 2024-02-05 2024-02-22 0.6 50 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "53" 2024-02-05 2024-02-22 0.65 52 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "53" 2024-02-05 2024-02-22 0.7 54.6 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "53" 2024-02-05 2024-02-22 0.75 58.25 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "53" 2024-02-05 2024-02-22 0.8 60 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "53" 2024-02-05 2024-02-22 0.85 63 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "53" 2024-02-05 2024-02-22 0.9 66.2 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "53" 2024-02-05 2024-02-22 0.95 73 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "53" 2024-02-05 2024-02-22 0.975 79.05 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "53" 2024-02-05 2024-02-22 0.99 80.05 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "53" 2024-02-05 2024-02-23 0.01 20.99 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "53" 2024-02-05 2024-02-23 0.025 23 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "53" 2024-02-05 2024-02-23 0.05 25 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "53" 2024-02-05 2024-02-23 0.1 29 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "53" 2024-02-05 2024-02-23 0.15 31 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "53" 2024-02-05 2024-02-23 0.2 33.8 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "53" 2024-02-05 2024-02-23 0.25 35.75 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "53" 2024-02-05 2024-02-23 0.3 38.7 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "53" 2024-02-05 2024-02-23 0.35 41.65 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "53" 2024-02-05 2024-02-23 0.4 43 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "53" 2024-02-05 2024-02-23 0.45 44 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "53" 2024-02-05 2024-02-23 0.5 46.5 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "53" 2024-02-05 2024-02-23 0.55 49 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "53" 2024-02-05 2024-02-23 0.6 51.4 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "53" 2024-02-05 2024-02-23 0.65 54.35 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "53" 2024-02-05 2024-02-23 0.7 56 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "53" 2024-02-05 2024-02-23 0.75 61.0000000000001 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "53" 2024-02-05 2024-02-23 0.8 68.2 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "53" 2024-02-05 2024-02-23 0.85 71 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "53" 2024-02-05 2024-02-23 0.9 75 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "53" 2024-02-05 2024-02-23 0.95 82.05 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "53" 2024-02-05 2024-02-23 0.975 88.6749999999999 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "53" 2024-02-05 2024-02-23 0.99 94.01 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "53" 2024-02-05 2024-02-24 0.01 12.99 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "53" 2024-02-05 2024-02-24 0.025 14.475 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "53" 2024-02-05 2024-02-24 0.05 16.95 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "53" 2024-02-05 2024-02-24 0.1 21.8 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "53" 2024-02-05 2024-02-24 0.15 24.85 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "53" 2024-02-05 2024-02-24 0.2 27.8 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "53" 2024-02-05 2024-02-24 0.25 31.75 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "53" 2024-02-05 2024-02-24 0.3 33.4 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "53" 2024-02-05 2024-02-24 0.35 36 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "53" 2024-02-05 2024-02-24 0.4 36 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "53" 2024-02-05 2024-02-24 0.45 37.55 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "53" 2024-02-05 2024-02-24 0.5 39 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "53" 2024-02-05 2024-02-24 0.55 41 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "53" 2024-02-05 2024-02-24 0.6 41.4 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "53" 2024-02-05 2024-02-24 0.65 44 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "53" 2024-02-05 2024-02-24 0.7 47 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "53" 2024-02-05 2024-02-24 0.75 49.25 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "53" 2024-02-05 2024-02-24 0.8 53.2 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "53" 2024-02-05 2024-02-24 0.85 57.45 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "53" 2024-02-05 2024-02-24 0.9 62.2 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "53" 2024-02-05 2024-02-24 0.95 72.05 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "53" 2024-02-05 2024-02-24 0.975 74 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "53" 2024-02-05 2024-02-24 0.99 77.06 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "53" 2024-02-05 2024-02-25 0.01 13.97 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "53" 2024-02-05 2024-02-25 0.025 16 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "53" 2024-02-05 2024-02-25 0.05 16.95 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "53" 2024-02-05 2024-02-25 0.1 21 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "53" 2024-02-05 2024-02-25 0.15 24 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "53" 2024-02-05 2024-02-25 0.2 26.8 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "53" 2024-02-05 2024-02-25 0.25 29 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "53" 2024-02-05 2024-02-25 0.3 33 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "53" 2024-02-05 2024-02-25 0.35 34 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "53" 2024-02-05 2024-02-25 0.4 37 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "53" 2024-02-05 2024-02-25 0.45 38.55 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "53" 2024-02-05 2024-02-25 0.5 40 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "53" 2024-02-05 2024-02-25 0.55 42 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "53" 2024-02-05 2024-02-25 0.6 44 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "53" 2024-02-05 2024-02-25 0.65 47.7 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "53" 2024-02-05 2024-02-25 0.7 50.3 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "53" 2024-02-05 2024-02-25 0.75 52 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "53" 2024-02-05 2024-02-25 0.8 55.4 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "53" 2024-02-05 2024-02-25 0.85 60 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "53" 2024-02-05 2024-02-25 0.9 63 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "53" 2024-02-05 2024-02-25 0.95 71.1 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "53" 2024-02-05 2024-02-25 0.975 75.625 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "53" 2024-02-05 2024-02-25 0.99 79.02 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "53" 2024-02-05 2024-02-26 0.01 15 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "53" 2024-02-05 2024-02-26 0.025 17.95 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "53" 2024-02-05 2024-02-26 0.05 21.9 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "53" 2024-02-05 2024-02-26 0.1 25.9 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "53" 2024-02-05 2024-02-26 0.15 29.85 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "53" 2024-02-05 2024-02-26 0.2 34.8 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "53" 2024-02-05 2024-02-26 0.25 37.75 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "53" 2024-02-05 2024-02-26 0.3 40 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "53" 2024-02-05 2024-02-26 0.35 42 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "53" 2024-02-05 2024-02-26 0.4 44 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "53" 2024-02-05 2024-02-26 0.45 46 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "53" 2024-02-05 2024-02-26 0.5 48.5 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "53" 2024-02-05 2024-02-26 0.55 50 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "53" 2024-02-05 2024-02-26 0.6 52.4 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "53" 2024-02-05 2024-02-26 0.65 54.35 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "53" 2024-02-05 2024-02-26 0.7 57.3 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "53" 2024-02-05 2024-02-26 0.75 61.75 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "53" 2024-02-05 2024-02-26 0.8 66.2 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "53" 2024-02-05 2024-02-26 0.85 68.45 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "53" 2024-02-05 2024-02-26 0.9 74.1 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "53" 2024-02-05 2024-02-26 0.95 78.15 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "53" 2024-02-05 2024-02-26 0.975 85.1 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "53" 2024-02-05 2024-02-26 0.99 93.1200000000001 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "53" 2024-02-05 2024-02-27 0.01 17.97 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "53" 2024-02-05 2024-02-27 0.025 20 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "53" 2024-02-05 2024-02-27 0.05 23 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "53" 2024-02-05 2024-02-27 0.1 26.8 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "53" 2024-02-05 2024-02-27 0.15 28 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "53" 2024-02-05 2024-02-27 0.2 32 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "53" 2024-02-05 2024-02-27 0.25 34 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "53" 2024-02-05 2024-02-27 0.3 35 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "53" 2024-02-05 2024-02-27 0.35 37 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "53" 2024-02-05 2024-02-27 0.4 41 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "53" 2024-02-05 2024-02-27 0.45 45 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "53" 2024-02-05 2024-02-27 0.5 47.5 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "53" 2024-02-05 2024-02-27 0.55 50.45 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "53" 2024-02-05 2024-02-27 0.6 52.4 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "53" 2024-02-05 2024-02-27 0.65 54.35 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "53" 2024-02-05 2024-02-27 0.7 56 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "53" 2024-02-05 2024-02-27 0.75 61.25 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "53" 2024-02-05 2024-02-27 0.8 66.2 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "53" 2024-02-05 2024-02-27 0.85 71 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "53" 2024-02-05 2024-02-27 0.9 76.3 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "53" 2024-02-05 2024-02-27 0.95 87.2 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "53" 2024-02-05 2024-02-27 0.975 93 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "53" 2024-02-05 2024-02-27 0.99 96.1200000000001 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "53" 2024-02-05 2024-02-28 0.01 18.96 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "53" 2024-02-05 2024-02-28 0.025 21.475 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "53" 2024-02-05 2024-02-28 0.05 23.95 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "53" 2024-02-05 2024-02-28 0.1 27.9 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "53" 2024-02-05 2024-02-28 0.15 35.85 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "53" 2024-02-05 2024-02-28 0.2 38 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "53" 2024-02-05 2024-02-28 0.25 40 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "53" 2024-02-05 2024-02-28 0.3 42.7 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "53" 2024-02-05 2024-02-28 0.35 44 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "53" 2024-02-05 2024-02-28 0.4 46 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "53" 2024-02-05 2024-02-28 0.45 49.55 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "53" 2024-02-05 2024-02-28 0.5 53 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "53" 2024-02-05 2024-02-28 0.55 54 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "53" 2024-02-05 2024-02-28 0.6 56 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "53" 2024-02-05 2024-02-28 0.65 59.35 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "53" 2024-02-05 2024-02-28 0.7 61 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "53" 2024-02-05 2024-02-28 0.75 64.25 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "53" 2024-02-05 2024-02-28 0.8 68 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "53" 2024-02-05 2024-02-28 0.85 72.9 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "53" 2024-02-05 2024-02-28 0.9 88 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "53" 2024-02-05 2024-02-28 0.95 90.1 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "53" 2024-02-05 2024-02-28 0.975 98.1999999999999 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "53" 2024-02-05 2024-02-28 0.99 106.08 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "53" 2024-02-05 2024-02-29 0.01 15.96 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "53" 2024-02-05 2024-02-29 0.025 16.475 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "53" 2024-02-05 2024-02-29 0.05 19.95 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "53" 2024-02-05 2024-02-29 0.1 22 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "53" 2024-02-05 2024-02-29 0.15 27 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "53" 2024-02-05 2024-02-29 0.2 30 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "53" 2024-02-05 2024-02-29 0.25 32.75 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "53" 2024-02-05 2024-02-29 0.3 37.7 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "53" 2024-02-05 2024-02-29 0.35 40.3 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "53" 2024-02-05 2024-02-29 0.4 43.6 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "53" 2024-02-05 2024-02-29 0.45 46 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "53" 2024-02-05 2024-02-29 0.5 47.5 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "53" 2024-02-05 2024-02-29 0.55 50 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "53" 2024-02-05 2024-02-29 0.6 52.4 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "53" 2024-02-05 2024-02-29 0.65 55 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "53" 2024-02-05 2024-02-29 0.7 58 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "53" 2024-02-05 2024-02-29 0.75 61 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "53" 2024-02-05 2024-02-29 0.8 62 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "53" 2024-02-05 2024-02-29 0.85 67 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "53" 2024-02-05 2024-02-29 0.9 72 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "53" 2024-02-05 2024-02-29 0.95 86 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "53" 2024-02-05 2024-02-29 0.975 88 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "53" 2024-02-05 2024-02-29 0.99 92.06 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "53" 2024-02-05 2024-03-01 0.01 19 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "53" 2024-02-05 2024-03-01 0.025 19.475 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "53" 2024-02-05 2024-03-01 0.05 20.95 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "53" 2024-02-05 2024-03-01 0.1 23 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "53" 2024-02-05 2024-03-01 0.15 28.4 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "53" 2024-02-05 2024-03-01 0.2 30 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "53" 2024-02-05 2024-03-01 0.25 32.75 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "53" 2024-02-05 2024-03-01 0.3 37 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "53" 2024-02-05 2024-03-01 0.35 39 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "53" 2024-02-05 2024-03-01 0.4 43.2 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "53" 2024-02-05 2024-03-01 0.45 45.55 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "53" 2024-02-05 2024-03-01 0.5 48 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "53" 2024-02-05 2024-03-01 0.55 53.45 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "53" 2024-02-05 2024-03-01 0.6 55.4 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "53" 2024-02-05 2024-03-01 0.65 58.35 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "53" 2024-02-05 2024-03-01 0.7 60.3 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "53" 2024-02-05 2024-03-01 0.75 62.5 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "53" 2024-02-05 2024-03-01 0.8 69.2 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "53" 2024-02-05 2024-03-01 0.85 73.3 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "53" 2024-02-05 2024-03-01 0.9 79.1 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "53" 2024-02-05 2024-03-01 0.95 87.05 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "53" 2024-02-05 2024-03-01 0.975 88 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "53" 2024-02-05 2024-03-01 0.99 93.09 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "53" 2024-02-05 2024-03-02 0.01 11.99 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "53" 2024-02-05 2024-03-02 0.025 12.95 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "53" 2024-02-05 2024-03-02 0.05 15 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "53" 2024-02-05 2024-03-02 0.1 17.9 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "53" 2024-02-05 2024-03-02 0.15 23.55 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "53" 2024-02-05 2024-03-02 0.2 25.8 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "53" 2024-02-05 2024-03-02 0.25 29.75 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "53" 2024-02-05 2024-03-02 0.3 31 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "53" 2024-02-05 2024-03-02 0.35 33.65 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "53" 2024-02-05 2024-03-02 0.4 35 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "53" 2024-02-05 2024-03-02 0.45 36 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "53" 2024-02-05 2024-03-02 0.5 38 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "53" 2024-02-05 2024-03-02 0.55 39.45 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "53" 2024-02-05 2024-03-02 0.6 41.4 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "53" 2024-02-05 2024-03-02 0.65 44 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "53" 2024-02-05 2024-03-02 0.7 46 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "53" 2024-02-05 2024-03-02 0.75 51.25 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "53" 2024-02-05 2024-03-02 0.8 56.4 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "53" 2024-02-05 2024-03-02 0.85 60.3 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "53" 2024-02-05 2024-03-02 0.9 65.1 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "53" 2024-02-05 2024-03-02 0.95 76.05 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "53" 2024-02-05 2024-03-02 0.975 78.05 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "53" 2024-02-05 2024-03-02 0.99 81.09 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "53" 2024-02-05 2024-03-03 0.01 11 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "53" 2024-02-05 2024-03-03 0.025 12 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "53" 2024-02-05 2024-03-03 0.05 16.85 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "53" 2024-02-05 2024-03-03 0.1 19 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "53" 2024-02-05 2024-03-03 0.15 23.85 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "53" 2024-02-05 2024-03-03 0.2 26.8 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "53" 2024-02-05 2024-03-03 0.25 29 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "53" 2024-02-05 2024-03-03 0.3 32 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "53" 2024-02-05 2024-03-03 0.35 33.65 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "53" 2024-02-05 2024-03-03 0.4 37.2 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "53" 2024-02-05 2024-03-03 0.45 40 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "53" 2024-02-05 2024-03-03 0.5 42 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "53" 2024-02-05 2024-03-03 0.55 45.45 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "53" 2024-02-05 2024-03-03 0.6 47 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "53" 2024-02-05 2024-03-03 0.65 49 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "53" 2024-02-05 2024-03-03 0.7 50 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "53" 2024-02-05 2024-03-03 0.75 54.25 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "53" 2024-02-05 2024-03-03 0.8 58 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "53" 2024-02-05 2024-03-03 0.85 59.45 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "53" 2024-02-05 2024-03-03 0.9 70.1 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "53" 2024-02-05 2024-03-03 0.95 74.05 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "53" 2024-02-05 2024-03-03 0.975 76.575 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "53" 2024-02-05 2024-03-03 0.99 78.06 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "53" 2024-02-05 2024-03-04 0.01 14.97 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "53" 2024-02-05 2024-03-04 0.025 15.475 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "53" 2024-02-05 2024-03-04 0.05 18 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "53" 2024-02-05 2024-03-04 0.1 22.9 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "53" 2024-02-05 2024-03-04 0.15 24 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "53" 2024-02-05 2024-03-04 0.2 26 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "53" 2024-02-05 2024-03-04 0.25 29 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "53" 2024-02-05 2024-03-04 0.3 35.4 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "53" 2024-02-05 2024-03-04 0.35 38 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "53" 2024-02-05 2024-03-04 0.4 39 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "53" 2024-02-05 2024-03-04 0.45 42 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "53" 2024-02-05 2024-03-04 0.5 45 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "53" 2024-02-05 2024-03-04 0.55 49 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "53" 2024-02-05 2024-03-04 0.6 52.4 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "53" 2024-02-05 2024-03-04 0.65 57 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "53" 2024-02-05 2024-03-04 0.7 58.6 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "53" 2024-02-05 2024-03-04 0.75 65 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "53" 2024-02-05 2024-03-04 0.8 66.2 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "53" 2024-02-05 2024-03-04 0.85 73.3 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "53" 2024-02-05 2024-03-04 0.9 78.1 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "53" 2024-02-05 2024-03-04 0.95 84.1 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "53" 2024-02-05 2024-03-04 0.975 91.575 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "53" 2024-02-05 2024-03-04 0.99 94.01 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "55" 2024-02-05 2024-02-06 0.01 22 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "55" 2024-02-05 2024-02-06 0.025 22.475 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "55" 2024-02-05 2024-02-06 0.05 24.95 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "55" 2024-02-05 2024-02-06 0.1 28.8 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "55" 2024-02-05 2024-02-06 0.15 30 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "55" 2024-02-05 2024-02-06 0.2 31 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "55" 2024-02-05 2024-02-06 0.25 33 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "55" 2024-02-05 2024-02-06 0.3 34 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "55" 2024-02-05 2024-02-06 0.35 35 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "55" 2024-02-05 2024-02-06 0.4 36.6 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "55" 2024-02-05 2024-02-06 0.45 39.55 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "55" 2024-02-05 2024-02-06 0.5 41 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "55" 2024-02-05 2024-02-06 0.55 41 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "55" 2024-02-05 2024-02-06 0.6 42.4 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "55" 2024-02-05 2024-02-06 0.65 44 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "55" 2024-02-05 2024-02-06 0.7 45 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "55" 2024-02-05 2024-02-06 0.75 46.25 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "55" 2024-02-05 2024-02-06 0.8 47.2 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "55" 2024-02-05 2024-02-06 0.85 49 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "55" 2024-02-05 2024-02-06 0.9 54 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "55" 2024-02-05 2024-02-06 0.95 57.05 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "55" 2024-02-05 2024-02-06 0.975 61.1 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "55" 2024-02-05 2024-02-06 0.99 68.02 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "55" 2024-02-05 2024-02-07 0.01 21.98 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "55" 2024-02-05 2024-02-07 0.025 24.475 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "55" 2024-02-05 2024-02-07 0.05 26 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "55" 2024-02-05 2024-02-07 0.1 28.9 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "55" 2024-02-05 2024-02-07 0.15 31 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "55" 2024-02-05 2024-02-07 0.2 32 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "55" 2024-02-05 2024-02-07 0.25 34 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "55" 2024-02-05 2024-02-07 0.3 34.7 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "55" 2024-02-05 2024-02-07 0.35 37 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "55" 2024-02-05 2024-02-07 0.4 38 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "55" 2024-02-05 2024-02-07 0.45 38.55 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "55" 2024-02-05 2024-02-07 0.5 40 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "55" 2024-02-05 2024-02-07 0.55 41 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "55" 2024-02-05 2024-02-07 0.6 42.4 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "55" 2024-02-05 2024-02-07 0.65 43.35 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "55" 2024-02-05 2024-02-07 0.7 45 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "55" 2024-02-05 2024-02-07 0.75 48 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "55" 2024-02-05 2024-02-07 0.8 50.2 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "55" 2024-02-05 2024-02-07 0.85 53.15 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "55" 2024-02-05 2024-02-07 0.9 57 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "55" 2024-02-05 2024-02-07 0.95 59.05 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "55" 2024-02-05 2024-02-07 0.975 64.1 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "55" 2024-02-05 2024-02-07 0.99 66.04 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "55" 2024-02-05 2024-02-08 0.01 16.99 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "55" 2024-02-05 2024-02-08 0.025 22 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "55" 2024-02-05 2024-02-08 0.05 23.95 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "55" 2024-02-05 2024-02-08 0.1 26.9 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "55" 2024-02-05 2024-02-08 0.15 29.85 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "55" 2024-02-05 2024-02-08 0.2 31 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "55" 2024-02-05 2024-02-08 0.25 32 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "55" 2024-02-05 2024-02-08 0.3 33 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "55" 2024-02-05 2024-02-08 0.35 34 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "55" 2024-02-05 2024-02-08 0.4 36 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "55" 2024-02-05 2024-02-08 0.45 37 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "55" 2024-02-05 2024-02-08 0.5 38 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "55" 2024-02-05 2024-02-08 0.55 39 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "55" 2024-02-05 2024-02-08 0.6 40 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "55" 2024-02-05 2024-02-08 0.65 42.35 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "55" 2024-02-05 2024-02-08 0.7 45 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "55" 2024-02-05 2024-02-08 0.75 45 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "55" 2024-02-05 2024-02-08 0.8 46.2 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "55" 2024-02-05 2024-02-08 0.85 48.15 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "55" 2024-02-05 2024-02-08 0.9 50.1 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "55" 2024-02-05 2024-02-08 0.95 56 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "55" 2024-02-05 2024-02-08 0.975 66.1 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "55" 2024-02-05 2024-02-08 0.99 69.1000000000001 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "55" 2024-02-05 2024-02-09 0.01 21.98 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "55" 2024-02-05 2024-02-09 0.025 22.475 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "55" 2024-02-05 2024-02-09 0.05 23.95 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "55" 2024-02-05 2024-02-09 0.1 26.9 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "55" 2024-02-05 2024-02-09 0.15 28 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "55" 2024-02-05 2024-02-09 0.2 30 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "55" 2024-02-05 2024-02-09 0.25 32 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "55" 2024-02-05 2024-02-09 0.3 33 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "55" 2024-02-05 2024-02-09 0.35 34.65 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "55" 2024-02-05 2024-02-09 0.4 36 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "55" 2024-02-05 2024-02-09 0.45 37 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "55" 2024-02-05 2024-02-09 0.5 38 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "55" 2024-02-05 2024-02-09 0.55 39 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "55" 2024-02-05 2024-02-09 0.6 40.4 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "55" 2024-02-05 2024-02-09 0.65 42.35 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "55" 2024-02-05 2024-02-09 0.7 44 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "55" 2024-02-05 2024-02-09 0.75 46 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "55" 2024-02-05 2024-02-09 0.8 47 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "55" 2024-02-05 2024-02-09 0.85 50 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "55" 2024-02-05 2024-02-09 0.9 52.1 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "55" 2024-02-05 2024-02-09 0.95 58.1 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "55" 2024-02-05 2024-02-09 0.975 62 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "55" 2024-02-05 2024-02-09 0.99 64.06 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "55" 2024-02-05 2024-02-10 0.01 17.94 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "55" 2024-02-05 2024-02-10 0.025 19.475 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "55" 2024-02-05 2024-02-10 0.05 20.95 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "55" 2024-02-05 2024-02-10 0.1 25 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "55" 2024-02-05 2024-02-10 0.15 27 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "55" 2024-02-05 2024-02-10 0.2 28.8 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "55" 2024-02-05 2024-02-10 0.25 29 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "55" 2024-02-05 2024-02-10 0.3 30 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "55" 2024-02-05 2024-02-10 0.35 31 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "55" 2024-02-05 2024-02-10 0.4 32 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "55" 2024-02-05 2024-02-10 0.45 33.55 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "55" 2024-02-05 2024-02-10 0.5 35 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "55" 2024-02-05 2024-02-10 0.55 36.45 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "55" 2024-02-05 2024-02-10 0.6 38.4 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "55" 2024-02-05 2024-02-10 0.65 39 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "55" 2024-02-05 2024-02-10 0.7 41 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "55" 2024-02-05 2024-02-10 0.75 42.25 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "55" 2024-02-05 2024-02-10 0.8 47.2 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "55" 2024-02-05 2024-02-10 0.85 50 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "55" 2024-02-05 2024-02-10 0.9 50.1 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "55" 2024-02-05 2024-02-10 0.95 56 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "55" 2024-02-05 2024-02-10 0.975 61.05 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "55" 2024-02-05 2024-02-10 0.99 63.1300000000001 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "55" 2024-02-05 2024-02-11 0.01 16 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "55" 2024-02-05 2024-02-11 0.025 19 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "55" 2024-02-05 2024-02-11 0.05 20 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "55" 2024-02-05 2024-02-11 0.1 22 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "55" 2024-02-05 2024-02-11 0.15 23.85 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "55" 2024-02-05 2024-02-11 0.2 26 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "55" 2024-02-05 2024-02-11 0.25 28.75 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "55" 2024-02-05 2024-02-11 0.3 30 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "55" 2024-02-05 2024-02-11 0.35 32 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "55" 2024-02-05 2024-02-11 0.4 33 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "55" 2024-02-05 2024-02-11 0.45 35 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "55" 2024-02-05 2024-02-11 0.5 36 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "55" 2024-02-05 2024-02-11 0.55 37 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "55" 2024-02-05 2024-02-11 0.6 38 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "55" 2024-02-05 2024-02-11 0.65 39 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "55" 2024-02-05 2024-02-11 0.7 40 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "55" 2024-02-05 2024-02-11 0.75 41.25 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "55" 2024-02-05 2024-02-11 0.8 42 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "55" 2024-02-05 2024-02-11 0.85 44 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "55" 2024-02-05 2024-02-11 0.9 49 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "55" 2024-02-05 2024-02-11 0.95 52.1 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "55" 2024-02-05 2024-02-11 0.975 55.05 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "55" 2024-02-05 2024-02-11 0.99 62.04 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "55" 2024-02-05 2024-02-12 0.01 19.97 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "55" 2024-02-05 2024-02-12 0.025 21.95 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "55" 2024-02-05 2024-02-12 0.05 24 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "55" 2024-02-05 2024-02-12 0.1 26 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "55" 2024-02-05 2024-02-12 0.15 28.85 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "55" 2024-02-05 2024-02-12 0.2 30.8 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "55" 2024-02-05 2024-02-12 0.25 32 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "55" 2024-02-05 2024-02-12 0.3 33 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "55" 2024-02-05 2024-02-12 0.35 35 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "55" 2024-02-05 2024-02-12 0.4 37 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "55" 2024-02-05 2024-02-12 0.45 39 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "55" 2024-02-05 2024-02-12 0.5 42 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "55" 2024-02-05 2024-02-12 0.55 43 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "55" 2024-02-05 2024-02-12 0.6 44 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "55" 2024-02-05 2024-02-12 0.65 45.35 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "55" 2024-02-05 2024-02-12 0.7 47 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "55" 2024-02-05 2024-02-12 0.75 48 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "55" 2024-02-05 2024-02-12 0.8 50 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "55" 2024-02-05 2024-02-12 0.85 55 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "55" 2024-02-05 2024-02-12 0.9 58 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "55" 2024-02-05 2024-02-12 0.95 61.05 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "55" 2024-02-05 2024-02-12 0.975 65.05 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "55" 2024-02-05 2024-02-12 0.99 68.07 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "55" 2024-02-05 2024-02-13 0.01 17.98 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "55" 2024-02-05 2024-02-13 0.025 19 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "55" 2024-02-05 2024-02-13 0.05 20.95 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "55" 2024-02-05 2024-02-13 0.1 23 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "55" 2024-02-05 2024-02-13 0.15 26.85 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "55" 2024-02-05 2024-02-13 0.2 28 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "55" 2024-02-05 2024-02-13 0.25 30.75 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "55" 2024-02-05 2024-02-13 0.3 32 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "55" 2024-02-05 2024-02-13 0.35 33.65 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "55" 2024-02-05 2024-02-13 0.4 35 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "55" 2024-02-05 2024-02-13 0.45 35.55 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "55" 2024-02-05 2024-02-13 0.5 38 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "55" 2024-02-05 2024-02-13 0.55 39 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "55" 2024-02-05 2024-02-13 0.6 40 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "55" 2024-02-05 2024-02-13 0.65 41 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "55" 2024-02-05 2024-02-13 0.7 45 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "55" 2024-02-05 2024-02-13 0.75 46.25 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "55" 2024-02-05 2024-02-13 0.8 48.2 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "55" 2024-02-05 2024-02-13 0.85 50.15 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "55" 2024-02-05 2024-02-13 0.9 53.2 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "55" 2024-02-05 2024-02-13 0.95 61.2 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "55" 2024-02-05 2024-02-13 0.975 66.525 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "55" 2024-02-05 2024-02-13 0.99 69.03 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "55" 2024-02-05 2024-02-14 0.01 20.91 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "55" 2024-02-05 2024-02-14 0.025 21 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "55" 2024-02-05 2024-02-14 0.05 22.95 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "55" 2024-02-05 2024-02-14 0.1 25 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "55" 2024-02-05 2024-02-14 0.15 26.85 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "55" 2024-02-05 2024-02-14 0.2 28.8 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "55" 2024-02-05 2024-02-14 0.25 29 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "55" 2024-02-05 2024-02-14 0.3 30 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "55" 2024-02-05 2024-02-14 0.35 30 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "55" 2024-02-05 2024-02-14 0.4 32 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "55" 2024-02-05 2024-02-14 0.45 33.55 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "55" 2024-02-05 2024-02-14 0.5 36 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "55" 2024-02-05 2024-02-14 0.55 37 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "55" 2024-02-05 2024-02-14 0.6 38.4 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "55" 2024-02-05 2024-02-14 0.65 41 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "55" 2024-02-05 2024-02-14 0.7 43 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "55" 2024-02-05 2024-02-14 0.75 47 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "55" 2024-02-05 2024-02-14 0.8 51.2 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "55" 2024-02-05 2024-02-14 0.85 53 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "55" 2024-02-05 2024-02-14 0.9 53.1 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "55" 2024-02-05 2024-02-14 0.95 56.55 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "55" 2024-02-05 2024-02-14 0.975 79.2499999999999 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "55" 2024-02-05 2024-02-14 0.99 89.1300000000001 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "55" 2024-02-05 2024-02-15 0.01 16.93 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "55" 2024-02-05 2024-02-15 0.025 17 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "55" 2024-02-05 2024-02-15 0.05 19.9 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "55" 2024-02-05 2024-02-15 0.1 23.9 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "55" 2024-02-05 2024-02-15 0.15 26.85 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "55" 2024-02-05 2024-02-15 0.2 27.8 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "55" 2024-02-05 2024-02-15 0.25 28.75 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "55" 2024-02-05 2024-02-15 0.3 29.7 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "55" 2024-02-05 2024-02-15 0.35 32 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "55" 2024-02-05 2024-02-15 0.4 33.6 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "55" 2024-02-05 2024-02-15 0.45 35 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "55" 2024-02-05 2024-02-15 0.5 37 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "55" 2024-02-05 2024-02-15 0.55 38.45 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "55" 2024-02-05 2024-02-15 0.6 40 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "55" 2024-02-05 2024-02-15 0.65 42.35 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "55" 2024-02-05 2024-02-15 0.7 45.3 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "55" 2024-02-05 2024-02-15 0.75 47 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "55" 2024-02-05 2024-02-15 0.8 48 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "55" 2024-02-05 2024-02-15 0.85 52 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "55" 2024-02-05 2024-02-15 0.9 55.2 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "55" 2024-02-05 2024-02-15 0.95 58 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "55" 2024-02-05 2024-02-15 0.975 59.525 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "55" 2024-02-05 2024-02-15 0.99 63.04 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "55" 2024-02-05 2024-02-16 0.01 15.96 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "55" 2024-02-05 2024-02-16 0.025 17 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "55" 2024-02-05 2024-02-16 0.05 20 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "55" 2024-02-05 2024-02-16 0.1 23.8 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "55" 2024-02-05 2024-02-16 0.15 25.85 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "55" 2024-02-05 2024-02-16 0.2 26.8 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "55" 2024-02-05 2024-02-16 0.25 28 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "55" 2024-02-05 2024-02-16 0.3 30 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "55" 2024-02-05 2024-02-16 0.35 30.65 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "55" 2024-02-05 2024-02-16 0.4 31 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "55" 2024-02-05 2024-02-16 0.45 32 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "55" 2024-02-05 2024-02-16 0.5 35 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "55" 2024-02-05 2024-02-16 0.55 37.45 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "55" 2024-02-05 2024-02-16 0.6 38.4 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "55" 2024-02-05 2024-02-16 0.65 39.7 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "55" 2024-02-05 2024-02-16 0.7 42 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "55" 2024-02-05 2024-02-16 0.75 44.25 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "55" 2024-02-05 2024-02-16 0.8 48.2 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "55" 2024-02-05 2024-02-16 0.85 51 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "55" 2024-02-05 2024-02-16 0.9 57.2 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "55" 2024-02-05 2024-02-16 0.95 63.1 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "55" 2024-02-05 2024-02-16 0.975 71.1 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "55" 2024-02-05 2024-02-16 0.99 76.03 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "55" 2024-02-05 2024-02-17 0.01 16 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "55" 2024-02-05 2024-02-17 0.025 17 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "55" 2024-02-05 2024-02-17 0.05 19 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "55" 2024-02-05 2024-02-17 0.1 21 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "55" 2024-02-05 2024-02-17 0.15 24 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "55" 2024-02-05 2024-02-17 0.2 25 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "55" 2024-02-05 2024-02-17 0.25 26 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "55" 2024-02-05 2024-02-17 0.3 29.4 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "55" 2024-02-05 2024-02-17 0.35 30 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "55" 2024-02-05 2024-02-17 0.4 32 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "55" 2024-02-05 2024-02-17 0.45 34 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "55" 2024-02-05 2024-02-17 0.5 35 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "55" 2024-02-05 2024-02-17 0.55 36 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "55" 2024-02-05 2024-02-17 0.6 37 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "55" 2024-02-05 2024-02-17 0.65 38.35 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "55" 2024-02-05 2024-02-17 0.7 40 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "55" 2024-02-05 2024-02-17 0.75 42.25 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "55" 2024-02-05 2024-02-17 0.8 44 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "55" 2024-02-05 2024-02-17 0.85 47 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "55" 2024-02-05 2024-02-17 0.9 49.1 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "55" 2024-02-05 2024-02-17 0.95 55.1 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "55" 2024-02-05 2024-02-17 0.975 69.4499999999998 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "55" 2024-02-05 2024-02-17 0.99 94.1300000000001 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "55" 2024-02-05 2024-02-18 0.01 16.98 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "55" 2024-02-05 2024-02-18 0.025 17 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "55" 2024-02-05 2024-02-18 0.05 18.95 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "55" 2024-02-05 2024-02-18 0.1 20 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "55" 2024-02-05 2024-02-18 0.15 22.85 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "55" 2024-02-05 2024-02-18 0.2 23.8 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "55" 2024-02-05 2024-02-18 0.25 25.75 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "55" 2024-02-05 2024-02-18 0.3 26 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "55" 2024-02-05 2024-02-18 0.35 27.65 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "55" 2024-02-05 2024-02-18 0.4 28.6 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "55" 2024-02-05 2024-02-18 0.45 30 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "55" 2024-02-05 2024-02-18 0.5 31 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "55" 2024-02-05 2024-02-18 0.55 32.45 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "55" 2024-02-05 2024-02-18 0.6 34.4 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "55" 2024-02-05 2024-02-18 0.65 37 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "55" 2024-02-05 2024-02-18 0.7 39 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "55" 2024-02-05 2024-02-18 0.75 41.25 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "55" 2024-02-05 2024-02-18 0.8 43 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "55" 2024-02-05 2024-02-18 0.85 47 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "55" 2024-02-05 2024-02-18 0.9 50.2 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "55" 2024-02-05 2024-02-18 0.95 55.15 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "55" 2024-02-05 2024-02-18 0.975 64.575 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "55" 2024-02-05 2024-02-18 0.99 68.1500000000001 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "55" 2024-02-05 2024-02-19 0.01 16.99 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "55" 2024-02-05 2024-02-19 0.025 18.475 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "55" 2024-02-05 2024-02-19 0.05 20.9 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "55" 2024-02-05 2024-02-19 0.1 23 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "55" 2024-02-05 2024-02-19 0.15 25 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "55" 2024-02-05 2024-02-19 0.2 27.8 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "55" 2024-02-05 2024-02-19 0.25 29 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "55" 2024-02-05 2024-02-19 0.3 31 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "55" 2024-02-05 2024-02-19 0.35 31.65 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "55" 2024-02-05 2024-02-19 0.4 33 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "55" 2024-02-05 2024-02-19 0.45 34 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "55" 2024-02-05 2024-02-19 0.5 37.5 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "55" 2024-02-05 2024-02-19 0.55 38 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "55" 2024-02-05 2024-02-19 0.6 41 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "55" 2024-02-05 2024-02-19 0.65 42 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "55" 2024-02-05 2024-02-19 0.7 43 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "55" 2024-02-05 2024-02-19 0.75 45.25 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "55" 2024-02-05 2024-02-19 0.8 49 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "55" 2024-02-05 2024-02-19 0.85 51.45 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "55" 2024-02-05 2024-02-19 0.9 60 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "55" 2024-02-05 2024-02-19 0.95 62.05 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "55" 2024-02-05 2024-02-19 0.975 71.625 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "55" 2024-02-05 2024-02-19 0.99 85.4200000000002 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "55" 2024-02-05 2024-02-20 0.01 14.92 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "55" 2024-02-05 2024-02-20 0.025 15 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "55" 2024-02-05 2024-02-20 0.05 16.95 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "55" 2024-02-05 2024-02-20 0.1 20.9 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "55" 2024-02-05 2024-02-20 0.15 23 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "55" 2024-02-05 2024-02-20 0.2 25 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "55" 2024-02-05 2024-02-20 0.25 27.75 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "55" 2024-02-05 2024-02-20 0.3 29 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "55" 2024-02-05 2024-02-20 0.35 32.65 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "55" 2024-02-05 2024-02-20 0.4 33 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "55" 2024-02-05 2024-02-20 0.45 34 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "55" 2024-02-05 2024-02-20 0.5 36 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "55" 2024-02-05 2024-02-20 0.55 38 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "55" 2024-02-05 2024-02-20 0.6 40 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "55" 2024-02-05 2024-02-20 0.65 41.35 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "55" 2024-02-05 2024-02-20 0.7 46 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "55" 2024-02-05 2024-02-20 0.75 47.25 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "55" 2024-02-05 2024-02-20 0.8 51.2 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "55" 2024-02-05 2024-02-20 0.85 55.15 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "55" 2024-02-05 2024-02-20 0.9 61.4 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "55" 2024-02-05 2024-02-20 0.95 74.1 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "55" 2024-02-05 2024-02-20 0.975 86.3499999999999 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "55" 2024-02-05 2024-02-20 0.99 94 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "55" 2024-02-05 2024-02-21 0.01 12.96 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "55" 2024-02-05 2024-02-21 0.025 15 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "55" 2024-02-05 2024-02-21 0.05 16 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "55" 2024-02-05 2024-02-21 0.1 20 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "55" 2024-02-05 2024-02-21 0.15 23 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "55" 2024-02-05 2024-02-21 0.2 25 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "55" 2024-02-05 2024-02-21 0.25 27 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "55" 2024-02-05 2024-02-21 0.3 28 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "55" 2024-02-05 2024-02-21 0.35 30 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "55" 2024-02-05 2024-02-21 0.4 31.6 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "55" 2024-02-05 2024-02-21 0.45 34 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "55" 2024-02-05 2024-02-21 0.5 35.5 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "55" 2024-02-05 2024-02-21 0.55 37 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "55" 2024-02-05 2024-02-21 0.6 38.8 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "55" 2024-02-05 2024-02-21 0.65 42.35 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "55" 2024-02-05 2024-02-21 0.7 44 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "55" 2024-02-05 2024-02-21 0.75 45.25 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "55" 2024-02-05 2024-02-21 0.8 47.2 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "55" 2024-02-05 2024-02-21 0.85 52 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "55" 2024-02-05 2024-02-21 0.9 59 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "55" 2024-02-05 2024-02-21 0.95 67 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "55" 2024-02-05 2024-02-21 0.975 76 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "55" 2024-02-05 2024-02-21 0.99 77.4300000000002 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "55" 2024-02-05 2024-02-22 0.01 13 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "55" 2024-02-05 2024-02-22 0.025 14.475 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "55" 2024-02-05 2024-02-22 0.05 16.9 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "55" 2024-02-05 2024-02-22 0.1 20.8 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "55" 2024-02-05 2024-02-22 0.15 21.85 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "55" 2024-02-05 2024-02-22 0.2 24 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "55" 2024-02-05 2024-02-22 0.25 26 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "55" 2024-02-05 2024-02-22 0.3 27.7 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "55" 2024-02-05 2024-02-22 0.35 28.65 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "55" 2024-02-05 2024-02-22 0.4 32 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "55" 2024-02-05 2024-02-22 0.45 33 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "55" 2024-02-05 2024-02-22 0.5 35 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "55" 2024-02-05 2024-02-22 0.55 37 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "55" 2024-02-05 2024-02-22 0.6 39 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "55" 2024-02-05 2024-02-22 0.65 40 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "55" 2024-02-05 2024-02-22 0.7 42.3 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "55" 2024-02-05 2024-02-22 0.75 45 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "55" 2024-02-05 2024-02-22 0.8 47.2 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "55" 2024-02-05 2024-02-22 0.85 52 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "55" 2024-02-05 2024-02-22 0.9 60.3 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "55" 2024-02-05 2024-02-22 0.95 67.1 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "55" 2024-02-05 2024-02-22 0.975 72.625 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "55" 2024-02-05 2024-02-22 0.99 112.06 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "55" 2024-02-05 2024-02-23 0.01 14.99 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "55" 2024-02-05 2024-02-23 0.025 16 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "55" 2024-02-05 2024-02-23 0.05 16 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "55" 2024-02-05 2024-02-23 0.1 19 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "55" 2024-02-05 2024-02-23 0.15 20 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "55" 2024-02-05 2024-02-23 0.2 21.8 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "55" 2024-02-05 2024-02-23 0.25 23 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "55" 2024-02-05 2024-02-23 0.3 27 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "55" 2024-02-05 2024-02-23 0.35 28 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "55" 2024-02-05 2024-02-23 0.4 29.6 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "55" 2024-02-05 2024-02-23 0.45 32 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "55" 2024-02-05 2024-02-23 0.5 33 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "55" 2024-02-05 2024-02-23 0.55 35 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "55" 2024-02-05 2024-02-23 0.6 36 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "55" 2024-02-05 2024-02-23 0.65 39 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "55" 2024-02-05 2024-02-23 0.7 42 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "55" 2024-02-05 2024-02-23 0.75 46 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "55" 2024-02-05 2024-02-23 0.8 49.2 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "55" 2024-02-05 2024-02-23 0.85 54 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "55" 2024-02-05 2024-02-23 0.9 57 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "55" 2024-02-05 2024-02-23 0.95 64.05 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "55" 2024-02-05 2024-02-23 0.975 68.525 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "55" 2024-02-05 2024-02-23 0.99 92.3900000000002 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "55" 2024-02-05 2024-02-24 0.01 10.97 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "55" 2024-02-05 2024-02-24 0.025 13.475 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "55" 2024-02-05 2024-02-24 0.05 16 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "55" 2024-02-05 2024-02-24 0.1 19 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "55" 2024-02-05 2024-02-24 0.15 20 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "55" 2024-02-05 2024-02-24 0.2 22 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "55" 2024-02-05 2024-02-24 0.25 24 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "55" 2024-02-05 2024-02-24 0.3 24.7 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "55" 2024-02-05 2024-02-24 0.35 25.65 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "55" 2024-02-05 2024-02-24 0.4 28 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "55" 2024-02-05 2024-02-24 0.45 30 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "55" 2024-02-05 2024-02-24 0.5 32.5 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "55" 2024-02-05 2024-02-24 0.55 34.45 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "55" 2024-02-05 2024-02-24 0.6 36 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "55" 2024-02-05 2024-02-24 0.65 39 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "55" 2024-02-05 2024-02-24 0.7 39.3 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "55" 2024-02-05 2024-02-24 0.75 41 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "55" 2024-02-05 2024-02-24 0.8 45 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "55" 2024-02-05 2024-02-24 0.85 46.15 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "55" 2024-02-05 2024-02-24 0.9 51 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "55" 2024-02-05 2024-02-24 0.95 63.05 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "55" 2024-02-05 2024-02-24 0.975 74.1999999999999 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "55" 2024-02-05 2024-02-24 0.99 106.01 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "55" 2024-02-05 2024-02-25 0.01 11.98 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "55" 2024-02-05 2024-02-25 0.025 13 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "55" 2024-02-05 2024-02-25 0.05 13.95 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "55" 2024-02-05 2024-02-25 0.1 17.9 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "55" 2024-02-05 2024-02-25 0.15 20 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "55" 2024-02-05 2024-02-25 0.2 22 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "55" 2024-02-05 2024-02-25 0.25 23 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "55" 2024-02-05 2024-02-25 0.3 24 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "55" 2024-02-05 2024-02-25 0.35 26.65 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "55" 2024-02-05 2024-02-25 0.4 30 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "55" 2024-02-05 2024-02-25 0.45 31 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "55" 2024-02-05 2024-02-25 0.5 33 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "55" 2024-02-05 2024-02-25 0.55 35 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "55" 2024-02-05 2024-02-25 0.6 36.4 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "55" 2024-02-05 2024-02-25 0.65 38 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "55" 2024-02-05 2024-02-25 0.7 39.3 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "55" 2024-02-05 2024-02-25 0.75 42.25 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "55" 2024-02-05 2024-02-25 0.8 46.2 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "55" 2024-02-05 2024-02-25 0.85 49 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "55" 2024-02-05 2024-02-25 0.9 51.1 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "55" 2024-02-05 2024-02-25 0.95 62.2 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "55" 2024-02-05 2024-02-25 0.975 71.1499999999999 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "55" 2024-02-05 2024-02-25 0.99 74.4900000000003 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "55" 2024-02-05 2024-02-26 0.01 10.99 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "55" 2024-02-05 2024-02-26 0.025 14.425 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "55" 2024-02-05 2024-02-26 0.05 16.95 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "55" 2024-02-05 2024-02-26 0.1 20 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "55" 2024-02-05 2024-02-26 0.15 22.85 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "55" 2024-02-05 2024-02-26 0.2 25 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "55" 2024-02-05 2024-02-26 0.25 28.75 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "55" 2024-02-05 2024-02-26 0.3 29 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "55" 2024-02-05 2024-02-26 0.35 30 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "55" 2024-02-05 2024-02-26 0.4 33 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "55" 2024-02-05 2024-02-26 0.45 35.55 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "55" 2024-02-05 2024-02-26 0.5 37.5 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "55" 2024-02-05 2024-02-26 0.55 39 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "55" 2024-02-05 2024-02-26 0.6 42 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "55" 2024-02-05 2024-02-26 0.65 43.35 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "55" 2024-02-05 2024-02-26 0.7 46 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "55" 2024-02-05 2024-02-26 0.75 47.25 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "55" 2024-02-05 2024-02-26 0.8 52 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "55" 2024-02-05 2024-02-26 0.85 58.45 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "55" 2024-02-05 2024-02-26 0.9 64 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "55" 2024-02-05 2024-02-26 0.95 75.55 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "55" 2024-02-05 2024-02-26 0.975 86.525 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "55" 2024-02-05 2024-02-26 0.99 95.3300000000002 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "55" 2024-02-05 2024-02-27 0.01 12 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "55" 2024-02-05 2024-02-27 0.025 13.95 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "55" 2024-02-05 2024-02-27 0.05 16 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "55" 2024-02-05 2024-02-27 0.1 18 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "55" 2024-02-05 2024-02-27 0.15 21.85 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "55" 2024-02-05 2024-02-27 0.2 23.8 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "55" 2024-02-05 2024-02-27 0.25 24 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "55" 2024-02-05 2024-02-27 0.3 26.7 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "55" 2024-02-05 2024-02-27 0.35 27.65 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "55" 2024-02-05 2024-02-27 0.4 30 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "55" 2024-02-05 2024-02-27 0.45 31 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "55" 2024-02-05 2024-02-27 0.5 32 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "55" 2024-02-05 2024-02-27 0.55 33.45 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "55" 2024-02-05 2024-02-27 0.6 37.4 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "55" 2024-02-05 2024-02-27 0.65 40.35 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "55" 2024-02-05 2024-02-27 0.7 45.3 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "55" 2024-02-05 2024-02-27 0.75 47 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "55" 2024-02-05 2024-02-27 0.8 52.2 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "55" 2024-02-05 2024-02-27 0.85 55.15 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "55" 2024-02-05 2024-02-27 0.9 60.1 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "55" 2024-02-05 2024-02-27 0.95 65 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "55" 2024-02-05 2024-02-27 0.975 71.1999999999999 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "55" 2024-02-05 2024-02-27 0.99 104.39 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "55" 2024-02-05 2024-02-28 0.01 13.98 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "55" 2024-02-05 2024-02-28 0.025 14.95 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "55" 2024-02-05 2024-02-28 0.05 17 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "55" 2024-02-05 2024-02-28 0.1 18 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "55" 2024-02-05 2024-02-28 0.15 21 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "55" 2024-02-05 2024-02-28 0.2 22.8 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "55" 2024-02-05 2024-02-28 0.25 23 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "55" 2024-02-05 2024-02-28 0.3 24.7 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "55" 2024-02-05 2024-02-28 0.35 26 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "55" 2024-02-05 2024-02-28 0.4 30 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "55" 2024-02-05 2024-02-28 0.45 32 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "55" 2024-02-05 2024-02-28 0.5 34 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "55" 2024-02-05 2024-02-28 0.55 36.45 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "55" 2024-02-05 2024-02-28 0.6 38 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "55" 2024-02-05 2024-02-28 0.65 40 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "55" 2024-02-05 2024-02-28 0.7 41.3 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "55" 2024-02-05 2024-02-28 0.75 46 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "55" 2024-02-05 2024-02-28 0.8 50 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "55" 2024-02-05 2024-02-28 0.85 55.15 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "55" 2024-02-05 2024-02-28 0.9 60.1 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "55" 2024-02-05 2024-02-28 0.95 71.1 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "55" 2024-02-05 2024-02-28 0.975 86.3499999999999 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "55" 2024-02-05 2024-02-28 0.99 100.09 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "55" 2024-02-05 2024-02-29 0.01 11.98 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "55" 2024-02-05 2024-02-29 0.025 13.475 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "55" 2024-02-05 2024-02-29 0.05 15 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "55" 2024-02-05 2024-02-29 0.1 19 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "55" 2024-02-05 2024-02-29 0.15 21.85 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "55" 2024-02-05 2024-02-29 0.2 24 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "55" 2024-02-05 2024-02-29 0.25 25 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "55" 2024-02-05 2024-02-29 0.3 26.7 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "55" 2024-02-05 2024-02-29 0.35 29 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "55" 2024-02-05 2024-02-29 0.4 31 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "55" 2024-02-05 2024-02-29 0.45 33 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "55" 2024-02-05 2024-02-29 0.5 34 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "55" 2024-02-05 2024-02-29 0.55 36.45 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "55" 2024-02-05 2024-02-29 0.6 39 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "55" 2024-02-05 2024-02-29 0.65 42 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "55" 2024-02-05 2024-02-29 0.7 42.3 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "55" 2024-02-05 2024-02-29 0.75 45.25 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "55" 2024-02-05 2024-02-29 0.8 49 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "55" 2024-02-05 2024-02-29 0.85 55 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "55" 2024-02-05 2024-02-29 0.9 64.2 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "55" 2024-02-05 2024-02-29 0.95 75 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "55" 2024-02-05 2024-02-29 0.975 80.7249999999999 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "55" 2024-02-05 2024-02-29 0.99 111.06 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "55" 2024-02-05 2024-03-01 0.01 10 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "55" 2024-02-05 2024-03-01 0.025 12.475 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "55" 2024-02-05 2024-03-01 0.05 13 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "55" 2024-02-05 2024-03-01 0.1 17 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "55" 2024-02-05 2024-03-01 0.15 18.85 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "55" 2024-02-05 2024-03-01 0.2 21.8 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "55" 2024-02-05 2024-03-01 0.25 24 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "55" 2024-02-05 2024-03-01 0.3 27 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "55" 2024-02-05 2024-03-01 0.35 28 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "55" 2024-02-05 2024-03-01 0.4 29.6 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "55" 2024-02-05 2024-03-01 0.45 31 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "55" 2024-02-05 2024-03-01 0.5 33 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "55" 2024-02-05 2024-03-01 0.55 34 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "55" 2024-02-05 2024-03-01 0.6 36.4 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "55" 2024-02-05 2024-03-01 0.65 40.7 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "55" 2024-02-05 2024-03-01 0.7 44.3 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "55" 2024-02-05 2024-03-01 0.75 47.5 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "55" 2024-02-05 2024-03-01 0.8 53 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "55" 2024-02-05 2024-03-01 0.85 54.15 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "55" 2024-02-05 2024-03-01 0.9 60.1 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "55" 2024-02-05 2024-03-01 0.95 65.05 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "55" 2024-02-05 2024-03-01 0.975 71.525 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "55" 2024-02-05 2024-03-01 0.99 130 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "55" 2024-02-05 2024-03-02 0.01 11.96 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "55" 2024-02-05 2024-03-02 0.025 13.475 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "55" 2024-02-05 2024-03-02 0.05 15 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "55" 2024-02-05 2024-03-02 0.1 17 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "55" 2024-02-05 2024-03-02 0.15 20 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "55" 2024-02-05 2024-03-02 0.2 21.8 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "55" 2024-02-05 2024-03-02 0.25 23.75 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "55" 2024-02-05 2024-03-02 0.3 25 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "55" 2024-02-05 2024-03-02 0.35 26.65 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "55" 2024-02-05 2024-03-02 0.4 28.6 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "55" 2024-02-05 2024-03-02 0.45 30.55 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "55" 2024-02-05 2024-03-02 0.5 32 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "55" 2024-02-05 2024-03-02 0.55 34.45 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "55" 2024-02-05 2024-03-02 0.6 36 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "55" 2024-02-05 2024-03-02 0.65 36.35 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "55" 2024-02-05 2024-03-02 0.7 41 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "55" 2024-02-05 2024-03-02 0.75 43.25 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "55" 2024-02-05 2024-03-02 0.8 49.2 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "55" 2024-02-05 2024-03-02 0.85 52.15 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "55" 2024-02-05 2024-03-02 0.9 62.1 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "55" 2024-02-05 2024-03-02 0.95 68.25 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "55" 2024-02-05 2024-03-02 0.975 78.6749999999999 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "55" 2024-02-05 2024-03-02 0.99 87.1700000000001 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "55" 2024-02-05 2024-03-03 0.01 11.96 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "55" 2024-02-05 2024-03-03 0.025 12.475 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "55" 2024-02-05 2024-03-03 0.05 14 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "55" 2024-02-05 2024-03-03 0.1 18.9 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "55" 2024-02-05 2024-03-03 0.15 20 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "55" 2024-02-05 2024-03-03 0.2 21 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "55" 2024-02-05 2024-03-03 0.25 22 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "55" 2024-02-05 2024-03-03 0.3 24.7 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "55" 2024-02-05 2024-03-03 0.35 26 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "55" 2024-02-05 2024-03-03 0.4 27 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "55" 2024-02-05 2024-03-03 0.45 29 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "55" 2024-02-05 2024-03-03 0.5 30 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "55" 2024-02-05 2024-03-03 0.55 33 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "55" 2024-02-05 2024-03-03 0.6 35 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "55" 2024-02-05 2024-03-03 0.65 36.35 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "55" 2024-02-05 2024-03-03 0.7 41.3 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "55" 2024-02-05 2024-03-03 0.75 45.25 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "55" 2024-02-05 2024-03-03 0.8 49.4 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "55" 2024-02-05 2024-03-03 0.85 54 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "55" 2024-02-05 2024-03-03 0.9 59 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "55" 2024-02-05 2024-03-03 0.95 65.25 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "55" 2024-02-05 2024-03-03 0.975 78.2999999999999 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "55" 2024-02-05 2024-03-03 0.99 111.13 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "55" 2024-02-05 2024-03-04 0.01 11.93 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "55" 2024-02-05 2024-03-04 0.025 12 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "55" 2024-02-05 2024-03-04 0.05 13.95 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "55" 2024-02-05 2024-03-04 0.1 17.8 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "55" 2024-02-05 2024-03-04 0.15 19.85 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "55" 2024-02-05 2024-03-04 0.2 22 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "55" 2024-02-05 2024-03-04 0.25 25 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "55" 2024-02-05 2024-03-04 0.3 27.7 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "55" 2024-02-05 2024-03-04 0.35 29.65 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "55" 2024-02-05 2024-03-04 0.4 31 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "55" 2024-02-05 2024-03-04 0.45 34 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "55" 2024-02-05 2024-03-04 0.5 36 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "55" 2024-02-05 2024-03-04 0.55 38 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "55" 2024-02-05 2024-03-04 0.6 40 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "55" 2024-02-05 2024-03-04 0.65 42 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "55" 2024-02-05 2024-03-04 0.7 45.9 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "55" 2024-02-05 2024-03-04 0.75 50 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "55" 2024-02-05 2024-03-04 0.8 55 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "55" 2024-02-05 2024-03-04 0.85 62.15 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "55" 2024-02-05 2024-03-04 0.9 69.3 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "55" 2024-02-05 2024-03-04 0.95 80.05 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "55" 2024-02-05 2024-03-04 0.975 86.6749999999999 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "55" 2024-02-05 2024-03-04 0.99 93.1500000000001 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "54" 2024-02-05 2024-02-06 0.01 3.99 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "54" 2024-02-05 2024-02-06 0.025 4.475 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "54" 2024-02-05 2024-02-06 0.05 5.95 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "54" 2024-02-05 2024-02-06 0.1 7 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "54" 2024-02-05 2024-02-06 0.15 8.85 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "54" 2024-02-05 2024-02-06 0.2 9 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "54" 2024-02-05 2024-02-06 0.25 9 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "54" 2024-02-05 2024-02-06 0.3 10 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "54" 2024-02-05 2024-02-06 0.35 10 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "54" 2024-02-05 2024-02-06 0.4 11 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "54" 2024-02-05 2024-02-06 0.45 11 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "54" 2024-02-05 2024-02-06 0.5 12 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "54" 2024-02-05 2024-02-06 0.55 12.45 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "54" 2024-02-05 2024-02-06 0.6 13 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "54" 2024-02-05 2024-02-06 0.65 13 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "54" 2024-02-05 2024-02-06 0.7 14 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "54" 2024-02-05 2024-02-06 0.75 15.25 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "54" 2024-02-05 2024-02-06 0.8 17 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "54" 2024-02-05 2024-02-06 0.85 18 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "54" 2024-02-05 2024-02-06 0.9 18.1 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "54" 2024-02-05 2024-02-06 0.95 20 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "54" 2024-02-05 2024-02-06 0.975 22.525 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "54" 2024-02-05 2024-02-06 0.99 23.01 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "54" 2024-02-05 2024-02-07 0.01 2.98 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "54" 2024-02-05 2024-02-07 0.025 5 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "54" 2024-02-05 2024-02-07 0.05 5 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "54" 2024-02-05 2024-02-07 0.1 6.9 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "54" 2024-02-05 2024-02-07 0.15 7 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "54" 2024-02-05 2024-02-07 0.2 8 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "54" 2024-02-05 2024-02-07 0.25 9 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "54" 2024-02-05 2024-02-07 0.3 9.7 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "54" 2024-02-05 2024-02-07 0.35 10 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "54" 2024-02-05 2024-02-07 0.4 10.6 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "54" 2024-02-05 2024-02-07 0.45 11 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "54" 2024-02-05 2024-02-07 0.5 12 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "54" 2024-02-05 2024-02-07 0.55 12 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "54" 2024-02-05 2024-02-07 0.6 13 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "54" 2024-02-05 2024-02-07 0.65 13 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "54" 2024-02-05 2024-02-07 0.7 14 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "54" 2024-02-05 2024-02-07 0.75 15 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "54" 2024-02-05 2024-02-07 0.8 16 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "54" 2024-02-05 2024-02-07 0.85 17 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "54" 2024-02-05 2024-02-07 0.9 18 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "54" 2024-02-05 2024-02-07 0.95 19 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "54" 2024-02-05 2024-02-07 0.975 19.525 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "54" 2024-02-05 2024-02-07 0.99 22.02 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "54" 2024-02-05 2024-02-08 0.01 3 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "54" 2024-02-05 2024-02-08 0.025 4 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "54" 2024-02-05 2024-02-08 0.05 5 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "54" 2024-02-05 2024-02-08 0.1 6 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "54" 2024-02-05 2024-02-08 0.15 7 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "54" 2024-02-05 2024-02-08 0.2 7 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "54" 2024-02-05 2024-02-08 0.25 7.75 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "54" 2024-02-05 2024-02-08 0.3 8 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "54" 2024-02-05 2024-02-08 0.35 8 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "54" 2024-02-05 2024-02-08 0.4 9 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "54" 2024-02-05 2024-02-08 0.45 9 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "54" 2024-02-05 2024-02-08 0.5 10 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "54" 2024-02-05 2024-02-08 0.55 11 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "54" 2024-02-05 2024-02-08 0.6 11 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "54" 2024-02-05 2024-02-08 0.65 12 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "54" 2024-02-05 2024-02-08 0.7 13 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "54" 2024-02-05 2024-02-08 0.75 13.25 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "54" 2024-02-05 2024-02-08 0.8 14.2 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "54" 2024-02-05 2024-02-08 0.85 16 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "54" 2024-02-05 2024-02-08 0.9 17 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "54" 2024-02-05 2024-02-08 0.95 18.05 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "54" 2024-02-05 2024-02-08 0.975 20.525 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "54" 2024-02-05 2024-02-08 0.99 22.02 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "54" 2024-02-05 2024-02-09 0.01 2.98 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "54" 2024-02-05 2024-02-09 0.025 4.475 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "54" 2024-02-05 2024-02-09 0.05 5 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "54" 2024-02-05 2024-02-09 0.1 6 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "54" 2024-02-05 2024-02-09 0.15 6 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "54" 2024-02-05 2024-02-09 0.2 7 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "54" 2024-02-05 2024-02-09 0.25 7.75 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "54" 2024-02-05 2024-02-09 0.3 8 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "54" 2024-02-05 2024-02-09 0.35 8 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "54" 2024-02-05 2024-02-09 0.4 9 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "54" 2024-02-05 2024-02-09 0.45 9.55 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "54" 2024-02-05 2024-02-09 0.5 10 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "54" 2024-02-05 2024-02-09 0.55 11 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "54" 2024-02-05 2024-02-09 0.6 12 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "54" 2024-02-05 2024-02-09 0.65 12 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "54" 2024-02-05 2024-02-09 0.7 13 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "54" 2024-02-05 2024-02-09 0.75 14 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "54" 2024-02-05 2024-02-09 0.8 16 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "54" 2024-02-05 2024-02-09 0.85 16 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "54" 2024-02-05 2024-02-09 0.9 18 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "54" 2024-02-05 2024-02-09 0.95 19 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "54" 2024-02-05 2024-02-09 0.975 19.525 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "54" 2024-02-05 2024-02-09 0.99 20.04 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "54" 2024-02-05 2024-02-10 0.01 3 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "54" 2024-02-05 2024-02-10 0.025 3.475 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "54" 2024-02-05 2024-02-10 0.05 4 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "54" 2024-02-05 2024-02-10 0.1 5 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "54" 2024-02-05 2024-02-10 0.15 5 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "54" 2024-02-05 2024-02-10 0.2 6 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "54" 2024-02-05 2024-02-10 0.25 6.75 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "54" 2024-02-05 2024-02-10 0.3 7 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "54" 2024-02-05 2024-02-10 0.35 8 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "54" 2024-02-05 2024-02-10 0.4 9 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "54" 2024-02-05 2024-02-10 0.45 10 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "54" 2024-02-05 2024-02-10 0.5 10 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "54" 2024-02-05 2024-02-10 0.55 11 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "54" 2024-02-05 2024-02-10 0.6 11 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "54" 2024-02-05 2024-02-10 0.65 11 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "54" 2024-02-05 2024-02-10 0.7 12 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "54" 2024-02-05 2024-02-10 0.75 13 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "54" 2024-02-05 2024-02-10 0.8 13 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "54" 2024-02-05 2024-02-10 0.85 14 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "54" 2024-02-05 2024-02-10 0.9 15.1 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "54" 2024-02-05 2024-02-10 0.95 18 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "54" 2024-02-05 2024-02-10 0.975 20 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "54" 2024-02-05 2024-02-10 0.99 21.01 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "54" 2024-02-05 2024-02-11 0.01 1 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "54" 2024-02-05 2024-02-11 0.025 2.475 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "54" 2024-02-05 2024-02-11 0.05 3 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "54" 2024-02-05 2024-02-11 0.1 4 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "54" 2024-02-05 2024-02-11 0.15 5 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "54" 2024-02-05 2024-02-11 0.2 6 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "54" 2024-02-05 2024-02-11 0.25 6 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "54" 2024-02-05 2024-02-11 0.3 7 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "54" 2024-02-05 2024-02-11 0.35 7 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "54" 2024-02-05 2024-02-11 0.4 7 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "54" 2024-02-05 2024-02-11 0.45 8 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "54" 2024-02-05 2024-02-11 0.5 8 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "54" 2024-02-05 2024-02-11 0.55 8.45 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "54" 2024-02-05 2024-02-11 0.6 9 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "54" 2024-02-05 2024-02-11 0.65 10 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "54" 2024-02-05 2024-02-11 0.7 11 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "54" 2024-02-05 2024-02-11 0.75 11.25 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "54" 2024-02-05 2024-02-11 0.8 13 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "54" 2024-02-05 2024-02-11 0.85 14.15 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "54" 2024-02-05 2024-02-11 0.9 17 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "54" 2024-02-05 2024-02-11 0.95 18 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "54" 2024-02-05 2024-02-11 0.975 19.575 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "54" 2024-02-05 2024-02-11 0.99 22.02 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "54" 2024-02-05 2024-02-12 0.01 3.99 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "54" 2024-02-05 2024-02-12 0.025 4 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "54" 2024-02-05 2024-02-12 0.05 4 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "54" 2024-02-05 2024-02-12 0.1 5 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "54" 2024-02-05 2024-02-12 0.15 6 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "54" 2024-02-05 2024-02-12 0.2 7 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "54" 2024-02-05 2024-02-12 0.25 7 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "54" 2024-02-05 2024-02-12 0.3 8 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "54" 2024-02-05 2024-02-12 0.35 9 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "54" 2024-02-05 2024-02-12 0.4 10 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "54" 2024-02-05 2024-02-12 0.45 10 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "54" 2024-02-05 2024-02-12 0.5 11 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "54" 2024-02-05 2024-02-12 0.55 11 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "54" 2024-02-05 2024-02-12 0.6 12 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "54" 2024-02-05 2024-02-12 0.65 13 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "54" 2024-02-05 2024-02-12 0.7 13 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "54" 2024-02-05 2024-02-12 0.75 14 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "54" 2024-02-05 2024-02-12 0.8 15 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "54" 2024-02-05 2024-02-12 0.85 16 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "54" 2024-02-05 2024-02-12 0.9 17 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "54" 2024-02-05 2024-02-12 0.95 20.1 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "54" 2024-02-05 2024-02-12 0.975 23.575 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "54" 2024-02-05 2024-02-12 0.99 26.02 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "54" 2024-02-05 2024-02-13 0.01 1.99 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "54" 2024-02-05 2024-02-13 0.025 2.475 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "54" 2024-02-05 2024-02-13 0.05 3 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "54" 2024-02-05 2024-02-13 0.1 4.9 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "54" 2024-02-05 2024-02-13 0.15 5.85 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "54" 2024-02-05 2024-02-13 0.2 6 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "54" 2024-02-05 2024-02-13 0.25 7 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "54" 2024-02-05 2024-02-13 0.3 7 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "54" 2024-02-05 2024-02-13 0.35 7.65000000000001 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "54" 2024-02-05 2024-02-13 0.4 8 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "54" 2024-02-05 2024-02-13 0.45 9 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "54" 2024-02-05 2024-02-13 0.5 9 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "54" 2024-02-05 2024-02-13 0.55 9 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "54" 2024-02-05 2024-02-13 0.6 9.40000000000001 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "54" 2024-02-05 2024-02-13 0.65 10 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "54" 2024-02-05 2024-02-13 0.7 10 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "54" 2024-02-05 2024-02-13 0.75 11 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "54" 2024-02-05 2024-02-13 0.8 11.2 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "54" 2024-02-05 2024-02-13 0.85 12.15 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "54" 2024-02-05 2024-02-13 0.9 14.2 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "54" 2024-02-05 2024-02-13 0.95 17 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "54" 2024-02-05 2024-02-13 0.975 20.05 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "54" 2024-02-05 2024-02-13 0.99 26.1500000000001 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "54" 2024-02-05 2024-02-14 0.01 2 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "54" 2024-02-05 2024-02-14 0.025 2.475 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "54" 2024-02-05 2024-02-14 0.05 3 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "54" 2024-02-05 2024-02-14 0.1 4.9 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "54" 2024-02-05 2024-02-14 0.15 5.85 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "54" 2024-02-05 2024-02-14 0.2 6 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "54" 2024-02-05 2024-02-14 0.25 6 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "54" 2024-02-05 2024-02-14 0.3 6 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "54" 2024-02-05 2024-02-14 0.35 7 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "54" 2024-02-05 2024-02-14 0.4 7 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "54" 2024-02-05 2024-02-14 0.45 7 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "54" 2024-02-05 2024-02-14 0.5 8 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "54" 2024-02-05 2024-02-14 0.55 9 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "54" 2024-02-05 2024-02-14 0.6 10 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "54" 2024-02-05 2024-02-14 0.65 10.35 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "54" 2024-02-05 2024-02-14 0.7 11 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "54" 2024-02-05 2024-02-14 0.75 12 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "54" 2024-02-05 2024-02-14 0.8 12.2 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "54" 2024-02-05 2024-02-14 0.85 13 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "54" 2024-02-05 2024-02-14 0.9 15.1 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "54" 2024-02-05 2024-02-14 0.95 17.05 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "54" 2024-02-05 2024-02-14 0.975 19.525 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "54" 2024-02-05 2024-02-14 0.99 23.01 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "54" 2024-02-05 2024-02-15 0.01 1.99 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "54" 2024-02-05 2024-02-15 0.025 2.475 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "54" 2024-02-05 2024-02-15 0.05 3 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "54" 2024-02-05 2024-02-15 0.1 4 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "54" 2024-02-05 2024-02-15 0.15 4 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "54" 2024-02-05 2024-02-15 0.2 5 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "54" 2024-02-05 2024-02-15 0.25 5 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "54" 2024-02-05 2024-02-15 0.3 5.7 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "54" 2024-02-05 2024-02-15 0.35 6 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "54" 2024-02-05 2024-02-15 0.4 6.6 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "54" 2024-02-05 2024-02-15 0.45 7 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "54" 2024-02-05 2024-02-15 0.5 7.5 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "54" 2024-02-05 2024-02-15 0.55 8 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "54" 2024-02-05 2024-02-15 0.6 9 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "54" 2024-02-05 2024-02-15 0.65 9.35000000000001 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "54" 2024-02-05 2024-02-15 0.7 10 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "54" 2024-02-05 2024-02-15 0.75 11 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "54" 2024-02-05 2024-02-15 0.8 12 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "54" 2024-02-05 2024-02-15 0.85 13 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "54" 2024-02-05 2024-02-15 0.9 14 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "54" 2024-02-05 2024-02-15 0.95 18 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "54" 2024-02-05 2024-02-15 0.975 18.525 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "54" 2024-02-05 2024-02-15 0.99 19.01 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "54" 2024-02-05 2024-02-16 0.01 1 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "54" 2024-02-05 2024-02-16 0.025 2.475 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "54" 2024-02-05 2024-02-16 0.05 3 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "54" 2024-02-05 2024-02-16 0.1 4 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "54" 2024-02-05 2024-02-16 0.15 4 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "54" 2024-02-05 2024-02-16 0.2 5 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "54" 2024-02-05 2024-02-16 0.25 5 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "54" 2024-02-05 2024-02-16 0.3 6 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "54" 2024-02-05 2024-02-16 0.35 6 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "54" 2024-02-05 2024-02-16 0.4 7 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "54" 2024-02-05 2024-02-16 0.45 7 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "54" 2024-02-05 2024-02-16 0.5 8 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "54" 2024-02-05 2024-02-16 0.55 8 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "54" 2024-02-05 2024-02-16 0.6 8 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "54" 2024-02-05 2024-02-16 0.65 9 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "54" 2024-02-05 2024-02-16 0.7 9 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "54" 2024-02-05 2024-02-16 0.75 10 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "54" 2024-02-05 2024-02-16 0.8 11 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "54" 2024-02-05 2024-02-16 0.85 12 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "54" 2024-02-05 2024-02-16 0.9 15 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "54" 2024-02-05 2024-02-16 0.95 17.05 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "54" 2024-02-05 2024-02-16 0.975 19 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "54" 2024-02-05 2024-02-16 0.99 24.03 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "54" 2024-02-05 2024-02-17 0.01 1 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "54" 2024-02-05 2024-02-17 0.025 2 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "54" 2024-02-05 2024-02-17 0.05 2 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "54" 2024-02-05 2024-02-17 0.1 3 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "54" 2024-02-05 2024-02-17 0.15 4 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "54" 2024-02-05 2024-02-17 0.2 5 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "54" 2024-02-05 2024-02-17 0.25 5.75 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "54" 2024-02-05 2024-02-17 0.3 6 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "54" 2024-02-05 2024-02-17 0.35 6 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "54" 2024-02-05 2024-02-17 0.4 6.6 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "54" 2024-02-05 2024-02-17 0.45 7 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "54" 2024-02-05 2024-02-17 0.5 8 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "54" 2024-02-05 2024-02-17 0.55 8 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "54" 2024-02-05 2024-02-17 0.6 8 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "54" 2024-02-05 2024-02-17 0.65 9 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "54" 2024-02-05 2024-02-17 0.7 10 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "54" 2024-02-05 2024-02-17 0.75 11 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "54" 2024-02-05 2024-02-17 0.8 12 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "54" 2024-02-05 2024-02-17 0.85 13 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "54" 2024-02-05 2024-02-17 0.9 15 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "54" 2024-02-05 2024-02-17 0.95 16.05 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "54" 2024-02-05 2024-02-17 0.975 17.525 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "54" 2024-02-05 2024-02-17 0.99 19.05 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "54" 2024-02-05 2024-02-18 0.01 1.98 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "54" 2024-02-05 2024-02-18 0.025 2 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "54" 2024-02-05 2024-02-18 0.05 2 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "54" 2024-02-05 2024-02-18 0.1 3 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "54" 2024-02-05 2024-02-18 0.15 3 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "54" 2024-02-05 2024-02-18 0.2 3.8 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "54" 2024-02-05 2024-02-18 0.25 4 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "54" 2024-02-05 2024-02-18 0.3 4 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "54" 2024-02-05 2024-02-18 0.35 5 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "54" 2024-02-05 2024-02-18 0.4 5 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "54" 2024-02-05 2024-02-18 0.45 5 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "54" 2024-02-05 2024-02-18 0.5 6 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "54" 2024-02-05 2024-02-18 0.55 6 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "54" 2024-02-05 2024-02-18 0.6 7 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "54" 2024-02-05 2024-02-18 0.65 7 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "54" 2024-02-05 2024-02-18 0.7 8 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "54" 2024-02-05 2024-02-18 0.75 9 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "54" 2024-02-05 2024-02-18 0.8 10 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "54" 2024-02-05 2024-02-18 0.85 11 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "54" 2024-02-05 2024-02-18 0.9 12 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "54" 2024-02-05 2024-02-18 0.95 17.05 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "54" 2024-02-05 2024-02-18 0.975 18 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "54" 2024-02-05 2024-02-18 0.99 18.02 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "54" 2024-02-05 2024-02-19 0.01 1.99 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "54" 2024-02-05 2024-02-19 0.025 2 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "54" 2024-02-05 2024-02-19 0.05 2 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "54" 2024-02-05 2024-02-19 0.1 3.9 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "54" 2024-02-05 2024-02-19 0.15 4 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "54" 2024-02-05 2024-02-19 0.2 4 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "54" 2024-02-05 2024-02-19 0.25 5 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "54" 2024-02-05 2024-02-19 0.3 5 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "54" 2024-02-05 2024-02-19 0.35 6 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "54" 2024-02-05 2024-02-19 0.4 6 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "54" 2024-02-05 2024-02-19 0.45 7 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "54" 2024-02-05 2024-02-19 0.5 7 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "54" 2024-02-05 2024-02-19 0.55 8 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "54" 2024-02-05 2024-02-19 0.6 9 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "54" 2024-02-05 2024-02-19 0.65 10 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "54" 2024-02-05 2024-02-19 0.7 10.3 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "54" 2024-02-05 2024-02-19 0.75 11.25 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "54" 2024-02-05 2024-02-19 0.8 12 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "54" 2024-02-05 2024-02-19 0.85 13.15 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "54" 2024-02-05 2024-02-19 0.9 15 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "54" 2024-02-05 2024-02-19 0.95 16 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "54" 2024-02-05 2024-02-19 0.975 17.525 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "54" 2024-02-05 2024-02-19 0.99 19 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "54" 2024-02-05 2024-02-20 0.01 1 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "54" 2024-02-05 2024-02-20 0.025 1 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "54" 2024-02-05 2024-02-20 0.05 2 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "54" 2024-02-05 2024-02-20 0.1 3 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "54" 2024-02-05 2024-02-20 0.15 3 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "54" 2024-02-05 2024-02-20 0.2 4 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "54" 2024-02-05 2024-02-20 0.25 4 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "54" 2024-02-05 2024-02-20 0.3 5.7 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "54" 2024-02-05 2024-02-20 0.35 6 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "54" 2024-02-05 2024-02-20 0.4 6.6 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "54" 2024-02-05 2024-02-20 0.45 7 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "54" 2024-02-05 2024-02-20 0.5 8 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "54" 2024-02-05 2024-02-20 0.55 8 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "54" 2024-02-05 2024-02-20 0.6 9 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "54" 2024-02-05 2024-02-20 0.65 9 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "54" 2024-02-05 2024-02-20 0.7 11 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "54" 2024-02-05 2024-02-20 0.75 11.25 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "54" 2024-02-05 2024-02-20 0.8 13 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "54" 2024-02-05 2024-02-20 0.85 13.15 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "54" 2024-02-05 2024-02-20 0.9 15.1 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "54" 2024-02-05 2024-02-20 0.95 18 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "54" 2024-02-05 2024-02-20 0.975 18.525 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "54" 2024-02-05 2024-02-20 0.99 19.06 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "54" 2024-02-05 2024-02-21 0.01 0 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "54" 2024-02-05 2024-02-21 0.025 1 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "54" 2024-02-05 2024-02-21 0.05 1 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "54" 2024-02-05 2024-02-21 0.1 2 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "54" 2024-02-05 2024-02-21 0.15 3 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "54" 2024-02-05 2024-02-21 0.2 4 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "54" 2024-02-05 2024-02-21 0.25 4 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "54" 2024-02-05 2024-02-21 0.3 4 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "54" 2024-02-05 2024-02-21 0.35 5 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "54" 2024-02-05 2024-02-21 0.4 6 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "54" 2024-02-05 2024-02-21 0.45 6 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "54" 2024-02-05 2024-02-21 0.5 7 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "54" 2024-02-05 2024-02-21 0.55 7.45 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "54" 2024-02-05 2024-02-21 0.6 8 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "54" 2024-02-05 2024-02-21 0.65 9 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "54" 2024-02-05 2024-02-21 0.7 10 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "54" 2024-02-05 2024-02-21 0.75 10.25 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "54" 2024-02-05 2024-02-21 0.8 11 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "54" 2024-02-05 2024-02-21 0.85 12.15 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "54" 2024-02-05 2024-02-21 0.9 14.1 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "54" 2024-02-05 2024-02-21 0.95 19.05 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "54" 2024-02-05 2024-02-21 0.975 21.525 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "54" 2024-02-05 2024-02-21 0.99 25.04 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "54" 2024-02-05 2024-02-22 0.01 0 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "54" 2024-02-05 2024-02-22 0.025 0.475 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "54" 2024-02-05 2024-02-22 0.05 2 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "54" 2024-02-05 2024-02-22 0.1 2.9 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "54" 2024-02-05 2024-02-22 0.15 3 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "54" 2024-02-05 2024-02-22 0.2 3 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "54" 2024-02-05 2024-02-22 0.25 4 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "54" 2024-02-05 2024-02-22 0.3 4 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "54" 2024-02-05 2024-02-22 0.35 4 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "54" 2024-02-05 2024-02-22 0.4 5 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "54" 2024-02-05 2024-02-22 0.45 5 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "54" 2024-02-05 2024-02-22 0.5 6 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "54" 2024-02-05 2024-02-22 0.55 6 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "54" 2024-02-05 2024-02-22 0.6 7 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "54" 2024-02-05 2024-02-22 0.65 7 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "54" 2024-02-05 2024-02-22 0.7 8 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "54" 2024-02-05 2024-02-22 0.75 9 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "54" 2024-02-05 2024-02-22 0.8 9.2 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "54" 2024-02-05 2024-02-22 0.85 10 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "54" 2024-02-05 2024-02-22 0.9 12 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "54" 2024-02-05 2024-02-22 0.95 13.15 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "54" 2024-02-05 2024-02-22 0.975 16 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "54" 2024-02-05 2024-02-22 0.99 23.01 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "54" 2024-02-05 2024-02-23 0.01 1.99 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "54" 2024-02-05 2024-02-23 0.025 2 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "54" 2024-02-05 2024-02-23 0.05 2 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "54" 2024-02-05 2024-02-23 0.1 2 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "54" 2024-02-05 2024-02-23 0.15 3 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "54" 2024-02-05 2024-02-23 0.2 3 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "54" 2024-02-05 2024-02-23 0.25 4 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "54" 2024-02-05 2024-02-23 0.3 4 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "54" 2024-02-05 2024-02-23 0.35 5 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "54" 2024-02-05 2024-02-23 0.4 6 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "54" 2024-02-05 2024-02-23 0.45 6 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "54" 2024-02-05 2024-02-23 0.5 6 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "54" 2024-02-05 2024-02-23 0.55 7 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "54" 2024-02-05 2024-02-23 0.6 7 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "54" 2024-02-05 2024-02-23 0.65 7.35000000000001 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "54" 2024-02-05 2024-02-23 0.7 8 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "54" 2024-02-05 2024-02-23 0.75 9 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "54" 2024-02-05 2024-02-23 0.8 10.2 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "54" 2024-02-05 2024-02-23 0.85 11 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "54" 2024-02-05 2024-02-23 0.9 12.1 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "54" 2024-02-05 2024-02-23 0.95 15 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "54" 2024-02-05 2024-02-23 0.975 18.525 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "54" 2024-02-05 2024-02-23 0.99 24 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "54" 2024-02-05 2024-02-24 0.01 0 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "54" 2024-02-05 2024-02-24 0.025 1 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "54" 2024-02-05 2024-02-24 0.05 1 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "54" 2024-02-05 2024-02-24 0.1 2 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "54" 2024-02-05 2024-02-24 0.15 2 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "54" 2024-02-05 2024-02-24 0.2 3 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "54" 2024-02-05 2024-02-24 0.25 4 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "54" 2024-02-05 2024-02-24 0.3 4 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "54" 2024-02-05 2024-02-24 0.35 5 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "54" 2024-02-05 2024-02-24 0.4 5 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "54" 2024-02-05 2024-02-24 0.45 5 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "54" 2024-02-05 2024-02-24 0.5 6 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "54" 2024-02-05 2024-02-24 0.55 7 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "54" 2024-02-05 2024-02-24 0.6 7 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "54" 2024-02-05 2024-02-24 0.65 7 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "54" 2024-02-05 2024-02-24 0.7 8.30000000000001 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "54" 2024-02-05 2024-02-24 0.75 10 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "54" 2024-02-05 2024-02-24 0.8 11 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "54" 2024-02-05 2024-02-24 0.85 13 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "54" 2024-02-05 2024-02-24 0.9 15 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "54" 2024-02-05 2024-02-24 0.95 17.05 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "54" 2024-02-05 2024-02-24 0.975 23.1999999999999 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "54" 2024-02-05 2024-02-24 0.99 28.1000000000001 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "54" 2024-02-05 2024-02-25 0.01 0 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "54" 2024-02-05 2024-02-25 0.025 0 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "54" 2024-02-05 2024-02-25 0.05 0.95 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "54" 2024-02-05 2024-02-25 0.1 2 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "54" 2024-02-05 2024-02-25 0.15 2 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "54" 2024-02-05 2024-02-25 0.2 2 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "54" 2024-02-05 2024-02-25 0.25 3 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "54" 2024-02-05 2024-02-25 0.3 3 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "54" 2024-02-05 2024-02-25 0.35 4 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "54" 2024-02-05 2024-02-25 0.4 4 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "54" 2024-02-05 2024-02-25 0.45 5 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "54" 2024-02-05 2024-02-25 0.5 5 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "54" 2024-02-05 2024-02-25 0.55 5 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "54" 2024-02-05 2024-02-25 0.6 6 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "54" 2024-02-05 2024-02-25 0.65 7 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "54" 2024-02-05 2024-02-25 0.7 8 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "54" 2024-02-05 2024-02-25 0.75 8 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "54" 2024-02-05 2024-02-25 0.8 10 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "54" 2024-02-05 2024-02-25 0.85 11 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "54" 2024-02-05 2024-02-25 0.9 12.1 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "54" 2024-02-05 2024-02-25 0.95 15.05 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "54" 2024-02-05 2024-02-25 0.975 16.525 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "54" 2024-02-05 2024-02-25 0.99 20.03 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "54" 2024-02-05 2024-02-26 0.01 0.99 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "54" 2024-02-05 2024-02-26 0.025 2 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "54" 2024-02-05 2024-02-26 0.05 2 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "54" 2024-02-05 2024-02-26 0.1 2 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "54" 2024-02-05 2024-02-26 0.15 3 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "54" 2024-02-05 2024-02-26 0.2 3 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "54" 2024-02-05 2024-02-26 0.25 4 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "54" 2024-02-05 2024-02-26 0.3 4 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "54" 2024-02-05 2024-02-26 0.35 5 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "54" 2024-02-05 2024-02-26 0.4 5.6 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "54" 2024-02-05 2024-02-26 0.45 6 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "54" 2024-02-05 2024-02-26 0.5 6 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "54" 2024-02-05 2024-02-26 0.55 7 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "54" 2024-02-05 2024-02-26 0.6 8 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "54" 2024-02-05 2024-02-26 0.65 8 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "54" 2024-02-05 2024-02-26 0.7 9 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "54" 2024-02-05 2024-02-26 0.75 9.25000000000001 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "54" 2024-02-05 2024-02-26 0.8 10 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "54" 2024-02-05 2024-02-26 0.85 12 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "54" 2024-02-05 2024-02-26 0.9 15 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "54" 2024-02-05 2024-02-26 0.95 19 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "54" 2024-02-05 2024-02-26 0.975 20.05 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "54" 2024-02-05 2024-02-26 0.99 23.01 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "54" 2024-02-05 2024-02-27 0.01 0 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "54" 2024-02-05 2024-02-27 0.025 0 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "54" 2024-02-05 2024-02-27 0.05 1 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "54" 2024-02-05 2024-02-27 0.1 2 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "54" 2024-02-05 2024-02-27 0.15 2 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "54" 2024-02-05 2024-02-27 0.2 3 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "54" 2024-02-05 2024-02-27 0.25 3 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "54" 2024-02-05 2024-02-27 0.3 4 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "54" 2024-02-05 2024-02-27 0.35 4 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "54" 2024-02-05 2024-02-27 0.4 5 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "54" 2024-02-05 2024-02-27 0.45 5 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "54" 2024-02-05 2024-02-27 0.5 5 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "54" 2024-02-05 2024-02-27 0.55 6 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "54" 2024-02-05 2024-02-27 0.6 6 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "54" 2024-02-05 2024-02-27 0.65 7 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "54" 2024-02-05 2024-02-27 0.7 8 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "54" 2024-02-05 2024-02-27 0.75 9.25000000000001 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "54" 2024-02-05 2024-02-27 0.8 11 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "54" 2024-02-05 2024-02-27 0.85 12 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "54" 2024-02-05 2024-02-27 0.9 14.1 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "54" 2024-02-05 2024-02-27 0.95 19.05 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "54" 2024-02-05 2024-02-27 0.975 21.525 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "54" 2024-02-05 2024-02-27 0.99 24.01 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "54" 2024-02-05 2024-02-28 0.01 0 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "54" 2024-02-05 2024-02-28 0.025 0 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "54" 2024-02-05 2024-02-28 0.05 1 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "54" 2024-02-05 2024-02-28 0.1 1 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "54" 2024-02-05 2024-02-28 0.15 2 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "54" 2024-02-05 2024-02-28 0.2 2 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "54" 2024-02-05 2024-02-28 0.25 3 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "54" 2024-02-05 2024-02-28 0.3 3 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "54" 2024-02-05 2024-02-28 0.35 3.65000000000001 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "54" 2024-02-05 2024-02-28 0.4 4 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "54" 2024-02-05 2024-02-28 0.45 5 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "54" 2024-02-05 2024-02-28 0.5 5 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "54" 2024-02-05 2024-02-28 0.55 5.45 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "54" 2024-02-05 2024-02-28 0.6 6 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "54" 2024-02-05 2024-02-28 0.65 7 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "54" 2024-02-05 2024-02-28 0.7 8 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "54" 2024-02-05 2024-02-28 0.75 9 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "54" 2024-02-05 2024-02-28 0.8 9 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "54" 2024-02-05 2024-02-28 0.85 10 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "54" 2024-02-05 2024-02-28 0.9 13.1 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "54" 2024-02-05 2024-02-28 0.95 18 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "54" 2024-02-05 2024-02-28 0.975 21 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "54" 2024-02-05 2024-02-28 0.99 24.02 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "54" 2024-02-05 2024-02-29 0.01 0.99 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "54" 2024-02-05 2024-02-29 0.025 1 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "54" 2024-02-05 2024-02-29 0.05 1 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "54" 2024-02-05 2024-02-29 0.1 1 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "54" 2024-02-05 2024-02-29 0.15 2 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "54" 2024-02-05 2024-02-29 0.2 2 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "54" 2024-02-05 2024-02-29 0.25 2 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "54" 2024-02-05 2024-02-29 0.3 3 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "54" 2024-02-05 2024-02-29 0.35 3 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "54" 2024-02-05 2024-02-29 0.4 3 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "54" 2024-02-05 2024-02-29 0.45 4 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "54" 2024-02-05 2024-02-29 0.5 5 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "54" 2024-02-05 2024-02-29 0.55 5 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "54" 2024-02-05 2024-02-29 0.6 5 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "54" 2024-02-05 2024-02-29 0.65 6 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "54" 2024-02-05 2024-02-29 0.7 6.30000000000001 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "54" 2024-02-05 2024-02-29 0.75 8 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "54" 2024-02-05 2024-02-29 0.8 8.2 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "54" 2024-02-05 2024-02-29 0.85 10.15 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "54" 2024-02-05 2024-02-29 0.9 13 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "54" 2024-02-05 2024-02-29 0.95 14.05 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "54" 2024-02-05 2024-02-29 0.975 15.525 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "54" 2024-02-05 2024-02-29 0.99 17.03 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "54" 2024-02-05 2024-03-01 0.01 0 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "54" 2024-02-05 2024-03-01 0.025 0 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "54" 2024-02-05 2024-03-01 0.05 0.95 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "54" 2024-02-05 2024-03-01 0.1 1 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "54" 2024-02-05 2024-03-01 0.15 1.85 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "54" 2024-02-05 2024-03-01 0.2 2 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "54" 2024-02-05 2024-03-01 0.25 2 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "54" 2024-02-05 2024-03-01 0.3 3 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "54" 2024-02-05 2024-03-01 0.35 3 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "54" 2024-02-05 2024-03-01 0.4 4 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "54" 2024-02-05 2024-03-01 0.45 4 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "54" 2024-02-05 2024-03-01 0.5 5 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "54" 2024-02-05 2024-03-01 0.55 6 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "54" 2024-02-05 2024-03-01 0.6 6 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "54" 2024-02-05 2024-03-01 0.65 7 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "54" 2024-02-05 2024-03-01 0.7 7.30000000000001 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "54" 2024-02-05 2024-03-01 0.75 8 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "54" 2024-02-05 2024-03-01 0.8 9.2 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "54" 2024-02-05 2024-03-01 0.85 12 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "54" 2024-02-05 2024-03-01 0.9 14.1 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "54" 2024-02-05 2024-03-01 0.95 16.05 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "54" 2024-02-05 2024-03-01 0.975 20.1499999999999 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "54" 2024-02-05 2024-03-01 0.99 25.1000000000001 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "54" 2024-02-05 2024-03-02 0.01 0 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "54" 2024-02-05 2024-03-02 0.025 0 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "54" 2024-02-05 2024-03-02 0.05 1 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "54" 2024-02-05 2024-03-02 0.1 1 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "54" 2024-02-05 2024-03-02 0.15 1 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "54" 2024-02-05 2024-03-02 0.2 2 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "54" 2024-02-05 2024-03-02 0.25 2.75 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "54" 2024-02-05 2024-03-02 0.3 3 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "54" 2024-02-05 2024-03-02 0.35 3 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "54" 2024-02-05 2024-03-02 0.4 3 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "54" 2024-02-05 2024-03-02 0.45 4 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "54" 2024-02-05 2024-03-02 0.5 5 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "54" 2024-02-05 2024-03-02 0.55 5 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "54" 2024-02-05 2024-03-02 0.6 6 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "54" 2024-02-05 2024-03-02 0.65 6.35000000000001 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "54" 2024-02-05 2024-03-02 0.7 8 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "54" 2024-02-05 2024-03-02 0.75 8.25000000000001 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "54" 2024-02-05 2024-03-02 0.8 9.2 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "54" 2024-02-05 2024-03-02 0.85 12 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "54" 2024-02-05 2024-03-02 0.9 13.1 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "54" 2024-02-05 2024-03-02 0.95 16 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "54" 2024-02-05 2024-03-02 0.975 20.575 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "54" 2024-02-05 2024-03-02 0.99 24.02 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "54" 2024-02-05 2024-03-03 0.01 0 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "54" 2024-02-05 2024-03-03 0.025 0 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "54" 2024-02-05 2024-03-03 0.05 0 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "54" 2024-02-05 2024-03-03 0.1 0.9 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "54" 2024-02-05 2024-03-03 0.15 1 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "54" 2024-02-05 2024-03-03 0.2 1 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "54" 2024-02-05 2024-03-03 0.25 2 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "54" 2024-02-05 2024-03-03 0.3 2 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "54" 2024-02-05 2024-03-03 0.35 2 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "54" 2024-02-05 2024-03-03 0.4 3 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "54" 2024-02-05 2024-03-03 0.45 4 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "54" 2024-02-05 2024-03-03 0.5 4 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "54" 2024-02-05 2024-03-03 0.55 4.45 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "54" 2024-02-05 2024-03-03 0.6 5 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "54" 2024-02-05 2024-03-03 0.65 6 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "54" 2024-02-05 2024-03-03 0.7 6 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "54" 2024-02-05 2024-03-03 0.75 7 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "54" 2024-02-05 2024-03-03 0.8 8.2 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "54" 2024-02-05 2024-03-03 0.85 9 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "54" 2024-02-05 2024-03-03 0.9 11 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "54" 2024-02-05 2024-03-03 0.95 15 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "54" 2024-02-05 2024-03-03 0.975 18.525 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "54" 2024-02-05 2024-03-03 0.99 23.1500000000001 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "54" 2024-02-05 2024-03-04 0.01 0 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "54" 2024-02-05 2024-03-04 0.025 0 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "54" 2024-02-05 2024-03-04 0.05 0 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "54" 2024-02-05 2024-03-04 0.1 1 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "54" 2024-02-05 2024-03-04 0.15 1 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "54" 2024-02-05 2024-03-04 0.2 2 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "54" 2024-02-05 2024-03-04 0.25 2 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "54" 2024-02-05 2024-03-04 0.3 3 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "54" 2024-02-05 2024-03-04 0.35 3 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "54" 2024-02-05 2024-03-04 0.4 3 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "54" 2024-02-05 2024-03-04 0.45 4 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "54" 2024-02-05 2024-03-04 0.5 5.5 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "54" 2024-02-05 2024-03-04 0.55 6 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "54" 2024-02-05 2024-03-04 0.6 6 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "54" 2024-02-05 2024-03-04 0.65 7 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "54" 2024-02-05 2024-03-04 0.7 8 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "54" 2024-02-05 2024-03-04 0.75 9 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "54" 2024-02-05 2024-03-04 0.8 9.2 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "54" 2024-02-05 2024-03-04 0.85 12 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "54" 2024-02-05 2024-03-04 0.9 14 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "54" 2024-02-05 2024-03-04 0.95 21.05 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "54" 2024-02-05 2024-03-04 0.975 24.525 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "54" 2024-02-05 2024-03-04 0.99 25.05 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "56" 2024-02-05 2024-02-06 0.01 0 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "56" 2024-02-05 2024-02-06 0.025 0.475 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "56" 2024-02-05 2024-02-06 0.05 1 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "56" 2024-02-05 2024-02-06 0.1 1 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "56" 2024-02-05 2024-02-06 0.15 1 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "56" 2024-02-05 2024-02-06 0.2 1.8 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "56" 2024-02-05 2024-02-06 0.25 2 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "56" 2024-02-05 2024-02-06 0.3 2 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "56" 2024-02-05 2024-02-06 0.35 2 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "56" 2024-02-05 2024-02-06 0.4 2 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "56" 2024-02-05 2024-02-06 0.45 3 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "56" 2024-02-05 2024-02-06 0.5 3 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "56" 2024-02-05 2024-02-06 0.55 3 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "56" 2024-02-05 2024-02-06 0.6 4 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "56" 2024-02-05 2024-02-06 0.65 4 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "56" 2024-02-05 2024-02-06 0.7 4 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "56" 2024-02-05 2024-02-06 0.75 5 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "56" 2024-02-05 2024-02-06 0.8 5 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "56" 2024-02-05 2024-02-06 0.85 6 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "56" 2024-02-05 2024-02-06 0.9 6 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "56" 2024-02-05 2024-02-06 0.95 8.05 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "56" 2024-02-05 2024-02-06 0.975 9 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "56" 2024-02-05 2024-02-06 0.99 10 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "56" 2024-02-05 2024-02-07 0.01 0 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "56" 2024-02-05 2024-02-07 0.025 0 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "56" 2024-02-05 2024-02-07 0.05 0.95 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "56" 2024-02-05 2024-02-07 0.1 1 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "56" 2024-02-05 2024-02-07 0.15 1 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "56" 2024-02-05 2024-02-07 0.2 2 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "56" 2024-02-05 2024-02-07 0.25 2 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "56" 2024-02-05 2024-02-07 0.3 2.7 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "56" 2024-02-05 2024-02-07 0.35 3 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "56" 2024-02-05 2024-02-07 0.4 3 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "56" 2024-02-05 2024-02-07 0.45 3 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "56" 2024-02-05 2024-02-07 0.5 4 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "56" 2024-02-05 2024-02-07 0.55 4 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "56" 2024-02-05 2024-02-07 0.6 5 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "56" 2024-02-05 2024-02-07 0.65 5 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "56" 2024-02-05 2024-02-07 0.7 5 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "56" 2024-02-05 2024-02-07 0.75 6 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "56" 2024-02-05 2024-02-07 0.8 6 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "56" 2024-02-05 2024-02-07 0.85 7 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "56" 2024-02-05 2024-02-07 0.9 7.10000000000001 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "56" 2024-02-05 2024-02-07 0.95 8.09999999999999 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "56" 2024-02-05 2024-02-07 0.975 10 "quantile" "site-level infection dynamics" +"2 day ahead inc hosp" "56" 2024-02-05 2024-02-07 0.99 11 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "56" 2024-02-05 2024-02-08 0.01 0 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "56" 2024-02-05 2024-02-08 0.025 0 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "56" 2024-02-05 2024-02-08 0.05 0 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "56" 2024-02-05 2024-02-08 0.1 1 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "56" 2024-02-05 2024-02-08 0.15 1 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "56" 2024-02-05 2024-02-08 0.2 1 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "56" 2024-02-05 2024-02-08 0.25 1 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "56" 2024-02-05 2024-02-08 0.3 2 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "56" 2024-02-05 2024-02-08 0.35 2 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "56" 2024-02-05 2024-02-08 0.4 3 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "56" 2024-02-05 2024-02-08 0.45 3 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "56" 2024-02-05 2024-02-08 0.5 3 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "56" 2024-02-05 2024-02-08 0.55 3 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "56" 2024-02-05 2024-02-08 0.6 3 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "56" 2024-02-05 2024-02-08 0.65 4 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "56" 2024-02-05 2024-02-08 0.7 4 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "56" 2024-02-05 2024-02-08 0.75 4 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "56" 2024-02-05 2024-02-08 0.8 5 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "56" 2024-02-05 2024-02-08 0.85 5 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "56" 2024-02-05 2024-02-08 0.9 6 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "56" 2024-02-05 2024-02-08 0.95 6 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "56" 2024-02-05 2024-02-08 0.975 6.52499999999999 "quantile" "site-level infection dynamics" +"3 day ahead inc hosp" "56" 2024-02-05 2024-02-08 0.99 7.01000000000001 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "56" 2024-02-05 2024-02-09 0.01 0 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "56" 2024-02-05 2024-02-09 0.025 0.475 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "56" 2024-02-05 2024-02-09 0.05 1 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "56" 2024-02-05 2024-02-09 0.1 1 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "56" 2024-02-05 2024-02-09 0.15 1 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "56" 2024-02-05 2024-02-09 0.2 1 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "56" 2024-02-05 2024-02-09 0.25 2 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "56" 2024-02-05 2024-02-09 0.3 2 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "56" 2024-02-05 2024-02-09 0.35 2 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "56" 2024-02-05 2024-02-09 0.4 2 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "56" 2024-02-05 2024-02-09 0.45 3 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "56" 2024-02-05 2024-02-09 0.5 3 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "56" 2024-02-05 2024-02-09 0.55 3 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "56" 2024-02-05 2024-02-09 0.6 3 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "56" 2024-02-05 2024-02-09 0.65 4 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "56" 2024-02-05 2024-02-09 0.7 4 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "56" 2024-02-05 2024-02-09 0.75 4 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "56" 2024-02-05 2024-02-09 0.8 5 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "56" 2024-02-05 2024-02-09 0.85 5 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "56" 2024-02-05 2024-02-09 0.9 6.10000000000001 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "56" 2024-02-05 2024-02-09 0.95 7.05 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "56" 2024-02-05 2024-02-09 0.975 8 "quantile" "site-level infection dynamics" +"4 day ahead inc hosp" "56" 2024-02-05 2024-02-09 0.99 8 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "56" 2024-02-05 2024-02-10 0.01 0 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "56" 2024-02-05 2024-02-10 0.025 0 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "56" 2024-02-05 2024-02-10 0.05 0 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "56" 2024-02-05 2024-02-10 0.1 1 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "56" 2024-02-05 2024-02-10 0.15 1 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "56" 2024-02-05 2024-02-10 0.2 1 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "56" 2024-02-05 2024-02-10 0.25 1 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "56" 2024-02-05 2024-02-10 0.3 2 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "56" 2024-02-05 2024-02-10 0.35 2 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "56" 2024-02-05 2024-02-10 0.4 2 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "56" 2024-02-05 2024-02-10 0.45 2 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "56" 2024-02-05 2024-02-10 0.5 3 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "56" 2024-02-05 2024-02-10 0.55 3 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "56" 2024-02-05 2024-02-10 0.6 3 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "56" 2024-02-05 2024-02-10 0.65 3 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "56" 2024-02-05 2024-02-10 0.7 4 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "56" 2024-02-05 2024-02-10 0.75 4 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "56" 2024-02-05 2024-02-10 0.8 5 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "56" 2024-02-05 2024-02-10 0.85 5.15000000000001 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "56" 2024-02-05 2024-02-10 0.9 6 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "56" 2024-02-05 2024-02-10 0.95 7 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "56" 2024-02-05 2024-02-10 0.975 7 "quantile" "site-level infection dynamics" +"5 day ahead inc hosp" "56" 2024-02-05 2024-02-10 0.99 9 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "56" 2024-02-05 2024-02-11 0.01 0 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "56" 2024-02-05 2024-02-11 0.025 0 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "56" 2024-02-05 2024-02-11 0.05 0 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "56" 2024-02-05 2024-02-11 0.1 0 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "56" 2024-02-05 2024-02-11 0.15 0.850000000000001 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "56" 2024-02-05 2024-02-11 0.2 1 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "56" 2024-02-05 2024-02-11 0.25 1 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "56" 2024-02-05 2024-02-11 0.3 2 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "56" 2024-02-05 2024-02-11 0.35 2 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "56" 2024-02-05 2024-02-11 0.4 2 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "56" 2024-02-05 2024-02-11 0.45 2 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "56" 2024-02-05 2024-02-11 0.5 3 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "56" 2024-02-05 2024-02-11 0.55 3 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "56" 2024-02-05 2024-02-11 0.6 3 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "56" 2024-02-05 2024-02-11 0.65 3 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "56" 2024-02-05 2024-02-11 0.7 3 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "56" 2024-02-05 2024-02-11 0.75 3 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "56" 2024-02-05 2024-02-11 0.8 4 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "56" 2024-02-05 2024-02-11 0.85 4 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "56" 2024-02-05 2024-02-11 0.9 5 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "56" 2024-02-05 2024-02-11 0.95 6 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "56" 2024-02-05 2024-02-11 0.975 6 "quantile" "site-level infection dynamics" +"6 day ahead inc hosp" "56" 2024-02-05 2024-02-11 0.99 7 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "56" 2024-02-05 2024-02-12 0.01 0 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "56" 2024-02-05 2024-02-12 0.025 0 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "56" 2024-02-05 2024-02-12 0.05 0.95 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "56" 2024-02-05 2024-02-12 0.1 1 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "56" 2024-02-05 2024-02-12 0.15 2 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "56" 2024-02-05 2024-02-12 0.2 2 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "56" 2024-02-05 2024-02-12 0.25 2 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "56" 2024-02-05 2024-02-12 0.3 2 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "56" 2024-02-05 2024-02-12 0.35 3 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "56" 2024-02-05 2024-02-12 0.4 3 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "56" 2024-02-05 2024-02-12 0.45 4 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "56" 2024-02-05 2024-02-12 0.5 4 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "56" 2024-02-05 2024-02-12 0.55 4 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "56" 2024-02-05 2024-02-12 0.6 4 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "56" 2024-02-05 2024-02-12 0.65 4 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "56" 2024-02-05 2024-02-12 0.7 5 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "56" 2024-02-05 2024-02-12 0.75 5 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "56" 2024-02-05 2024-02-12 0.8 5.2 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "56" 2024-02-05 2024-02-12 0.85 6 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "56" 2024-02-05 2024-02-12 0.9 7 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "56" 2024-02-05 2024-02-12 0.95 9 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "56" 2024-02-05 2024-02-12 0.975 11 "quantile" "site-level infection dynamics" +"7 day ahead inc hosp" "56" 2024-02-05 2024-02-12 0.99 11 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "56" 2024-02-05 2024-02-13 0.01 0 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "56" 2024-02-05 2024-02-13 0.025 0 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "56" 2024-02-05 2024-02-13 0.05 0 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "56" 2024-02-05 2024-02-13 0.1 1 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "56" 2024-02-05 2024-02-13 0.15 1 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "56" 2024-02-05 2024-02-13 0.2 1 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "56" 2024-02-05 2024-02-13 0.25 2 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "56" 2024-02-05 2024-02-13 0.3 2 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "56" 2024-02-05 2024-02-13 0.35 2 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "56" 2024-02-05 2024-02-13 0.4 2 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "56" 2024-02-05 2024-02-13 0.45 3 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "56" 2024-02-05 2024-02-13 0.5 3 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "56" 2024-02-05 2024-02-13 0.55 3 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "56" 2024-02-05 2024-02-13 0.6 3 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "56" 2024-02-05 2024-02-13 0.65 3.35000000000001 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "56" 2024-02-05 2024-02-13 0.7 4 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "56" 2024-02-05 2024-02-13 0.75 4 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "56" 2024-02-05 2024-02-13 0.8 5 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "56" 2024-02-05 2024-02-13 0.85 5 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "56" 2024-02-05 2024-02-13 0.9 6 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "56" 2024-02-05 2024-02-13 0.95 8 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "56" 2024-02-05 2024-02-13 0.975 9.52499999999999 "quantile" "site-level infection dynamics" +"8 day ahead inc hosp" "56" 2024-02-05 2024-02-13 0.99 10.03 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "56" 2024-02-05 2024-02-14 0.01 0 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "56" 2024-02-05 2024-02-14 0.025 1 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "56" 2024-02-05 2024-02-14 0.05 1 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "56" 2024-02-05 2024-02-14 0.1 2 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "56" 2024-02-05 2024-02-14 0.15 2 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "56" 2024-02-05 2024-02-14 0.2 2 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "56" 2024-02-05 2024-02-14 0.25 3 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "56" 2024-02-05 2024-02-14 0.3 3 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "56" 2024-02-05 2024-02-14 0.35 3 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "56" 2024-02-05 2024-02-14 0.4 4 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "56" 2024-02-05 2024-02-14 0.45 4 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "56" 2024-02-05 2024-02-14 0.5 4 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "56" 2024-02-05 2024-02-14 0.55 4 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "56" 2024-02-05 2024-02-14 0.6 5 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "56" 2024-02-05 2024-02-14 0.65 5 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "56" 2024-02-05 2024-02-14 0.7 5 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "56" 2024-02-05 2024-02-14 0.75 6 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "56" 2024-02-05 2024-02-14 0.8 6 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "56" 2024-02-05 2024-02-14 0.85 7 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "56" 2024-02-05 2024-02-14 0.9 7 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "56" 2024-02-05 2024-02-14 0.95 8.05 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "56" 2024-02-05 2024-02-14 0.975 10 "quantile" "site-level infection dynamics" +"9 day ahead inc hosp" "56" 2024-02-05 2024-02-14 0.99 10.07 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "56" 2024-02-05 2024-02-15 0.01 0 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "56" 2024-02-05 2024-02-15 0.025 0 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "56" 2024-02-05 2024-02-15 0.05 0 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "56" 2024-02-05 2024-02-15 0.1 0 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "56" 2024-02-05 2024-02-15 0.15 0 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "56" 2024-02-05 2024-02-15 0.2 1 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "56" 2024-02-05 2024-02-15 0.25 1 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "56" 2024-02-05 2024-02-15 0.3 1 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "56" 2024-02-05 2024-02-15 0.35 2 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "56" 2024-02-05 2024-02-15 0.4 2 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "56" 2024-02-05 2024-02-15 0.45 2 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "56" 2024-02-05 2024-02-15 0.5 2.5 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "56" 2024-02-05 2024-02-15 0.55 3 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "56" 2024-02-05 2024-02-15 0.6 3 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "56" 2024-02-05 2024-02-15 0.65 3 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "56" 2024-02-05 2024-02-15 0.7 4 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "56" 2024-02-05 2024-02-15 0.75 4 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "56" 2024-02-05 2024-02-15 0.8 4 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "56" 2024-02-05 2024-02-15 0.85 5 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "56" 2024-02-05 2024-02-15 0.9 6 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "56" 2024-02-05 2024-02-15 0.95 6.05 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "56" 2024-02-05 2024-02-15 0.975 7.52499999999999 "quantile" "site-level infection dynamics" +"10 day ahead inc hosp" "56" 2024-02-05 2024-02-15 0.99 10.01 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "56" 2024-02-05 2024-02-16 0.01 0 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "56" 2024-02-05 2024-02-16 0.025 0 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "56" 2024-02-05 2024-02-16 0.05 0 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "56" 2024-02-05 2024-02-16 0.1 1 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "56" 2024-02-05 2024-02-16 0.15 1 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "56" 2024-02-05 2024-02-16 0.2 1 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "56" 2024-02-05 2024-02-16 0.25 2 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "56" 2024-02-05 2024-02-16 0.3 2 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "56" 2024-02-05 2024-02-16 0.35 2 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "56" 2024-02-05 2024-02-16 0.4 2 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "56" 2024-02-05 2024-02-16 0.45 3 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "56" 2024-02-05 2024-02-16 0.5 3 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "56" 2024-02-05 2024-02-16 0.55 3 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "56" 2024-02-05 2024-02-16 0.6 3.40000000000001 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "56" 2024-02-05 2024-02-16 0.65 4 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "56" 2024-02-05 2024-02-16 0.7 4 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "56" 2024-02-05 2024-02-16 0.75 4 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "56" 2024-02-05 2024-02-16 0.8 5 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "56" 2024-02-05 2024-02-16 0.85 5 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "56" 2024-02-05 2024-02-16 0.9 6 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "56" 2024-02-05 2024-02-16 0.95 8 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "56" 2024-02-05 2024-02-16 0.975 8.52499999999999 "quantile" "site-level infection dynamics" +"11 day ahead inc hosp" "56" 2024-02-05 2024-02-16 0.99 9.01000000000001 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "56" 2024-02-05 2024-02-17 0.01 0 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "56" 2024-02-05 2024-02-17 0.025 0 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "56" 2024-02-05 2024-02-17 0.05 0 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "56" 2024-02-05 2024-02-17 0.1 0 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "56" 2024-02-05 2024-02-17 0.15 1 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "56" 2024-02-05 2024-02-17 0.2 1 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "56" 2024-02-05 2024-02-17 0.25 1 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "56" 2024-02-05 2024-02-17 0.3 1 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "56" 2024-02-05 2024-02-17 0.35 1 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "56" 2024-02-05 2024-02-17 0.4 2 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "56" 2024-02-05 2024-02-17 0.45 2 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "56" 2024-02-05 2024-02-17 0.5 2 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "56" 2024-02-05 2024-02-17 0.55 2 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "56" 2024-02-05 2024-02-17 0.6 3 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "56" 2024-02-05 2024-02-17 0.65 3 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "56" 2024-02-05 2024-02-17 0.7 3 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "56" 2024-02-05 2024-02-17 0.75 3.25000000000001 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "56" 2024-02-05 2024-02-17 0.8 4 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "56" 2024-02-05 2024-02-17 0.85 5 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "56" 2024-02-05 2024-02-17 0.9 5 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "56" 2024-02-05 2024-02-17 0.95 6 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "56" 2024-02-05 2024-02-17 0.975 6 "quantile" "site-level infection dynamics" +"12 day ahead inc hosp" "56" 2024-02-05 2024-02-17 0.99 7 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "56" 2024-02-05 2024-02-18 0.01 0 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "56" 2024-02-05 2024-02-18 0.025 0 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "56" 2024-02-05 2024-02-18 0.05 0 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "56" 2024-02-05 2024-02-18 0.1 0 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "56" 2024-02-05 2024-02-18 0.15 1 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "56" 2024-02-05 2024-02-18 0.2 1 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "56" 2024-02-05 2024-02-18 0.25 1 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "56" 2024-02-05 2024-02-18 0.3 1 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "56" 2024-02-05 2024-02-18 0.35 2 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "56" 2024-02-05 2024-02-18 0.4 2 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "56" 2024-02-05 2024-02-18 0.45 2 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "56" 2024-02-05 2024-02-18 0.5 2 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "56" 2024-02-05 2024-02-18 0.55 2 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "56" 2024-02-05 2024-02-18 0.6 3 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "56" 2024-02-05 2024-02-18 0.65 3 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "56" 2024-02-05 2024-02-18 0.7 3 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "56" 2024-02-05 2024-02-18 0.75 4 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "56" 2024-02-05 2024-02-18 0.8 4 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "56" 2024-02-05 2024-02-18 0.85 5 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "56" 2024-02-05 2024-02-18 0.9 5 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "56" 2024-02-05 2024-02-18 0.95 7.05 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "56" 2024-02-05 2024-02-18 0.975 8.52499999999999 "quantile" "site-level infection dynamics" +"13 day ahead inc hosp" "56" 2024-02-05 2024-02-18 0.99 10.01 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "56" 2024-02-05 2024-02-19 0.01 0 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "56" 2024-02-05 2024-02-19 0.025 0 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "56" 2024-02-05 2024-02-19 0.05 0 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "56" 2024-02-05 2024-02-19 0.1 1 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "56" 2024-02-05 2024-02-19 0.15 1 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "56" 2024-02-05 2024-02-19 0.2 1 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "56" 2024-02-05 2024-02-19 0.25 2 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "56" 2024-02-05 2024-02-19 0.3 2 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "56" 2024-02-05 2024-02-19 0.35 3 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "56" 2024-02-05 2024-02-19 0.4 3 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "56" 2024-02-05 2024-02-19 0.45 3 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "56" 2024-02-05 2024-02-19 0.5 4 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "56" 2024-02-05 2024-02-19 0.55 4 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "56" 2024-02-05 2024-02-19 0.6 4 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "56" 2024-02-05 2024-02-19 0.65 4 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "56" 2024-02-05 2024-02-19 0.7 5 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "56" 2024-02-05 2024-02-19 0.75 5 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "56" 2024-02-05 2024-02-19 0.8 6 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "56" 2024-02-05 2024-02-19 0.85 6.15000000000001 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "56" 2024-02-05 2024-02-19 0.9 8 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "56" 2024-02-05 2024-02-19 0.95 10 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "56" 2024-02-05 2024-02-19 0.975 10.525 "quantile" "site-level infection dynamics" +"14 day ahead inc hosp" "56" 2024-02-05 2024-02-19 0.99 13.01 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "56" 2024-02-05 2024-02-20 0.01 0 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "56" 2024-02-05 2024-02-20 0.025 0 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "56" 2024-02-05 2024-02-20 0.05 0 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "56" 2024-02-05 2024-02-20 0.1 0 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "56" 2024-02-05 2024-02-20 0.15 1 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "56" 2024-02-05 2024-02-20 0.2 1 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "56" 2024-02-05 2024-02-20 0.25 1 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "56" 2024-02-05 2024-02-20 0.3 2 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "56" 2024-02-05 2024-02-20 0.35 2 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "56" 2024-02-05 2024-02-20 0.4 2 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "56" 2024-02-05 2024-02-20 0.45 3 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "56" 2024-02-05 2024-02-20 0.5 3 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "56" 2024-02-05 2024-02-20 0.55 3 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "56" 2024-02-05 2024-02-20 0.6 3 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "56" 2024-02-05 2024-02-20 0.65 3 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "56" 2024-02-05 2024-02-20 0.7 4 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "56" 2024-02-05 2024-02-20 0.75 4 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "56" 2024-02-05 2024-02-20 0.8 5 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "56" 2024-02-05 2024-02-20 0.85 5 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "56" 2024-02-05 2024-02-20 0.9 7 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "56" 2024-02-05 2024-02-20 0.95 8 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "56" 2024-02-05 2024-02-20 0.975 8 "quantile" "site-level infection dynamics" +"15 day ahead inc hosp" "56" 2024-02-05 2024-02-20 0.99 9.02000000000001 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "56" 2024-02-05 2024-02-21 0.01 0 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "56" 2024-02-05 2024-02-21 0.025 0 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "56" 2024-02-05 2024-02-21 0.05 0.95 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "56" 2024-02-05 2024-02-21 0.1 1 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "56" 2024-02-05 2024-02-21 0.15 1 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "56" 2024-02-05 2024-02-21 0.2 1.8 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "56" 2024-02-05 2024-02-21 0.25 2 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "56" 2024-02-05 2024-02-21 0.3 2 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "56" 2024-02-05 2024-02-21 0.35 2 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "56" 2024-02-05 2024-02-21 0.4 3 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "56" 2024-02-05 2024-02-21 0.45 3 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "56" 2024-02-05 2024-02-21 0.5 3 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "56" 2024-02-05 2024-02-21 0.55 3 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "56" 2024-02-05 2024-02-21 0.6 4 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "56" 2024-02-05 2024-02-21 0.65 4 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "56" 2024-02-05 2024-02-21 0.7 4 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "56" 2024-02-05 2024-02-21 0.75 4.25000000000001 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "56" 2024-02-05 2024-02-21 0.8 5.2 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "56" 2024-02-05 2024-02-21 0.85 6 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "56" 2024-02-05 2024-02-21 0.9 6 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "56" 2024-02-05 2024-02-21 0.95 8 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "56" 2024-02-05 2024-02-21 0.975 9 "quantile" "site-level infection dynamics" +"16 day ahead inc hosp" "56" 2024-02-05 2024-02-21 0.99 10.03 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "56" 2024-02-05 2024-02-22 0.01 0 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "56" 2024-02-05 2024-02-22 0.025 0 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "56" 2024-02-05 2024-02-22 0.05 0 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "56" 2024-02-05 2024-02-22 0.1 1 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "56" 2024-02-05 2024-02-22 0.15 1 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "56" 2024-02-05 2024-02-22 0.2 1 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "56" 2024-02-05 2024-02-22 0.25 2 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "56" 2024-02-05 2024-02-22 0.3 2 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "56" 2024-02-05 2024-02-22 0.35 2 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "56" 2024-02-05 2024-02-22 0.4 2 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "56" 2024-02-05 2024-02-22 0.45 2 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "56" 2024-02-05 2024-02-22 0.5 3 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "56" 2024-02-05 2024-02-22 0.55 3 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "56" 2024-02-05 2024-02-22 0.6 3 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "56" 2024-02-05 2024-02-22 0.65 3 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "56" 2024-02-05 2024-02-22 0.7 4 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "56" 2024-02-05 2024-02-22 0.75 4 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "56" 2024-02-05 2024-02-22 0.8 5 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "56" 2024-02-05 2024-02-22 0.85 5 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "56" 2024-02-05 2024-02-22 0.9 6 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "56" 2024-02-05 2024-02-22 0.95 7.05 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "56" 2024-02-05 2024-02-22 0.975 9 "quantile" "site-level infection dynamics" +"17 day ahead inc hosp" "56" 2024-02-05 2024-02-22 0.99 10 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "56" 2024-02-05 2024-02-23 0.01 0 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "56" 2024-02-05 2024-02-23 0.025 0 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "56" 2024-02-05 2024-02-23 0.05 0 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "56" 2024-02-05 2024-02-23 0.1 1 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "56" 2024-02-05 2024-02-23 0.15 1 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "56" 2024-02-05 2024-02-23 0.2 1 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "56" 2024-02-05 2024-02-23 0.25 2 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "56" 2024-02-05 2024-02-23 0.3 2 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "56" 2024-02-05 2024-02-23 0.35 2 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "56" 2024-02-05 2024-02-23 0.4 2 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "56" 2024-02-05 2024-02-23 0.45 2.55 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "56" 2024-02-05 2024-02-23 0.5 3 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "56" 2024-02-05 2024-02-23 0.55 3 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "56" 2024-02-05 2024-02-23 0.6 3 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "56" 2024-02-05 2024-02-23 0.65 4 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "56" 2024-02-05 2024-02-23 0.7 4 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "56" 2024-02-05 2024-02-23 0.75 4 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "56" 2024-02-05 2024-02-23 0.8 5 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "56" 2024-02-05 2024-02-23 0.85 5 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "56" 2024-02-05 2024-02-23 0.9 6 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "56" 2024-02-05 2024-02-23 0.95 6.05 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "56" 2024-02-05 2024-02-23 0.975 7 "quantile" "site-level infection dynamics" +"18 day ahead inc hosp" "56" 2024-02-05 2024-02-23 0.99 7.01000000000001 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "56" 2024-02-05 2024-02-24 0.01 0 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "56" 2024-02-05 2024-02-24 0.025 0 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "56" 2024-02-05 2024-02-24 0.05 0 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "56" 2024-02-05 2024-02-24 0.1 0 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "56" 2024-02-05 2024-02-24 0.15 0 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "56" 2024-02-05 2024-02-24 0.2 0.800000000000001 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "56" 2024-02-05 2024-02-24 0.25 1 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "56" 2024-02-05 2024-02-24 0.3 1 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "56" 2024-02-05 2024-02-24 0.35 1 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "56" 2024-02-05 2024-02-24 0.4 1 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "56" 2024-02-05 2024-02-24 0.45 1 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "56" 2024-02-05 2024-02-24 0.5 2 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "56" 2024-02-05 2024-02-24 0.55 2 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "56" 2024-02-05 2024-02-24 0.6 2 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "56" 2024-02-05 2024-02-24 0.65 2 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "56" 2024-02-05 2024-02-24 0.7 3 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "56" 2024-02-05 2024-02-24 0.75 3 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "56" 2024-02-05 2024-02-24 0.8 3 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "56" 2024-02-05 2024-02-24 0.85 4 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "56" 2024-02-05 2024-02-24 0.9 5 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "56" 2024-02-05 2024-02-24 0.95 6 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "56" 2024-02-05 2024-02-24 0.975 6.52499999999999 "quantile" "site-level infection dynamics" +"19 day ahead inc hosp" "56" 2024-02-05 2024-02-24 0.99 7.04000000000002 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "56" 2024-02-05 2024-02-25 0.01 0 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "56" 2024-02-05 2024-02-25 0.025 0 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "56" 2024-02-05 2024-02-25 0.05 0 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "56" 2024-02-05 2024-02-25 0.1 0 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "56" 2024-02-05 2024-02-25 0.15 1 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "56" 2024-02-05 2024-02-25 0.2 1 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "56" 2024-02-05 2024-02-25 0.25 1 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "56" 2024-02-05 2024-02-25 0.3 1.7 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "56" 2024-02-05 2024-02-25 0.35 2 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "56" 2024-02-05 2024-02-25 0.4 2 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "56" 2024-02-05 2024-02-25 0.45 2 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "56" 2024-02-05 2024-02-25 0.5 3 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "56" 2024-02-05 2024-02-25 0.55 3 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "56" 2024-02-05 2024-02-25 0.6 3 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "56" 2024-02-05 2024-02-25 0.65 4 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "56" 2024-02-05 2024-02-25 0.7 4 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "56" 2024-02-05 2024-02-25 0.75 4 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "56" 2024-02-05 2024-02-25 0.8 4.2 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "56" 2024-02-05 2024-02-25 0.85 5 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "56" 2024-02-05 2024-02-25 0.9 5.10000000000001 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "56" 2024-02-05 2024-02-25 0.95 7 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "56" 2024-02-05 2024-02-25 0.975 7.52499999999999 "quantile" "site-level infection dynamics" +"20 day ahead inc hosp" "56" 2024-02-05 2024-02-25 0.99 8.01000000000001 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "56" 2024-02-05 2024-02-26 0.01 0 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "56" 2024-02-05 2024-02-26 0.025 0 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "56" 2024-02-05 2024-02-26 0.05 0 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "56" 2024-02-05 2024-02-26 0.1 0.9 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "56" 2024-02-05 2024-02-26 0.15 1 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "56" 2024-02-05 2024-02-26 0.2 1 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "56" 2024-02-05 2024-02-26 0.25 2 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "56" 2024-02-05 2024-02-26 0.3 2 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "56" 2024-02-05 2024-02-26 0.35 2 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "56" 2024-02-05 2024-02-26 0.4 2 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "56" 2024-02-05 2024-02-26 0.45 2.55 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "56" 2024-02-05 2024-02-26 0.5 3 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "56" 2024-02-05 2024-02-26 0.55 3 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "56" 2024-02-05 2024-02-26 0.6 4 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "56" 2024-02-05 2024-02-26 0.65 4 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "56" 2024-02-05 2024-02-26 0.7 5 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "56" 2024-02-05 2024-02-26 0.75 5 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "56" 2024-02-05 2024-02-26 0.8 6 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "56" 2024-02-05 2024-02-26 0.85 6 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "56" 2024-02-05 2024-02-26 0.9 8 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "56" 2024-02-05 2024-02-26 0.95 10 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "56" 2024-02-05 2024-02-26 0.975 11.525 "quantile" "site-level infection dynamics" +"21 day ahead inc hosp" "56" 2024-02-05 2024-02-26 0.99 14 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "56" 2024-02-05 2024-02-27 0.01 0 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "56" 2024-02-05 2024-02-27 0.025 0 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "56" 2024-02-05 2024-02-27 0.05 0 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "56" 2024-02-05 2024-02-27 0.1 0 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "56" 2024-02-05 2024-02-27 0.15 1 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "56" 2024-02-05 2024-02-27 0.2 1 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "56" 2024-02-05 2024-02-27 0.25 1 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "56" 2024-02-05 2024-02-27 0.3 2 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "56" 2024-02-05 2024-02-27 0.35 2 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "56" 2024-02-05 2024-02-27 0.4 2 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "56" 2024-02-05 2024-02-27 0.45 2 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "56" 2024-02-05 2024-02-27 0.5 2 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "56" 2024-02-05 2024-02-27 0.55 3 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "56" 2024-02-05 2024-02-27 0.6 3 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "56" 2024-02-05 2024-02-27 0.65 3 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "56" 2024-02-05 2024-02-27 0.7 4 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "56" 2024-02-05 2024-02-27 0.75 4 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "56" 2024-02-05 2024-02-27 0.8 4 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "56" 2024-02-05 2024-02-27 0.85 5 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "56" 2024-02-05 2024-02-27 0.9 5.10000000000001 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "56" 2024-02-05 2024-02-27 0.95 7 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "56" 2024-02-05 2024-02-27 0.975 7.52499999999999 "quantile" "site-level infection dynamics" +"22 day ahead inc hosp" "56" 2024-02-05 2024-02-27 0.99 10.02 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "56" 2024-02-05 2024-02-28 0.01 0 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "56" 2024-02-05 2024-02-28 0.025 0 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "56" 2024-02-05 2024-02-28 0.05 0 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "56" 2024-02-05 2024-02-28 0.1 1 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "56" 2024-02-05 2024-02-28 0.15 1 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "56" 2024-02-05 2024-02-28 0.2 1 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "56" 2024-02-05 2024-02-28 0.25 2 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "56" 2024-02-05 2024-02-28 0.3 2 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "56" 2024-02-05 2024-02-28 0.35 3 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "56" 2024-02-05 2024-02-28 0.4 3 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "56" 2024-02-05 2024-02-28 0.45 3 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "56" 2024-02-05 2024-02-28 0.5 4 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "56" 2024-02-05 2024-02-28 0.55 4 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "56" 2024-02-05 2024-02-28 0.6 4 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "56" 2024-02-05 2024-02-28 0.65 5 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "56" 2024-02-05 2024-02-28 0.7 5 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "56" 2024-02-05 2024-02-28 0.75 6 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "56" 2024-02-05 2024-02-28 0.8 6 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "56" 2024-02-05 2024-02-28 0.85 7 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "56" 2024-02-05 2024-02-28 0.9 8 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "56" 2024-02-05 2024-02-28 0.95 9 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "56" 2024-02-05 2024-02-28 0.975 10 "quantile" "site-level infection dynamics" +"23 day ahead inc hosp" "56" 2024-02-05 2024-02-28 0.99 14.04 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "56" 2024-02-05 2024-02-29 0.01 0 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "56" 2024-02-05 2024-02-29 0.025 0 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "56" 2024-02-05 2024-02-29 0.05 0 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "56" 2024-02-05 2024-02-29 0.1 0.9 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "56" 2024-02-05 2024-02-29 0.15 1 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "56" 2024-02-05 2024-02-29 0.2 1 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "56" 2024-02-05 2024-02-29 0.25 1 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "56" 2024-02-05 2024-02-29 0.3 1 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "56" 2024-02-05 2024-02-29 0.35 1.65000000000001 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "56" 2024-02-05 2024-02-29 0.4 2 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "56" 2024-02-05 2024-02-29 0.45 2 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "56" 2024-02-05 2024-02-29 0.5 3 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "56" 2024-02-05 2024-02-29 0.55 3 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "56" 2024-02-05 2024-02-29 0.6 3 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "56" 2024-02-05 2024-02-29 0.65 3.35000000000001 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "56" 2024-02-05 2024-02-29 0.7 4 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "56" 2024-02-05 2024-02-29 0.75 4 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "56" 2024-02-05 2024-02-29 0.8 5 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "56" 2024-02-05 2024-02-29 0.85 5 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "56" 2024-02-05 2024-02-29 0.9 6 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "56" 2024-02-05 2024-02-29 0.95 7.05 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "56" 2024-02-05 2024-02-29 0.975 8 "quantile" "site-level infection dynamics" +"24 day ahead inc hosp" "56" 2024-02-05 2024-02-29 0.99 9.02000000000001 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "56" 2024-02-05 2024-03-01 0.01 0 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "56" 2024-02-05 2024-03-01 0.025 0 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "56" 2024-02-05 2024-03-01 0.05 0 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "56" 2024-02-05 2024-03-01 0.1 0.9 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "56" 2024-02-05 2024-03-01 0.15 1 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "56" 2024-02-05 2024-03-01 0.2 1 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "56" 2024-02-05 2024-03-01 0.25 1 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "56" 2024-02-05 2024-03-01 0.3 2 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "56" 2024-02-05 2024-03-01 0.35 2 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "56" 2024-02-05 2024-03-01 0.4 2 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "56" 2024-02-05 2024-03-01 0.45 2 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "56" 2024-02-05 2024-03-01 0.5 3 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "56" 2024-02-05 2024-03-01 0.55 3 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "56" 2024-02-05 2024-03-01 0.6 3 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "56" 2024-02-05 2024-03-01 0.65 4 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "56" 2024-02-05 2024-03-01 0.7 4 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "56" 2024-02-05 2024-03-01 0.75 5 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "56" 2024-02-05 2024-03-01 0.8 5 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "56" 2024-02-05 2024-03-01 0.85 5.15000000000001 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "56" 2024-02-05 2024-03-01 0.9 7 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "56" 2024-02-05 2024-03-01 0.95 8 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "56" 2024-02-05 2024-03-01 0.975 9 "quantile" "site-level infection dynamics" +"25 day ahead inc hosp" "56" 2024-02-05 2024-03-01 0.99 9 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "56" 2024-02-05 2024-03-02 0.01 0 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "56" 2024-02-05 2024-03-02 0.025 0 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "56" 2024-02-05 2024-03-02 0.05 0 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "56" 2024-02-05 2024-03-02 0.1 0 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "56" 2024-02-05 2024-03-02 0.15 1 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "56" 2024-02-05 2024-03-02 0.2 1 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "56" 2024-02-05 2024-03-02 0.25 1 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "56" 2024-02-05 2024-03-02 0.3 1 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "56" 2024-02-05 2024-03-02 0.35 1 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "56" 2024-02-05 2024-03-02 0.4 2 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "56" 2024-02-05 2024-03-02 0.45 2 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "56" 2024-02-05 2024-03-02 0.5 2 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "56" 2024-02-05 2024-03-02 0.55 2 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "56" 2024-02-05 2024-03-02 0.6 3 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "56" 2024-02-05 2024-03-02 0.65 3 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "56" 2024-02-05 2024-03-02 0.7 3 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "56" 2024-02-05 2024-03-02 0.75 3 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "56" 2024-02-05 2024-03-02 0.8 4 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "56" 2024-02-05 2024-03-02 0.85 4.15000000000001 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "56" 2024-02-05 2024-03-02 0.9 5 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "56" 2024-02-05 2024-03-02 0.95 6 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "56" 2024-02-05 2024-03-02 0.975 7 "quantile" "site-level infection dynamics" +"26 day ahead inc hosp" "56" 2024-02-05 2024-03-02 0.99 7.01000000000001 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "56" 2024-02-05 2024-03-03 0.01 0 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "56" 2024-02-05 2024-03-03 0.025 0 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "56" 2024-02-05 2024-03-03 0.05 0 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "56" 2024-02-05 2024-03-03 0.1 0 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "56" 2024-02-05 2024-03-03 0.15 0.850000000000001 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "56" 2024-02-05 2024-03-03 0.2 1 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "56" 2024-02-05 2024-03-03 0.25 1 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "56" 2024-02-05 2024-03-03 0.3 1 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "56" 2024-02-05 2024-03-03 0.35 1 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "56" 2024-02-05 2024-03-03 0.4 2 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "56" 2024-02-05 2024-03-03 0.45 2 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "56" 2024-02-05 2024-03-03 0.5 2 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "56" 2024-02-05 2024-03-03 0.55 3 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "56" 2024-02-05 2024-03-03 0.6 3 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "56" 2024-02-05 2024-03-03 0.65 3 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "56" 2024-02-05 2024-03-03 0.7 3 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "56" 2024-02-05 2024-03-03 0.75 4 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "56" 2024-02-05 2024-03-03 0.8 4 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "56" 2024-02-05 2024-03-03 0.85 4.15000000000001 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "56" 2024-02-05 2024-03-03 0.9 5 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "56" 2024-02-05 2024-03-03 0.95 6.05 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "56" 2024-02-05 2024-03-03 0.975 7 "quantile" "site-level infection dynamics" +"27 day ahead inc hosp" "56" 2024-02-05 2024-03-03 0.99 7.01000000000001 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "56" 2024-02-05 2024-03-04 0.01 0 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "56" 2024-02-05 2024-03-04 0.025 0 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "56" 2024-02-05 2024-03-04 0.05 0 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "56" 2024-02-05 2024-03-04 0.1 0.9 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "56" 2024-02-05 2024-03-04 0.15 1 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "56" 2024-02-05 2024-03-04 0.2 1 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "56" 2024-02-05 2024-03-04 0.25 2 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "56" 2024-02-05 2024-03-04 0.3 2 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "56" 2024-02-05 2024-03-04 0.35 2 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "56" 2024-02-05 2024-03-04 0.4 2 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "56" 2024-02-05 2024-03-04 0.45 3 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "56" 2024-02-05 2024-03-04 0.5 3 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "56" 2024-02-05 2024-03-04 0.55 3 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "56" 2024-02-05 2024-03-04 0.6 4 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "56" 2024-02-05 2024-03-04 0.65 4 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "56" 2024-02-05 2024-03-04 0.7 5 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "56" 2024-02-05 2024-03-04 0.75 5 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "56" 2024-02-05 2024-03-04 0.8 6 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "56" 2024-02-05 2024-03-04 0.85 7 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "56" 2024-02-05 2024-03-04 0.9 8 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "56" 2024-02-05 2024-03-04 0.95 9 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "56" 2024-02-05 2024-03-04 0.975 9.52499999999999 "quantile" "site-level infection dynamics" +"28 day ahead inc hosp" "56" 2024-02-05 2024-03-04 0.99 13.04 "quantile" "site-level infection dynamics" +"1 day ahead inc hosp" "US" 2024-02-05 2024-02-06 0.01 2247.12 "quantile" "state-level aggregated wastewater" +"1 day ahead inc hosp" "US" 2024-02-05 2024-02-06 0.025 2332.575 "quantile" "state-level aggregated wastewater" +"1 day ahead inc hosp" "US" 2024-02-05 2024-02-06 0.05 2457.75 "quantile" "state-level aggregated wastewater" +"1 day ahead inc hosp" "US" 2024-02-05 2024-02-06 0.1 2585.4 "quantile" "state-level aggregated wastewater" +"1 day ahead inc hosp" "US" 2024-02-05 2024-02-06 0.15 2646.4 "quantile" "state-level aggregated wastewater" +"1 day ahead inc hosp" "US" 2024-02-05 2024-02-06 0.2 2735.8 "quantile" "state-level aggregated wastewater" +"1 day ahead inc hosp" "US" 2024-02-05 2024-02-06 0.25 2824 "quantile" "state-level aggregated wastewater" +"1 day ahead inc hosp" "US" 2024-02-05 2024-02-06 0.3 2886.5 "quantile" "state-level aggregated wastewater" +"1 day ahead inc hosp" "US" 2024-02-05 2024-02-06 0.35 2928.25 "quantile" "state-level aggregated wastewater" +"1 day ahead inc hosp" "US" 2024-02-05 2024-02-06 0.4 2945 "quantile" "state-level aggregated wastewater" +"1 day ahead inc hosp" "US" 2024-02-05 2024-02-06 0.45 2981.1 "quantile" "state-level aggregated wastewater" +"1 day ahead inc hosp" "US" 2024-02-05 2024-02-06 0.5 3043 "quantile" "state-level aggregated wastewater" +"1 day ahead inc hosp" "US" 2024-02-05 2024-02-06 0.55 3097 "quantile" "state-level aggregated wastewater" +"1 day ahead inc hosp" "US" 2024-02-05 2024-02-06 0.6 3125.4 "quantile" "state-level aggregated wastewater" +"1 day ahead inc hosp" "US" 2024-02-05 2024-02-06 0.65 3185.8 "quantile" "state-level aggregated wastewater" +"1 day ahead inc hosp" "US" 2024-02-05 2024-02-06 0.7 3249.3 "quantile" "state-level aggregated wastewater" +"1 day ahead inc hosp" "US" 2024-02-05 2024-02-06 0.75 3281.75 "quantile" "state-level aggregated wastewater" +"1 day ahead inc hosp" "US" 2024-02-05 2024-02-06 0.8 3376.8 "quantile" "state-level aggregated wastewater" +"1 day ahead inc hosp" "US" 2024-02-05 2024-02-06 0.85 3467.65 "quantile" "state-level aggregated wastewater" +"1 day ahead inc hosp" "US" 2024-02-05 2024-02-06 0.9 3575.9 "quantile" "state-level aggregated wastewater" +"1 day ahead inc hosp" "US" 2024-02-05 2024-02-06 0.95 3694.35 "quantile" "state-level aggregated wastewater" +"1 day ahead inc hosp" "US" 2024-02-05 2024-02-06 0.975 3994.075 "quantile" "state-level aggregated wastewater" +"1 day ahead inc hosp" "US" 2024-02-05 2024-02-06 0.99 4245.51 "quantile" "state-level aggregated wastewater" +"2 day ahead inc hosp" "US" 2024-02-05 2024-02-07 0.01 2127.53 "quantile" "state-level aggregated wastewater" +"2 day ahead inc hosp" "US" 2024-02-05 2024-02-07 0.025 2310.2 "quantile" "state-level aggregated wastewater" +"2 day ahead inc hosp" "US" 2024-02-05 2024-02-07 0.05 2370 "quantile" "state-level aggregated wastewater" +"2 day ahead inc hosp" "US" 2024-02-05 2024-02-07 0.1 2409.1 "quantile" "state-level aggregated wastewater" +"2 day ahead inc hosp" "US" 2024-02-05 2024-02-07 0.15 2504.9 "quantile" "state-level aggregated wastewater" +"2 day ahead inc hosp" "US" 2024-02-05 2024-02-07 0.2 2579.8 "quantile" "state-level aggregated wastewater" +"2 day ahead inc hosp" "US" 2024-02-05 2024-02-07 0.25 2675.25 "quantile" "state-level aggregated wastewater" +"2 day ahead inc hosp" "US" 2024-02-05 2024-02-07 0.3 2756.9 "quantile" "state-level aggregated wastewater" +"2 day ahead inc hosp" "US" 2024-02-05 2024-02-07 0.35 2800.7 "quantile" "state-level aggregated wastewater" +"2 day ahead inc hosp" "US" 2024-02-05 2024-02-07 0.4 2846.8 "quantile" "state-level aggregated wastewater" +"2 day ahead inc hosp" "US" 2024-02-05 2024-02-07 0.45 2959.65 "quantile" "state-level aggregated wastewater" +"2 day ahead inc hosp" "US" 2024-02-05 2024-02-07 0.5 2992.5 "quantile" "state-level aggregated wastewater" +"2 day ahead inc hosp" "US" 2024-02-05 2024-02-07 0.55 3015.7 "quantile" "state-level aggregated wastewater" +"2 day ahead inc hosp" "US" 2024-02-05 2024-02-07 0.6 3038 "quantile" "state-level aggregated wastewater" +"2 day ahead inc hosp" "US" 2024-02-05 2024-02-07 0.65 3150.05 "quantile" "state-level aggregated wastewater" +"2 day ahead inc hosp" "US" 2024-02-05 2024-02-07 0.7 3213 "quantile" "state-level aggregated wastewater" +"2 day ahead inc hosp" "US" 2024-02-05 2024-02-07 0.75 3273.25 "quantile" "state-level aggregated wastewater" +"2 day ahead inc hosp" "US" 2024-02-05 2024-02-07 0.8 3331 "quantile" "state-level aggregated wastewater" +"2 day ahead inc hosp" "US" 2024-02-05 2024-02-07 0.85 3399.35 "quantile" "state-level aggregated wastewater" +"2 day ahead inc hosp" "US" 2024-02-05 2024-02-07 0.9 3475.5 "quantile" "state-level aggregated wastewater" +"2 day ahead inc hosp" "US" 2024-02-05 2024-02-07 0.95 3729.3 "quantile" "state-level aggregated wastewater" +"2 day ahead inc hosp" "US" 2024-02-05 2024-02-07 0.975 3792.5 "quantile" "state-level aggregated wastewater" +"2 day ahead inc hosp" "US" 2024-02-05 2024-02-07 0.99 4311.83 "quantile" "state-level aggregated wastewater" +"3 day ahead inc hosp" "US" 2024-02-05 2024-02-08 0.01 1860.33 "quantile" "state-level aggregated wastewater" +"3 day ahead inc hosp" "US" 2024-02-05 2024-02-08 0.025 2225.825 "quantile" "state-level aggregated wastewater" +"3 day ahead inc hosp" "US" 2024-02-05 2024-02-08 0.05 2285.5 "quantile" "state-level aggregated wastewater" +"3 day ahead inc hosp" "US" 2024-02-05 2024-02-08 0.1 2394 "quantile" "state-level aggregated wastewater" +"3 day ahead inc hosp" "US" 2024-02-05 2024-02-08 0.15 2464.9 "quantile" "state-level aggregated wastewater" +"3 day ahead inc hosp" "US" 2024-02-05 2024-02-08 0.2 2540.6 "quantile" "state-level aggregated wastewater" +"3 day ahead inc hosp" "US" 2024-02-05 2024-02-08 0.25 2598.75 "quantile" "state-level aggregated wastewater" +"3 day ahead inc hosp" "US" 2024-02-05 2024-02-08 0.3 2659.5 "quantile" "state-level aggregated wastewater" +"3 day ahead inc hosp" "US" 2024-02-05 2024-02-08 0.35 2710.95 "quantile" "state-level aggregated wastewater" +"3 day ahead inc hosp" "US" 2024-02-05 2024-02-08 0.4 2788.8 "quantile" "state-level aggregated wastewater" +"3 day ahead inc hosp" "US" 2024-02-05 2024-02-08 0.45 2844.2 "quantile" "state-level aggregated wastewater" +"3 day ahead inc hosp" "US" 2024-02-05 2024-02-08 0.5 2886 "quantile" "state-level aggregated wastewater" +"3 day ahead inc hosp" "US" 2024-02-05 2024-02-08 0.55 2948.6 "quantile" "state-level aggregated wastewater" +"3 day ahead inc hosp" "US" 2024-02-05 2024-02-08 0.6 3014 "quantile" "state-level aggregated wastewater" +"3 day ahead inc hosp" "US" 2024-02-05 2024-02-08 0.65 3080 "quantile" "state-level aggregated wastewater" +"3 day ahead inc hosp" "US" 2024-02-05 2024-02-08 0.7 3142.6 "quantile" "state-level aggregated wastewater" +"3 day ahead inc hosp" "US" 2024-02-05 2024-02-08 0.75 3198.25 "quantile" "state-level aggregated wastewater" +"3 day ahead inc hosp" "US" 2024-02-05 2024-02-08 0.8 3239 "quantile" "state-level aggregated wastewater" +"3 day ahead inc hosp" "US" 2024-02-05 2024-02-08 0.85 3323.9 "quantile" "state-level aggregated wastewater" +"3 day ahead inc hosp" "US" 2024-02-05 2024-02-08 0.9 3581.5 "quantile" "state-level aggregated wastewater" +"3 day ahead inc hosp" "US" 2024-02-05 2024-02-08 0.95 3830.55 "quantile" "state-level aggregated wastewater" +"3 day ahead inc hosp" "US" 2024-02-05 2024-02-08 0.975 3940.25 "quantile" "state-level aggregated wastewater" +"3 day ahead inc hosp" "US" 2024-02-05 2024-02-08 0.99 4141.88 "quantile" "state-level aggregated wastewater" +"4 day ahead inc hosp" "US" 2024-02-05 2024-02-09 0.01 1782.86 "quantile" "state-level aggregated wastewater" +"4 day ahead inc hosp" "US" 2024-02-05 2024-02-09 0.025 2055.375 "quantile" "state-level aggregated wastewater" +"4 day ahead inc hosp" "US" 2024-02-05 2024-02-09 0.05 2153.4 "quantile" "state-level aggregated wastewater" +"4 day ahead inc hosp" "US" 2024-02-05 2024-02-09 0.1 2250.8 "quantile" "state-level aggregated wastewater" +"4 day ahead inc hosp" "US" 2024-02-05 2024-02-09 0.15 2302.95 "quantile" "state-level aggregated wastewater" +"4 day ahead inc hosp" "US" 2024-02-05 2024-02-09 0.2 2366.6 "quantile" "state-level aggregated wastewater" +"4 day ahead inc hosp" "US" 2024-02-05 2024-02-09 0.25 2455.5 "quantile" "state-level aggregated wastewater" +"4 day ahead inc hosp" "US" 2024-02-05 2024-02-09 0.3 2496.9 "quantile" "state-level aggregated wastewater" +"4 day ahead inc hosp" "US" 2024-02-05 2024-02-09 0.35 2607.1 "quantile" "state-level aggregated wastewater" +"4 day ahead inc hosp" "US" 2024-02-05 2024-02-09 0.4 2663.6 "quantile" "state-level aggregated wastewater" +"4 day ahead inc hosp" "US" 2024-02-05 2024-02-09 0.45 2746.75 "quantile" "state-level aggregated wastewater" +"4 day ahead inc hosp" "US" 2024-02-05 2024-02-09 0.5 2791.5 "quantile" "state-level aggregated wastewater" +"4 day ahead inc hosp" "US" 2024-02-05 2024-02-09 0.55 2853.25 "quantile" "state-level aggregated wastewater" +"4 day ahead inc hosp" "US" 2024-02-05 2024-02-09 0.6 2920.8 "quantile" "state-level aggregated wastewater" +"4 day ahead inc hosp" "US" 2024-02-05 2024-02-09 0.65 2979.05 "quantile" "state-level aggregated wastewater" +"4 day ahead inc hosp" "US" 2024-02-05 2024-02-09 0.7 3051.3 "quantile" "state-level aggregated wastewater" +"4 day ahead inc hosp" "US" 2024-02-05 2024-02-09 0.75 3139 "quantile" "state-level aggregated wastewater" +"4 day ahead inc hosp" "US" 2024-02-05 2024-02-09 0.8 3196.2 "quantile" "state-level aggregated wastewater" +"4 day ahead inc hosp" "US" 2024-02-05 2024-02-09 0.85 3284 "quantile" "state-level aggregated wastewater" +"4 day ahead inc hosp" "US" 2024-02-05 2024-02-09 0.9 3461.9 "quantile" "state-level aggregated wastewater" +"4 day ahead inc hosp" "US" 2024-02-05 2024-02-09 0.95 3586.85 "quantile" "state-level aggregated wastewater" +"4 day ahead inc hosp" "US" 2024-02-05 2024-02-09 0.975 3881.075 "quantile" "state-level aggregated wastewater" +"4 day ahead inc hosp" "US" 2024-02-05 2024-02-09 0.99 4291.22 "quantile" "state-level aggregated wastewater" +"5 day ahead inc hosp" "US" 2024-02-05 2024-02-10 0.01 1728.71 "quantile" "state-level aggregated wastewater" +"5 day ahead inc hosp" "US" 2024-02-05 2024-02-10 0.025 1859.95 "quantile" "state-level aggregated wastewater" +"5 day ahead inc hosp" "US" 2024-02-05 2024-02-10 0.05 1955.3 "quantile" "state-level aggregated wastewater" +"5 day ahead inc hosp" "US" 2024-02-05 2024-02-10 0.1 1998.9 "quantile" "state-level aggregated wastewater" +"5 day ahead inc hosp" "US" 2024-02-05 2024-02-10 0.15 2088.95 "quantile" "state-level aggregated wastewater" +"5 day ahead inc hosp" "US" 2024-02-05 2024-02-10 0.2 2156 "quantile" "state-level aggregated wastewater" +"5 day ahead inc hosp" "US" 2024-02-05 2024-02-10 0.25 2203.75 "quantile" "state-level aggregated wastewater" +"5 day ahead inc hosp" "US" 2024-02-05 2024-02-10 0.3 2275.4 "quantile" "state-level aggregated wastewater" +"5 day ahead inc hosp" "US" 2024-02-05 2024-02-10 0.35 2318.85 "quantile" "state-level aggregated wastewater" +"5 day ahead inc hosp" "US" 2024-02-05 2024-02-10 0.4 2404.8 "quantile" "state-level aggregated wastewater" +"5 day ahead inc hosp" "US" 2024-02-05 2024-02-10 0.45 2477.85 "quantile" "state-level aggregated wastewater" +"5 day ahead inc hosp" "US" 2024-02-05 2024-02-10 0.5 2505 "quantile" "state-level aggregated wastewater" +"5 day ahead inc hosp" "US" 2024-02-05 2024-02-10 0.55 2540.9 "quantile" "state-level aggregated wastewater" +"5 day ahead inc hosp" "US" 2024-02-05 2024-02-10 0.6 2675 "quantile" "state-level aggregated wastewater" +"5 day ahead inc hosp" "US" 2024-02-05 2024-02-10 0.65 2714.35 "quantile" "state-level aggregated wastewater" +"5 day ahead inc hosp" "US" 2024-02-05 2024-02-10 0.7 2788.6 "quantile" "state-level aggregated wastewater" +"5 day ahead inc hosp" "US" 2024-02-05 2024-02-10 0.75 2899.25 "quantile" "state-level aggregated wastewater" +"5 day ahead inc hosp" "US" 2024-02-05 2024-02-10 0.8 3004 "quantile" "state-level aggregated wastewater" +"5 day ahead inc hosp" "US" 2024-02-05 2024-02-10 0.85 3097.7 "quantile" "state-level aggregated wastewater" +"5 day ahead inc hosp" "US" 2024-02-05 2024-02-10 0.9 3234.5 "quantile" "state-level aggregated wastewater" +"5 day ahead inc hosp" "US" 2024-02-05 2024-02-10 0.95 3380.9 "quantile" "state-level aggregated wastewater" +"5 day ahead inc hosp" "US" 2024-02-05 2024-02-10 0.975 3507.925 "quantile" "state-level aggregated wastewater" +"5 day ahead inc hosp" "US" 2024-02-05 2024-02-10 0.99 3804.27 "quantile" "state-level aggregated wastewater" +"6 day ahead inc hosp" "US" 2024-02-05 2024-02-11 0.01 1596.73 "quantile" "state-level aggregated wastewater" +"6 day ahead inc hosp" "US" 2024-02-05 2024-02-11 0.025 1800.05 "quantile" "state-level aggregated wastewater" +"6 day ahead inc hosp" "US" 2024-02-05 2024-02-11 0.05 1892.6 "quantile" "state-level aggregated wastewater" +"6 day ahead inc hosp" "US" 2024-02-05 2024-02-11 0.1 2024.9 "quantile" "state-level aggregated wastewater" +"6 day ahead inc hosp" "US" 2024-02-05 2024-02-11 0.15 2099.3 "quantile" "state-level aggregated wastewater" +"6 day ahead inc hosp" "US" 2024-02-05 2024-02-11 0.2 2195.2 "quantile" "state-level aggregated wastewater" +"6 day ahead inc hosp" "US" 2024-02-05 2024-02-11 0.25 2231.75 "quantile" "state-level aggregated wastewater" +"6 day ahead inc hosp" "US" 2024-02-05 2024-02-11 0.3 2275 "quantile" "state-level aggregated wastewater" +"6 day ahead inc hosp" "US" 2024-02-05 2024-02-11 0.35 2384.8 "quantile" "state-level aggregated wastewater" +"6 day ahead inc hosp" "US" 2024-02-05 2024-02-11 0.4 2424.2 "quantile" "state-level aggregated wastewater" +"6 day ahead inc hosp" "US" 2024-02-05 2024-02-11 0.45 2481.4 "quantile" "state-level aggregated wastewater" +"6 day ahead inc hosp" "US" 2024-02-05 2024-02-11 0.5 2620.5 "quantile" "state-level aggregated wastewater" +"6 day ahead inc hosp" "US" 2024-02-05 2024-02-11 0.55 2668.9 "quantile" "state-level aggregated wastewater" +"6 day ahead inc hosp" "US" 2024-02-05 2024-02-11 0.6 2729.2 "quantile" "state-level aggregated wastewater" +"6 day ahead inc hosp" "US" 2024-02-05 2024-02-11 0.65 2772.75 "quantile" "state-level aggregated wastewater" +"6 day ahead inc hosp" "US" 2024-02-05 2024-02-11 0.7 2837 "quantile" "state-level aggregated wastewater" +"6 day ahead inc hosp" "US" 2024-02-05 2024-02-11 0.75 2912.25 "quantile" "state-level aggregated wastewater" +"6 day ahead inc hosp" "US" 2024-02-05 2024-02-11 0.8 2974.2 "quantile" "state-level aggregated wastewater" +"6 day ahead inc hosp" "US" 2024-02-05 2024-02-11 0.85 3097.65 "quantile" "state-level aggregated wastewater" +"6 day ahead inc hosp" "US" 2024-02-05 2024-02-11 0.9 3214.6 "quantile" "state-level aggregated wastewater" +"6 day ahead inc hosp" "US" 2024-02-05 2024-02-11 0.95 3498.85 "quantile" "state-level aggregated wastewater" +"6 day ahead inc hosp" "US" 2024-02-05 2024-02-11 0.975 3671.7 "quantile" "state-level aggregated wastewater" +"6 day ahead inc hosp" "US" 2024-02-05 2024-02-11 0.99 4031.28 "quantile" "state-level aggregated wastewater" +"7 day ahead inc hosp" "US" 2024-02-05 2024-02-12 0.01 1802.46 "quantile" "state-level aggregated wastewater" +"7 day ahead inc hosp" "US" 2024-02-05 2024-02-12 0.025 1891.225 "quantile" "state-level aggregated wastewater" +"7 day ahead inc hosp" "US" 2024-02-05 2024-02-12 0.05 2019.2 "quantile" "state-level aggregated wastewater" +"7 day ahead inc hosp" "US" 2024-02-05 2024-02-12 0.1 2180.8 "quantile" "state-level aggregated wastewater" +"7 day ahead inc hosp" "US" 2024-02-05 2024-02-12 0.15 2268.1 "quantile" "state-level aggregated wastewater" +"7 day ahead inc hosp" "US" 2024-02-05 2024-02-12 0.2 2408 "quantile" "state-level aggregated wastewater" +"7 day ahead inc hosp" "US" 2024-02-05 2024-02-12 0.25 2448.75 "quantile" "state-level aggregated wastewater" +"7 day ahead inc hosp" "US" 2024-02-05 2024-02-12 0.3 2537.8 "quantile" "state-level aggregated wastewater" +"7 day ahead inc hosp" "US" 2024-02-05 2024-02-12 0.35 2641.6 "quantile" "state-level aggregated wastewater" +"7 day ahead inc hosp" "US" 2024-02-05 2024-02-12 0.4 2695.4 "quantile" "state-level aggregated wastewater" +"7 day ahead inc hosp" "US" 2024-02-05 2024-02-12 0.45 2783.05 "quantile" "state-level aggregated wastewater" +"7 day ahead inc hosp" "US" 2024-02-05 2024-02-12 0.5 2853.5 "quantile" "state-level aggregated wastewater" +"7 day ahead inc hosp" "US" 2024-02-05 2024-02-12 0.55 2919.5 "quantile" "state-level aggregated wastewater" +"7 day ahead inc hosp" "US" 2024-02-05 2024-02-12 0.6 3067.8 "quantile" "state-level aggregated wastewater" +"7 day ahead inc hosp" "US" 2024-02-05 2024-02-12 0.65 3133.5 "quantile" "state-level aggregated wastewater" +"7 day ahead inc hosp" "US" 2024-02-05 2024-02-12 0.7 3227.1 "quantile" "state-level aggregated wastewater" +"7 day ahead inc hosp" "US" 2024-02-05 2024-02-12 0.75 3386 "quantile" "state-level aggregated wastewater" +"7 day ahead inc hosp" "US" 2024-02-05 2024-02-12 0.8 3457 "quantile" "state-level aggregated wastewater" +"7 day ahead inc hosp" "US" 2024-02-05 2024-02-12 0.85 3563.6 "quantile" "state-level aggregated wastewater" +"7 day ahead inc hosp" "US" 2024-02-05 2024-02-12 0.9 3738.9 "quantile" "state-level aggregated wastewater" +"7 day ahead inc hosp" "US" 2024-02-05 2024-02-12 0.95 3832.25 "quantile" "state-level aggregated wastewater" +"7 day ahead inc hosp" "US" 2024-02-05 2024-02-12 0.975 4131.725 "quantile" "state-level aggregated wastewater" +"7 day ahead inc hosp" "US" 2024-02-05 2024-02-12 0.99 4304.18 "quantile" "state-level aggregated wastewater" +"8 day ahead inc hosp" "US" 2024-02-05 2024-02-13 0.01 1677.27 "quantile" "state-level aggregated wastewater" +"8 day ahead inc hosp" "US" 2024-02-05 2024-02-13 0.025 1944.525 "quantile" "state-level aggregated wastewater" +"8 day ahead inc hosp" "US" 2024-02-05 2024-02-13 0.05 2124.95 "quantile" "state-level aggregated wastewater" +"8 day ahead inc hosp" "US" 2024-02-05 2024-02-13 0.1 2227.4 "quantile" "state-level aggregated wastewater" +"8 day ahead inc hosp" "US" 2024-02-05 2024-02-13 0.15 2285.75 "quantile" "state-level aggregated wastewater" +"8 day ahead inc hosp" "US" 2024-02-05 2024-02-13 0.2 2356.2 "quantile" "state-level aggregated wastewater" +"8 day ahead inc hosp" "US" 2024-02-05 2024-02-13 0.25 2493.25 "quantile" "state-level aggregated wastewater" +"8 day ahead inc hosp" "US" 2024-02-05 2024-02-13 0.3 2555.9 "quantile" "state-level aggregated wastewater" +"8 day ahead inc hosp" "US" 2024-02-05 2024-02-13 0.35 2603.3 "quantile" "state-level aggregated wastewater" +"8 day ahead inc hosp" "US" 2024-02-05 2024-02-13 0.4 2721.4 "quantile" "state-level aggregated wastewater" +"8 day ahead inc hosp" "US" 2024-02-05 2024-02-13 0.45 2804.6 "quantile" "state-level aggregated wastewater" +"8 day ahead inc hosp" "US" 2024-02-05 2024-02-13 0.5 2873 "quantile" "state-level aggregated wastewater" +"8 day ahead inc hosp" "US" 2024-02-05 2024-02-13 0.55 2952.25 "quantile" "state-level aggregated wastewater" +"8 day ahead inc hosp" "US" 2024-02-05 2024-02-13 0.6 3005 "quantile" "state-level aggregated wastewater" +"8 day ahead inc hosp" "US" 2024-02-05 2024-02-13 0.65 3103.1 "quantile" "state-level aggregated wastewater" +"8 day ahead inc hosp" "US" 2024-02-05 2024-02-13 0.7 3205.9 "quantile" "state-level aggregated wastewater" +"8 day ahead inc hosp" "US" 2024-02-05 2024-02-13 0.75 3279.75 "quantile" "state-level aggregated wastewater" +"8 day ahead inc hosp" "US" 2024-02-05 2024-02-13 0.8 3360.4 "quantile" "state-level aggregated wastewater" +"8 day ahead inc hosp" "US" 2024-02-05 2024-02-13 0.85 3466.25 "quantile" "state-level aggregated wastewater" +"8 day ahead inc hosp" "US" 2024-02-05 2024-02-13 0.9 3678.2 "quantile" "state-level aggregated wastewater" +"8 day ahead inc hosp" "US" 2024-02-05 2024-02-13 0.95 4042.3 "quantile" "state-level aggregated wastewater" +"8 day ahead inc hosp" "US" 2024-02-05 2024-02-13 0.975 4378.775 "quantile" "state-level aggregated wastewater" +"8 day ahead inc hosp" "US" 2024-02-05 2024-02-13 0.99 4910.63 "quantile" "state-level aggregated wastewater" +"9 day ahead inc hosp" "US" 2024-02-05 2024-02-14 0.01 1526.21 "quantile" "state-level aggregated wastewater" +"9 day ahead inc hosp" "US" 2024-02-05 2024-02-14 0.025 1832.4 "quantile" "state-level aggregated wastewater" +"9 day ahead inc hosp" "US" 2024-02-05 2024-02-14 0.05 1996.65 "quantile" "state-level aggregated wastewater" +"9 day ahead inc hosp" "US" 2024-02-05 2024-02-14 0.1 2123.1 "quantile" "state-level aggregated wastewater" +"9 day ahead inc hosp" "US" 2024-02-05 2024-02-14 0.15 2183.8 "quantile" "state-level aggregated wastewater" +"9 day ahead inc hosp" "US" 2024-02-05 2024-02-14 0.2 2305.4 "quantile" "state-level aggregated wastewater" +"9 day ahead inc hosp" "US" 2024-02-05 2024-02-14 0.25 2380 "quantile" "state-level aggregated wastewater" +"9 day ahead inc hosp" "US" 2024-02-05 2024-02-14 0.3 2448.1 "quantile" "state-level aggregated wastewater" +"9 day ahead inc hosp" "US" 2024-02-05 2024-02-14 0.35 2519.3 "quantile" "state-level aggregated wastewater" +"9 day ahead inc hosp" "US" 2024-02-05 2024-02-14 0.4 2635.2 "quantile" "state-level aggregated wastewater" +"9 day ahead inc hosp" "US" 2024-02-05 2024-02-14 0.45 2699.85 "quantile" "state-level aggregated wastewater" +"9 day ahead inc hosp" "US" 2024-02-05 2024-02-14 0.5 2811 "quantile" "state-level aggregated wastewater" +"9 day ahead inc hosp" "US" 2024-02-05 2024-02-14 0.55 2885.6 "quantile" "state-level aggregated wastewater" +"9 day ahead inc hosp" "US" 2024-02-05 2024-02-14 0.6 2974.8 "quantile" "state-level aggregated wastewater" +"9 day ahead inc hosp" "US" 2024-02-05 2024-02-14 0.65 3132.75 "quantile" "state-level aggregated wastewater" +"9 day ahead inc hosp" "US" 2024-02-05 2024-02-14 0.7 3185.2 "quantile" "state-level aggregated wastewater" +"9 day ahead inc hosp" "US" 2024-02-05 2024-02-14 0.75 3294 "quantile" "state-level aggregated wastewater" +"9 day ahead inc hosp" "US" 2024-02-05 2024-02-14 0.8 3474 "quantile" "state-level aggregated wastewater" +"9 day ahead inc hosp" "US" 2024-02-05 2024-02-14 0.85 3552.7 "quantile" "state-level aggregated wastewater" +"9 day ahead inc hosp" "US" 2024-02-05 2024-02-14 0.9 3721 "quantile" "state-level aggregated wastewater" +"9 day ahead inc hosp" "US" 2024-02-05 2024-02-14 0.95 4060.9 "quantile" "state-level aggregated wastewater" +"9 day ahead inc hosp" "US" 2024-02-05 2024-02-14 0.975 4213.225 "quantile" "state-level aggregated wastewater" +"9 day ahead inc hosp" "US" 2024-02-05 2024-02-14 0.99 4371.41 "quantile" "state-level aggregated wastewater" +"10 day ahead inc hosp" "US" 2024-02-05 2024-02-15 0.01 1386.78 "quantile" "state-level aggregated wastewater" +"10 day ahead inc hosp" "US" 2024-02-05 2024-02-15 0.025 1804.125 "quantile" "state-level aggregated wastewater" +"10 day ahead inc hosp" "US" 2024-02-05 2024-02-15 0.05 1856.95 "quantile" "state-level aggregated wastewater" +"10 day ahead inc hosp" "US" 2024-02-05 2024-02-15 0.1 2045.3 "quantile" "state-level aggregated wastewater" +"10 day ahead inc hosp" "US" 2024-02-05 2024-02-15 0.15 2114.1 "quantile" "state-level aggregated wastewater" +"10 day ahead inc hosp" "US" 2024-02-05 2024-02-15 0.2 2189 "quantile" "state-level aggregated wastewater" +"10 day ahead inc hosp" "US" 2024-02-05 2024-02-15 0.25 2281.5 "quantile" "state-level aggregated wastewater" +"10 day ahead inc hosp" "US" 2024-02-05 2024-02-15 0.3 2373.9 "quantile" "state-level aggregated wastewater" +"10 day ahead inc hosp" "US" 2024-02-05 2024-02-15 0.35 2436.45 "quantile" "state-level aggregated wastewater" +"10 day ahead inc hosp" "US" 2024-02-05 2024-02-15 0.4 2557.2 "quantile" "state-level aggregated wastewater" +"10 day ahead inc hosp" "US" 2024-02-05 2024-02-15 0.45 2653.55 "quantile" "state-level aggregated wastewater" +"10 day ahead inc hosp" "US" 2024-02-05 2024-02-15 0.5 2752 "quantile" "state-level aggregated wastewater" +"10 day ahead inc hosp" "US" 2024-02-05 2024-02-15 0.55 2886.45 "quantile" "state-level aggregated wastewater" +"10 day ahead inc hosp" "US" 2024-02-05 2024-02-15 0.6 2966 "quantile" "state-level aggregated wastewater" +"10 day ahead inc hosp" "US" 2024-02-05 2024-02-15 0.65 3117.25 "quantile" "state-level aggregated wastewater" +"10 day ahead inc hosp" "US" 2024-02-05 2024-02-15 0.7 3188.9 "quantile" "state-level aggregated wastewater" +"10 day ahead inc hosp" "US" 2024-02-05 2024-02-15 0.75 3269.5 "quantile" "state-level aggregated wastewater" +"10 day ahead inc hosp" "US" 2024-02-05 2024-02-15 0.8 3407 "quantile" "state-level aggregated wastewater" +"10 day ahead inc hosp" "US" 2024-02-05 2024-02-15 0.85 3451.15 "quantile" "state-level aggregated wastewater" +"10 day ahead inc hosp" "US" 2024-02-05 2024-02-15 0.9 3675.8 "quantile" "state-level aggregated wastewater" +"10 day ahead inc hosp" "US" 2024-02-05 2024-02-15 0.95 3857.3 "quantile" "state-level aggregated wastewater" +"10 day ahead inc hosp" "US" 2024-02-05 2024-02-15 0.975 4199.4 "quantile" "state-level aggregated wastewater" +"10 day ahead inc hosp" "US" 2024-02-05 2024-02-15 0.99 4696.65000000001 "quantile" "state-level aggregated wastewater" +"11 day ahead inc hosp" "US" 2024-02-05 2024-02-16 0.01 1261.37 "quantile" "state-level aggregated wastewater" +"11 day ahead inc hosp" "US" 2024-02-05 2024-02-16 0.025 1634.425 "quantile" "state-level aggregated wastewater" +"11 day ahead inc hosp" "US" 2024-02-05 2024-02-16 0.05 1796.7 "quantile" "state-level aggregated wastewater" +"11 day ahead inc hosp" "US" 2024-02-05 2024-02-16 0.1 1945.9 "quantile" "state-level aggregated wastewater" +"11 day ahead inc hosp" "US" 2024-02-05 2024-02-16 0.15 2012.05 "quantile" "state-level aggregated wastewater" +"11 day ahead inc hosp" "US" 2024-02-05 2024-02-16 0.2 2089 "quantile" "state-level aggregated wastewater" +"11 day ahead inc hosp" "US" 2024-02-05 2024-02-16 0.25 2173.25 "quantile" "state-level aggregated wastewater" +"11 day ahead inc hosp" "US" 2024-02-05 2024-02-16 0.3 2213.1 "quantile" "state-level aggregated wastewater" +"11 day ahead inc hosp" "US" 2024-02-05 2024-02-16 0.35 2353.95 "quantile" "state-level aggregated wastewater" +"11 day ahead inc hosp" "US" 2024-02-05 2024-02-16 0.4 2468 "quantile" "state-level aggregated wastewater" +"11 day ahead inc hosp" "US" 2024-02-05 2024-02-16 0.45 2560.7 "quantile" "state-level aggregated wastewater" +"11 day ahead inc hosp" "US" 2024-02-05 2024-02-16 0.5 2674 "quantile" "state-level aggregated wastewater" +"11 day ahead inc hosp" "US" 2024-02-05 2024-02-16 0.55 2726.25 "quantile" "state-level aggregated wastewater" +"11 day ahead inc hosp" "US" 2024-02-05 2024-02-16 0.6 2854.2 "quantile" "state-level aggregated wastewater" +"11 day ahead inc hosp" "US" 2024-02-05 2024-02-16 0.65 2955.1 "quantile" "state-level aggregated wastewater" +"11 day ahead inc hosp" "US" 2024-02-05 2024-02-16 0.7 3033.8 "quantile" "state-level aggregated wastewater" +"11 day ahead inc hosp" "US" 2024-02-05 2024-02-16 0.75 3157.25 "quantile" "state-level aggregated wastewater" +"11 day ahead inc hosp" "US" 2024-02-05 2024-02-16 0.8 3324 "quantile" "state-level aggregated wastewater" +"11 day ahead inc hosp" "US" 2024-02-05 2024-02-16 0.85 3406.9 "quantile" "state-level aggregated wastewater" +"11 day ahead inc hosp" "US" 2024-02-05 2024-02-16 0.9 3649.4 "quantile" "state-level aggregated wastewater" +"11 day ahead inc hosp" "US" 2024-02-05 2024-02-16 0.95 3821.65 "quantile" "state-level aggregated wastewater" +"11 day ahead inc hosp" "US" 2024-02-05 2024-02-16 0.975 4166.8 "quantile" "state-level aggregated wastewater" +"11 day ahead inc hosp" "US" 2024-02-05 2024-02-16 0.99 4597.18 "quantile" "state-level aggregated wastewater" +"12 day ahead inc hosp" "US" 2024-02-05 2024-02-17 0.01 1200.96 "quantile" "state-level aggregated wastewater" +"12 day ahead inc hosp" "US" 2024-02-05 2024-02-17 0.025 1432.725 "quantile" "state-level aggregated wastewater" +"12 day ahead inc hosp" "US" 2024-02-05 2024-02-17 0.05 1612.5 "quantile" "state-level aggregated wastewater" +"12 day ahead inc hosp" "US" 2024-02-05 2024-02-17 0.1 1690.1 "quantile" "state-level aggregated wastewater" +"12 day ahead inc hosp" "US" 2024-02-05 2024-02-17 0.15 1734.05 "quantile" "state-level aggregated wastewater" +"12 day ahead inc hosp" "US" 2024-02-05 2024-02-17 0.2 1893.2 "quantile" "state-level aggregated wastewater" +"12 day ahead inc hosp" "US" 2024-02-05 2024-02-17 0.25 1965 "quantile" "state-level aggregated wastewater" +"12 day ahead inc hosp" "US" 2024-02-05 2024-02-17 0.3 2035.3 "quantile" "state-level aggregated wastewater" +"12 day ahead inc hosp" "US" 2024-02-05 2024-02-17 0.35 2153 "quantile" "state-level aggregated wastewater" +"12 day ahead inc hosp" "US" 2024-02-05 2024-02-17 0.4 2232 "quantile" "state-level aggregated wastewater" +"12 day ahead inc hosp" "US" 2024-02-05 2024-02-17 0.45 2345.5 "quantile" "state-level aggregated wastewater" +"12 day ahead inc hosp" "US" 2024-02-05 2024-02-17 0.5 2469.5 "quantile" "state-level aggregated wastewater" +"12 day ahead inc hosp" "US" 2024-02-05 2024-02-17 0.55 2610.25 "quantile" "state-level aggregated wastewater" +"12 day ahead inc hosp" "US" 2024-02-05 2024-02-17 0.6 2636 "quantile" "state-level aggregated wastewater" +"12 day ahead inc hosp" "US" 2024-02-05 2024-02-17 0.65 2701.4 "quantile" "state-level aggregated wastewater" +"12 day ahead inc hosp" "US" 2024-02-05 2024-02-17 0.7 2788.9 "quantile" "state-level aggregated wastewater" +"12 day ahead inc hosp" "US" 2024-02-05 2024-02-17 0.75 2876.75 "quantile" "state-level aggregated wastewater" +"12 day ahead inc hosp" "US" 2024-02-05 2024-02-17 0.8 2977 "quantile" "state-level aggregated wastewater" +"12 day ahead inc hosp" "US" 2024-02-05 2024-02-17 0.85 3077.1 "quantile" "state-level aggregated wastewater" +"12 day ahead inc hosp" "US" 2024-02-05 2024-02-17 0.9 3251.1 "quantile" "state-level aggregated wastewater" +"12 day ahead inc hosp" "US" 2024-02-05 2024-02-17 0.95 3728.55 "quantile" "state-level aggregated wastewater" +"12 day ahead inc hosp" "US" 2024-02-05 2024-02-17 0.975 3900.35 "quantile" "state-level aggregated wastewater" +"12 day ahead inc hosp" "US" 2024-02-05 2024-02-17 0.99 4331.55 "quantile" "state-level aggregated wastewater" +"13 day ahead inc hosp" "US" 2024-02-05 2024-02-18 0.01 1124.56 "quantile" "state-level aggregated wastewater" +"13 day ahead inc hosp" "US" 2024-02-05 2024-02-18 0.025 1398.475 "quantile" "state-level aggregated wastewater" +"13 day ahead inc hosp" "US" 2024-02-05 2024-02-18 0.05 1548.6 "quantile" "state-level aggregated wastewater" +"13 day ahead inc hosp" "US" 2024-02-05 2024-02-18 0.1 1754.9 "quantile" "state-level aggregated wastewater" +"13 day ahead inc hosp" "US" 2024-02-05 2024-02-18 0.15 1841.2 "quantile" "state-level aggregated wastewater" +"13 day ahead inc hosp" "US" 2024-02-05 2024-02-18 0.2 1905.4 "quantile" "state-level aggregated wastewater" +"13 day ahead inc hosp" "US" 2024-02-05 2024-02-18 0.25 1981.75 "quantile" "state-level aggregated wastewater" +"13 day ahead inc hosp" "US" 2024-02-05 2024-02-18 0.3 2103.3 "quantile" "state-level aggregated wastewater" +"13 day ahead inc hosp" "US" 2024-02-05 2024-02-18 0.35 2222.7 "quantile" "state-level aggregated wastewater" +"13 day ahead inc hosp" "US" 2024-02-05 2024-02-18 0.4 2340.4 "quantile" "state-level aggregated wastewater" +"13 day ahead inc hosp" "US" 2024-02-05 2024-02-18 0.45 2411.3 "quantile" "state-level aggregated wastewater" +"13 day ahead inc hosp" "US" 2024-02-05 2024-02-18 0.5 2465.5 "quantile" "state-level aggregated wastewater" +"13 day ahead inc hosp" "US" 2024-02-05 2024-02-18 0.55 2554.85 "quantile" "state-level aggregated wastewater" +"13 day ahead inc hosp" "US" 2024-02-05 2024-02-18 0.6 2643.6 "quantile" "state-level aggregated wastewater" +"13 day ahead inc hosp" "US" 2024-02-05 2024-02-18 0.65 2723.85 "quantile" "state-level aggregated wastewater" +"13 day ahead inc hosp" "US" 2024-02-05 2024-02-18 0.7 2808.4 "quantile" "state-level aggregated wastewater" +"13 day ahead inc hosp" "US" 2024-02-05 2024-02-18 0.75 2992 "quantile" "state-level aggregated wastewater" +"13 day ahead inc hosp" "US" 2024-02-05 2024-02-18 0.8 3155.8 "quantile" "state-level aggregated wastewater" +"13 day ahead inc hosp" "US" 2024-02-05 2024-02-18 0.85 3257.75 "quantile" "state-level aggregated wastewater" +"13 day ahead inc hosp" "US" 2024-02-05 2024-02-18 0.9 3375.2 "quantile" "state-level aggregated wastewater" +"13 day ahead inc hosp" "US" 2024-02-05 2024-02-18 0.95 3830.35 "quantile" "state-level aggregated wastewater" +"13 day ahead inc hosp" "US" 2024-02-05 2024-02-18 0.975 3871.975 "quantile" "state-level aggregated wastewater" +"13 day ahead inc hosp" "US" 2024-02-05 2024-02-18 0.99 4068.09000000001 "quantile" "state-level aggregated wastewater" +"14 day ahead inc hosp" "US" 2024-02-05 2024-02-19 0.01 1421.58 "quantile" "state-level aggregated wastewater" +"14 day ahead inc hosp" "US" 2024-02-05 2024-02-19 0.025 1505.625 "quantile" "state-level aggregated wastewater" +"14 day ahead inc hosp" "US" 2024-02-05 2024-02-19 0.05 1637.55 "quantile" "state-level aggregated wastewater" +"14 day ahead inc hosp" "US" 2024-02-05 2024-02-19 0.1 1875.2 "quantile" "state-level aggregated wastewater" +"14 day ahead inc hosp" "US" 2024-02-05 2024-02-19 0.15 1966.65 "quantile" "state-level aggregated wastewater" +"14 day ahead inc hosp" "US" 2024-02-05 2024-02-19 0.2 2053.8 "quantile" "state-level aggregated wastewater" +"14 day ahead inc hosp" "US" 2024-02-05 2024-02-19 0.25 2170.75 "quantile" "state-level aggregated wastewater" +"14 day ahead inc hosp" "US" 2024-02-05 2024-02-19 0.3 2313.4 "quantile" "state-level aggregated wastewater" +"14 day ahead inc hosp" "US" 2024-02-05 2024-02-19 0.35 2452.55 "quantile" "state-level aggregated wastewater" +"14 day ahead inc hosp" "US" 2024-02-05 2024-02-19 0.4 2571 "quantile" "state-level aggregated wastewater" +"14 day ahead inc hosp" "US" 2024-02-05 2024-02-19 0.45 2737.5 "quantile" "state-level aggregated wastewater" +"14 day ahead inc hosp" "US" 2024-02-05 2024-02-19 0.5 2828.5 "quantile" "state-level aggregated wastewater" +"14 day ahead inc hosp" "US" 2024-02-05 2024-02-19 0.55 2912.6 "quantile" "state-level aggregated wastewater" +"14 day ahead inc hosp" "US" 2024-02-05 2024-02-19 0.6 3024.4 "quantile" "state-level aggregated wastewater" +"14 day ahead inc hosp" "US" 2024-02-05 2024-02-19 0.65 3112.65 "quantile" "state-level aggregated wastewater" +"14 day ahead inc hosp" "US" 2024-02-05 2024-02-19 0.7 3273.8 "quantile" "state-level aggregated wastewater" +"14 day ahead inc hosp" "US" 2024-02-05 2024-02-19 0.75 3379.5 "quantile" "state-level aggregated wastewater" +"14 day ahead inc hosp" "US" 2024-02-05 2024-02-19 0.8 3511 "quantile" "state-level aggregated wastewater" +"14 day ahead inc hosp" "US" 2024-02-05 2024-02-19 0.85 3576.9 "quantile" "state-level aggregated wastewater" +"14 day ahead inc hosp" "US" 2024-02-05 2024-02-19 0.9 3787.7 "quantile" "state-level aggregated wastewater" +"14 day ahead inc hosp" "US" 2024-02-05 2024-02-19 0.95 4242.95 "quantile" "state-level aggregated wastewater" +"14 day ahead inc hosp" "US" 2024-02-05 2024-02-19 0.975 4614.075 "quantile" "state-level aggregated wastewater" +"14 day ahead inc hosp" "US" 2024-02-05 2024-02-19 0.99 5368.8 "quantile" "state-level aggregated wastewater" +"15 day ahead inc hosp" "US" 2024-02-05 2024-02-20 0.01 1360.62 "quantile" "state-level aggregated wastewater" +"15 day ahead inc hosp" "US" 2024-02-05 2024-02-20 0.025 1482.85 "quantile" "state-level aggregated wastewater" +"15 day ahead inc hosp" "US" 2024-02-05 2024-02-20 0.05 1718.7 "quantile" "state-level aggregated wastewater" +"15 day ahead inc hosp" "US" 2024-02-05 2024-02-20 0.1 1930.9 "quantile" "state-level aggregated wastewater" +"15 day ahead inc hosp" "US" 2024-02-05 2024-02-20 0.15 2008.5 "quantile" "state-level aggregated wastewater" +"15 day ahead inc hosp" "US" 2024-02-05 2024-02-20 0.2 2108 "quantile" "state-level aggregated wastewater" +"15 day ahead inc hosp" "US" 2024-02-05 2024-02-20 0.25 2191.25 "quantile" "state-level aggregated wastewater" +"15 day ahead inc hosp" "US" 2024-02-05 2024-02-20 0.3 2273.5 "quantile" "state-level aggregated wastewater" +"15 day ahead inc hosp" "US" 2024-02-05 2024-02-20 0.35 2326 "quantile" "state-level aggregated wastewater" +"15 day ahead inc hosp" "US" 2024-02-05 2024-02-20 0.4 2495 "quantile" "state-level aggregated wastewater" +"15 day ahead inc hosp" "US" 2024-02-05 2024-02-20 0.45 2721.8 "quantile" "state-level aggregated wastewater" +"15 day ahead inc hosp" "US" 2024-02-05 2024-02-20 0.5 2778 "quantile" "state-level aggregated wastewater" +"15 day ahead inc hosp" "US" 2024-02-05 2024-02-20 0.55 2895.5 "quantile" "state-level aggregated wastewater" +"15 day ahead inc hosp" "US" 2024-02-05 2024-02-20 0.6 3002.4 "quantile" "state-level aggregated wastewater" +"15 day ahead inc hosp" "US" 2024-02-05 2024-02-20 0.65 3141.3 "quantile" "state-level aggregated wastewater" +"15 day ahead inc hosp" "US" 2024-02-05 2024-02-20 0.7 3286.6 "quantile" "state-level aggregated wastewater" +"15 day ahead inc hosp" "US" 2024-02-05 2024-02-20 0.75 3421.5 "quantile" "state-level aggregated wastewater" +"15 day ahead inc hosp" "US" 2024-02-05 2024-02-20 0.8 3472.8 "quantile" "state-level aggregated wastewater" +"15 day ahead inc hosp" "US" 2024-02-05 2024-02-20 0.85 3719.15 "quantile" "state-level aggregated wastewater" +"15 day ahead inc hosp" "US" 2024-02-05 2024-02-20 0.9 3795.7 "quantile" "state-level aggregated wastewater" +"15 day ahead inc hosp" "US" 2024-02-05 2024-02-20 0.95 4495.65 "quantile" "state-level aggregated wastewater" +"15 day ahead inc hosp" "US" 2024-02-05 2024-02-20 0.975 4790.825 "quantile" "state-level aggregated wastewater" +"15 day ahead inc hosp" "US" 2024-02-05 2024-02-20 0.99 5188.67000000001 "quantile" "state-level aggregated wastewater" +"16 day ahead inc hosp" "US" 2024-02-05 2024-02-21 0.01 1190 "quantile" "state-level aggregated wastewater" +"16 day ahead inc hosp" "US" 2024-02-05 2024-02-21 0.025 1348.025 "quantile" "state-level aggregated wastewater" +"16 day ahead inc hosp" "US" 2024-02-05 2024-02-21 0.05 1595.45 "quantile" "state-level aggregated wastewater" +"16 day ahead inc hosp" "US" 2024-02-05 2024-02-21 0.1 1823.8 "quantile" "state-level aggregated wastewater" +"16 day ahead inc hosp" "US" 2024-02-05 2024-02-21 0.15 1955.75 "quantile" "state-level aggregated wastewater" +"16 day ahead inc hosp" "US" 2024-02-05 2024-02-21 0.2 1993.6 "quantile" "state-level aggregated wastewater" +"16 day ahead inc hosp" "US" 2024-02-05 2024-02-21 0.25 2122.75 "quantile" "state-level aggregated wastewater" +"16 day ahead inc hosp" "US" 2024-02-05 2024-02-21 0.3 2228.7 "quantile" "state-level aggregated wastewater" +"16 day ahead inc hosp" "US" 2024-02-05 2024-02-21 0.35 2378.5 "quantile" "state-level aggregated wastewater" +"16 day ahead inc hosp" "US" 2024-02-05 2024-02-21 0.4 2498 "quantile" "state-level aggregated wastewater" +"16 day ahead inc hosp" "US" 2024-02-05 2024-02-21 0.45 2580.45 "quantile" "state-level aggregated wastewater" +"16 day ahead inc hosp" "US" 2024-02-05 2024-02-21 0.5 2760 "quantile" "state-level aggregated wastewater" +"16 day ahead inc hosp" "US" 2024-02-05 2024-02-21 0.55 2827.8 "quantile" "state-level aggregated wastewater" +"16 day ahead inc hosp" "US" 2024-02-05 2024-02-21 0.6 2927.2 "quantile" "state-level aggregated wastewater" +"16 day ahead inc hosp" "US" 2024-02-05 2024-02-21 0.65 3022.25 "quantile" "state-level aggregated wastewater" +"16 day ahead inc hosp" "US" 2024-02-05 2024-02-21 0.7 3074.7 "quantile" "state-level aggregated wastewater" +"16 day ahead inc hosp" "US" 2024-02-05 2024-02-21 0.75 3269.25 "quantile" "state-level aggregated wastewater" +"16 day ahead inc hosp" "US" 2024-02-05 2024-02-21 0.8 3549.8 "quantile" "state-level aggregated wastewater" +"16 day ahead inc hosp" "US" 2024-02-05 2024-02-21 0.85 3692.95 "quantile" "state-level aggregated wastewater" +"16 day ahead inc hosp" "US" 2024-02-05 2024-02-21 0.9 3940.9 "quantile" "state-level aggregated wastewater" +"16 day ahead inc hosp" "US" 2024-02-05 2024-02-21 0.95 4363.45 "quantile" "state-level aggregated wastewater" +"16 day ahead inc hosp" "US" 2024-02-05 2024-02-21 0.975 4764.3 "quantile" "state-level aggregated wastewater" +"16 day ahead inc hosp" "US" 2024-02-05 2024-02-21 0.99 5155.16 "quantile" "state-level aggregated wastewater" +"17 day ahead inc hosp" "US" 2024-02-05 2024-02-22 0.01 1100.47 "quantile" "state-level aggregated wastewater" +"17 day ahead inc hosp" "US" 2024-02-05 2024-02-22 0.025 1306.9 "quantile" "state-level aggregated wastewater" +"17 day ahead inc hosp" "US" 2024-02-05 2024-02-22 0.05 1458.55 "quantile" "state-level aggregated wastewater" +"17 day ahead inc hosp" "US" 2024-02-05 2024-02-22 0.1 1743.5 "quantile" "state-level aggregated wastewater" +"17 day ahead inc hosp" "US" 2024-02-05 2024-02-22 0.15 1825.85 "quantile" "state-level aggregated wastewater" +"17 day ahead inc hosp" "US" 2024-02-05 2024-02-22 0.2 1863.8 "quantile" "state-level aggregated wastewater" +"17 day ahead inc hosp" "US" 2024-02-05 2024-02-22 0.25 1945.25 "quantile" "state-level aggregated wastewater" +"17 day ahead inc hosp" "US" 2024-02-05 2024-02-22 0.3 2060.5 "quantile" "state-level aggregated wastewater" +"17 day ahead inc hosp" "US" 2024-02-05 2024-02-22 0.35 2295.6 "quantile" "state-level aggregated wastewater" +"17 day ahead inc hosp" "US" 2024-02-05 2024-02-22 0.4 2483.6 "quantile" "state-level aggregated wastewater" +"17 day ahead inc hosp" "US" 2024-02-05 2024-02-22 0.45 2554.9 "quantile" "state-level aggregated wastewater" +"17 day ahead inc hosp" "US" 2024-02-05 2024-02-22 0.5 2605 "quantile" "state-level aggregated wastewater" +"17 day ahead inc hosp" "US" 2024-02-05 2024-02-22 0.55 2712.7 "quantile" "state-level aggregated wastewater" +"17 day ahead inc hosp" "US" 2024-02-05 2024-02-22 0.6 2784.2 "quantile" "state-level aggregated wastewater" +"17 day ahead inc hosp" "US" 2024-02-05 2024-02-22 0.65 2941.7 "quantile" "state-level aggregated wastewater" +"17 day ahead inc hosp" "US" 2024-02-05 2024-02-22 0.7 3072.9 "quantile" "state-level aggregated wastewater" +"17 day ahead inc hosp" "US" 2024-02-05 2024-02-22 0.75 3162.5 "quantile" "state-level aggregated wastewater" +"17 day ahead inc hosp" "US" 2024-02-05 2024-02-22 0.8 3450 "quantile" "state-level aggregated wastewater" +"17 day ahead inc hosp" "US" 2024-02-05 2024-02-22 0.85 3690.65 "quantile" "state-level aggregated wastewater" +"17 day ahead inc hosp" "US" 2024-02-05 2024-02-22 0.9 3807.8 "quantile" "state-level aggregated wastewater" +"17 day ahead inc hosp" "US" 2024-02-05 2024-02-22 0.95 4493.3 "quantile" "state-level aggregated wastewater" +"17 day ahead inc hosp" "US" 2024-02-05 2024-02-22 0.975 4922.45 "quantile" "state-level aggregated wastewater" +"17 day ahead inc hosp" "US" 2024-02-05 2024-02-22 0.99 5217.28000000001 "quantile" "state-level aggregated wastewater" +"18 day ahead inc hosp" "US" 2024-02-05 2024-02-23 0.01 1086.84 "quantile" "state-level aggregated wastewater" +"18 day ahead inc hosp" "US" 2024-02-05 2024-02-23 0.025 1201.85 "quantile" "state-level aggregated wastewater" +"18 day ahead inc hosp" "US" 2024-02-05 2024-02-23 0.05 1515.35 "quantile" "state-level aggregated wastewater" +"18 day ahead inc hosp" "US" 2024-02-05 2024-02-23 0.1 1681.5 "quantile" "state-level aggregated wastewater" +"18 day ahead inc hosp" "US" 2024-02-05 2024-02-23 0.15 1766.65 "quantile" "state-level aggregated wastewater" +"18 day ahead inc hosp" "US" 2024-02-05 2024-02-23 0.2 1812.8 "quantile" "state-level aggregated wastewater" +"18 day ahead inc hosp" "US" 2024-02-05 2024-02-23 0.25 1945.25 "quantile" "state-level aggregated wastewater" +"18 day ahead inc hosp" "US" 2024-02-05 2024-02-23 0.3 2096.8 "quantile" "state-level aggregated wastewater" +"18 day ahead inc hosp" "US" 2024-02-05 2024-02-23 0.35 2176.15 "quantile" "state-level aggregated wastewater" +"18 day ahead inc hosp" "US" 2024-02-05 2024-02-23 0.4 2302 "quantile" "state-level aggregated wastewater" +"18 day ahead inc hosp" "US" 2024-02-05 2024-02-23 0.45 2381 "quantile" "state-level aggregated wastewater" +"18 day ahead inc hosp" "US" 2024-02-05 2024-02-23 0.5 2544.5 "quantile" "state-level aggregated wastewater" +"18 day ahead inc hosp" "US" 2024-02-05 2024-02-23 0.55 2647.7 "quantile" "state-level aggregated wastewater" +"18 day ahead inc hosp" "US" 2024-02-05 2024-02-23 0.6 2722.2 "quantile" "state-level aggregated wastewater" +"18 day ahead inc hosp" "US" 2024-02-05 2024-02-23 0.65 2885.9 "quantile" "state-level aggregated wastewater" +"18 day ahead inc hosp" "US" 2024-02-05 2024-02-23 0.7 3129.8 "quantile" "state-level aggregated wastewater" +"18 day ahead inc hosp" "US" 2024-02-05 2024-02-23 0.75 3200 "quantile" "state-level aggregated wastewater" +"18 day ahead inc hosp" "US" 2024-02-05 2024-02-23 0.8 3320.2 "quantile" "state-level aggregated wastewater" +"18 day ahead inc hosp" "US" 2024-02-05 2024-02-23 0.85 3543.15 "quantile" "state-level aggregated wastewater" +"18 day ahead inc hosp" "US" 2024-02-05 2024-02-23 0.9 3827.9 "quantile" "state-level aggregated wastewater" +"18 day ahead inc hosp" "US" 2024-02-05 2024-02-23 0.95 4184.05 "quantile" "state-level aggregated wastewater" +"18 day ahead inc hosp" "US" 2024-02-05 2024-02-23 0.975 4697.775 "quantile" "state-level aggregated wastewater" +"18 day ahead inc hosp" "US" 2024-02-05 2024-02-23 0.99 4805.22000000001 "quantile" "state-level aggregated wastewater" +"19 day ahead inc hosp" "US" 2024-02-05 2024-02-24 0.01 851.79 "quantile" "state-level aggregated wastewater" +"19 day ahead inc hosp" "US" 2024-02-05 2024-02-24 0.025 1128.65 "quantile" "state-level aggregated wastewater" +"19 day ahead inc hosp" "US" 2024-02-05 2024-02-24 0.05 1250.75 "quantile" "state-level aggregated wastewater" +"19 day ahead inc hosp" "US" 2024-02-05 2024-02-24 0.1 1496.1 "quantile" "state-level aggregated wastewater" +"19 day ahead inc hosp" "US" 2024-02-05 2024-02-24 0.15 1590.2 "quantile" "state-level aggregated wastewater" +"19 day ahead inc hosp" "US" 2024-02-05 2024-02-24 0.2 1662.8 "quantile" "state-level aggregated wastewater" +"19 day ahead inc hosp" "US" 2024-02-05 2024-02-24 0.25 1731 "quantile" "state-level aggregated wastewater" +"19 day ahead inc hosp" "US" 2024-02-05 2024-02-24 0.3 1901.8 "quantile" "state-level aggregated wastewater" +"19 day ahead inc hosp" "US" 2024-02-05 2024-02-24 0.35 1946.4 "quantile" "state-level aggregated wastewater" +"19 day ahead inc hosp" "US" 2024-02-05 2024-02-24 0.4 2032 "quantile" "state-level aggregated wastewater" +"19 day ahead inc hosp" "US" 2024-02-05 2024-02-24 0.45 2253.55 "quantile" "state-level aggregated wastewater" +"19 day ahead inc hosp" "US" 2024-02-05 2024-02-24 0.5 2414 "quantile" "state-level aggregated wastewater" +"19 day ahead inc hosp" "US" 2024-02-05 2024-02-24 0.55 2480.05 "quantile" "state-level aggregated wastewater" +"19 day ahead inc hosp" "US" 2024-02-05 2024-02-24 0.6 2528.8 "quantile" "state-level aggregated wastewater" +"19 day ahead inc hosp" "US" 2024-02-05 2024-02-24 0.65 2651.35 "quantile" "state-level aggregated wastewater" +"19 day ahead inc hosp" "US" 2024-02-05 2024-02-24 0.7 2842.6 "quantile" "state-level aggregated wastewater" +"19 day ahead inc hosp" "US" 2024-02-05 2024-02-24 0.75 2979.5 "quantile" "state-level aggregated wastewater" +"19 day ahead inc hosp" "US" 2024-02-05 2024-02-24 0.8 3027.6 "quantile" "state-level aggregated wastewater" +"19 day ahead inc hosp" "US" 2024-02-05 2024-02-24 0.85 3204.35 "quantile" "state-level aggregated wastewater" +"19 day ahead inc hosp" "US" 2024-02-05 2024-02-24 0.9 3389.4 "quantile" "state-level aggregated wastewater" +"19 day ahead inc hosp" "US" 2024-02-05 2024-02-24 0.95 4089.35 "quantile" "state-level aggregated wastewater" +"19 day ahead inc hosp" "US" 2024-02-05 2024-02-24 0.975 4161.15 "quantile" "state-level aggregated wastewater" +"19 day ahead inc hosp" "US" 2024-02-05 2024-02-24 0.99 4531.83000000001 "quantile" "state-level aggregated wastewater" +"20 day ahead inc hosp" "US" 2024-02-05 2024-02-25 0.01 941.09 "quantile" "state-level aggregated wastewater" +"20 day ahead inc hosp" "US" 2024-02-05 2024-02-25 0.025 1047.225 "quantile" "state-level aggregated wastewater" +"20 day ahead inc hosp" "US" 2024-02-05 2024-02-25 0.05 1071.7 "quantile" "state-level aggregated wastewater" +"20 day ahead inc hosp" "US" 2024-02-05 2024-02-25 0.1 1508.3 "quantile" "state-level aggregated wastewater" +"20 day ahead inc hosp" "US" 2024-02-05 2024-02-25 0.15 1604.9 "quantile" "state-level aggregated wastewater" +"20 day ahead inc hosp" "US" 2024-02-05 2024-02-25 0.2 1689.4 "quantile" "state-level aggregated wastewater" +"20 day ahead inc hosp" "US" 2024-02-05 2024-02-25 0.25 1794.5 "quantile" "state-level aggregated wastewater" +"20 day ahead inc hosp" "US" 2024-02-05 2024-02-25 0.3 1875.7 "quantile" "state-level aggregated wastewater" +"20 day ahead inc hosp" "US" 2024-02-05 2024-02-25 0.35 1990.6 "quantile" "state-level aggregated wastewater" +"20 day ahead inc hosp" "US" 2024-02-05 2024-02-25 0.4 2162 "quantile" "state-level aggregated wastewater" +"20 day ahead inc hosp" "US" 2024-02-05 2024-02-25 0.45 2303.85 "quantile" "state-level aggregated wastewater" +"20 day ahead inc hosp" "US" 2024-02-05 2024-02-25 0.5 2373.5 "quantile" "state-level aggregated wastewater" +"20 day ahead inc hosp" "US" 2024-02-05 2024-02-25 0.55 2504.6 "quantile" "state-level aggregated wastewater" +"20 day ahead inc hosp" "US" 2024-02-05 2024-02-25 0.6 2553.2 "quantile" "state-level aggregated wastewater" +"20 day ahead inc hosp" "US" 2024-02-05 2024-02-25 0.65 2689.1 "quantile" "state-level aggregated wastewater" +"20 day ahead inc hosp" "US" 2024-02-05 2024-02-25 0.7 2811.5 "quantile" "state-level aggregated wastewater" +"20 day ahead inc hosp" "US" 2024-02-05 2024-02-25 0.75 3040.25 "quantile" "state-level aggregated wastewater" +"20 day ahead inc hosp" "US" 2024-02-05 2024-02-25 0.8 3156.6 "quantile" "state-level aggregated wastewater" +"20 day ahead inc hosp" "US" 2024-02-05 2024-02-25 0.85 3313.85 "quantile" "state-level aggregated wastewater" +"20 day ahead inc hosp" "US" 2024-02-05 2024-02-25 0.9 3739.7 "quantile" "state-level aggregated wastewater" +"20 day ahead inc hosp" "US" 2024-02-05 2024-02-25 0.95 4223.7 "quantile" "state-level aggregated wastewater" +"20 day ahead inc hosp" "US" 2024-02-05 2024-02-25 0.975 4360.05 "quantile" "state-level aggregated wastewater" +"20 day ahead inc hosp" "US" 2024-02-05 2024-02-25 0.99 4513.24000000001 "quantile" "state-level aggregated wastewater" +"21 day ahead inc hosp" "US" 2024-02-05 2024-02-26 0.01 1001.49 "quantile" "state-level aggregated wastewater" +"21 day ahead inc hosp" "US" 2024-02-05 2024-02-26 0.025 1142.75 "quantile" "state-level aggregated wastewater" +"21 day ahead inc hosp" "US" 2024-02-05 2024-02-26 0.05 1314.5 "quantile" "state-level aggregated wastewater" +"21 day ahead inc hosp" "US" 2024-02-05 2024-02-26 0.1 1660.2 "quantile" "state-level aggregated wastewater" +"21 day ahead inc hosp" "US" 2024-02-05 2024-02-26 0.15 1713.55 "quantile" "state-level aggregated wastewater" +"21 day ahead inc hosp" "US" 2024-02-05 2024-02-26 0.2 1866.6 "quantile" "state-level aggregated wastewater" +"21 day ahead inc hosp" "US" 2024-02-05 2024-02-26 0.25 1927.75 "quantile" "state-level aggregated wastewater" +"21 day ahead inc hosp" "US" 2024-02-05 2024-02-26 0.3 2124.2 "quantile" "state-level aggregated wastewater" +"21 day ahead inc hosp" "US" 2024-02-05 2024-02-26 0.35 2267.35 "quantile" "state-level aggregated wastewater" +"21 day ahead inc hosp" "US" 2024-02-05 2024-02-26 0.4 2471.6 "quantile" "state-level aggregated wastewater" +"21 day ahead inc hosp" "US" 2024-02-05 2024-02-26 0.45 2595.85 "quantile" "state-level aggregated wastewater" +"21 day ahead inc hosp" "US" 2024-02-05 2024-02-26 0.5 2691 "quantile" "state-level aggregated wastewater" +"21 day ahead inc hosp" "US" 2024-02-05 2024-02-26 0.55 2795.15 "quantile" "state-level aggregated wastewater" +"21 day ahead inc hosp" "US" 2024-02-05 2024-02-26 0.6 2907.4 "quantile" "state-level aggregated wastewater" +"21 day ahead inc hosp" "US" 2024-02-05 2024-02-26 0.65 3023.9 "quantile" "state-level aggregated wastewater" +"21 day ahead inc hosp" "US" 2024-02-05 2024-02-26 0.7 3093.6 "quantile" "state-level aggregated wastewater" +"21 day ahead inc hosp" "US" 2024-02-05 2024-02-26 0.75 3277.25 "quantile" "state-level aggregated wastewater" +"21 day ahead inc hosp" "US" 2024-02-05 2024-02-26 0.8 3598.6 "quantile" "state-level aggregated wastewater" +"21 day ahead inc hosp" "US" 2024-02-05 2024-02-26 0.85 3691 "quantile" "state-level aggregated wastewater" +"21 day ahead inc hosp" "US" 2024-02-05 2024-02-26 0.9 3994.9 "quantile" "state-level aggregated wastewater" +"21 day ahead inc hosp" "US" 2024-02-05 2024-02-26 0.95 4437.25 "quantile" "state-level aggregated wastewater" +"21 day ahead inc hosp" "US" 2024-02-05 2024-02-26 0.975 4916.99999999999 "quantile" "state-level aggregated wastewater" +"21 day ahead inc hosp" "US" 2024-02-05 2024-02-26 0.99 5329.02000000001 "quantile" "state-level aggregated wastewater" +"22 day ahead inc hosp" "US" 2024-02-05 2024-02-27 0.01 985.37 "quantile" "state-level aggregated wastewater" +"22 day ahead inc hosp" "US" 2024-02-05 2024-02-27 0.025 1120.925 "quantile" "state-level aggregated wastewater" +"22 day ahead inc hosp" "US" 2024-02-05 2024-02-27 0.05 1295 "quantile" "state-level aggregated wastewater" +"22 day ahead inc hosp" "US" 2024-02-05 2024-02-27 0.1 1598.1 "quantile" "state-level aggregated wastewater" +"22 day ahead inc hosp" "US" 2024-02-05 2024-02-27 0.15 1738.7 "quantile" "state-level aggregated wastewater" +"22 day ahead inc hosp" "US" 2024-02-05 2024-02-27 0.2 1819.8 "quantile" "state-level aggregated wastewater" +"22 day ahead inc hosp" "US" 2024-02-05 2024-02-27 0.25 1967.75 "quantile" "state-level aggregated wastewater" +"22 day ahead inc hosp" "US" 2024-02-05 2024-02-27 0.3 2004 "quantile" "state-level aggregated wastewater" +"22 day ahead inc hosp" "US" 2024-02-05 2024-02-27 0.35 2194.65 "quantile" "state-level aggregated wastewater" +"22 day ahead inc hosp" "US" 2024-02-05 2024-02-27 0.4 2449.4 "quantile" "state-level aggregated wastewater" +"22 day ahead inc hosp" "US" 2024-02-05 2024-02-27 0.45 2540.1 "quantile" "state-level aggregated wastewater" +"22 day ahead inc hosp" "US" 2024-02-05 2024-02-27 0.5 2637.5 "quantile" "state-level aggregated wastewater" +"22 day ahead inc hosp" "US" 2024-02-05 2024-02-27 0.55 2750.6 "quantile" "state-level aggregated wastewater" +"22 day ahead inc hosp" "US" 2024-02-05 2024-02-27 0.6 2898.2 "quantile" "state-level aggregated wastewater" +"22 day ahead inc hosp" "US" 2024-02-05 2024-02-27 0.65 3068.05 "quantile" "state-level aggregated wastewater" +"22 day ahead inc hosp" "US" 2024-02-05 2024-02-27 0.7 3227.6 "quantile" "state-level aggregated wastewater" +"22 day ahead inc hosp" "US" 2024-02-05 2024-02-27 0.75 3488.5 "quantile" "state-level aggregated wastewater" +"22 day ahead inc hosp" "US" 2024-02-05 2024-02-27 0.8 3668.2 "quantile" "state-level aggregated wastewater" +"22 day ahead inc hosp" "US" 2024-02-05 2024-02-27 0.85 3856.7 "quantile" "state-level aggregated wastewater" +"22 day ahead inc hosp" "US" 2024-02-05 2024-02-27 0.9 4290.5 "quantile" "state-level aggregated wastewater" +"22 day ahead inc hosp" "US" 2024-02-05 2024-02-27 0.95 4491.15 "quantile" "state-level aggregated wastewater" +"22 day ahead inc hosp" "US" 2024-02-05 2024-02-27 0.975 5290.8 "quantile" "state-level aggregated wastewater" +"22 day ahead inc hosp" "US" 2024-02-05 2024-02-27 0.99 5896.5 "quantile" "state-level aggregated wastewater" +"23 day ahead inc hosp" "US" 2024-02-05 2024-02-28 0.01 922.04 "quantile" "state-level aggregated wastewater" +"23 day ahead inc hosp" "US" 2024-02-05 2024-02-28 0.025 1073.825 "quantile" "state-level aggregated wastewater" +"23 day ahead inc hosp" "US" 2024-02-05 2024-02-28 0.05 1319.25 "quantile" "state-level aggregated wastewater" +"23 day ahead inc hosp" "US" 2024-02-05 2024-02-28 0.1 1472.4 "quantile" "state-level aggregated wastewater" +"23 day ahead inc hosp" "US" 2024-02-05 2024-02-28 0.15 1624.9 "quantile" "state-level aggregated wastewater" +"23 day ahead inc hosp" "US" 2024-02-05 2024-02-28 0.2 1815.8 "quantile" "state-level aggregated wastewater" +"23 day ahead inc hosp" "US" 2024-02-05 2024-02-28 0.25 1902 "quantile" "state-level aggregated wastewater" +"23 day ahead inc hosp" "US" 2024-02-05 2024-02-28 0.3 1959.4 "quantile" "state-level aggregated wastewater" +"23 day ahead inc hosp" "US" 2024-02-05 2024-02-28 0.35 2169.8 "quantile" "state-level aggregated wastewater" +"23 day ahead inc hosp" "US" 2024-02-05 2024-02-28 0.4 2291.4 "quantile" "state-level aggregated wastewater" +"23 day ahead inc hosp" "US" 2024-02-05 2024-02-28 0.45 2575.85 "quantile" "state-level aggregated wastewater" +"23 day ahead inc hosp" "US" 2024-02-05 2024-02-28 0.5 2629 "quantile" "state-level aggregated wastewater" +"23 day ahead inc hosp" "US" 2024-02-05 2024-02-28 0.55 2748.95 "quantile" "state-level aggregated wastewater" +"23 day ahead inc hosp" "US" 2024-02-05 2024-02-28 0.6 2820.2 "quantile" "state-level aggregated wastewater" +"23 day ahead inc hosp" "US" 2024-02-05 2024-02-28 0.65 3068.2 "quantile" "state-level aggregated wastewater" +"23 day ahead inc hosp" "US" 2024-02-05 2024-02-28 0.7 3238.8 "quantile" "state-level aggregated wastewater" +"23 day ahead inc hosp" "US" 2024-02-05 2024-02-28 0.75 3451.5 "quantile" "state-level aggregated wastewater" +"23 day ahead inc hosp" "US" 2024-02-05 2024-02-28 0.8 3614.4 "quantile" "state-level aggregated wastewater" +"23 day ahead inc hosp" "US" 2024-02-05 2024-02-28 0.85 3735 "quantile" "state-level aggregated wastewater" +"23 day ahead inc hosp" "US" 2024-02-05 2024-02-28 0.9 4071.9 "quantile" "state-level aggregated wastewater" +"23 day ahead inc hosp" "US" 2024-02-05 2024-02-28 0.95 4668.65 "quantile" "state-level aggregated wastewater" +"23 day ahead inc hosp" "US" 2024-02-05 2024-02-28 0.975 5245.05 "quantile" "state-level aggregated wastewater" +"23 day ahead inc hosp" "US" 2024-02-05 2024-02-28 0.99 5894.53000000001 "quantile" "state-level aggregated wastewater" +"24 day ahead inc hosp" "US" 2024-02-05 2024-02-29 0.01 849.63 "quantile" "state-level aggregated wastewater" +"24 day ahead inc hosp" "US" 2024-02-05 2024-02-29 0.025 1057.675 "quantile" "state-level aggregated wastewater" +"24 day ahead inc hosp" "US" 2024-02-05 2024-02-29 0.05 1255.8 "quantile" "state-level aggregated wastewater" +"24 day ahead inc hosp" "US" 2024-02-05 2024-02-29 0.1 1423.3 "quantile" "state-level aggregated wastewater" +"24 day ahead inc hosp" "US" 2024-02-05 2024-02-29 0.15 1608.85 "quantile" "state-level aggregated wastewater" +"24 day ahead inc hosp" "US" 2024-02-05 2024-02-29 0.2 1667.6 "quantile" "state-level aggregated wastewater" +"24 day ahead inc hosp" "US" 2024-02-05 2024-02-29 0.25 1880.5 "quantile" "state-level aggregated wastewater" +"24 day ahead inc hosp" "US" 2024-02-05 2024-02-29 0.3 1976.6 "quantile" "state-level aggregated wastewater" +"24 day ahead inc hosp" "US" 2024-02-05 2024-02-29 0.35 2081.35 "quantile" "state-level aggregated wastewater" +"24 day ahead inc hosp" "US" 2024-02-05 2024-02-29 0.4 2230.2 "quantile" "state-level aggregated wastewater" +"24 day ahead inc hosp" "US" 2024-02-05 2024-02-29 0.45 2402.5 "quantile" "state-level aggregated wastewater" +"24 day ahead inc hosp" "US" 2024-02-05 2024-02-29 0.5 2483.5 "quantile" "state-level aggregated wastewater" +"24 day ahead inc hosp" "US" 2024-02-05 2024-02-29 0.55 2693.25 "quantile" "state-level aggregated wastewater" +"24 day ahead inc hosp" "US" 2024-02-05 2024-02-29 0.6 2849 "quantile" "state-level aggregated wastewater" +"24 day ahead inc hosp" "US" 2024-02-05 2024-02-29 0.65 3041.1 "quantile" "state-level aggregated wastewater" +"24 day ahead inc hosp" "US" 2024-02-05 2024-02-29 0.7 3176 "quantile" "state-level aggregated wastewater" +"24 day ahead inc hosp" "US" 2024-02-05 2024-02-29 0.75 3262.5 "quantile" "state-level aggregated wastewater" +"24 day ahead inc hosp" "US" 2024-02-05 2024-02-29 0.8 3401.2 "quantile" "state-level aggregated wastewater" +"24 day ahead inc hosp" "US" 2024-02-05 2024-02-29 0.85 3633.95 "quantile" "state-level aggregated wastewater" +"24 day ahead inc hosp" "US" 2024-02-05 2024-02-29 0.9 4046.4 "quantile" "state-level aggregated wastewater" +"24 day ahead inc hosp" "US" 2024-02-05 2024-02-29 0.95 4654.95 "quantile" "state-level aggregated wastewater" +"24 day ahead inc hosp" "US" 2024-02-05 2024-02-29 0.975 5023.05 "quantile" "state-level aggregated wastewater" +"24 day ahead inc hosp" "US" 2024-02-05 2024-02-29 0.99 5544.17000000001 "quantile" "state-level aggregated wastewater" +"25 day ahead inc hosp" "US" 2024-02-05 2024-03-01 0.01 856.93 "quantile" "state-level aggregated wastewater" +"25 day ahead inc hosp" "US" 2024-02-05 2024-03-01 0.025 976.65 "quantile" "state-level aggregated wastewater" +"25 day ahead inc hosp" "US" 2024-02-05 2024-03-01 0.05 1233.75 "quantile" "state-level aggregated wastewater" +"25 day ahead inc hosp" "US" 2024-02-05 2024-03-01 0.1 1467.5 "quantile" "state-level aggregated wastewater" +"25 day ahead inc hosp" "US" 2024-02-05 2024-03-01 0.15 1554.75 "quantile" "state-level aggregated wastewater" +"25 day ahead inc hosp" "US" 2024-02-05 2024-03-01 0.2 1663.6 "quantile" "state-level aggregated wastewater" +"25 day ahead inc hosp" "US" 2024-02-05 2024-03-01 0.25 1808.5 "quantile" "state-level aggregated wastewater" +"25 day ahead inc hosp" "US" 2024-02-05 2024-03-01 0.3 1928.7 "quantile" "state-level aggregated wastewater" +"25 day ahead inc hosp" "US" 2024-02-05 2024-03-01 0.35 2032.25 "quantile" "state-level aggregated wastewater" +"25 day ahead inc hosp" "US" 2024-02-05 2024-03-01 0.4 2142.4 "quantile" "state-level aggregated wastewater" +"25 day ahead inc hosp" "US" 2024-02-05 2024-03-01 0.45 2318.55 "quantile" "state-level aggregated wastewater" +"25 day ahead inc hosp" "US" 2024-02-05 2024-03-01 0.5 2497.5 "quantile" "state-level aggregated wastewater" +"25 day ahead inc hosp" "US" 2024-02-05 2024-03-01 0.55 2597.45 "quantile" "state-level aggregated wastewater" +"25 day ahead inc hosp" "US" 2024-02-05 2024-03-01 0.6 2722.2 "quantile" "state-level aggregated wastewater" +"25 day ahead inc hosp" "US" 2024-02-05 2024-03-01 0.65 2829.2 "quantile" "state-level aggregated wastewater" +"25 day ahead inc hosp" "US" 2024-02-05 2024-03-01 0.7 3035.7 "quantile" "state-level aggregated wastewater" +"25 day ahead inc hosp" "US" 2024-02-05 2024-03-01 0.75 3172.75 "quantile" "state-level aggregated wastewater" +"25 day ahead inc hosp" "US" 2024-02-05 2024-03-01 0.8 3340 "quantile" "state-level aggregated wastewater" +"25 day ahead inc hosp" "US" 2024-02-05 2024-03-01 0.85 3468.7 "quantile" "state-level aggregated wastewater" +"25 day ahead inc hosp" "US" 2024-02-05 2024-03-01 0.9 3973.1 "quantile" "state-level aggregated wastewater" +"25 day ahead inc hosp" "US" 2024-02-05 2024-03-01 0.95 4510.45 "quantile" "state-level aggregated wastewater" +"25 day ahead inc hosp" "US" 2024-02-05 2024-03-01 0.975 5063.94999999999 "quantile" "state-level aggregated wastewater" +"25 day ahead inc hosp" "US" 2024-02-05 2024-03-01 0.99 5650.33 "quantile" "state-level aggregated wastewater" +"26 day ahead inc hosp" "US" 2024-02-05 2024-03-02 0.01 721.11 "quantile" "state-level aggregated wastewater" +"26 day ahead inc hosp" "US" 2024-02-05 2024-03-02 0.025 806.4 "quantile" "state-level aggregated wastewater" +"26 day ahead inc hosp" "US" 2024-02-05 2024-03-02 0.05 1047.7 "quantile" "state-level aggregated wastewater" +"26 day ahead inc hosp" "US" 2024-02-05 2024-03-02 0.1 1318.1 "quantile" "state-level aggregated wastewater" +"26 day ahead inc hosp" "US" 2024-02-05 2024-03-02 0.15 1373.05 "quantile" "state-level aggregated wastewater" +"26 day ahead inc hosp" "US" 2024-02-05 2024-03-02 0.2 1453.4 "quantile" "state-level aggregated wastewater" +"26 day ahead inc hosp" "US" 2024-02-05 2024-03-02 0.25 1649.25 "quantile" "state-level aggregated wastewater" +"26 day ahead inc hosp" "US" 2024-02-05 2024-03-02 0.3 1725.6 "quantile" "state-level aggregated wastewater" +"26 day ahead inc hosp" "US" 2024-02-05 2024-03-02 0.35 1837.3 "quantile" "state-level aggregated wastewater" +"26 day ahead inc hosp" "US" 2024-02-05 2024-03-02 0.4 1915.8 "quantile" "state-level aggregated wastewater" +"26 day ahead inc hosp" "US" 2024-02-05 2024-03-02 0.45 2109.05 "quantile" "state-level aggregated wastewater" +"26 day ahead inc hosp" "US" 2024-02-05 2024-03-02 0.5 2278 "quantile" "state-level aggregated wastewater" +"26 day ahead inc hosp" "US" 2024-02-05 2024-03-02 0.55 2396.25 "quantile" "state-level aggregated wastewater" +"26 day ahead inc hosp" "US" 2024-02-05 2024-03-02 0.6 2498.8 "quantile" "state-level aggregated wastewater" +"26 day ahead inc hosp" "US" 2024-02-05 2024-03-02 0.65 2674.55 "quantile" "state-level aggregated wastewater" +"26 day ahead inc hosp" "US" 2024-02-05 2024-03-02 0.7 2822.2 "quantile" "state-level aggregated wastewater" +"26 day ahead inc hosp" "US" 2024-02-05 2024-03-02 0.75 2912.25 "quantile" "state-level aggregated wastewater" +"26 day ahead inc hosp" "US" 2024-02-05 2024-03-02 0.8 3078.2 "quantile" "state-level aggregated wastewater" +"26 day ahead inc hosp" "US" 2024-02-05 2024-03-02 0.85 3267.7 "quantile" "state-level aggregated wastewater" +"26 day ahead inc hosp" "US" 2024-02-05 2024-03-02 0.9 3757.4 "quantile" "state-level aggregated wastewater" +"26 day ahead inc hosp" "US" 2024-02-05 2024-03-02 0.95 4192.1 "quantile" "state-level aggregated wastewater" +"26 day ahead inc hosp" "US" 2024-02-05 2024-03-02 0.975 4726.77499999999 "quantile" "state-level aggregated wastewater" +"26 day ahead inc hosp" "US" 2024-02-05 2024-03-02 0.99 5288.69000000001 "quantile" "state-level aggregated wastewater" +"27 day ahead inc hosp" "US" 2024-02-05 2024-03-03 0.01 659.74 "quantile" "state-level aggregated wastewater" +"27 day ahead inc hosp" "US" 2024-02-05 2024-03-03 0.025 759.85 "quantile" "state-level aggregated wastewater" +"27 day ahead inc hosp" "US" 2024-02-05 2024-03-03 0.05 1089.7 "quantile" "state-level aggregated wastewater" +"27 day ahead inc hosp" "US" 2024-02-05 2024-03-03 0.1 1280.4 "quantile" "state-level aggregated wastewater" +"27 day ahead inc hosp" "US" 2024-02-05 2024-03-03 0.15 1414.55 "quantile" "state-level aggregated wastewater" +"27 day ahead inc hosp" "US" 2024-02-05 2024-03-03 0.2 1497 "quantile" "state-level aggregated wastewater" +"27 day ahead inc hosp" "US" 2024-02-05 2024-03-03 0.25 1636 "quantile" "state-level aggregated wastewater" +"27 day ahead inc hosp" "US" 2024-02-05 2024-03-03 0.3 1850 "quantile" "state-level aggregated wastewater" +"27 day ahead inc hosp" "US" 2024-02-05 2024-03-03 0.35 1932.25 "quantile" "state-level aggregated wastewater" +"27 day ahead inc hosp" "US" 2024-02-05 2024-03-03 0.4 2055.4 "quantile" "state-level aggregated wastewater" +"27 day ahead inc hosp" "US" 2024-02-05 2024-03-03 0.45 2215.4 "quantile" "state-level aggregated wastewater" +"27 day ahead inc hosp" "US" 2024-02-05 2024-03-03 0.5 2296.5 "quantile" "state-level aggregated wastewater" +"27 day ahead inc hosp" "US" 2024-02-05 2024-03-03 0.55 2396.85 "quantile" "state-level aggregated wastewater" +"27 day ahead inc hosp" "US" 2024-02-05 2024-03-03 0.6 2587.4 "quantile" "state-level aggregated wastewater" +"27 day ahead inc hosp" "US" 2024-02-05 2024-03-03 0.65 2716.7 "quantile" "state-level aggregated wastewater" +"27 day ahead inc hosp" "US" 2024-02-05 2024-03-03 0.7 2881.8 "quantile" "state-level aggregated wastewater" +"27 day ahead inc hosp" "US" 2024-02-05 2024-03-03 0.75 2978.75 "quantile" "state-level aggregated wastewater" +"27 day ahead inc hosp" "US" 2024-02-05 2024-03-03 0.8 3184.6 "quantile" "state-level aggregated wastewater" +"27 day ahead inc hosp" "US" 2024-02-05 2024-03-03 0.85 3459.4 "quantile" "state-level aggregated wastewater" +"27 day ahead inc hosp" "US" 2024-02-05 2024-03-03 0.9 3827.8 "quantile" "state-level aggregated wastewater" +"27 day ahead inc hosp" "US" 2024-02-05 2024-03-03 0.95 4373.95 "quantile" "state-level aggregated wastewater" +"27 day ahead inc hosp" "US" 2024-02-05 2024-03-03 0.975 4974.825 "quantile" "state-level aggregated wastewater" +"27 day ahead inc hosp" "US" 2024-02-05 2024-03-03 0.99 5173.25000000001 "quantile" "state-level aggregated wastewater" +"28 day ahead inc hosp" "US" 2024-02-05 2024-03-04 0.01 824.67 "quantile" "state-level aggregated wastewater" +"28 day ahead inc hosp" "US" 2024-02-05 2024-03-04 0.025 946.225 "quantile" "state-level aggregated wastewater" +"28 day ahead inc hosp" "US" 2024-02-05 2024-03-04 0.05 1146.45 "quantile" "state-level aggregated wastewater" +"28 day ahead inc hosp" "US" 2024-02-05 2024-03-04 0.1 1465.2 "quantile" "state-level aggregated wastewater" +"28 day ahead inc hosp" "US" 2024-02-05 2024-03-04 0.15 1537.3 "quantile" "state-level aggregated wastewater" +"28 day ahead inc hosp" "US" 2024-02-05 2024-03-04 0.2 1611.8 "quantile" "state-level aggregated wastewater" +"28 day ahead inc hosp" "US" 2024-02-05 2024-03-04 0.25 1849 "quantile" "state-level aggregated wastewater" +"28 day ahead inc hosp" "US" 2024-02-05 2024-03-04 0.3 2000.7 "quantile" "state-level aggregated wastewater" +"28 day ahead inc hosp" "US" 2024-02-05 2024-03-04 0.35 2109.65 "quantile" "state-level aggregated wastewater" +"28 day ahead inc hosp" "US" 2024-02-05 2024-03-04 0.4 2228.6 "quantile" "state-level aggregated wastewater" +"28 day ahead inc hosp" "US" 2024-02-05 2024-03-04 0.45 2414.7 "quantile" "state-level aggregated wastewater" +"28 day ahead inc hosp" "US" 2024-02-05 2024-03-04 0.5 2533 "quantile" "state-level aggregated wastewater" +"28 day ahead inc hosp" "US" 2024-02-05 2024-03-04 0.55 2694.25 "quantile" "state-level aggregated wastewater" +"28 day ahead inc hosp" "US" 2024-02-05 2024-03-04 0.6 2836.2 "quantile" "state-level aggregated wastewater" +"28 day ahead inc hosp" "US" 2024-02-05 2024-03-04 0.65 2979.45 "quantile" "state-level aggregated wastewater" +"28 day ahead inc hosp" "US" 2024-02-05 2024-03-04 0.7 3174.2 "quantile" "state-level aggregated wastewater" +"28 day ahead inc hosp" "US" 2024-02-05 2024-03-04 0.75 3399.25 "quantile" "state-level aggregated wastewater" +"28 day ahead inc hosp" "US" 2024-02-05 2024-03-04 0.8 3505.4 "quantile" "state-level aggregated wastewater" +"28 day ahead inc hosp" "US" 2024-02-05 2024-03-04 0.85 3866.9 "quantile" "state-level aggregated wastewater" +"28 day ahead inc hosp" "US" 2024-02-05 2024-03-04 0.9 4370.3 "quantile" "state-level aggregated wastewater" +"28 day ahead inc hosp" "US" 2024-02-05 2024-03-04 0.95 4882.55 "quantile" "state-level aggregated wastewater" +"28 day ahead inc hosp" "US" 2024-02-05 2024-03-04 0.975 5437.19999999999 "quantile" "state-level aggregated wastewater" +"28 day ahead inc hosp" "US" 2024-02-05 2024-03-04 0.99 5941.92000000001 "quantile" "state-level aggregated wastewater" diff --git a/output/forecasts/2024-02-05/metadata.yaml b/output/forecasts/2024-02-05/metadata.yaml new file mode 100644 index 00000000..befff10a --- /dev/null +++ b/output/forecasts/2024-02-05/metadata.yaml @@ -0,0 +1,15 @@ +States without wastewaster data: +- - KY + - LA + - MS + - ND + - PR + - VT +States with insufficient wastewater data: +- - DC + - NM + - WA +States we chose to use hospital admissions only model on: +- - MN + - OH + - IL diff --git a/output/forecasts/2024-02-05/wastewater_metadata_table.tsv b/output/forecasts/2024-02-05/wastewater_metadata_table.tsv new file mode 100644 index 00000000..bf62d5e0 --- /dev/null +++ b/output/forecasts/2024-02-05/wastewater_metadata_table.tsv @@ -0,0 +1,53 @@ +location additional_notes +AK None +AL None +AR None +AZ None +CA None +CO None +CT None +DC Wastewater data is unavailable for recent time-points, forecast not likely to be informed by wastewater +DE None +FL None +GA None +HI None +IA None +ID None +IL Hospital admissions only model was run due to either issues with input data or model +IN None +KS None +KY No wastewater data available +LA No wastewater data available +MA None +MD None +ME None +MI None +MN Hospital admissions only model was run due to either issues with input data or model +MO None +MS No wastewater data available +MT None +NC None +ND No wastewater data available +NE None +NH None +NJ None +NM Wastewater data is unavailable for recent time-points, forecast not likely to be informed by wastewater +NV None +NY None +OH Hospital admissions only model was run due to either issues with input data or model +OK None +OR None +PA None +PR No wastewater data available +RI None +SC None +SD None +TN None +TX None +UT None +VA None +VT No wastewater data available +WA Wastewater data is unavailable for recent time-points, forecast not likely to be informed by wastewater +WI None +WV None +WY None diff --git a/src/generation_interval.R b/src/generation_interval.R new file mode 100644 index 00000000..41184288 --- /dev/null +++ b/src/generation_interval.R @@ -0,0 +1,27 @@ +# Script to save the generation interval to be passed in + +probability_mass <- cfaforecastrenewalww::simulate_double_censored_pmf( + max = 15, meanlog = 0.92877, sdlog = 0.526, fun_dist = rlnorm, n = 5e6 +) |> cfaforecastrenewalww::drop_first_element_and_renormalize() +# Drop the first bin from the discretized pmf. This bin has the (jittered) +# density in (0, 1]. The renewal equation assumes that there is no same-day +# transmission, so the GI must be left-truncated at 1. Perform this +# truncation by removing the first indexed point and renormalizing. + +generation_interval <- data.frame( + timepoint = + seq( + from = 1, + to = length(probability_mass) + ), + probability_mass = probability_mass +) + + +cfaforecastrenewalww::create_dir(file.path("repo_data", "saved_pmfs")) +write.csv(generation_interval, file.path( + "repo_data", "saved_pmfs", + glue::glue("generation_interval.csv") +), +row.names = FALSE +) diff --git a/src/inf_to_hosp_delay_distrib.R b/src/inf_to_hosp_delay_distrib.R new file mode 100644 index 00000000..ad2fba81 --- /dev/null +++ b/src/inf_to_hosp_delay_distrib.R @@ -0,0 +1,29 @@ +# script to generate infection to hospital admissions delay distribution + +inc <- cfaforecastrenewalww::make_incubation_period_pmf( + backward_scale = 3.60, backward_shape = 1.5, + r = 0.15 +) +sym_to_hosp <- cfaforecastrenewalww::make_hospital_onset_delay_pmf( + neg_binom_mu = 6.98665, + neg_binom_size = 2.490848 +) + +probability_mass <- cfaforecastrenewalww::make_reporting_delay_pmf( + inc, sym_to_hosp +) + +inf_to_hosp <- data.frame( + timepoint = seq(from = 0, to = length(probability_mass) - 1), + probability_mass = probability_mass +) + + + +cfaforecastrenewalww::create_dir(file.path("repo_data", "saved_pmfs")) +write.csv(inf_to_hosp, file.path( + "repo_data", "saved_pmfs", + glue::glue("inf_to_hosp.csv") +), +row.names = FALSE +) diff --git a/src/write_config.R b/src/write_config.R new file mode 100644 index 00000000..dcd99968 --- /dev/null +++ b/src/write_config.R @@ -0,0 +1,190 @@ +#' @title Get configuration values for a single model run +#' @description This function creates the list that determines the parameters of +#' the model run(s). This will be used to create the datasets and groupings to +#' be passed to the targets, as well as the other settings for the model runs. +#' @param location list of locations to fit to +#' @param geo_type geographic type of the location +#' @param forecast_date list of forecast dates to run model on +#' @param include_ww list of whether or not to include WW (1 = yes, 0 = no) +#' @param hosp_reporting_delay list of time difference between forecast date +#' and last observed hospital admission +#' @return list of objects of various lengths corresponding to the metadata +#' @export +#' +#' @examples +write_config <- function(run_id, + date_run, + forecast_date, + location, + save_config = TRUE, + config_path = file.path("input", "config"), + geo_type = "state", + include_ww = 1, + hosp_reporting_delay = 4, + ww_data_source = "NWSS", + hosp_data_source = "HHS_protect_vintages", + hosp_data_dir = file.path( + "input", "hosp_data", + "vintage_datasets" + ), + train_data_dir = file.path( + "input", "train_data" + ), + population_data_path = file.path( + "input", + "locations.csv" + ), + path_to_save_metadata = + file.path("output", "pipeline_run_metadata"), + output_file_path = + file.path("output"), # nolint + prod_run = FALSE, # TRUE if running for submission + ww_data_path = file.path( + "input", "ww_data", "nwss_data", + "2024-01-11.csv" + ), + ww_geo_type = "site", + ww_target_type = "pcr_target_avg_conc", + ww_data_type = "pop_weighted_conc_w_thres", + pull_from_local = FALSE, + model_type = "state-level aggregated wastewater", + submitting_model_name = "cfa-wwrenewal") { + if (is.null(location)) { + if (model_type == "state-level aggregated wastewater") { + location <- c( + "AK", "AL", "AR", "AZ", "CA", + "CO", "CT", "DC", "DE", "FL", "GA", "GU", "ND", + "HI", "IA", "ID", "IL", "IN", "KS", "KY", "LA", "MA", + "MD", "ME", "MI", "MN", "MO", "MS", "MT", "NC", + "NE", "NH", "NJ", "NM", "NV", "NY", "OH", "OK", "OR", + "PA", "PR", "RI", "SC", "SD", "TN", "TX", "UT", "VA", + "VT", "WA", "WI", "WV", "WY", "US" + ) + } else { + # put NY back in + location <- c( + "AK", "AL", "AR", "AZ", "CA", + "CO", "CT", "DC", "DE", "FL", "GA", "ND", + "HI", "IA", "ID", "IL", "IN", "KS", "KY", "LA", "MA", + "MD", "ME", "MI", "MN", "MO", "MS", "MT", "NC", + "NE", "NH", "NJ", "NM", "NV", "NY", "OH", "OK", "OR", + "PA", "PR", "RI", "SC", "SD", "TN", "TX", "UT", "VA", + "VT", "WA", "WI", "WV", "WY" + ) + } + } + + # More transient vals + forecast_date <- lubridate::ymd(forecast_date) + calibration_time <- 90 + forecast_time <- 28 + n_draws <- 100 # draws from the posterior to save + + # Pre-specified delay distributions + generation_interval <- read.csv(here::here( + "input", "saved_pmfs", + "generation_interval.csv" + )) |> + dplyr::pull(probability_mass) + inf_to_hosp <- read.csv(here::here( + "input", "saved_pmfs", + "inf_to_hosp.csv" + )) |> + dplyr::pull(probability_mass) + + # Assign the dates and locations for hospital admissions to be manually + # removed + dates_for_hosp_removal <- c(seq( + from = lubridate::ymd("2024-01-23"), + to = lubridate::ymd("2024-01-26"), + by = "days" + )) + + states_for_hosp_removal <- c(rep( + "PA", + 4 + )) + + + # How to fit the model + compute_likelihood <- 1 # if want to use data, else just priors + include_hosp <- 1 # if want to use hosp + iter_warmup <- 250 + iter_sampling <- 500 + n_chains <- 4 + n_parallel_chains <- 4 + adapt_delta <- 0.99 + max_treedepth <- 12 + model_file_name <- get_model_file_name(model_type, include_ww) + + if (prod_run == TRUE) { + full_file_path <- file.path( + config_path, "prod", + glue::glue("{forecast_date}-run-on-{date_run}") + ) + } else { + full_file_path <- file.path( + config_path, "test", + glue::glue("{forecast_date}-run-on-{date_run}") + ) + } + + fp <- file.path( + full_file_path, + glue::glue("config-{model_file_name}-{run_id}.yaml") + ) + + config <- list( + forecast_date = as.character(lubridate::ymd(forecast_date)), + location = location, + run_id = run_id, + date_run = as.character(lubridate::ymd(date_run)), + calibration_time = calibration_time, + forecast_time = forecast_time, + hosp_reporting_delay = hosp_reporting_delay, + geo_type = geo_type, + hosp_data_source = hosp_data_source, + train_data_dir = train_data_dir, + ww_data_source = ww_data_source, + compute_likelihood = compute_likelihood, + include_ww = include_ww, + include_hosp = include_hosp, + iter_warmup = iter_warmup, + iter_sampling = iter_sampling, + n_chains = n_chains, + n_parallel_chains = n_parallel_chains, + adapt_delta = adapt_delta, + max_treedepth = max_treedepth, + n_draws = n_draws, + output_file_path = output_file_path, + ww_data_path = ww_data_path, + hosp_data_dir = hosp_data_dir, + population_data_path = population_data_path, + ww_data_type = ww_data_type, + ww_target_type = ww_target_type, + ww_geo_type = ww_geo_type, + pull_from_local = pull_from_local, + model_type = model_type, + vector_of_dates = dates_for_hosp_removal, + vector_of_states = states_for_hosp_removal, + generation_interval = generation_interval, + infection_feedback_pmf = generation_interval, + inf_to_hosp = inf_to_hosp, + submitting_model_name = submitting_model_name, + prod_run = prod_run, + path_to_save_metadata = path_to_save_metadata, + config_file_path = fp + ) + + + if (save_config == TRUE) { + create_dir(full_file_path) + yaml::write_yaml(config, file = file.path( + full_file_path, + glue::glue("config-{model_file_name}-{run_id}.yaml") + )) + } + + + return(fp) +}